nav {
  background-color: #000000;
  padding: 1rem 2rem;
  z-index: 1000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
}

/* Nav sticky */
nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* .nav-menu li a:hover {
  color: #00ffc8;
} */

.nav-menu li.active a {
  border-radius: 10px;
  padding: 0.40rem;
}

/* Botón hamburguesa */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  z-index: 101;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    padding: 0.5rem 0;
  }
}
