/* --- BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; 
    color: #FFF !important; /* Forzamos el color blanco del icono */
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el contenido */
    padding: 10px 15px;
    z-index: 3000; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 25px; 
    /* ELIMINAMOS font-family de aquí, la librería se encarga sola */
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s ease;
    margin-left: 0;
    font-weight: 600;
    font-size: 14px;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
    background-color: #128c7e;
    padding: 10px 20px;
}

.whatsapp-float:hover span {
    max-width: 200px;
    margin-left: 10px;
}

/* Ajuste para móviles */
@media (max-width: 800px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        width: 50px; /* Aseguramos que sea un círculo en móvil */
        height: 50px;
    }
    .whatsapp-float span {
        display: none; 
    }
}