/* Estilo para o botão flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #1cc259;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-decoration: none;
    font-size: 25px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #149242; /* Cor verde escuro no hover */
}

