/* styles.css */
body {
  margin: 0;
  padding: 0;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: inline-block;
  color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
  z-index: 90; /* Establece la propiedad z-index */
}

.whatsapp-button img {
  width: 50px; /* Tamaño del icono de WhatsApp */
}

.whatsapp-button:hover {
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}
