/* ── NAVBAR GLOBAL — único para todo el sitio ── */
.navbar-global {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #111;
}

/* CTA — amarillo, nunca verde */
.navbar-cta {
  background: #F8B000;
  color: #111111;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: #e0a000;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar-global {
    padding: 14px 24px;
  }
  .navbar-links {
    display: none;
  }
}

@media (max-width: 540px) {
  .navbar-global {
    padding: 12px 16px;
  }
  .navbar-cta {
    font-size: 12px;
    padding: 9px 16px;
  }
}
