/* ===== BOTÓN WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

/* Hover */
.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
}

/* Icono */
.whatsapp-float i {
    font-size: 20px;
}

/* ===== SOLO ICONO EN MÓVIL ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
        align-items: center;
    }

    /* Ocultar texto en móviles */
    .whatsapp-float span {
        display: none;
    }
}
