/* Fuente moderna y legible */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #65a826; /* 🎨 Cambia este color si quieres otro */
  padding: 18px 0;            /* 📏 Aumentamos altura */
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif; /* 🔤 Nueva fuente */
}

.menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 20px;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #a4d4ff; /* Color al pasar el mouse */
}
