.whatsapp-float {
  position: fixed;
  bottom: 2%; /* Cambia de 'top' a 'bottom' para que esté en la parte inferior */
  left: 2%; /* Mantiene el botón en la parte izquierda */
  z-index: 1000;
  background-color: green;
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Hace que el contenedor sea redondo */
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.whatsapp-float:hover {
  opacity: 0.9;
}
