@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    /* color: #333; */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
}



/* Carousel Styles */
.carousel-inner {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.carousel-inner img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}




/*-------------------------------------------------*/
/* Estilos Footer                                  */
/*-------------------------------------------------*/
footer {
    background-color: #033466;
    color: azure;
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
    text-align: left;
    position: relative;
    z-index: 1;
    overflow: visible;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.footer-columna {
    flex: 1;
    padding: 10px;
    min-width: 220px;
}

.footer-columna h5 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-columna ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-columna ul li {
    margin-bottom: 5px;
}

.footer-columna ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-align: left;
}

/* Estilos específicos */
.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 10px;
}

@media screen and (max-width: 600px) {
    footer .footer-columna {
        flex: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    footer .mapa-estatico img {
        width: 100%;
        height: auto;
    }
}

/*******************************************
/* Boton Whatsapp */
.whatsapp-float {
    position: fixed;
    /* Hace que el botón sea flotante */
    bottom: 20px;
    /* Distancia desde el borde inferior */
    right: 20px;
    /* Distancia desde el borde derecho */
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    border-radius: 50%;
    /* Botón redondeado */
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    /* Sombra */
    z-index: 9999;
    /* Asegúrate de que esté sobre el footer */
    width: 60px;
    /* Tamaño total del botón */
    height: 60px;
    /* Tamaño total del botón */
    display: flex;
    justify-content: center;
    /* Centra el ícono horizontalmente */
    align-items: center;
    /* Centra el ícono verticalmente */
    cursor: pointer;
    /* Cambia el cursor a pointer */
}

.whatsapp-float img {
    width: 35px;
    /* Tamaño del ícono */
    height: 35px;
    /* Tamaño del ícono */
}


/*-------------------------------------------------*/
/* mensajes whatsapp                               */
/*-------------------------------------------------*/

#btnWhatsapp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #28b4a4;
    /* Color de WhatsApp */
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#btnWhatsapp:hover {
    background-color: #128c7e;
    /* Color de fondo al pasar el ratón */
}