.whatsapp-button {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25d366;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Suaviza a transição */
}

.whatsapp-button i {
    font-size: 45px;
    color: white;
    transition: color 0.3s ease-in-out; /* Adiciona transição ao ícone */
}

/* 🟢 Efeito ao passar o mouse */
.whatsapp-button:hover {
    background-color: #1ebe57; /* Cor levemente mais escura */
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4); /* Sombra mais intensa */
    transform: translateX(-50%) scale(1.1); /* Aumenta ligeiramente o botão */
}

.whatsapp-button:hover i {
    color: #f0f0f0; /* Clareia ligeiramente o ícone */
}