/* WhatsApp Button - Estilos Corregidos */

#whatsapp-chat-button {
    position: fixed !important;
    z-index: 9999 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

#whatsapp-chat-button > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

#whatsapp-chat-button svg {
    fill: white !important;
    display: block !important;
    margin: auto !important;
    flex-shrink: 0 !important;
}

/* Hover effect */
#whatsapp-chat-button:hover {
    transform: scale(1.05) !important;
    transition: transform 0.2s ease !important;
}

/* Responsive */
@media (max-width: 768px) {
    #whatsapp-chat-button:hover {
        transform: scale(1.02) !important;
    }
}
