/* Estilo do botão flutuante WhatsApp */
#wdb-whatsapp-button {
    position: fixed;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}
#wdb-whatsapp-button img {
    width: 32px;
    height: 32px;
}
#wdb-whatsapp-button:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}
