/* Botão flutuante do WhatsApp */
#wmb-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9998; /* Um nível abaixo do modal */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

#wmb-whatsapp-button img {
    width: 32px;
    height: 32px;
}

#wmb-whatsapp-button:hover { 
    transform: scale(1.1); 
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Efeito de pulsação para chamar atenção */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    #wmb-whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    #wmb-whatsapp-button img {
        width: 28px;
        height: 28px;
    }
}

/* Estados de acessibilidade */
#wmb-whatsapp-button:focus {
    outline: 2px solid #0f7a6f;
    outline-offset: 2px;
}