/* ==========================================================================
   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;
  width: 100%;
  height: var(--nav-h);
  background: #FFFFFF;
  border-top: 3px solid var(--yellow-primary);
  border-bottom: 1px solid rgba(25, 116, 169, 0.12);
  z-index: 1000;
  transition: all var(--t-med) var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(16, 83, 122, 0.08);
  border-bottom-color: rgba(25, 116, 169, 0.2);
}

/* Pantalla completa sin encajonar */
.nav .container,
.nav .container.nav-inner,
.nav-inner {
  max-width: 100% !important;
  width: 100% !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4vw !important;
  margin: 0 !important;
}

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

.logo-brand-img {
  height: 40px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.05));
  transition: transform var(--t-fast) var(--ease);
}

.logo:hover .logo-brand-img {
  transform: scale(1.02);
}

.logo-sep {
  width: 1px;
  height: 28px;
  background: rgba(25, 116, 169, 0.22);
}

.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(--blue-primary);
  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: 2.5px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-dark));
  box-shadow: 0 0 6px rgba(241, 205, 83, 0.6);
  border-radius: 2px;
  transition: width var(--t-med) var(--ease);
}

.nav-link:hover {
  color: var(--blue-primary);
}

.nav-link.active {
  color: var(--blue-primary);
  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.38rem 0.95rem;
  background: var(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  border: 1.5px solid var(--yellow-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow-badge-text);
  max-width: 220px;
  box-shadow: 0 2px 8px rgba(245, 200, 42, 0.25);
}

.user-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-primary);
  box-shadow: 0 0 8px var(--yellow-primary);
  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: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}

.btn-nav-logout:hover {
  background: rgba(192, 57, 43, 0.08);
  color: #C0392B;
  border-color: rgba(192, 57, 43, 0.2);
}

/* ── SELECTOR DE IDIOMAS (ES / EN / FR) ───────────── */
.lang-selector-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(25, 116, 169, 0.25);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue-primary);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.lang-btn-current:hover,
.lang-selector-dropdown.open .lang-btn-current {
  background: rgba(25, 116, 169, 0.06);
  border-color: var(--blue-primary);
  box-shadow: 0 3px 10px rgba(25, 116, 169, 0.15);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  letter-spacing: 0.05em;
}

.lang-arrow {
  transition: transform var(--t-fast) var(--ease);
  color: var(--ink-muted);
}

.lang-selector-dropdown.open .lang-arrow {
  transform: rotate(180deg);
  color: var(--blue-primary);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(25, 116, 169, 0.18);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10, 52, 77, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 0.4rem;
  min-width: 140px;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1050;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-selector-dropdown.open .lang-menu {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all var(--t-fast) var(--ease);
}

.lang-option:hover {
  background: rgba(25, 116, 169, 0.08);
  color: var(--blue-primary);
}

.lang-option.active {
  background: rgba(241, 205, 83, 0.2);
  color: var(--ink);
  font-weight: 700;
}

.lang-option .lang-short {
  font-size: 0.7rem;
  color: var(--ink-faint);
  margin-left: auto;
}

.lang-option .lang-check {
  color: var(--blue-primary);
  margin-left: 0.25rem;
}

/* Botón Iniciar Sesión en Navbar con acento dorado */
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  color: var(--yellow-badge-text);
  border: 1.5px solid var(--yellow-border);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(245, 200, 42, 0.28);
}

.btn-nav-login:hover {
  background: var(--yellow-primary);
  border-color: var(--yellow-dark);
  color: #121A21;
  box-shadow: 0 4px 16px rgba(245, 200, 42, 0.45);
  transform: translateY(-1px);
}

.btn-nav-login svg {
  color: var(--yellow-dark);
  transition: transform var(--t-fast) var(--ease);
}

.btn-nav-login:hover svg {
  color: #121A21;
  transform: translateX(2px);
}

/* ──────── ANIMACIÓN CON DESTELLO DE LUZ AMARILLA PARA PÁGINAS DESBLOQUEADAS (ÚNICA & EFÍMERA) ──────── */
@keyframes yellowGleamPop {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    background: transparent;
    box-shadow: 0 0 0 0 rgba(241, 205, 83, 0);
  }
  40% {
    opacity: 1;
    transform: translateY(1px) scale(1.08);
    background: rgba(241, 205, 83, 0.22);
    box-shadow: 0 0 16px 4px rgba(241, 205, 83, 0.65);
    border-radius: 6px;
  }
  75% {
    transform: translateY(0) scale(1.02);
    background: rgba(241, 205, 83, 0.08);
    box-shadow: 0 0 8px 1px rgba(241, 205, 83, 0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: transparent;
    box-shadow: none;
  }
}

@keyframes yellowBeamSweep {
  0% {
    left: -120%;
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.9;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

@keyframes yellowStarBeacon {
  0% {
    transform: scale(0.3);
    opacity: 0;
    box-shadow: 0 0 0px 0px rgba(241, 205, 83, 0);
  }
  35% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px 3px #F1CD53, 0 0 16px 4px rgba(241, 205, 83, 0.5);
  }
  70% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 0 6px 1px #F1CD53;
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
    box-shadow: 0 0 0px 0px rgba(241, 205, 83, 0);
  }
}

.nav-item-unlocked {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  overflow: visible;
  animation: yellowGleamPop 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Destello de luz diagonal que cruza el enlace */
.nav-item-unlocked::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 30%,
    rgba(241, 205, 83, 0.9) 50%,
    rgba(255, 255, 255, 0.35) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
  animation: yellowBeamSweep 0.65s ease-out both;
}

/* Pequeño destello estelar en la esquina superior */
.nav-item-unlocked::after {
  content: '';
  position: absolute;
  top: 0px;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F1CD53;
  border: 1px solid #FFFFFF;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  animation: yellowStarBeacon 0.65s ease-in-out 1 forwards;
}

.nav-item-unlocked:nth-child(4) { animation-delay: 0.06s; }
.nav-item-unlocked:nth-child(4)::before { animation-delay: 0.06s; }
.nav-item-unlocked:nth-child(4)::after { animation-delay: 0.06s; }

.nav-item-unlocked:nth-child(5) { animation-delay: 0.14s; }
.nav-item-unlocked:nth-child(5)::before { animation-delay: 0.14s; }
.nav-item-unlocked:nth-child(5)::after { animation-delay: 0.14s; }

.nav-item-unlocked:nth-child(6) { animation-delay: 0.22s; }
.nav-item-unlocked:nth-child(6)::before { animation-delay: 0.22s; }
.nav-item-unlocked:nth-child(6)::after { animation-delay: 0.22s; }

/* Hamburger para móvil */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(25, 116, 169, 0.05);
  border: 1px solid rgba(25, 116, 169, 0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: all var(--t-fast) var(--ease);
}
.hamburger:hover {
  background: rgba(25, 116, 169, 0.1);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--blue-primary);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--blue-primary);
}

/* ============================================
   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: #F1CD53;
  position: relative;
  border-bottom: 1px solid rgba(217, 155, 26, 0.4);
}

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

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

.hero-split-text h1 em {
  color: #0A344D;
  font-style: italic;
  font-weight: 700;
  text-shadow: none;
}

.hero-split-text p {
  font-size: 0.98rem;
  color: #1A2E3B;
  font-weight: 500;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.hero-split-photo {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  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: #FFFFFF;
  position: relative;
  border-bottom: 1px solid rgba(25, 116, 169, 0.12);
}

.hero-inner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 3rem 2.2rem 6vw;
  background-color: #FFFFFF;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(241, 205, 83, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(25, 116, 169, 0.04) 0%, transparent 50%),
    radial-gradient(rgba(25, 116, 169, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  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(--yellow-dark);
  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: var(--ivory);
  min-height: 250px;
}

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

/* Badge Flotante en Héroe con destello amarillo */
.hero-floating-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #FFFFFF;
  color: var(--yellow-badge-text);
  border: 1.5px solid var(--yellow-primary);
  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: 6px;
  box-shadow: 0 4px 18px rgba(241, 205, 83, 0.25);
  white-space: nowrap;
  z-index: 5;
}

.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 con Acento Dorado */
.countdown {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--yellow-border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(241, 205, 83, 0.15);
  overflow: hidden;
  z-index: 2;
  position: relative;
}

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

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

.countdown-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow-dark);
  display: block;
  text-shadow: 0 0 12px rgba(241, 205, 83, 0.3);
}

.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(241, 205, 83, 0.08);
  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(25, 116, 169, 0.1);
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
  background: var(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  box-shadow: 0 3px 12px rgba(245, 200, 42, 0.35);
  transition: transform var(--t-fast) var(--ease);
}

.stat-item:hover .stat-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(245, 200, 42, 0.5);
}

.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(25, 116, 169, 0.14);
  border-radius: 8px;
  padding: 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(16, 83, 122, 0.04);
  transition: all var(--t-med) var(--ease);
}

.objective-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow-primary);
  box-shadow: 0 8px 24px rgba(245, 200, 42, 0.3);
}

.objective-icon-box {
  width: 46px;
  height: 46px;
  background: var(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  border: 1.5px solid var(--yellow-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 200, 42, 0.25);
}

.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(25, 116, 169, 0.14);
  border-left: 4px solid var(--yellow-primary);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast) var(--ease);
}

.info-card:hover {
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-md), 0 0 12px rgba(241, 205, 83, 0.15);
}

.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(--yellow-dark);
}

/* ============================================
   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: 8px;
  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);
  position: relative;
  overflow: hidden;
}

.hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--yellow-primary));
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-md), 0 0 14px rgba(241, 205, 83, 0.18);
}

.hub-card:hover::before {
  opacity: 1;
}

.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(--blue-primary);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.hub-card:hover .hub-arrow {
  gap: 0.7rem;
  color: var(--yellow-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(25, 116, 169, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med) var(--ease);
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-md), 0 0 16px rgba(241, 205, 83, 0.2);
}

.sc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--ivory);
}

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

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

.sc-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFFFFF;
  color: var(--yellow-badge-text);
  border: 1.5px solid var(--yellow-primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(241, 205, 83, 0.28);
}

.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(--blue-primary);
  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(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  border-left: 4px solid var(--yellow-primary);
  border-top: 1px solid var(--yellow-border);
  border-right: 1px solid var(--yellow-border);
  border-bottom: 1px solid var(--yellow-border);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(245, 200, 42, 0.18);
}

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

.chip {
  background: var(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  border: 1.5px solid var(--yellow-border);
  color: var(--yellow-badge-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(245, 200, 42, 0.2);
}

.sc-code-box {
  background: var(--cream);
  border: 1.5px dashed var(--yellow-border);
  border-radius: 6px;
  padding: 0.75rem 0.95rem;
  margin-bottom: 1.2rem;
}

.sc-code-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  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.2rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(25, 116, 169, 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(--yellow-primary);
  color: var(--yellow-dark);
  background: var(--yellow-soft);
}

.tab-btn.active {
  background: var(--blue-primary);
  color: #FFFFFF;
  border-color: var(--yellow-primary);
  box-shadow: 0 4px 14px rgba(25, 116, 169, 0.25), 0 0 10px rgba(241, 205, 83, 0.4);
  position: relative;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--yellow-primary);
  border-radius: 2px;
}

/* ============================================
   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: linear-gradient(180deg, var(--yellow-primary) 0%, rgba(25, 116, 169, 0.3) 100%);
}

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

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

.tl-node {
  position: absolute;
  left: -2.2rem;
  top: 1.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--yellow-primary);
  box-shadow: 0 0 0 4px rgba(245, 200, 42, 0.3);
  z-index: 2;
}

.tl-item--featured .tl-node {
  background: var(--yellow-primary);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--yellow-primary), 0 0 14px rgba(245, 200, 42, 0.8);
}

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

.tl-body:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow-primary);
  transform: translateX(4px);
}

.tl-item--featured .tl-body {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 95% 15%, rgba(245, 200, 42, 0.22) 0%, transparent 45%), linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
  border: 1.5px solid var(--yellow-primary);
  border-left: 5px solid var(--yellow-primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 200, 42, 0.28);
}

.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(--yellow-soft-gradient, linear-gradient(135deg, #FEF0AB 0%, #FEE078 100%));
  border: 1.5px solid var(--yellow-border);
  color: var(--yellow-badge-text);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.38rem 0.95rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(245, 200, 42, 0.22);
}

.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(--yellow-dark);
}

.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(25, 116, 169, 0.16);
  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(25, 116, 169, 0.12);
}

.form-section-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow-primary);
  color: #121A21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(241, 205, 83, 0.4);
}

.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: 1.5px solid rgba(25, 116, 169, 0.18);
  border-radius: 6px;
  transition: all var(--t-fast) var(--ease);
}

.form-control:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(241, 205, 83, 0.25);
}

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

.option-label {
  background: #FFFFFF;
  border: 1.5px solid rgba(25, 116, 169, 0.14);
  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(--yellow-dark);
  margin-top: 3px;
}

.option-label:hover {
  border-color: var(--yellow-primary);
  background: var(--yellow-soft);
}

.option-label.selected {
  border-color: var(--yellow-primary);
  background: var(--yellow-soft);
  box-shadow: 0 2px 8px rgba(241, 205, 83, 0.15);
}

.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: #FFFFFF;
  border: 1px solid rgba(25, 116, 169, 0.16);
  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(--yellow-primary);
  color: var(--yellow-dark);
  background: var(--yellow-soft);
}

.tag-pill.active {
  background: var(--yellow-primary);
  border-color: var(--yellow-dark);
  color: #121A21;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(241, 205, 83, 0.3);
}

/* Pase Oficial VIP / QR Pass */
.vip-pass {
  background: #FFFFFF;
  border: 2px solid var(--yellow-primary);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto 3rem auto;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(241, 205, 83, 0.18);
  position: relative;
}

.vip-pass::before {
  content: 'ACREDITACIÓN OFICIAL ILD 2026';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--yellow-dark) 100%);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.3rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(241, 205, 83, 0.35);
}

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

.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(--blue-primary);
  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(25, 116, 169, 0.2);
}

/* ============================================
   FOOTER INSTITUCIONAL
   ============================================ */
.site-footer {
  background: #FFFFFF;
  border-top: 3px solid var(--yellow-primary);
  padding: 4rem 0 3rem 0;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(241, 205, 83, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.footer-logo-brand {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow-primary);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(241, 205, 83, 0.3);
}

.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(--yellow-dark);
}

.footer-copy {
  font-size: 0.74rem;
  color: var(--ink-faint);
  border-top: 1px solid rgba(25, 116, 169, 0.1);
  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-color: var(--cream);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(241, 205, 83, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(25, 116, 169, 0.06) 0%, transparent 40%),
    radial-gradient(rgba(25, 116, 169, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

.login-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(241, 205, 83, 0.4);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(241, 205, 83, 0.12);
  position: relative;
}

.login-brand-logo {
  height: 56px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.4rem auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.login-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--yellow-primary);
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 12px rgba(241, 205, 83, 0.35);
}

.saludo-brand-logo {
  height: 54px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.admin-brand-logo {
  height: 38px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  display: block;
}

.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: var(--yellow-soft);
  border: 1.5px dashed var(--yellow-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(--yellow-badge-text);
  margin-bottom: 0.6rem;
}

.demo-pill {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid var(--yellow-border);
  color: var(--yellow-badge-text);
  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(--yellow-primary);
  color: #121A21;
}

/* 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(--yellow-primary);
  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);
}

.btn-login-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #1974A9;
  background: var(--blue-primary, #1974A9);
  color: #FFFFFF !important;
  border: 1px solid #10537A;
  padding: 0.95rem 1.5rem;
  border-radius: 8px;
  font-family: var(--sans, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  box-shadow: 0 4px 16px rgba(25, 116, 169, 0.25);
  margin-top: 1.8rem;
}

.btn-login-submit:hover {
  background: #F1CD53;
  background: var(--yellow-primary, #F1CD53);
  border-color: #D99B1A;
  color: #121A21 !important;
  box-shadow: 0 6px 20px rgba(241, 205, 83, 0.4);
  transform: translateY(-1px);
}

/* ──────── SECCIÓN DE ARTE CONMEMORATIVO UNESCO DE FONDO COMPLETO ──────── */
.section-unesco-banner {
  position: relative;
  background-color: #F1CD53;
  background-image: url('../assets/images/unesco_literacy_illustration.jpg');
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(217, 155, 26, 0.4);
  border-bottom: 1px solid rgba(217, 155, 26, 0.4);
  padding: 4.5rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.unesco-banner-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .section-unesco-banner {
    background-size: contain;
    background-position: right center;
  }
  .unesco-banner-content {
    max-width: 500px;
  }
}

@media (max-width: 900px) {
  .section-unesco-banner {
    background-position: center top !important;
    background-size: 100% auto !important;
    padding: clamp(140px, 44vw, 250px) 0 2.5rem !important;
    min-height: auto !important;
    display: block !important;
  }
  
  .unesco-banner-content {
    max-width: 100% !important;
    margin-top: 1rem !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

