/* ══════════════════════════════════════════════════════════════
   nav-shared.css — Tipografía y componentes del menú unificados
   con el nav del home (index.html). Se vincula en TODAS las
   páginas interiores para que las opciones y la tipografía del
   menú sean consistentes en todo el sitio.
   Valores hardcodeados (no var()) a propósito: algunas páginas
   interiores no cargan home.css ni site.css, así que este archivo
   no puede depender de custom properties definidas en otro lado.
   ══════════════════════════════════════════════════════════════ */

.nav-links,
.nav-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-family: "Barlow Condensed", "Helvetica Neue", Helvetica, sans-serif;
}

.nav-links a,
.nav-center a {
  font-family: "Barlow Condensed", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6a64;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 9px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-center a:hover {
  color: #f95760;
}

.nav-links a.active,
.nav-center a.active {
  color: #121212;
}

.nav-links .nav-sep,
.nav-center .nav-sep {
  width: 1px;
  height: 16px;
  background: #e5e3dc;
  flex-shrink: 0;
  margin: 0 4px;
}

/* Pill "Assessment · Gratis" — mismo componente que el home */
.nav-asmt-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-asmt-badge {
  display: inline-block;
  background: #f95760;
  color: #fff;
  font-family: "Barlow Condensed", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 999px;
  line-height: 1.2;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav-asmt-pill:hover .nav-asmt-badge {
  background: #121212;
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-center {
    display: none;
  }
}
