/* ==========================================================================
   COMPONENTS — ESTÉTICA EJECUTIVA & MÁXIMA LEGIBILIDAD
   Navegación, Héroe Split, Métricas, Tarjetas de Objetivos, Timeline,
   Showcase de Hoteles y Lugares, Formularios y Pase Oficial
   ========================================================================== */

/* ============================================
   NAVEGACIÓN PRINCIPAL
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all var(--t-med) var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(45, 79, 56, 0.12);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--forest-border);
  object-fit: cover;
}

.logo-text { line-height: 1.15; }

.logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
}

.logo-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-top: 2px;
}

/* Links del menú */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-green);
  transition: width var(--t-med) var(--ease);
}

.nav-link:hover {
  color: var(--forest-green);
}

.nav-link.active {
  color: var(--forest-green);
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

/* Acciones derecha del nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  background: var(--forest-soft);
  border: 1px solid var(--forest-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  max-width: 220px;
}

.user-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-green);
  flex-shrink: 0;
}

.user-name-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-nav-logout {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.btn-nav-logout:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
  background: var(--forest-soft);
}

/* Hamburger para móvil */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}

/* ============================================
   HÉROE SPLIT (PÁGINA PRINCIPAL - INICIO)
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(88vh - var(--nav-h));
  margin-top: var(--nav-h);
  background: var(--cream);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 6vw;
  background: #FAF8F3;
  position: relative;
  z-index: 1;
}

.hero-split-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.8rem 0 1.2rem 0;
}

.hero-split-text h1 em {
  color: var(--forest-green);
  font-style: italic;
  font-weight: 600;
}

.hero-split-text p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.hero-split-photo {
  position: relative;
  overflow: hidden;
  background: #EAE6DC;
  min-height: 400px;
}

.hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   HÉROE COMPACTO PARA PÁGINAS INTERIORES
   (PROGRAMA, LOGÍSTICA, TURISMO, ALIMENTACIÓN)
   ============================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 290px;
  margin-top: var(--nav-h);
  background: #FAF8F3;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-inner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 3rem 2.2rem 6vw;
  background: #FAF8F3;
  position: relative;
  z-index: 1;
}

.hero-inner-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 3.9rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0.25rem 0 0.7rem 0;
  letter-spacing: -0.01em;
}

.hero-inner-text h1 em {
  color: var(--forest-green);
  font-style: italic;
  font-weight: 600;
}

.hero-inner-text .divider {
  margin: 0 0 0.8rem 0;
}

.hero-inner-text .page-title-sub {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 0;
}

.hero-inner-photo {
  position: relative;
  overflow: hidden;
  background: #EAE6DC;
  min-height: 260px;
}

.hero-inner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-inner-photo .hero-photo-label {
  bottom: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.66rem;
}

/* Etiqueta flotante inferior de la foto */
.hero-photo-label {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #FAF8F3;
  border: 1px solid var(--forest-border);
  color: var(--forest-green);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  z-index: 5;
}

/* Cuenta Regresiva Compacta y Elegante */
.countdown {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.18);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.countdown-item {
  padding: 0.65rem 1.15rem;
  text-align: center;
  position: relative;
}

.countdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.countdown-num {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--forest-green);
  display: block;
}

.countdown-lbl {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.2rem;
}

/* Marca de agua del año en fondo de héroe */
.hero-year-bg {
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
  font-family: var(--serif);
  font-size: 8.5rem;
  font-weight: 700;
  color: rgba(45, 79, 56, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ============================================
   SECCIÓN DE ESTADÍSTICAS / MÉTRICAS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem 0;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.stat-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  flex-shrink: 0;
  background: #FFFFFF;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  display: block;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  display: block;
  line-height: 1.35;
}

/* ============================================
   GRID DE OBJETIVOS ESTRATÉGICOS (6 TARJETAS)
   ============================================ */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.objective-card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.14);
  border-radius: 6px;
  padding: 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all var(--t-med) var(--ease);
}

.objective-card:hover {
  transform: translateY(-2px);
  border-color: var(--forest-green);
  box-shadow: 0 6px 20px rgba(45, 79, 56, 0.08);
}

.objective-icon-box {
  width: 44px;
  height: 44px;
  background: var(--forest-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  flex-shrink: 0;
}

.objective-title {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.objective-text {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   INFO GRID & INFO CARDS (CONTACTOS Y VESTIMENTA)
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.16);
  border-left: 4px solid var(--forest-green);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.info-card-body {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.info-highlight {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--forest-green);
}

/* ============================================
   HUB DE ACCESOS RÁPIDOS
   ============================================ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.hub-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med) var(--ease);
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
}

.hub-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hub-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.hub-card-desc {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.hub-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-green);
  transition: gap var(--t-fast) var(--ease);
}

.hub-card:hover .hub-arrow {
  gap: 0.7rem;
  color: var(--forest-dark);
}

/* ============================================
   SHOWCASE GRID (HOTELES, TURISMO, RESTAURANTES)
   ============================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.showcase-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med) var(--ease);
}

.showcase-card:hover {
  transform: translateY(-3px);
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
}

.sc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #EAE6DC;
}

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.showcase-card:hover .sc-img {
  transform: scale(1.03);
}

.sc-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFFFFF;
  color: var(--forest-green);
  border: 1px solid var(--forest-border);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sc-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sc-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 0.9rem;
}

.sc-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.sc-highlight {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border-left: 3px solid var(--forest-green);
  padding: 0.6rem 0.9rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.2rem;
}

.sc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.chip {
  background: var(--forest-soft);
  border: 1px solid var(--forest-border);
  color: var(--forest-green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.sc-code-box {
  background: var(--cream);
  border: 1px dashed var(--forest-border);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 1.2rem;
}

.sc-code-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 0.2rem;
}

/* ============================================
   TABS DE NAVEGACIÓN (EN UNA SOLA LÍNEA SIN RECORTES)
   ============================================ */
.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 0.4rem 0.5rem 1.2rem 0.5rem;
  margin: 0 auto 2.2rem auto;
  max-width: 100%;
  justify-content: flex-start;
}

.tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .tabs {
    justify-content: center;
  }
}

.tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.65rem 1.15rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(45, 79, 56, 0.16);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all var(--t-fast) var(--ease);
}

.tab-btn:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
  background: #FAF8F3;
}

.tab-btn.active {
  background: var(--forest-green);
  color: #FFFFFF;
  border-color: var(--forest-green);
  box-shadow: 0 4px 14px rgba(45, 79, 56, 0.22);
}

/* ============================================
   LÍNEA DE TIEMPO / ITINERARIO (PROGRAMA)
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 2.2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 7px;
  width: 2px;
  background: rgba(45, 79, 56, 0.22);
}

.tl-item {
  position: relative;
  margin-bottom: 2rem;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-marker {
  position: absolute;
  left: -2.2rem;
  top: 1.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest-green);
}

.tl-body {
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.14);
  border-radius: 8px;
  padding: 1.8rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med) var(--ease);
}

.tl-body:hover {
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tl-item--featured .tl-body {
  background: #FAF8F3;
  border: 1.5px solid var(--forest-green);
  border-left: 5px solid var(--forest-green);
  box-shadow: var(--shadow-md);
}

.tl-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.tl-time {
  display: inline-flex;
  align-items: center;
  background: var(--forest-soft);
  border: 1px solid var(--forest-border);
  color: var(--forest-green);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.85rem;
  border-radius: 4px;
}

.tl-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.tl-location svg {
  color: var(--forest-green);
}

.tl-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.tl-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.tl-desc p {
  margin-bottom: 0.45rem;
}

/* ============================================
   FORMULARIOS, OPCIONES & ACREDITACIÓN
   ============================================ */
.form-shell {
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.18);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.form-section-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0 1.2rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-section-title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.form-control, .form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  transition: all var(--t-fast) var(--ease);
}

.form-control:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px var(--forest-soft);
}

/* Selector de opciones (Radio buttons estilizados) */
.option-grid {
  display: grid;
  gap: 1rem;
}

.option-label {
  background: #FAF8F3;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}

.option-label input[type="radio"], .option-label input[type="checkbox"] {
  accent-color: var(--forest-green);
  margin-top: 3px;
}

.option-label:hover {
  border-color: var(--forest-green);
  background: #FFFFFF;
}

.option-label.selected {
  border-color: var(--forest-green);
  background: var(--forest-soft);
}

.option-content-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.option-content-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Tags de alergias */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-pill {
  padding: 0.45rem 0.95rem;
  background: #FAF8F3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  user-select: none;
}

.tag-pill:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
}

.tag-pill.active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: #FFFFFF;
}

/* Pase Oficial VIP / QR Pass */
.vip-pass {
  background: #FFFFFF;
  border: 1.5px solid var(--forest-green);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto 3rem auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.vip-pass::before {
  content: 'ACREDITACIÓN OFICIAL ILD 2026';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--forest-green);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.25rem 1rem;
  border-radius: 100px;
}

.pass-header {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.pass-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.pass-field-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 0.2rem;
}

.pass-field-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.pass-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

/* ============================================
   FOOTER INSTITUCIONAL
   ============================================ */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-border);
  object-fit: cover;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-tagline {
  font-size: 0.84rem;
  color: var(--ink-muted);
  max-width: 600px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.footer-link:hover {
  color: var(--forest-green);
}

.footer-copy {
  font-size: 0.74rem;
  color: var(--ink-faint);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.5rem;
  width: 100%;
}

/* ============================================
   PANTALLA DE ACCESO / LOGIN & TOASTS
   ============================================ */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: var(--cream);
}

.login-card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 79, 56, 0.18);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.login-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--forest-border);
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.login-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.login-sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.demo-box {
  margin-top: 2rem;
  padding: 1.2rem;
  background: #FAF8F3;
  border: 1px dashed var(--forest-border);
  border-radius: 6px;
  text-align: left;
}

.demo-lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 0.6rem;
}

.demo-pill {
  display: inline-block;
  background: var(--forest-soft);
  border: 1px solid var(--forest-border);
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin: 0.2rem;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}

.demo-pill:hover {
  background: var(--forest-green);
  color: #FFFFFF;
}

/* Toast Notifications */
.toast-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
}

.toast {
  background: #FFFFFF;
  border-left: 4px solid var(--forest-green);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  animation: fadeUp 0.3s var(--ease);
}

