.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --verde:    #2dbb72;
  --verde2:   #7ae8b0;
  --violeta:  #6b2fa8;
  --violeta2: #c4a0f0;
  --negro:    #0e0e1a;
  --negro2:   #161428;

  --font-display: 'Cinzel', serif;
  --font-body:    'Raleway', sans-serif;

  --ease-out: cubic-bezier(0.16,1,0.3,1);

  --section-pad: 120px 0 100px;
  --inner-max:   1100px;
  --inner-pad:   0 48px;

  --line-grad:   linear-gradient(to right, transparent, var(--violeta) 35%, var(--verde) 65%, transparent);
  --line-grad-r: linear-gradient(to right, transparent, var(--verde) 35%, var(--violeta) 65%, transparent);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--negro); font-family: var(--font-body); color: #fff; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }


.sep-line {
  position: absolute; left: 0; width: 100%; height: 1px;
  background: var(--line-grad);
}
.sep-line.top    { top: 0; }
.sep-line.bottom { bottom: 0; }
.sep-line.rev    { background: var(--line-grad-r); }

.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); z-index: 0;
  animation: orbPulse ease-in-out infinite alternate;
}
@keyframes orbPulse {
  from { transform: scale(1);    opacity: 0.6; }
  to   { transform: scale(1.18); opacity: 1;   }
}

.eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--verde); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: linear-gradient(to right, transparent, var(--verde));
  flex-shrink: 0;
}

.inner {
  max-width: var(--inner-max); margin: 0 auto;
  padding: var(--inner-pad); position: relative; z-index: 10;
}

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; color: #fff; line-height: 1.08;
  margin: 0 0 16px;
}
.section-title em { font-style: normal; color: var(--verde); }

.section-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.75;
  margin: 0 0 60px;
}

.badge {
  display: inline-block;
  font-size: 10px; padding: 3px 12px; border-radius: 20px;
  vertical-align: middle; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-verde   { background: rgba(26,155,125,0.15); border: 1px solid rgba(26,155,125,0.4); color: var(--verde2); }
.badge-violeta { background: rgba(86,54,109,0.2);   border: 1px solid rgba(86,54,109,0.5);  color: var(--violeta2); }

.card-num {
  display: none;
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--verde2); background: rgba(7,6,13,0.75);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(26,155,125,0.3); z-index: 2;
}

.img-wrap { width: 100%; overflow: hidden; position: relative; }
.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(25%) contrast(1.05);
  transition: filter .5s ease, transform .6s ease;
}
.img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(5,5,8,0.96) 100%);
  pointer-events: none;
}

.acent-card {
  background: var(--negro); position: relative; overflow: hidden;
  transition: background 0.3s;
}
.acent-card:hover { background: #0a0812; }
.acent-card:hover .img-wrap img { filter: grayscale(0%) contrast(1.1); transform: scale(1.05); }
.acent-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--violeta), var(--verde));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease; z-index: 3;
}
.acent-card:hover::before { transform: scaleX(1); }

.card-pad { padding: 18px 20px 24px; }
.card-origin { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--verde); font-weight: 600; margin-bottom: 7px; }
.card-name   { font-family: var(--font-display); font-size: clamp(15px,1.8vw,22px); font-weight: 700; color: #fff; line-height: 1.1; margin: 0 0 10px; }
.card-desc   { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.65; }

.sub-label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--violeta2); font-weight: 600;
  margin-bottom: 26px; display: flex; align-items: center; gap: 12px;
}
.sub-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(86,54,109,0.4), transparent); }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pill {
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(86,54,109,0.45); border-radius: 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violeta2); background: rgba(86,54,109,0.07);
  transition: border-color 0.3s, background 0.3s;
}
.pill:hover { border-color: rgba(86,54,109,0.8); background: rgba(86,54,109,0.15); }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  height: 68px; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,8,0.95), transparent);
  transition: background 0.4s;
}
#nav.scrolled { background: rgba(5,5,8,0.97); backdrop-filter: blur(20px); }

.nav-logo img { height: 38px; transition: filter 0.4s; }
.nav-logo img:hover { filter: drop-shadow(0 0 12px rgba(26,155,125,0.6)); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--verde); transition: width 0.3s; }
.nav-links a:hover { color: var(--verde2); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px; border: 1px solid var(--verde);
  color: var(--verde); font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  position: relative; overflow: hidden; transition: color 0.3s;
}
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--verde); transform: translateX(-101%); transition: transform 0.3s; z-index: -1; }
.nav-cta:hover { color: var(--negro); }
.nav-cta:hover::before { transform: translateX(0); } 

#hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  cursor: pointer; background: none; border: none; z-index: 950;
}
#hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.75); transition: transform 0.4s var(--ease-out), opacity 0.3s, width 0.3s; transform-origin: center; }
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg);  background: var(--verde); }
#hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--verde); }

#mobile-menu {
  position: fixed; inset: 0; background: rgba(5,5,8,0.97);
  backdrop-filter: blur(24px); z-index: 800;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
}
#mobile-menu.open { transform: translateX(0); pointer-events: all; }
#mobile-menu a {
  color: rgba(255,255,255,0.5); font-size: 22px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 20px 0; border-bottom: 1px solid rgba(86,54,109,0.2);
  opacity: 0; transform: translateX(20px);
  transition: color 0.3s, padding-left 0.3s, opacity 0.4s, transform 0.4s;
}
#mobile-menu.open a { opacity: 1; transform: translateX(0); }
#mobile-menu.open a:nth-child(1) { transition-delay: 0.07s; }
#mobile-menu.open a:nth-child(2) { transition-delay: 0.12s; }
#mobile-menu.open a:nth-child(3) { transition-delay: 0.17s; }
#mobile-menu.open a:nth-child(4) { transition-delay: 0.22s; }
#mobile-menu.open a:nth-child(5) { transition-delay: 0.27s; }
#mobile-menu a:hover { color: var(--verde2); padding-left: 10px; }
.menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: border-color 0.3s, color 0.3s;
}
.menu-close:hover { border-color: var(--verde); color: var(--verde); }
.menu-close svg { width: 18px; height: 18px; }

#mobile-menu .mob-cta {
  margin-top: 36px; text-align: center;
  border: 1px solid var(--verde) !important;
  color: var(--verde) !important; font-weight: 700 !important;
  border-bottom: 1px solid var(--verde) !important;
  letter-spacing: 0.2em !important;
}
#mobile-menu .mob-cta:hover { background: var(--verde); color: var(--negro) !important; padding-left: 0 !important; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 110px 24px 90px;
  background: var(--negro);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
#rays { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; font-weight: 600; margin: 0 0 36px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1.2s forwards;
  position: relative; z-index: 10;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--verde)); flex-shrink: 0;
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--verde)); }

.hero-logo-wrap {
  margin: 0 0 36px; opacity: 0; transform: translateY(28px);
  animation: fadeUp 1.1s ease 1.45s forwards;
  position: relative; z-index: 10;
}
.hero-logo-inner { animation: levitate 4s ease-in-out infinite; display: inline-block; }
.hero-logo-wrap img {
  width: clamp(300px, 52vw, 620px);
  filter: drop-shadow(0 0 30px rgba(26,155,125,0.3)) drop-shadow(0 0 70px rgba(86,54,109,0.2));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.8vw, 19px);
  letter-spacing: 0.32em; text-transform: uppercase;
  margin: 0 0 52px; position: relative; z-index: 10;
  color: rgba(255,255,255,0.9);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1s ease 1.75s forwards;
}

.infobar {
  display: flex; position: relative; z-index: 10;
  border: 1px solid rgba(86,54,109,0.4); border-radius: 8px; overflow: hidden;
  margin: 0 0 48px;
  background: rgba(5,5,8,0.55); backdrop-filter: blur(14px);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1s ease 1.95s forwards;
}
.infobar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(26,155,125,0.5), rgba(86,54,109,0.5), transparent);
}
.infobar-item { display: flex; align-items: center; gap: 14px; padding: 18px 36px; transition: background 0.3s; }
.infobar-item:hover { background: rgba(26,155,125,0.05); }
.infobar-item + .infobar-item { border-left: 1px solid rgba(86,54,109,0.3); }
.info-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(26,155,125,0.08); border: 1px solid rgba(26,155,125,0.25);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.infobar-item:hover .info-icon { background: rgba(26,155,125,0.15); border-color: rgba(26,155,125,0.5); box-shadow: 0 0 16px rgba(26,155,125,0.2); }
.info-icon svg { width: 16px; height: 16px; stroke: var(--verde); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.info-label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); font-weight: 500; margin-bottom: 3px; }
.info-value { display: block; font-size: 17px; font-weight: 500; color: #fff; white-space: nowrap; }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 10;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1s ease 2.15s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 48px; background: var(--verde); color: var(--negro);
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--verde); position: relative; overflow: hidden; transition: color 0.3s;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--negro); transform: translateY(101%); transition: transform 0.4s var(--ease-out); }
.btn-primary:hover { color: var(--verde); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: transparent;
  color: rgba(255,255,255,0.85); font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55); transition: border-color 0.3s, color 0.3s;
}
.btn-secondary:hover { border-color: rgba(201,180,217,0.5); color: var(--violeta2); }

/* Fondo video hero */
#hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: opacity 1.2s ease;
}
#hero-video.hidden { opacity: 0; pointer-events: none; }
#hero-poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
#hero-poster.visible { opacity: 1; }
#hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14,14,26,0.3) 0%,
    rgba(14,14,26,0.1) 40%,
    rgba(14,14,26,0.55) 75%,
    rgba(14,14,26,0.92) 100%
  );
}


/* ═══════════════════════════════════════════════════════
   SOBRE EL FESTIVAL
═══════════════════════════════════════════════════════ */
#sobre {
  background: var(--negro2); position: relative; overflow: hidden;
  padding: var(--section-pad);
}
#sobre .orb-a { width: 600px; height: 600px; right: -200px; top: -100px; background: radial-gradient(circle, rgba(86,54,109,0.17) 0%, transparent 70%); animation-duration: 9s; }
#sobre .orb-b { width: 400px; height: 400px; left: -100px; bottom: -80px; background: radial-gradient(circle, rgba(26,155,125,0.12) 0%, transparent 70%); animation-duration: 11s; animation-direction: alternate-reverse; }

.sf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sf-heading { font-family: var(--font-display); font-size: clamp(32px,4.5vw,56px); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 28px; }
.sf-heading em { font-style: normal; color: var(--verde); }
.sf-text { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.52); margin: 0 0 18px; }
.sf-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(86,54,109,0.14); border: 1px solid rgba(86,54,109,0.24);
  border-radius: 12px; overflow: hidden;
}
.stat { background: var(--negro2); padding: 38px 28px; text-align: center; position: relative; transition: background 0.3s; }
.stat-full { grid-column: 1 / -1; }
.stat:hover { background: rgba(26,155,125,0.04); }
.stat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 32px; height: 1px; background: var(--verde); opacity: 0; transition: opacity 0.3s, width 0.3s; }
.stat:hover::after { opacity: 1; width: 56px; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(38px,5vw,58px); font-weight: 700; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--verde2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.32); line-height: 1.4; }
.stat-sub   { display: block; font-size: 10px; color: rgba(26,155,125,0.7); margin-top: 5px; }

/* ═══════════════════════════════════════════════════════
   GALA INTERNACIONAL
═══════════════════════════════════════════════════════ */
#gala {
  background: var(--negro); position: relative; overflow: hidden;
  padding: var(--section-pad);
}
#gala .orb-a { width: 500px; height: 500px; left: -150px; top: 50px; background: radial-gradient(circle, rgba(86,54,109,0.2) 0%, transparent 70%); animation-duration: 10s; }
#gala .orb-b { width: 400px; height: 400px; right: -100px; bottom: 0; background: radial-gradient(circle, rgba(26,155,125,0.14) 0%, transparent 70%); animation-duration: 13s; animation-direction: alternate-reverse; }

.mc-card {
  display: grid; grid-template-columns: 320px 1fr;
  border: 1px solid rgba(86,54,109,0.3); border-radius: 12px;
  overflow: hidden; background: rgba(86,54,109,0.05);
  position: relative; transition: border-color 0.4s; margin-bottom: 72px;
}
.mc-card:hover { border-color: rgba(86,54,109,0.6); }
.mc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(201,180,217,0.4), transparent); }
.mc-img-wrap { overflow: hidden; position: relative; min-height: 260px; }
.mc-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(20%) contrast(1.05); transition: filter .5s, transform .6s; }
.mc-card:hover .mc-img-wrap img { filter: grayscale(0%) contrast(1.1); transform: scale(1.03); }
.mc-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,13,0.95) 0%, transparent 45%); pointer-events: none; }
.mc-info { padding: 44px 44px 44px 38px; display: flex; flex-direction: column; justify-content: center; }
.mc-role { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--verde); font-weight: 600; margin-bottom: 10px; }
.mc-name { font-family: var(--font-display); font-size: clamp(26px,3.2vw,42px); font-weight: 700; color: #fff; line-height: 1.05; margin: 0 0 18px; }
.mc-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.8; max-width: 400px; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mc-tag { font-size: 10px; padding: 4px 13px; border: 1px solid rgba(26,155,125,0.3); border-radius: 20px; color: var(--verde2); }

.mc-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0; }
.mc-list .mc-card { margin-bottom: 0; border-radius: 0; }
.mc-list .mc-card:first-child { border-radius: 12px 12px 0 0; }
.mc-list .mc-card:last-child  { border-radius: 0 0 12px 12px; }

.grid-2 {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2px;
  background: rgba(86,54,109,0.12); border: 1px solid rgba(86,54,109,0.2);
  border-radius: 12px; overflow: hidden;
}
.grid-2 .img-wrap { aspect-ratio: 6/5; }

/* ═══════════════════════════════════════════════════════
   MAGIA DE CALLE
═══════════════════════════════════════════════════════ */
#calle {
  background: var(--negro2); position: relative; overflow: hidden;
  padding: var(--section-pad);
}
#calle .orb-a { width: 550px; height: 550px; right: -150px; top: 0; background: radial-gradient(circle, rgba(26,155,125,0.12) 0%, transparent 70%); animation-duration: 11s; }
#calle .orb-b { width: 400px; height: 400px; left: -100px; bottom: 50px; background: radial-gradient(circle, rgba(86,54,109,0.15) 0%, transparent 70%); animation-duration: 9s; animation-direction: alternate-reverse; }

.grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: rgba(26,155,125,0.07); border: 1px solid rgba(26,155,125,0.14);
  border-radius: 12px; overflow: hidden;
}
.grid-3 .acent-card { background: var(--negro2); }
.grid-3 .acent-card:hover { background: #0c0a16; }
.grid-3 .acent-card::before { background: linear-gradient(to right, var(--verde), var(--violeta)); }
.grid-3 .img-wrap { aspect-ratio: 3/4; }
.card-type { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verde); font-weight: 600; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════════
   PROGRAMA
═══════════════════════════════════════════════════════ */
#programa {
  background: var(--negro2); position: relative; overflow: hidden;
  padding: var(--section-pad);
}
#programa > .inner { max-width: 880px; }
#programa .orb-a { width: 500px; height: 500px; left: -150px; top: 0; background: radial-gradient(circle, rgba(86,54,109,0.17) 0%, transparent 70%); animation-duration: 10s; }
#programa .orb-b { width: 400px; height: 400px; right: -100px; bottom: 0; background: radial-gradient(circle, rgba(26,155,125,0.12) 0%, transparent 70%); animation-duration: 13s; animation-direction: alternate-reverse; }

.p-day { border-top: 1px solid rgba(86,54,109,0.22); }
.p-day:last-of-type { border-bottom: 1px solid rgba(86,54,109,0.22); }

.p-day-header {
  display: flex; align-items: center; gap: 20px; padding: 22px 0;
  cursor: pointer; transition: opacity 0.3s; user-select: none;
}
.p-day-header:hover { opacity: 0.82; }

.p-day-num {
  font-family: var(--font-display); font-size: clamp(34px,5vw,52px);
  font-weight: 700; color: rgba(255,255,255,0.06);
  line-height: 1; min-width: 58px; text-align: center; flex-shrink: 0; transition: color 0.3s;
}
.p-day.open .p-day-num, .p-day-header:hover .p-day-num { color: rgba(26,155,125,0.28); }

.p-day-info { flex: 1; }
.p-day-name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); font-weight: 500; margin-bottom: 3px; }
.p-day-date { font-family: var(--font-display); font-size: clamp(18px,2.4vw,26px); font-weight: 700; color: #fff; line-height: 1; }
.p-day-gala .p-day-date { color: var(--verde2); }

.p-day-count { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgb(202, 202, 202); font-weight: 500; flex-shrink: 0; }

.p-arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(86,54,109,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), background 0.3s;
}
.p-arrow svg { width: 12px; height: 12px; stroke: rgb(0, 255, 153); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.p-day.open .p-arrow { transform: rotate(180deg); border-color: var(--verde); background: rgba(26,155,125,0.08); }
.p-day.open .p-arrow svg { stroke: var(--verde); }

.p-events {
  max-height: 0; overflow: hidden; padding: 0 0 0 78px;
  transition: max-height 0.5s var(--ease-out), padding 0.4s;
}
.p-day.open .p-events { max-height: 1400px; padding: 0 0 26px 78px; }

.p-event { display: flex; gap: 20px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.p-event:last-child { border-bottom: none; }
.p-event-time { font-size: 12px; font-weight: 600; color: var(--verde); letter-spacing: 0.07em; min-width: 92px; flex-shrink: 0; }
.p-event-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.55; }
.p-event-desc strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.p-subblock {
  background: rgba(86,54,109,0.07); border: 1px solid rgba(86,54,109,0.2);
  border-radius: 8px; padding: 14px 18px; margin: 6px 0;
}
.p-subblock-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--violeta2); font-weight: 700; margin-bottom: 10px; }

.gala-block {
  background: rgba(26,155,125,0.05); border: 1px solid rgba(26,155,125,0.2);
  border-radius: 10px; padding: 22px 26px; margin-top: 4px;
}
.gala-block-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--verde); font-weight: 700; margin-bottom: 14px; }
.gala-presenter { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 12px; }
.gala-presenter span { color: var(--verde2); }
.gala-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gala-chip { font-size: 12px; padding: 5px 15px; border: 1px solid rgba(26,155,125,0.3); border-radius: 20px; color: rgba(255,255,255,0.58); background: rgba(26,155,125,0.05); }

.experiencias-box { margin-top: 60px; border: 1px solid rgba(86,54,109,0.3); border-radius: 12px; overflow: hidden; }
.experiencias-head { background: rgba(86,54,109,0.1); padding: 18px 26px; border-bottom: 1px solid rgba(86,54,109,0.2); }
.experiencias-head p { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--violeta2); font-weight: 700; }
.experiencias-body { padding: 26px; }
.experiencias-body p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0 0 12px; }
.experiencias-body p:last-child { margin: 0; }
.experiencias-body strong { color: rgba(255,255,255,0.8); font-weight: 500; }

.pdf-link-prog {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: rgba(26,155,125,0.08);
  border: 1px solid rgba(26,155,125,0.35); border-radius: 8px;
  color: var(--verde2); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.pdf-link-prog:hover { background: rgba(26,155,125,0.15); border-color: var(--verde); color: #fff; }
.pdf-link-prog svg { width: 18px; height: 18px; flex-shrink: 0; }
.pdf-link { margin-top: 44px; text-align: center; }
.pdf-link a {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 38px; border: 1px solid rgba(86,54,109,0.4); border-radius: 4px;
  color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.pdf-link a:hover { border-color: var(--verde); color: var(--verde2); background: rgba(26,155,125,0.05); }
.pdf-icon { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   ÁREA SECRETA
═══════════════════════════════════════════════════════ */
#areasecreta {
  background: var(--negro2); position: relative; overflow: hidden;
  padding: var(--section-pad);
}
#areasecreta .orb-a { width: 600px; height: 600px; left: -180px; top: -100px; background: radial-gradient(circle, rgba(86,54,109,0.22) 0%, transparent 70%); animation-duration: 10s; }
#areasecreta .orb-b { width: 450px; height: 450px; right: -120px; bottom: -80px; background: radial-gradient(circle, rgba(26,155,125,0.13) 0%, transparent 70%); animation-duration: 13s; animation-direction: alternate-reverse; }

.as-grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: center; }

.as-img-col { display: flex; justify-content: center; }
.as-img {
  width: 100%; max-width: 340px;
  filter: drop-shadow(0 0 40px rgba(26,155,125,0.25)) drop-shadow(0 0 80px rgba(86,54,109,0.2));
  animation: levitate 5s ease-in-out infinite;
}

.as-text { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.52); margin: 0 0 32px; }
.as-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.as-conf-list {
  border: 1px solid rgba(86,54,109,0.3); border-radius: 10px;
  overflow: hidden; margin-bottom: 32px;
}
.as-conf-item {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 22px; border-bottom: 1px solid rgba(86,54,109,0.18);
  transition: background 0.3s;
}
.as-conf-item:last-child { border-bottom: none; }
.as-conf-item:hover { background: rgba(86,54,109,0.08); }
.as-conf-speaker {
  font-size: 13px; font-weight: 700; color: var(--verde2);
  min-width: 150px; flex-shrink: 0; letter-spacing: 0.04em;
}
.as-conf-title { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); font-style: italic; }

.as-mystery {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(86,54,109,0.08); border: 1px solid rgba(86,54,109,0.3);
  border-radius: 10px; padding: 18px 22px; margin-bottom: 36px;
}
.as-mystery svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--violeta2); fill: none; stroke-width: 1.5; stroke-linecap: round; margin-top: 2px; }
.as-mystery p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }
.as-mystery p strong { color: var(--violeta2); font-weight: 600; }

@media (max-width: 960px) {
  .as-grid { grid-template-columns: 1fr; gap: 48px; }
  .as-img { max-width: 280px; }
  .as-img-col { margin-bottom: 8px; }
}
@media (max-width: 480px) {
  .as-img { max-width: 220px; }
  .as-conf-speaker { min-width: 120px; font-size: 12px; }
  .as-conf-title { font-size: 13px; }
}


/* ── Riddle ── */
.as-riddle {
  background: rgba(86,54,109,0.1); border: 1px solid rgba(86,54,109,0.35);
  border-radius: 16px; padding: 36px 32px; margin-top: 12px;
}
.as-riddle-icon { margin-bottom: 20px; }
.as-riddle-icon svg { width: 36px; height: 36px; stroke: var(--violeta2); }
.as-riddle-q {
  font-family: var(--font-display); font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.9); white-space: nowrap; flex-shrink: 0;
}
.as-riddle-form { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.as-riddle-input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 14px 18px; color: #fff; font-family: var(--font-body);
  font-size: 15px; outline: none; transition: border-color 0.3s;
}
.as-riddle-input:focus { border-color: var(--verde); }
.as-riddle-input.error { border-color: #e05555; animation: shake 0.4s ease; }
.as-riddle-input.success { border-color: var(--verde); }
.as-riddle-btn {
  background: var(--verde); border: none; border-radius: 8px;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s, transform 0.2s; flex-shrink: 0;
}
.as-riddle-btn:hover { background: #1fb89a; transform: scale(1.05); }
.as-riddle-btn svg { width: 20px; height: 20px; stroke: #fff; }
.as-riddle-msg { font-size: 13px; min-height: 18px; transition: color 0.3s; }
.as-riddle-msg.ok  { color: var(--verde2); }
.as-riddle-msg.err { color: #e05555; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-6px); }
  80%      { transform: translateX(6px); }
}

/* ── Modal Área Secreta ── */
#as-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center; padding: 20px;
}
#as-modal.open { display: flex; }
.as-modal-bg {
  position: absolute; inset: 0;
  background: rgba(7,6,13,0.85); backdrop-filter: blur(6px);
  cursor: pointer;
}
.as-modal-box {
  position: relative; z-index: 1;
  background: #0e0c1a; border: 1px solid rgba(86,54,109,0.5);
  border-radius: 20px; padding: 52px 60px; max-width: 950px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(86,54,109,0.15);
  animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.as-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.07); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.as-modal-close:hover { background: rgba(255,255,255,0.14); }
.as-modal-close svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); stroke-width: 2; }
.as-modal-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verde); font-weight: 600; margin-bottom: 12px; }
.as-modal-title { font-family: var(--font-display); font-size: 26px; color: #fff; line-height: 1.25; margin-bottom: 6px; }
.as-modal-title em { color: var(--violeta2); font-style: normal; }
.as-modal-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 28px; }
.as-modal-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.as-modal-conf {
  border: 1px solid rgba(86,54,109,0.3); border-radius: 10px;
  overflow: hidden; margin-bottom: 28px;
}
.as-modal-conf-item {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 22px; border-bottom: 1px solid rgba(86,54,109,0.18);
}
.as-modal-conf-item:last-child { border-bottom: none; }
.as-modal-conf-speaker { font-size: 13px; font-weight: 700; color: var(--verde2); min-width: 140px; flex-shrink: 0; }
.as-modal-conf-talk { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); font-style: italic; }
.as-modal-mystery {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(86,54,109,0.08); border: 1px solid rgba(86,54,109,0.3);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 32px;
}
.as-modal-mystery svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--violeta2); fill: none; stroke-width: 1.5; margin-top: 2px; }
.as-modal-mystery p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.as-modal-mystery p strong { color: var(--violeta2); font-weight: 600; }
.as-modal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.as-modal-col-right { border-left: 1px solid rgba(86,54,109,0.25); padding-left: 40px; display: flex; flex-direction: column; }
.as-modal-cta { display: inline-flex; margin-top: 20px; align-self: flex-start; }
@media (max-width: 700px) {
  .as-modal-box { padding: 36px 24px; max-height: 100dvh; border-radius: 16px; }
  .as-modal-cols { grid-template-columns: 1fr; gap: 24px; }
  .as-modal-col-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(86,54,109,0.25); padding-top: 24px; }
  .as-modal-cta { width: 100%; justify-content: center; }
  .as-modal-info-row { flex-wrap: wrap; }
  .as-modal-bg { pointer-events: none; }
}
.as-modal-saludo { font-family: var(--font-display); font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 14px; font-style: italic; }
.as-modal-section-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verde); font-weight: 700; margin: 24px 0 10px; }
.as-modal-conf-star { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.as-modal-conf-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 20px; border-bottom: 1px solid rgba(86,54,109,0.18); }
.as-modal-conf-item:last-child { border-bottom: none; }
.as-modal-conf-speaker { display: block; font-size: 13px; font-weight: 700; color: var(--verde2); margin-bottom: 3px; }
.as-modal-conf-talk { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.5; font-style: italic; }
.as-modal-info-row { display: flex; gap: 8px; margin: 24px 0; flex-wrap: wrap; }
.as-modal-info-item { flex: 1; min-width: 120px; display: flex; align-items: center; gap: 10px; background: rgba(26,155,125,0.07); border: 1px solid rgba(26,155,125,0.2); border-radius: 10px; padding: 14px 16px; }
.as-modal-info-item svg { width: 22px; height: 22px; stroke: var(--verde2); flex-shrink: 0; }
.as-modal-info-item div { display: flex; flex-direction: column; }
.as-modal-info-item strong { font-size: 14px; color: #fff; font-weight: 700; }
.as-modal-info-item span { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.as-modal-price { border-color: rgba(86,54,109,0.4); background: rgba(86,54,109,0.1); }
.as-modal-price svg { stroke: var(--violeta2); }
.as-modal-price strong { color: var(--violeta2); font-size: 18px; }
.as-modal-firma-wrap { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; margin-top: 20px; margin-bottom: 4px; }
.as-modal-vc-logo { height: 75px; margin-right:20px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.75; flex-shrink: 0; }
@media (max-width: 700px) { .as-modal-vc-logo { height: 30px; margin-right: 10px; } }
.as-modal-firma { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; font-style: italic; margin: 0; }
.as-modal-firma strong { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════════════════
   DON BENITO
═══════════════════════════════════════════════════════ */
#donbenito {
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.db-bg {
  position: absolute; inset: 0;
  background: url('../imgs/2026/don-benito-ciudad.png') center/cover no-repeat;
  background-attachment: fixed;
  filter: grayscale(30%) brightness(0.4); transform: scale(1.04); z-index: 0;
}
.db-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(7,6,13,0.5) 0%, rgba(7,6,13,0.15) 50%, rgba(245,244,240,0.88) 100%);
}
.db-content { position: relative; z-index: 10; padding: 80px 24px 130px; }
.db-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.5); margin: 0 0 18px; }
.db-title { font-family: var(--font-display); font-size: clamp(26px,4.5vw,56px); font-weight: 700; color: #fff; line-height: 1.15; }
.db-title em { font-style: normal; color: var(--verde); }
.db-rule { width: 60px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent); margin: 22px auto 0; }
.db-dossier {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 32px;
  padding: 12px 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px;
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.db-dossier:hover { border-color: var(--verde); color: var(--verde2); background: rgba(26,155,125,0.07); }
.db-dossier svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer { background: #fff; font-family: var(--font-body); padding: 60px 0 0; color: #1a1a1a; }
#footer .inner { max-width: 1200px; }

.ft-grid {
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: 0;
  padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ft-col { padding: 0 38px; }
.ft-col:first-child { padding-left: 0; }
.ft-col:last-child  { padding-right: 0; }
.ft-col + .ft-col { border-left: 1px solid rgba(0,0,0,0.07); }
.ft-col-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--verde); margin-bottom: 12px; }

.ft-org-logo { max-width: 130px; height: auto; margin-bottom: 22px; filter: grayscale(100%); opacity: 0.7; transition: filter 0.3s, opacity 0.3s; }
.ft-negrito-logo { max-width: 160px; height: auto; margin-bottom: 18px; }
.ft-col-organiza-wrap { display: flex; flex-direction: column; }
.ft-organiza-left { display: flex; flex-direction: column; }
.ft-organiza-right { margin-top: 20px; display: flex; flex-direction: column; }
@media (max-width: 700px) {
  .ft-col-organiza-wrap { flex-direction: column; }
  .ft-organiza-left { flex-direction: row; align-items: center; gap: 14px; }
  .ft-organiza-left .ft-col-label { margin-bottom: 0; white-space: nowrap; }
  .ft-negrito-logo { max-width: 90px; width: 90px; margin-bottom: 0; }
  .ft-organiza-right { margin-top: 10px; flex-direction: row; align-items: center; gap: 10px; }
  .ft-organiza-right .ft-dir-label { margin-bottom: 0; font-size: 11px; }
  .ft-organiza-right .ft-dir-name { font-size: 15px; }
  /* Patrocinadores más grandes en móvil */
  .ft-logo-instit { padding: 10px 12px; }
  .ft-logo-instit img { max-width: 200px; width: 60%; }
  /* Colaboradores más grandes en móvil */
  .ft-col-colab .ft-logo-pill img { height: auto !important; width: 100px !important; max-width: 100px !important; }
}
.ft-org-logo:hover { filter: grayscale(0%); opacity: 1; }
.ft-dir-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--verde); display: block; margin-bottom: 3px; }
.ft-dir-name  { font-size: 13px; font-weight: 500; color: #1a1a1a; }

.ft-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.ft-logo-pill {
  display: flex; align-items: center; justify-content: center;
  padding: 7px 12px; border: 1px solid rgba(0,0,0,0.07); border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ft-logo-pill:hover { border-color: rgba(26,155,125,0.3); box-shadow: 0 2px 12px rgba(26,155,125,0.08); }
.ft-logo-pill img { height: 34px; max-width: 100px; object-fit: contain; filter: grayscale(100%); opacity: 0.62; transition: filter 0.3s, opacity 0.3s; }
.ft-logo-pill:hover img { filter: grayscale(0%); opacity: 1; }
.ft-col-colab .ft-logo-pill img { height: auto; width: 90px; max-width: 90px; object-fit: contain; filter: none; opacity: 1; }
.ft-logo-organiza img { width: 110px; max-width: 110px; filter: none; opacity: 1; }
.ft-logo-instit { width: 100%; padding: 12px 16px; }
.ft-logo-instit img { width: 100%; max-width: 140px; height: auto; filter: none; opacity: 1; }

.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-top: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; gap: 10px;
}
.ft-bottom-logo img { height: 20px; filter: grayscale(100%); opacity: 0.35; transition: opacity 0.3s; }
.ft-bottom-logo img:hover { opacity: 0.65; }
.ft-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-bottom-links a { font-size: 11px; color: rgba(0,0,0,0.35); letter-spacing: 0.07em; transition: color 0.3s; }
.ft-bottom-links a:hover { color: var(--verde); }
.ft-copy { font-size: 11px; color: rgba(0,0,0,0.28); }
.ft-designer { text-decoration: none; transition: color 0.3s; }
.ft-designer:hover { color: var(--verde); }

/* ═══════════════════════════════════════════════════════
   KEYFRAMES GLOBALES
═══════════════════════════════════════════════════════ */
@keyframes fadeUp    { to { opacity: 1; transform: translateY(0); } }
@keyframes levitate  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes shimmer   { to { background-position: 200% center; } }
@keyframes rayFloat  {
  0%   { opacity: 0; transform: rotate(var(--ray-ang)) translateX(0); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(var(--ray-ang)) translateX(8px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --inner-pad: 0 28px; --section-pad: 80px 0 70px; }
  #nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  #hamburger { display: flex; }
  .sf-grid { grid-template-columns: 1fr; gap: 48px; }
  .mc-card { grid-template-columns: 1fr; }
  .mc-img-wrap::after { background: linear-gradient(to bottom, transparent 60%, var(--negro) 100%); }
  .mc-info { padding: 30px 26px; }
  .grid-2 { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-col { padding: 0; border-left: none !important; }
  .ft-col + .ft-col { border-top: 1px solid rgba(0,0,0,0.07); padding-top: 28px; }
  .stat { padding: 28px 18px; }
}
@media (max-width: 700px) {
  :root { --section-pad: 60px 0 50px; --inner-pad: 0 20px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .infobar { flex-direction: column; }
  .infobar-item { padding: 14px 22px; }
  .infobar-item + .infobar-item { border-left: none; border-top: 1px solid rgba(86,54,109,0.3); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .p-events, .p-day.open .p-events { padding-left: 20px; }
  .p-event { flex-direction: column; gap: 3px; }
  .p-event-time { min-width: auto; }
  .p-day-count { display: none; }
  .p-day-header { flex-wrap: wrap; }
  .db-bg { background-attachment: scroll; }
  .gala-block { padding: 16px 18px; }
  .experiencias-body { padding: 18px 20px; }
  .pdf-link a { width: 100%; justify-content: center; }
  .section-sub { margin-bottom: 40px; }
  .mc-info { padding: 22px 18px; }
  .mc-name { font-size: 22px; }
  .ft-logos-row { gap: 8px; }
}
@media (max-width: 480px) {
  :root { --inner-pad: 0 16px; --section-pad: 50px 0 42px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-3 .badge { font-size: 8px; padding: 2px 8px; letter-spacing: 0.05em; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .stat { padding: 20px 12px; }
  .mc-info { padding: 18px 14px; }
  .p-day-header { padding: 16px 0; gap: 10px; }
  .p-day-num { min-width: 40px; font-size: 32px; }
  .p-day-date { font-size: 16px; }
  .gala-chips { gap: 6px; }
  .gala-chip { font-size: 11px; padding: 4px 12px; }
  .ft-logo-pill img { max-width: 100px; }
  .ft-col-colab .ft-logo-pill img { max-width: 70px; }
  .pill { font-size: 10px; padding: 5px 11px; }
  .p-subblock { padding: 10px 14px; }
  .btn-primary { padding: 16px 20px; }
  .btn-secondary { padding: 14px 20px; }
  .section-title { margin-bottom: 10px; }
  .section-sub { font-size: 14px; }
  .sf-text { font-size: 15px; }
  .experiencias-body p { font-size: 13px; }
}
@media (max-width: 380px) {
  :root { --inner-pad: 0 14px; }
  .sf-heading { font-size: 28px; }
  .ft-bottom-links { gap: 14px; }
  .ft-bottom-links a { font-size: 10px; }
  .card-name { font-size: 15px; }
  .mc-desc { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════
   FECHA MÓVIL — solo visible en móvil bajo el nav
═══════════════════════════════════════════════════════ */
#nav-fecha-movil {
  display: none;
}

@media (max-width: 700px) {

  /* NAV: solo logo izquierda + hamburguesa derecha, una fila limpia */
  #nav {
    padding: 0 20px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(14,14,26,0.7), transparent);
  }
  #nav .nav-logo img { height: 26px; }

  /* Fecha debajo del nav, alineada a la derecha */
  #nav-fecha-movil {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 56px;
    right: 20px;
    z-index: 900;
    line-height: 1.3;
    pointer-events: none;
  }
  #nav-fecha-movil .fecha-rango {
    font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
  }
  #nav-fecha-movil .fecha-lugar {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--verde);
    font-family: var(--font-body);
  }

  /* Hero móvil: video protagonista total */
  #hero {
    padding: 0;
    justify-content: flex-end;
    min-height: 100svh;
  }

  /* Ocultar eyebrow, logo animado, tagline e infobar en móvil */
  .hero-eyebrow,
  .hero-logo-wrap,
  .hero-tagline,
  .infobar { display: none; }

  /* Overlay: transparente arriba, oscuro solo abajo para los botones */
  #hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(14,14,26,0.0) 0%,
      rgba(14,14,26,0.0) 52%,
      rgba(14,14,26,0.72) 78%,
      rgba(14,14,26,0.97) 100%
    );
  }

  /* Botones pegados al fondo */
  .hero-btns {
    position: relative; z-index: 10;
    width: 100%;
    flex-direction: column;
    padding: 0 20px 44px;
    gap: 12px;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    padding: 18px 24px;
    font-size: 13px; letter-spacing: 0.2em;
    width: 100%; justify-content: center;
  }
  .btn-secondary {
    padding: 15px 24px;
    font-size: 12px;
    width: 100%; justify-content: center;
    border-color: rgba(255,255,255,0.25);
  }
}

/* ═══════════════════════════════════════════════════════
   BLOQUE MÓVIL — #index-mb
   Fullscreen: video arriba, nav fixed encima, botones abajo
═══════════════════════════════════════════════════════ */
#index-dk { display: block; }
#index-mb { display: none;  }

#index-mb {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #0e0e1a;
}

/* Video y poster cubren todo */
#mb-bg {
  position: absolute;
  inset: 0;
}
#mb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 1.2s ease;
}
#mb-video.hidden  { opacity: 0; pointer-events: none; }
#mb-poster {
  position: absolute;
  inset: 0;
  background: url('../imgs/2026/test-wall.jpg') center center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#mb-poster.visible { opacity: 1; }

/* Overlay oscuro arriba y abajo */
#mb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14,14,26,0.65) 0%,
    rgba(14,14,26,0.0)  20%,
    rgba(14,14,26,0.0)  55%,
    rgba(14,14,26,0.8)  80%,
    rgba(14,14,26,0.98) 100%
  );
}

/* Navbar encima del todo */
#mb-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.mb-logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
.mb-date-center {
  position: absolute;
  top: 68px; right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  pointer-events: none;
}
#mb-hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 4px;
}
#mb-hamburger span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.4s, opacity 0.3s, width 0.3s;
  transform-origin: right center;
}
#mb-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(-45deg); background: var(--verde); }
#mb-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
#mb-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(45deg); background: var(--verde); }

.mb-fecha-rango {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-display);
  margin-top: 0;
}
.mb-fecha-lugar {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde);
  font-family: var(--font-body);
}

/* Botones pegados al fondo */
#mb-btns {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 44px;
}
#mb-btns .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
}
#mb-btns .btn-secondary {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 12px;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}