
/* NAVBAR BASE */
.navbar {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

/* CONTENEDOR */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* MENÚ */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu li a:hover {
  color: #ffb400;
}

/* BOTÓN CTA */
.cta-nav a {
  background: #ffb400;
  color: black;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-nav a:hover {
  background: #e6a200;
}

/* MENÚ MÓVIL */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #0a2540;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cta-nav {
    display: none;
  }
}
