.box-whats {
  width: auto;
  height: auto;
  position: fixed;
  z-index: 2222;
  bottom: 20px;
  right: 20px;
  display: block;
}

.box-whats img {
  width: 50px;
}

/* Estilizando o botão */
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s,
    transform 0.2s;
}

/* Ícone do botão */
.whatsapp-button i {
  margin-right: 10px;
  font-size: 20px;
}

.whatsapp-button a:hover {
  color: #fff !important;
  text-decoration: none !important;
}
/* Efeitos no botão */
.whatsapp-button:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none !important;
}
