/* ═══════════════════════════════════════════════════
   FIDEL 100 — Estilos principales
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────── */
:root {
  --color-bg:        #0a0a0a;
  --color-surface:   #111111;
  --color-surface2:  #1a1a1a;
  --color-border:    #2a2a2a;
  --color-gold:      #c9a84c;
  --color-gold-light:#e8c97a;
  --color-text:      #e8e4dc;
  --color-muted:     #8a8278;
  --color-accent:    #8b1a1a;

  --font-serif:      'Playfair Display', Georgia, serif;
  --font-sans:       'Lato', system-ui, sans-serif;
  --font-body:       'EB Garamond', Georgia, serif;

  --max-w:           1200px;
  --section-pad:     7rem 0;
  --radius:          4px;

  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilidades ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.hidden    { display: none !important; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 2.5rem;
}
.section-desc {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ─── Botones ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--color-gold-light); transform: translateY(-2px); }

.link-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--color-gold-light); }

/* ════════════════════════════════════════════════════
   INTRO SCREEN
═══════════════════════════════════════════════════ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
}

/* ── FASE 1: Splash ── */
#intro-splash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  z-index: 3;
  overflow-y: auto;
}
.splash-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(139,26,26,0.25) 0%, transparent 70%),
    #000;
  z-index: 0;
}
.splash-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 5vh 1rem 5vh;
  min-height: 100%;
  justify-content: center;
}

/* ── Tipografía compartida splash / collage ── */
.intro-year {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0,0,0,0.9);
  margin-bottom: 0.6rem;
}
.intro-title em {
  font-style: italic;
  color: var(--color-gold);
}
.intro-slogan {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.intro-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Botón "Iniciar experiencia" */
#intro-start-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  animation: fadeSlideUp 1s 1.2s both;
}
#intro-start-btn:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-2px);
}
.btn-play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-play-icon svg { width: 16px; height: 16px; margin-left: 2px; }

/* ── FASE 2: Slideshow ── */
#intro-show {
  position: absolute;
  inset: 0;
}

/* Dos slides alternados para el crossfade */
.show-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: grayscale(20%) brightness(0.75) contrast(1.1);
  transform: scale(1.07);
}

/* Viñeta oscura en los bordes — efecto cine */
#show-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center,
      transparent 30%,
      rgba(0,0,0,0.55) 70%,
      rgba(0,0,0,0.88) 100%);
}

/* Pie de foto sutil */
#show-caption {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* ── Controles flotantes durante el collage ── */
#intro-controls {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#audio-toggle {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
#audio-toggle svg { width: 20px; height: 20px; }
#audio-toggle:hover { background: rgba(255,255,255,0.15); }

#intro-skip-btn {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}
#intro-skip-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── FASE 3: Botón "Entrar" ── */
#intro-enter {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10vh;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}
.enter-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  opacity: 0;
}
#intro-enter-btn {
  opacity: 0;
  padding: 1.1rem 3rem;
  background: var(--color-gold);
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
#intro-enter-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
#site-header.scrolled .header-top {
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

/* Header top bar with bandera and GAP text */
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 5px 2rem;
  background: rgba(6,6,6,0.88);
  border-bottom: 2px solid #002a8f;
  height: 42px;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.header-bandera {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.header-gap-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* GAP flag logo in header nav */
.logo-gap {
  width: 58px;
  height: auto;
  display: block;
  margin-right: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

/* Chapter indicator strip */
#chapter-strip {
  position: fixed;
  top: 92px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  padding: 10px 0 6px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, top 0.3s ease;
}
#site-header.scrolled ~ #chapter-strip {
  top: 56px;
}
#chapter-strip.visible {
  opacity: 1;
  transform: translateY(0);
}
.chapter-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.chapter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-surface3, #222);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2px;
}
.chapter-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.chapter-dot span {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: transparent;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
  padding: 2px 8px;
  border-radius: 3px;
  background: transparent;
}
.chapter-dot.active span {
  color: #000;
  background: var(--color-gold);
}
.chapter-line {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  margin: 7px 6px 0;
}

/* Footer GAP logo */
.footer-gap-logo {
  display: block;
  width: 110px;
  height: auto;
  opacity: 1;
  margin: 1.2rem 0 0.5rem;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.6));
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { border-color: var(--color-gold); transform: translateY(14px) scale(1.05); }
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-serif);
}
.logo-fidel {
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.logo-100 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

#main-nav ul {
  display: flex;
  gap: 2.5rem;
}
#main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
#main-nav a:hover { color: #fff; }
#main-nav a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

/* ════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-swiper {
  position: absolute;
  inset: 0;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--color-gold); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 7rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 750px;
  margin-bottom: 0.8rem;
}
.hero-slogan {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--color-gold-light);
  max-width: 680px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-style: italic;
}

/* ── Bandera decorativa strip ── */
.bandera-strip {
  display: flex;
  height: 14px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.bandera-strip-invert { transform: scaleX(-1); }
.bandera-stripe       { flex: 1; }
.bandera-stripe.blue  { background: #002a8f; }
.bandera-stripe.white { background: #f0f0f0; }
.bandera-triangle {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 56px;
}
.bandera-triangle svg { width: 100%; height: 100%; }

/* ── Bandera flotante en el Hero ── */
.hero-bandera {
  position: absolute;
  bottom: 3.5rem;
  right: 2.5rem;
  z-index: 3;
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.75));
  opacity: 0.95;
}

/* ── Logo GAP flotante en el Hero ── */
.hero-gap-logo {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  z-index: 3;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7));
  opacity: 0.95;
}

/* ── Sección Por qué este especial ── */
.section-porque {
  padding: 6rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.porque-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
}
.porque-flag {
  display: flex;
  justify-content: center;
}
.css-flag {
  width: 340px;
  height: 204px;
  display: flex;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
}
.flag-stripes {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fs       { flex: 1; }
.fs.blue  { background: #002a8f; }
.fs.white { background: #fff; }
.flag-triangle {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
}
.flag-triangle svg { width: 100%; height: 100%; display: block; }
.porque-texto .lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.porque-texto p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(232,228,220,0.8);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.porque-gap-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.porque-gap-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
  flex-shrink: 0;
}
.porque-firma {
  color: var(--color-gold) !important;
  font-size: 1rem !important;
  margin: 0 !important;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.2); opacity: 1; }
}

/* ════════════════════════════════════════════════════
   TITULARES
═══════════════════════════════════════════════════ */
.section-titulares {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.titulares-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
}
.titular-card {
  background: var(--color-surface2);
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
  transition: transform var(--transition);
}
.titular-card:hover { transform: translateY(-4px); }
.titular-featured { grid-row: 1 / 3; grid-template-rows: 320px 1fr; }
.titular-img {
  background-size: cover;
  background-position: center top;
  position: relative;
}
.titular-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.titular-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.titular-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.titular-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-text);
}
.titular-featured h3 { font-size: 1.6rem; }
.titular-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  flex: 1;
}

/* ════════════════════════════════════════════════════
   CITA DESTACADA
═══════════════════════════════════════════════════ */
.section-quote {
  padding: 6rem 0;
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}
.section-quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(0,0,0,0.2);
  line-height: 1;
  pointer-events: none;
}
.section-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1.5rem;
}
.section-quote blockquote cite {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-style: normal;
}

/* ════════════════════════════════════════════════════
   DISCURSO / CONTENT SECTIONS
═══════════════════════════════════════════════════ */
.section-content {
  padding: var(--section-pad);
  background: var(--color-bg);
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.content-text .lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.content-text p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(232,228,220,0.8);
  margin-bottom: 1.2rem;
}
.aside-quote {
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: var(--color-surface);
  margin-bottom: 2rem;
}
.aside-quote blockquote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.aside-quote blockquote cite {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.aside-foto img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.aside-foto img:hover { filter: grayscale(0%); }
.foto-caption {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════ */
.section-timeline {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.timeline {
  position: relative;
  max-width: 800px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-gold) 10%, var(--color-gold) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 76px;
  top: 6px;
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}
.timeline-year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
  text-align: right;
  padding-right: 1rem;
  padding-top: 2px;
}
.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-family: var(--font-body);
}

/* ════════════════════════════════════════════════════
   EDITORIAL
═══════════════════════════════════════════════════ */
.section-editorial {
  background: var(--color-surface2);
}
.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.editorial-main .lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.editorial-main p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(232,228,220,0.8);
  margin-bottom: 1.2rem;
}
.sidebar-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-img-stack img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(30%);
  transition: filter var(--transition);
}
.sidebar-img-stack img:first-child { aspect-ratio: 3/4; }
.sidebar-img-stack img:hover { filter: grayscale(0%); }

/* ════════════════════════════════════════════════════
   GALERÍA
═══════════════════════════════════════════════════ */
.section-galeria {
  padding: var(--section-pad);
  background: var(--color-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item-overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* ════════════════════════════════════════════════════
   OPINIÓN
═══════════════════════════════════════════════════ */
.section-opinion {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.opinion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.opinion-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.opinion-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.opinion-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.opinion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.opinion-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.opinion-header strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text);
}
.opinion-header span {
  font-size: 0.78rem;
  color: var(--color-muted);
}
.opinion-card blockquote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(232,228,220,0.85);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.footer-brand .logo-fidel { font-family: var(--font-serif); font-size: 2rem; font-style: italic; color: #fff; }
.footer-brand .logo-100  { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 900; color: var(--color-gold); }
.footer-brand p {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-links h4, .footer-social h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-text); }
.social-icons { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-icons a {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
  border-radius: 2px;
}
.social-icons a svg { width: 18px; height: 18px; }
.social-icons a:hover { border-color: var(--color-gold); color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--color-muted); text-align: center; }

/* ════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 101;
  background: transparent;
  pointer-events: none;
}
#scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  transition: width 0.15s ease;
}

/* ════════════════════════════════════════════════════
   SECTION ALTERNATE BACKGROUND
   ═══════════════════════════════════════════════════ */
.section-alt {
  background: var(--color-surface);
}

/* ════════════════════════════════════════════════════
   LOGROS GRID
   ═══════════════════════════════════════════════════ */
.logros-cita {
  border-left: 3px solid var(--color-gold);
  padding: 1.2rem 1.5rem 1.2rem 2rem;
  margin-bottom: 2.5rem;
  background: rgba(201,168,76,0.05);
}
.logros-cita p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.logros-cita cite {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.logros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 2.5rem;
}
.logro-card {
  background: var(--color-surface2);
  padding: 1.8rem;
  transition: transform var(--transition);
}
.logro-card:hover { transform: translateY(-3px); }
.logro-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.logro-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.logro-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.timeline-note {
  font-style: italic;
  margin-top: 3rem;
}
.leer-mas-link {
  text-align: center;
  margin-top: 2rem;
}

/* ════════════════════════════════════════════════════
   MODAL — Leer más
   ═══════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 1rem 2rem;
  overflow-y: auto;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  cursor: pointer;
}
.modal-card {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--color-surface);
  z-index: 2;
}
.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}
.modal-body {
  padding: 2rem;
}
.modal-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(232,228,220,0.85);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.modal-body .lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.btn-close {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.3rem;
  transition: color var(--transition);
}
.btn-close:hover { color: var(--color-text); }

/* ════════════════════════════════════════════════════
   MUSIC FLOAT BUTTON
   ═══════════════════════════════════════════════════ */
.music-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.music-float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
}
.music-float-btn svg { width: 20px; height: 20px; }
.music-float-btn:hover { border-color: var(--color-gold); }
.music-float.muted .music-float-btn { color: var(--color-muted); }
.music-slider-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 6px 10px;
}
.music-icon-small {
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1;
}
#music-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
#music-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease;
}
#music-volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
#music-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  border: none;
}

/* ════════════════════════════════════════════════════
   QUOTE DARK VARIANT
   ═══════════════════════════════════════════════════ */
.section-quote-dark {
  background: var(--color-bg);
}

.section-quote-grande blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

/* Hasta la Victoria Siempre */
.victoria-block {
  text-align: center;
  padding: 2rem 0;
}
.victoria-star {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}
.victoria-text {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-style: italic;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.victoria-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

/* Splash bandera */
.splash-bandera {
  width: clamp(300px, 46vw, 560px);
  height: auto;
  display: block;
  margin-bottom: 1.4rem;
  opacity: 1;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.8));
}
.splash-gap {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

/* Header bandera */
.header-bandera {
  height: 30px;
  width: auto;
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════════════════
   SECTION BACKGROUND IMAGES
   ═══════════════════════════════════════════════════ */
.section-bg {
  position: relative;
  background: none;
}
.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.2;
  filter: grayscale(100%) contrast(1.3) brightness(0.6);
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, rgba(10,10,10,0.85) 30%, rgba(10,10,10,0.85) 70%, var(--color-bg) 100%);
  pointer-events: none;
}
.section-alt .section-bg-overlay {
  background: linear-gradient(to bottom, var(--color-surface) 0%, rgba(17,17,17,0.85) 30%, rgba(17,17,17,0.85) 70%, var(--color-surface) 100%);
}
.section-bg .container { position: relative; z-index: 1; }
.section-bg .content-text p,
.section-bg .section-title,
.section-bg .section-label {
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ════════════════════════════════════════════════════
   INTERACTIVE MAPS (SVG)
   ═══════════════════════════════════════════════════ */
.section-map {
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.map-container {
  width: 100%;
  height: 520px;
  position: relative;
  background: #070f18;
  border: 1px solid #1a2a3a;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.map-container svg {
  width: 100%;
  height: 100%;
  display: block;
}
.map-route {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2.5;
  stroke-dasharray: 6 4;
  opacity: 0.8;
}
.map-route-arrow {
  fill: var(--color-gold);
  opacity: 0.85;
}
.map-marker-dot {
  fill: var(--color-accent);
  stroke: var(--color-gold-light);
  stroke-width: 2;
}
.map-marker-ring {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  opacity: 0.6;
}
.map-marker-star text {
  font-size: 16px;
  fill: var(--color-gold-light);
  text-anchor: middle;
  dominant-baseline: central;
}
.map-label {
  font-family: var(--font-sans);
  font-size: 11px;
  fill: var(--color-muted);
  letter-spacing: 0.05em;
}
.map-label strong {
  fill: var(--color-text);
  font-weight: 700;
}
.map-title {
  font-family: var(--font-serif);
  font-size: 14px;
  fill: var(--color-text);
  font-weight: 700;
}
.map-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  font-style: italic;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .porque-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .porque-flag  { order: -1; }
  .css-flag     { width: 260px; height: 156px; }

  .logros-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout,
  .editorial-layout { grid-template-columns: 1fr; }
  .content-aside { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --section-pad: 4rem 0; }

  .logros-grid { grid-template-columns: 1fr; }

  #main-nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main-nav.open { transform: translateX(0); }
  #main-nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  #main-nav a { font-size: 1.1rem; }
  .nav-hamburger { display: flex; }

  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item::after { left: 56px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .music-float { bottom: 1rem; right: 1rem; }
  .back-to-top { bottom: 1rem; right: 4.5rem; }
  .map-container { height: 340px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .intro-title { font-size: 5rem; }
  .section-quote-grande blockquote p { font-size: 2rem; }
}

/* ════════════════════════════════════════════════════
   GALERÍA DE INFANCIA / JUVENTUD
═══════════════════════════════════════════════════ */
.infancia-galeria {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}
.infancia-titulo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.infancia-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.infancia-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.infancia-item:first-child {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.infancia-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.infancia-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.05);
}
.infancia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.8rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.infancia-item:hover .infancia-overlay { opacity: 1; }
.infancia-year {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
  display: block;
}
.infancia-overlay p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 700px) {
  .infancia-grid { grid-template-columns: repeat(2, 1fr); }
  .infancia-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 420px) {
  .infancia-grid { grid-template-columns: 1fr; }
  .infancia-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .infancia-overlay { opacity: 1; }
}

/* ═══ CHILE Y FIDEL ═══ */
.chile-galeria {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.chile-foto, .chile-foto-sm {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.chile-foto img, .chile-foto-sm img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.chile-foto figcaption, .chile-foto-sm figcaption {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 0.5rem 0.75rem;
  background: rgba(0,0,0,0.55);
}
.chile-fotos-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .chile-fotos-extra { grid-template-columns: 1fr; }
}
