/* Networking Quest - design tokens (CNX Club, offline, sin CDN) */

:root {
  /* Navy de marca (flyer CNX EXPERIENCE): azul-marino profundo */
  --navy-950: #091634;
  --navy-900: #0d1f42;
  --navy-800: #132a52;
  --navy: #17335f;
  --navy-600: #1b365d;
  /* Lima neón: acento oficial del flyer */
  --green: #b7df1f;         /* relleno/acento de marca (CTA) */
  --green-bright: #ccf23f;  /* lima brillante para glow y acentos sobre navy */
  --green-dark: #56790c;    /* verde legible sobre superficies claras */
  --lime-glow: rgba(183, 223, 31, .45);
  --white: #ffffff;
  --light: #f5f7fa;
  --gray-100: #eef1f5;
  --gray-300: #cbd3dd;
  --gray-500: #6c757d;
  --gray-700: #3c4652;
  --text: #2b3440;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(11, 31, 51, .06);
  --shadow-md: 0 14px 34px rgba(11, 31, 51, .10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 51, .18);
  --container: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: var(--light);
}

/* Superficies del navegador tematizadas a la marca CNX */
::selection {
  background: var(--green);
  color: var(--navy-950);
}

:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}

* {
  scrollbar-color: var(--green-dark) transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--navy-600);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

/* ===== Participante: layout mobile-first con bottom nav ===== */

.nq-participante {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--light);
}

.nq-participante__content {
  flex: 1 1 auto;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 16px 96px;
  box-sizing: border-box;
}

.nq-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.nq-bottom-nav__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
  padding: 8px 4px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}

.nq-bottom-nav__item:hover {
  color: var(--white);
  text-decoration: none;
}

.nq-bottom-nav__item.active {
  color: var(--green-bright);
}

.nq-bottom-nav__icon {
  font-size: 20px;
  line-height: 1;
}

.nq-entrar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 100vh;
  padding: 32px 24px;
  /* Campo de red con glow lima, como el flyer CNX EXPERIENCE */
  background:
    radial-gradient(1100px 460px at 12% -12%, rgba(183, 223, 31, .12), transparent 60%),
    radial-gradient(900px 480px at 108% 112%, rgba(183, 223, 31, .10), transparent 55%),
    radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1.6px) 0 0 / 24px 24px,
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
}

/* Bloque de marca del front door */
.nq-entrar__brand {
  text-align: center;
  color: var(--white);
}

.nq-entrar__wordmark {
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.nq-entrar__wordmark em {
  font-style: normal;
  color: var(--green-bright);
  text-shadow: 0 0 22px var(--lime-glow);
}

.nq-entrar__brand-sub {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.nq-entrar__tagline {
  margin: 16px 0 0;
  font-size: clamp(.8rem, 3.4vw, .95rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.nq-entrar__tagline span {
  color: var(--white);
}

.nq-entrar__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.nq-entrar__title {
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}

.nq-entrar__error {
  color: #b3261e;
  font-weight: 600;
}

/* ===== Inicio ===== */

.nq-inicio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nq-inicio__perfil {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.nq-inicio__selfie {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: var(--gray-100);
}

.nq-inicio__selfie--vacio {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.nq-inicio__nombre {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.nq-inicio__empresa,
.nq-inicio__puesto {
  margin: 2px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.nq-inicio__stats {
  display: flex;
  gap: 12px;
}

.nq-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 8px;
}

.nq-stat__icon {
  font-size: 22px;
}

.nq-stat__valor {
  font-size: 22px;
  font-weight: 700;
}

.nq-stat__etiqueta {
  font-size: 12px;
  color: var(--gray-300);
}

.nq-inicio__acciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nq-boton-grande {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}

.nq-boton-grande:hover,
.nq-boton-grande:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nq-boton-grande__icon {
  font-size: 28px;
}

/* ===== Mi tarjeta ===== */

.nq-tarjeta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.nq-tarjeta__hint {
  color: var(--gray-700);
  font-size: 14px;
  margin: 0;
}

.nq-tarjeta__codigo {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
}

.nq-tarjeta__qr {
  width: 200px;
  height: 200px;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.nq-tarjeta__card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.nq-tarjeta__nombre {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.nq-tarjeta__linea {
  margin: 4px 0;
  color: var(--gray-700);
  font-size: 14px;
}

.nq-tarjeta__linea--oculto {
  color: var(--gray-500);
  font-style: italic;
}

.nq-tarjeta__contacto {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-300);
}

/* ===== Mi carta ===== */

.nq-carta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nq-carta__vacia {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 20px;
  text-align: center;
  color: var(--gray-700);
}

.nq-carta__progreso-texto {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.nq-carta__barra {
  margin-top: 6px;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-300);
  overflow: hidden;
}

.nq-carta__barra-relleno {
  height: 100%;
  background: var(--green);
  transition: width .3s var(--ease);
}

.nq-carta__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nq-casilla {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  border-left: 4px solid var(--gray-300);
}

.nq-casilla--completa {
  border-left-color: var(--green);
}

.nq-casilla__cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nq-casilla__tipo {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.nq-casilla__criterio {
  margin: 6px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.nq-casilla__foto {
  margin-top: 10px;
  width: 100%;
  border-radius: var(--radius);
  max-height: 200px;
  object-fit: cover;
}

/* ===== Ranking ===== */

.nq-ranking {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nq-ranking__titulo {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.nq-ranking__vacio {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 20px;
  text-align: center;
  color: var(--gray-700);
}

.nq-ranking__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nq-ranking-fila {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  border-left: 4px solid var(--gray-300);
}

.nq-ranking-fila--yo {
  border-left-color: var(--green);
  background: #f2f9e9;
  box-shadow: var(--shadow-md);
}

.nq-ranking-fila__posicion {
  flex: 0 0 auto;
  min-width: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.nq-ranking-fila--yo .nq-ranking-fila__posicion {
  color: var(--green-dark);
}

.nq-ranking-fila__datos {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nq-ranking-fila__nombre {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nq-ranking-fila--yo .nq-ranking-fila__nombre {
  color: var(--green-dark);
}

.nq-ranking-fila__empresa {
  font-size: 13px;
  color: var(--gray-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nq-ranking-fila__puntos {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

/* ===== Programa ===== */

.nq-programa {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nq-programa__titulo {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.nq-programa__sede,
.nq-programa__fechas {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
}

.nq-programa__cuerpo {
  margin-top: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.nq-programa__vacio {
  margin: 0;
  color: var(--gray-700);
  text-align: center;
}

/* ===== Admin: login ===== */

.nq-login__campo {
  text-align: left;
  margin-bottom: 14px;
}

.nq-login__campo label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.nq-login__input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
}

.nq-login__input:focus {
  outline: none;
  border-color: var(--navy);
}

.nq-login__boton {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: none;
  border-radius: var(--radius);
  /* CTA de marca: lima neón + texto navy (como el flyer) */
  background: var(--green);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}

.nq-login__boton:hover {
  background: var(--green-bright);
  box-shadow: 0 10px 26px var(--lime-glow);
  transform: translateY(-1px);
}

.nq-login__boton:active {
  transform: translateY(0);
}

/* ===== Admin: layout ===== */

.nq-admin {
  min-height: 100vh;
  background: var(--light);
}

.nq-admin__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 14px 24px;
  box-shadow: var(--shadow-md);
}

.nq-admin__brand {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.nq-admin__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1 1 auto;
}

.nq-admin__link {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}

.nq-admin__link:hover {
  color: var(--white);
  text-decoration: none;
  background: var(--navy-800);
}

.nq-admin__link.active {
  color: var(--white);
  background: var(--navy);
}

.nq-admin__cuenta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nq-admin__email {
  font-size: 13px;
  color: var(--gray-300);
}

.nq-admin__salir {
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color .18s var(--ease);
}

.nq-admin__salir:hover {
  background: var(--navy-800);
}

.nq-admin__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

.nq-admin__titulo {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.nq-admin__card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.nq-admin__tabla {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.nq-admin__tabla th,
.nq-admin__tabla td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid var(--gray-300);
}

.nq-admin__error {
  color: var(--danger, #c0392b);
  font-size: 13px;
}

.nq-admin__ok {
  color: var(--success, #2e7d32);
  font-size: 13px;
}

.nq-monitor__contadores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.nq-monitor__contador {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.nq-monitor__contador-valor {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1.1;
}

.nq-monitor__contador-etiqueta {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nq-monitor__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nq-monitor__accion {
  padding: 6px 12px;
  border: none;
  border-radius: var(--radius);
  background: var(--danger, #c0392b);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}

.nq-monitor__accion:hover {
  opacity: .9;
}

/* Pantalla - dashboard de evento en vivo (proyector/TV) */

.nq-pantalla {
  min-height: 100vh;
  width: 100%;
  /* Campo de red con glow lima para leerse de lejos (identidad flyer) */
  background:
    radial-gradient(1400px 600px at 8% -8%, rgba(183, 223, 31, .10), transparent 58%),
    radial-gradient(1200px 620px at 104% 108%, rgba(183, 223, 31, .09), transparent 55%),
    radial-gradient(circle, rgba(255, 255, 255, .045) 1px, transparent 1.6px) 0 0 / 30px 30px,
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  padding: 32px 48px;
  box-sizing: border-box;
}

.nq-pantalla__marca {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.nq-pantalla__marca span {
  color: var(--white);
}

.nq-pantalla__vacio {
  font-size: 32px;
  text-align: center;
  margin-top: 120px;
  color: var(--gray-300);
}

.nq-pantalla__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nq-pantalla__titulo {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  letter-spacing: .5px;
}

.nq-pantalla__reloj {
  font-size: 32px;
  font-weight: 600;
  color: var(--green-bright);
}

.nq-pantalla__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.nq-pantalla-bloque {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  grid-row: span 1;
}

.nq-pantalla-bloque:first-child {
  grid-row: 1 / span 2;
}

.nq-pantalla-bloque__titulo {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--green-bright);
}

.nq-pantalla-bloque__vacio {
  font-size: 22px;
  color: var(--gray-300);
}

.nq-pantalla-top {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nq-pantalla-top__fila {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  font-size: 26px;
}

.nq-pantalla-top__fila--destacada {
  background: rgba(139, 195, 74, .18);
  border: 1px solid rgba(164, 206, 78, .5);
  font-size: 30px;
  font-weight: 700;
}

.nq-pantalla-top__posicion {
  font-weight: 800;
  color: var(--green-bright);
  text-align: center;
}

.nq-pantalla-top__nombre {
  font-weight: 600;
  color: var(--white);
}

.nq-pantalla-top__empresa {
  color: var(--gray-300);
  font-size: .75em;
}

.nq-pantalla-top__puntos {
  font-weight: 800;
  color: var(--green-bright);
  white-space: nowrap;
}

.nq-pantalla-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nq-pantalla-lista__fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  font-size: 22px;
}

.nq-pantalla-lista__texto {
  font-weight: 600;
  color: var(--white);
}

.nq-pantalla-lista__hora {
  color: var(--green-bright);
  font-size: .7em;
  white-space: nowrap;
}

.nq-programa__texto {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* ===== Estaciones (participante) ===== */

.nq-estaciones__momento {
  margin: 24px 0 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nq-estaciones__momento:first-child {
  margin-top: 0;
}

.nq-estaciones__lista {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .nq-estaciones__lista {
    grid-template-columns: 1fr 1fr;
  }
}

.nq-estacion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 84px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  border-left: 4px solid var(--gray-300);
  text-decoration: none;
  color: inherit;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}

.nq-estacion--disponible {
  cursor: pointer;
}

.nq-estacion--disponible:hover,
.nq-estacion--disponible:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.nq-estacion--disponible:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.nq-estacion--completada {
  border-left-color: var(--green);
  background: #f2f9e9;
}

.nq-estacion--bloqueada {
  border-left-color: var(--gray-300);
  background: var(--gray-100);
  color: var(--gray-500);
  cursor: default;
  box-shadow: none;
  opacity: .75;
}

.nq-estacion--bloqueada:hover {
  transform: none;
  box-shadow: none;
}

.nq-estacion__cabecera {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nq-estacion__numero {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.nq-estacion--bloqueada .nq-estacion__numero {
  background: var(--gray-500);
}

.nq-estacion--completada .nq-estacion__numero {
  background: var(--green-dark);
}

.nq-estacion__nombre {
  flex: 1 1 auto;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  min-width: 0;
}

.nq-estacion--bloqueada .nq-estacion__nombre {
  color: var(--gray-700);
}

.nq-estacion__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nq-estacion__puntos {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}

.nq-estacion--bloqueada .nq-estacion__puntos {
  color: var(--gray-500);
}

.nq-estacion__estado {
  font-size: 12px;
  color: var(--gray-700);
}

.nq-estacion--completada .nq-estacion__estado {
  color: var(--green-dark);
  font-weight: 600;
}

.nq-estacion--bloqueada .nq-estacion__estado {
  color: var(--gray-500);
}

/* ===== Estación: detalle ===== */

.nq-estacion__titulo {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.nq-estacion__objetivo {
  margin: 0 0 16px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
}

.nq-estacion__instrucciones {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
}

.nq-estacion__ok {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
  background: #f2f9e9;
  border-radius: var(--radius);
  padding: 14px 16px;
}
