/* boton de whatsap */
#botonwat {
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 1000;
}

#whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

#whatsapp-button:hover {
  transform: scale(1.1);
}

#whatsapp-button img {
  width: 20px;
  height: 20px;
}