/* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================ */

#whatsapp-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

#whatsapp-float-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

#whatsapp-float-button svg {
    width: 32px;
    height: 32px;
    color: white;
    fill: white;
}

@media (max-width: 768px) {
    #whatsapp-float-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    #whatsapp-float-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    #whatsapp-float-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    #whatsapp-float-button svg {
        width: 24px;
        height: 24px;
    }
}
