.float-wa {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex; /* Usar flexbox */
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
  transition: background-color 0.3s, transform 0.3s; /* Transición suave */
  text-decoration: none;
}

.float-wa:hover {
  opacity: 1; /* Mantener la opacidad */
  background-color: #1da851; /* Cambiar el color de fondo al hacer hover */
  transform: scale(1.1); /* Aumentar el tamaño ligeramente */
  color: white;
  scale: 1.1; /* Aumentar el tamaño ligeramente */
  text-decoration: none;
}
