body { font-family: 'Montserrat', 'sans-serif'; }
.logo-cipres{ max-width: 200px; }
.logo-cipres-pie{ max-width: 150px; }
.texto-redes{ margin: 0 auto !important; }
.swiper-testimonials { padding-bottom: 50px !important; }
.swiper-pagination-bullet-active { background-color: #7dbf01 !important; }
.imagen-mision{ width: 200px !important; margin: 0 auto; }
.seccion-comentarios{
    /* ATENCIÓN: Se usa ../ porque estamos dentro de la carpeta css y debemos salir a buscar img */
    background-image: url(../img/obalo-somos.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center; 
}
@media (min-width: 1024px) {
    .seccion-comentarios { background-position: bottom; background-position-y: 550px; }
}
.texto-somos-1{ line-height: 1.5; }
.texto-somos-2{ line-height: 1.3; }
.caja-texto-somos-1{ margin-bottom: 13px !important; }

/* Estilos para el menú móvil */
.nav-link-mobile {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.2s;
}

/* --- Estilos para botón flotante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}