.whatsapp-button {
    position: fixed; /* Fica fixo na tela */    
    bottom: 50px;    /* Distância do rodapé */
    right: 50px;     /* Distância da direita */
    z-index: 1000;   /* Garante que fique por cima de outros elementos */
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Torna o botão circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
    text-decoration: none; /* Remove sublinhado do link */
  }
