.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745; /* Cor de fundo */
    color: white; /* Cor do texto */
    padding: 15px 30px; /* Espaçamento do botão */
    font-size: 16px; /* Tamanho da fonte */
    border-radius: 50px; /* Botão arredondado */
    text-align: center;
    text-decoration: none; /* Remove sublinhado do link */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra para o botão */
    transition: background-color 0.3s; /* Efeito de transição para mudança de cor */
    z-index: 10;
}

.floating-button:hover {
    background-color: #218838; /* Cor ao passar o mouse */
}
