.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  /*background-color: #14dac3;*/
  transform: scale(1.05);
}

.whatsapp-float i {
  font-size: 20px;
}

