/*
Custom Css
*/
/* Estilo del botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Margen inferior */
  right: 20px; /* Margen derecho */
  background-color: #25d366; /* Color de WhatsApp */
  color: #fff; /* Color del icono */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #128c7e; /* Color al pasar el mouse */
  transform: scale(1.1); /* Efecto de zoom */
}
