.whatsapp-float {
  position: fixed; /* Mantiene el botón fijo en la pantalla */
  width: 100px;
  height: 60px;
  bottom: 120px;
  right: 20px;
  background-color: #25d366; /* Color verde de WhatsApp */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 150; /* Asegura que esté por encima de otros elementos */
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #128c7e; /* Color al pasar el cursor */
}