/* ════════════════════════════════════════════════════════
   CITRUS CONFERENCE CHILE 2026 — Sistema de diseño v2
   Estética: etiqueta de cajón de exportación chilena,
   reinterpretada premium-editorial.
   ════════════════════════════════════════════════════════ */

:root {
  /* — Paleta — */
  --pine:     #2C5C4D;
  --pine-d:   #1E4034;
  --pine-dd:  #142C22;
  --orange:   #DD6B1C;
  --orange-l: #F2A24A;
  --orange-d: #B0470E;
  --orange-dd:#8F3A09;
  --cream:    #F7F2E3;
  --cream-2:  #E8DFC6;
  --paper:    #FCFAF2;
  --leaf:     #4E9A3E;
  --leaf-d:   #3D7A30;
  --ink:      #21352E;
  --pomelo:   #E8B43A;
  --zest:     #C73B27;
  --mist:     #DCE5DD;
  --plaster:  #E3DACF;

  /* — Tipografía — */
  --disp:   'Staatliches', sans-serif;
  --script: 'Caveat', cursive;
  --serif:  'Lora', serif;
  --grot:   'Space Grotesk', sans-serif;

  /* — Escala — */
  --fs-hero:    clamp(2.6rem, 7.2vw, 5.6rem);
  --fs-h2:      clamp(1.9rem, 4.2vw, 3.2rem);
  --fs-h3:      clamp(1.15rem, 2vw, 1.4rem);
  --fs-body:    clamp(1rem, 1.15vw, 1.125rem);
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.8125rem;

  /* — Motion — */
  --ease-fruit: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.55s;

  /* — Layout — */
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 128px;
  --header-h-compact: 100px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-d); }
button { font: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--orange); color: var(--cream); }

/* paper grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════ Loader ════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; gap: 1rem;
  background: var(--cream);
  transition: opacity 0.6s var(--ease-fruit), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__fruits {
  --sz: 48px;
  display: flex; align-items: center; justify-content: center;
  gap: calc(var(--sz) * 0.38); height: calc(var(--sz) * 1.5);
}
.loader__slot { width: var(--sz); height: var(--sz); position: relative; display: flex; align-items: center; justify-content: center; }
.loader__dot {
  width: calc(var(--sz) * 0.2); height: calc(var(--sz) * 0.2); border-radius: 50%;
  background: var(--cream-2); transition: opacity 0.3s, transform 0.3s;
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader__slot.is-on .loader__dot { opacity: 0; transform: scale(0.3); }
.loader__fruit { position: absolute; width: 100%; height: 100%; opacity: 0; transform: scale(0); transition: opacity 0.35s, transform 0.55s var(--ease-snap); }
.loader__slot.is-on .loader__fruit { opacity: 1; transform: scale(1); }
.loader__svg { width: 100%; height: 100%; display: block; }
.loader__slot.is-on .loader__svg { animation: loaderBob 1.7s ease-in-out infinite; }
.loader__slot--f1 .loader__circ { fill: var(--leaf); } .loader__slot--f1 .loader__shade { fill: var(--leaf-d); }
.loader__slot--f2 .loader__circ { fill: #B5B12E; } .loader__slot--f2 .loader__shade { fill: #8D8A20; }
.loader__slot--f3 .loader__circ { fill: #EE9A33; } .loader__slot--f3 .loader__shade { fill: var(--orange-d); }
.loader__slot--f4 .loader__circ { fill: var(--orange); } .loader__slot--f4 .loader__shade { fill: var(--orange-dd); }
@keyframes loaderBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12%); } }
@keyframes loaderDot { 0%, 100% { opacity: 0.5; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }
.loader__text {
  font-family: var(--script); font-size: 1.6rem; font-weight: 600;
  color: var(--orange-d); text-align: center; margin-top: 1.4rem;
}

/* ════════ Header ════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(44, 92, 77, 0.12), 0 6px 22px rgba(33, 53, 46, 0.08);
  border-bottom: 2px solid color-mix(in srgb, var(--pine) 16%, transparent);
  transition: height 0.35s var(--ease-fruit), background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.header.is-compact {
  height: var(--header-h-compact);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(44, 92, 77, 0.12), 0 8px 24px rgba(33, 53, 46, 0.07);
}
.header__inner {
  width: 100%; max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* — Marca / lockup — */
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand__logo { height: clamp(74px, 8.6vw, 100px); width: auto; display: block; }
.brand__slice { width: 44px; height: 44px; transition: transform 0.5s var(--ease-snap); }
.brand:hover .brand__slice { transform: rotate(120deg); }
.brand__lockup { display: grid; line-height: 1; }
.brand__script {
  font-family: var(--script); font-weight: 700; font-size: 1.45rem;
  color: var(--orange-d); transform: rotate(-2deg); margin-bottom: -2px;
}
.brand__box {
  font-family: var(--disp); font-size: 0.78rem; letter-spacing: 0.22em;
  background: var(--pine); color: var(--cream);
  padding: 0.18em 0.5em 0.12em; border-radius: 2px; width: fit-content;
}
.brand__year {
  font-family: var(--grot); font-weight: 600; font-size: 0.58rem;
  letter-spacing: 0.42em; color: var(--pine); margin-top: 3px;
}

/* — Nav — */
.nav { display: flex; align-items: center; gap: clamp(0.7rem, 1.2vw, 1.5rem); }
.nav__link {
  font-family: var(--grot); font-weight: 600; font-size: 0.9rem;
  color: var(--ink); text-decoration: none; position: relative; padding: 0.3em 0;
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-fruit);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__pill {
  font-family: var(--grot); font-weight: 600; font-size: 0.85rem;
  color: var(--pine); text-decoration: none; white-space: nowrap;
  border: 2px solid var(--pine); border-radius: 99px;
  padding: 0.55em 1.15em;
  transition: background 0.3s, color 0.3s;
}
.nav__pill:hover, .nav__pill.is-active { background: var(--pine); color: var(--cream); }

/* — Burger — */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1102; }
.burger span {
  width: 26px; height: 2.5px; background: var(--pine); border-radius: 2px;
  transition: transform 0.4s var(--ease-fruit), opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* header sobre el drawer abierto */
body.drawer-open .header { z-index: 1200; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.drawer-open .burger span { background: var(--cream); }
body.drawer-open .brand__script { color: var(--orange-l); }
body.drawer-open .brand__year { color: var(--cream); }
body.drawer-open .nav { visibility: hidden; }
body.drawer-open .brand__logo { visibility: hidden; }

/* — Drawer — */
.drawer {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--pine-d);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  clip-path: circle(0% at calc(100% - 44px) 42px);
  transition: clip-path 0.7s var(--ease-fruit);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 44px) 42px); visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.drawer__link {
  font-family: var(--disp); font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--cream); text-decoration: none; letter-spacing: 0.06em;
  padding: 0.1em 0.4em; transition: color 0.3s;
}
.drawer__link:hover { color: var(--orange-l); }
.drawer__cta { width: min(86vw, 360px); }
.drawer__note { font-family: var(--grot); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--orange-l); }

/* ════════ Botones ════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--grot); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; text-decoration: none; text-align: center;
  border-radius: 99px; padding: 0.85em 1.9em;
  transition: transform 0.35s var(--ease-snap), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--primary {
  background: var(--orange-d); color: #fff;
  box-shadow: 0 4px 0 var(--orange-dd), 0 10px 24px rgba(176, 71, 14, 0.35);
}
.btn--primary:hover { background: var(--orange-dd); transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dd), 0 16px 32px rgba(176, 71, 14, 0.42); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--orange-dd); }
.btn--ghost {
  background: transparent; color: var(--pine);
  border: 2px solid var(--pine);
}
.btn--ghost:hover { background: var(--pine); color: var(--cream); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--orange-d);
  border: 2px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn--light {
  background: transparent; color: var(--cream);
  border: 2px solid color-mix(in srgb, var(--cream) 55%, transparent);
}
.btn--light:hover { background: var(--cream); color: var(--pine-d); }
.btn--lg { font-size: 1rem; padding: 1.05em 2.3em; }
.btn--sm { font-size: 0.8rem; padding: 0.65em 1.4em; }

/* — Estado deshabilitado genérico (ej. Auspicios en pausa hasta tener info oficial).
     pointer-events:none bloquea el click real (no solo visual) en cualquier <a> marcado. — */
a[aria-disabled="true"] { pointer-events: none; }
.btn.is-disabled, .btn[aria-disabled="true"] { opacity: 0.55; box-shadow: none; }
.cp-panel[aria-disabled="true"] .cp-btn { opacity: 0.85; }
.finale__link[aria-disabled="true"] { opacity: 0.55; }
.footer__col a[aria-disabled="true"] { opacity: 0.5; }

.btn--block { width: 100%; }
.btn--nav { font-size: 0.85rem; padding: 0.68em 1.35em; white-space: nowrap; }
.btn__arrow { transition: transform 0.3s var(--ease-fruit); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ════════ Utilidades de sección ════════ */
.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--pine-d); color: var(--cream); }
.section__inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section__inner--narrow { max-width: 820px; }
.section__head { margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section__head--split {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem); align-items: end;
}
.section__intro { font-size: 1.05rem; color: color-mix(in srgb, var(--ink) 82%, transparent); }
.section__intro--center { max-width: 640px; margin-inline: auto; text-align: center; }
.section__intro--light { color: color-mix(in srgb, var(--cream) 78%, transparent); }

.eyebrow {
  font-family: var(--grot); font-weight: 700; font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-d); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--orange); }
.eyebrow--light { color: var(--orange-l); }

.h2 { font-family: var(--disp); font-size: var(--fs-h2); line-height: 1.04; letter-spacing: 0.015em; color: var(--pine-d); font-weight: 400; }
.h2 em { font-style: normal; color: var(--orange); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--orange-l); }

.badge {
  display: inline-block; font-family: var(--grot); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4em 0.9em; border-radius: 4px;
}
.badge--edition { background: var(--zest); color: #fff; transform: rotate(-3deg); margin-right: 0.6em; }
.badge--soft { background: var(--pomelo); color: var(--pine-dd); margin-right: 0.5em; }
.badge--date { background: var(--pine); color: var(--cream); }

/* ════════ 1 · HERO ════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--header-h); overflow: hidden;
  background-color: var(--plaster);
}
.hero__texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--orange-l) 14%, transparent), transparent 42%),
    radial-gradient(circle at 8% 85%, color-mix(in srgb, var(--leaf) 9%, transparent), transparent 38%);
}
/* Bodegón fotográfico: foto real anclada a la derecha, borde derecho intacto;
   el lado izquierdo se desvanece sobre --plaster (muro extendido) para el texto. */
.hero__photo {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: image-set(
    url("../img/hero-citricos-1792.webp") type("image/webp"),
    url("../img/hero-citricos-1792.png") type("image/png"));
  background-image: -webkit-image-set(
    url("../img/hero-citricos-1792.webp") 1x);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}
.hero__inner {
  position: relative; width: 100%;
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin-inline: auto; padding: clamp(1.5rem, 4vh, 3rem) var(--gutter) clamp(4rem, 8vh, 6rem);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem); align-items: center;
}
.hero__content { position: relative; z-index: 5; }
.hero__eyebrow {
  font-family: var(--grot); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--pine);
  margin-bottom: 1.4rem; display: flex; align-items: center; flex-wrap: wrap;
}
.hero__title {
  font-family: var(--disp); font-weight: 400;
  font-size: var(--fs-hero); line-height: 0.99; letter-spacing: 0.01em;
  color: var(--pine-d); margin-bottom: 1.4rem;
}
.hero__line { display: block; overflow: hidden; padding-block: 0.04em; }
.hero__line > span { display: inline-block; will-change: transform; }
.hero__script {
  font-family: var(--script); font-style: normal; font-weight: 700;
  font-size: 0.92em; color: var(--orange); letter-spacing: 0;
  display: inline-block; transform: rotate(-2.5deg) translateY(-0.03em);
}
.hero__dot { color: var(--orange); }
.hero__sub { max-width: 54ch; margin-bottom: 1.6rem; color: color-mix(in srgb, var(--ink) 88%, transparent); }

.hero__pills { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--grot); font-weight: 500; font-size: 0.82rem;
  background: var(--paper); border: 1px solid color-mix(in srgb, var(--pine) 22%, transparent);
  border-radius: 99px; padding: 0.45em 1em; color: var(--pine-d);
  box-shadow: 0 2px 8px rgba(33, 53, 46, 0.06);
}
.pill__icon { color: var(--orange); font-size: 1em; }
/* Píldora única del hero (solo sede): más presencia */
.hero__pills--solo .pill { font-size: 1.05rem; font-weight: 600; padding: 0.62em 1.35em; box-shadow: 0 3px 14px rgba(33, 53, 46, 0.1); }

/* — Countdown — */
.countdown { display: inline-flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.countdown__unit {
  display: grid; justify-items: center; gap: 0.45rem;
  background: var(--paper); border: 1.5px solid color-mix(in srgb, var(--pine) 18%, transparent);
  border-radius: 16px; padding: 1.1rem 1.4rem; min-width: 112px;
  box-shadow: 0 4px 14px rgba(33, 53, 46, 0.08);
}
.countdown__num {
  font-family: var(--disp); font-size: clamp(2.5rem, 5.8vw, 4.6rem);
  line-height: 1; color: var(--orange-d); font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--grot); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--pine);
}
.countdown__sep { font-family: var(--disp); font-size: 3.2rem; color: var(--orange); margin-top: 1.1rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* — Visual del hero — */
/* ════════ Hero · bodegón cítrico (collage) ════════ */
.hero__visual { position: relative; height: min(86vh, 740px); }
.hero__fruit, .hero__floral { position: absolute; will-change: transform; }
.hero__fruit picture, .hero__fruit img, .hero__floral svg { display: block; width: 100%; height: auto; }
.hero__fruit picture { filter: drop-shadow(0 16px 26px rgba(33, 53, 46, 0.2)); }
.hero__floral { filter: drop-shadow(0 6px 11px rgba(33, 53, 46, 0.18)); }

/* posiciones (desktop) — rotaciones en la <picture>/<svg> para no chocar con el parallax del contenedor */
.hf--main { top: 12%; right: 3%; width: clamp(250px, 27vw, 430px); z-index: 5; }
.hf--main picture { filter: drop-shadow(0 30px 50px rgba(33, 53, 46, 0.26)); }
.hf--mandarinas { top: -8%; right: -10%; width: clamp(170px, 19vw, 290px); z-index: 2; }
.hf--mandarinas picture { transform: rotate(-7deg); }
.hf--media-naranja { top: 34%; right: -12%; width: clamp(185px, 21vw, 310px); z-index: 3; }
.hf--media-naranja picture { transform: rotate(6deg); }
.hf--gajo { bottom: 2%; right: 8%; width: clamp(140px, 15vw, 230px); z-index: 4; }
.hf--gajo picture { transform: rotate(-10deg); }
.hf--limon { top: 2%; left: 1%; width: clamp(78px, 9vw, 140px); z-index: 6; }
.hf--limon picture { transform: rotate(8deg); }
.hf--mandarina-azahar { top: 4%; right: 19%; width: clamp(140px, 16vw, 240px); z-index: 6; }
.hf--mandarina-azahar picture { transform: rotate(4deg); }
.hf--limon-azahar { bottom: 13%; right: -5%; width: clamp(140px, 15vw, 230px); z-index: 3; }
.hf--limon-azahar picture { transform: rotate(-5deg); }
.hf--azahar1 { top: 30%; left: 5%; width: clamp(66px, 8vw, 116px); z-index: 7; }
.hf--azahar1 svg { transform: rotate(-12deg); }
.hf--azahar2 { bottom: 24%; right: 23%; width: clamp(56px, 7vw, 100px); z-index: 7; }
.hf--azahar2 svg { transform: rotate(14deg); }

/* — Sello giratorio — */
.stamp { width: 124px; height: 124px; }
.stamp--hero { position: absolute; left: 8%; top: 38%; opacity: 0.9; }
.stamp svg { width: 100%; height: 100%; overflow: visible; }
.stamp__text {
  font-family: var(--grot); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.22em; fill: var(--pine);
}
.stamp__text--light { fill: var(--cream); }
.stamp--footer { width: 110px; height: 110px; }

/* — Marquee — */
.marquee {
  position: relative; overflow: hidden; white-space: nowrap;
  background: var(--pine); color: var(--cream);
  padding-block: 0.7em; transform: rotate(0deg);
}
.marquee--hero { position: absolute; bottom: 0; left: 0; right: 0; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span {
  font-family: var(--grot); font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* — Marquee de logos de auspiciadores — */
.sponsors__logos-wrap { margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.sponsors__logos-title {
  font-family: var(--grot); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-align: center;
  color: color-mix(in srgb, var(--cream) 72%, transparent); margin-bottom: 1.3rem;
}
.marquee--sponsors {
  background: transparent; padding-block: 0.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee--sponsors .marquee__track { align-items: center; }
.sponsors__logos-group {
  display: inline-flex; align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem); padding-right: clamp(1rem, 2.6vw, 2rem);
}
.sponsor-chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(200px, 24vw, 280px); height: clamp(112px, 14vw, 152px);
  padding: 0 clamp(1.2rem, 2.4vw, 2rem);
  background: var(--paper); border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 44, 34, 0.28);
  transition: transform 0.4s var(--ease-fruit, ease), box-shadow 0.4s ease;
}
.sponsor-chip img {
  max-width: 100%; max-height: 74%; width: auto; height: auto;
  object-fit: contain; display: block;
}
.marquee--sponsors:hover .sponsor-chip { box-shadow: 0 10px 26px rgba(20, 44, 34, 0.26); }
@media (prefers-reduced-motion: reduce) {
  .marquee--sponsors .marquee__track { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
}

/* ════════ 2 · CIFRAS ════════ */
.stats {
  color: var(--cream); padding-block: clamp(3.5rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
  /* Degradado vivo con la paleta de marca (verde pino base + glow hoja, ámbar y sello) */
  background-color: var(--pine-dd);
  background-image:
    radial-gradient(115% 90% at 10% 0%,   color-mix(in srgb, var(--leaf) 40%, transparent), transparent 55%),
    radial-gradient(110% 95% at 92% 100%, color-mix(in srgb, var(--orange-d) 48%, transparent), transparent 55%),
    radial-gradient(85% 85% at 72% 28%,   color-mix(in srgb, var(--zest) 20%, transparent), transparent 60%),
    linear-gradient(135deg, var(--pine-d), var(--pine-dd));
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0 0;
  animation: statsGrad 24s ease-in-out infinite alternate;
}
@keyframes statsGrad {
  0%   { background-position: 0% 0%,   100% 100%, 50% 50%, 0 0; }
  50%  { background-position: 40% 30%, 60% 70%,  40% 60%, 0 0; }
  100% { background-position: 10% 60%, 90% 40%,  65% 35%, 0 0; }
}
.stats::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: radial-gradient(circle, var(--cream) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.stats__inner { position: relative; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.stats__kicker {
  font-family: var(--grot); font-weight: 700; font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange-l);
  text-align: center; margin-bottom: clamp(2.6rem, 5vw, 3.6rem);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 3.5vw, 3rem); }
.stat { text-align: center; display: grid; gap: 0.5rem; }
.stat__num {
  font-family: var(--disp); font-size: clamp(3.75rem, 9vw, 6.5rem); line-height: 1;
  color: var(--orange-l); font-variant-numeric: tabular-nums;
  display: inline-block; will-change: transform;
  text-shadow: 0 0 34px color-mix(in srgb, var(--orange) 22%, transparent);
  animation: statFloat 5.5s ease-in-out infinite;
}
.stat:nth-child(2) .stat__num { animation-delay: .55s; }
.stat:nth-child(3) .stat__num { animation-delay: 1.1s; }
.stat:nth-child(4) .stat__num { animation-delay: 1.65s; }
@keyframes statFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.stat__plus { color: var(--pomelo); }
.stat__label { font-family: var(--grot); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.stat__note { font-size: clamp(0.88rem, 1.1vw, 0.98rem); font-style: italic; color: color-mix(in srgb, var(--cream) 62%, transparent); }

/* ════════ 3 · MANIFIESTO — transición cinematográfica ════════ */
.manifesto-cine { position: relative; background: var(--pine-dd); color: var(--cream); }
.manifesto-cine__stage { position: relative; overflow: hidden; }

.manifesto-cine__video {
  display: block; width: 100%; height: auto;
  object-fit: cover; background: var(--pine-dd);
  will-change: transform; transform: scale(1.05);
}
.manifesto-cine__darken { position: absolute; inset: 0; background: var(--pine-dd); opacity: 0; pointer-events: none; }
.manifesto-cine__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,44,34,0.55) 0%, rgba(20,44,34,0) 26%, rgba(20,44,34,0) 52%, rgba(20,44,34,0.9) 100%);
}

.manifesto-cine__inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto; padding: clamp(2.5rem, 7vw, 5rem) var(--gutter);
}
.manifesto-cine__eyebrow { color: var(--orange-l); }

.manifesto-cine__title {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(2.3rem, 6.4vw, 5.2rem); line-height: 0.99; letter-spacing: 0.015em;
  color: var(--cream); margin: 0; max-width: 15ch;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.45);
}
.manifesto-cine__title em { font-style: normal; color: var(--orange-l); }

.manifesto-cine__body { display: grid; gap: 1.1rem; max-width: 640px; margin-top: 1.6rem; }
.manifesto-cine__p {
  font-family: var(--serif); font-size: var(--fs-body); line-height: 1.7;
  color: color-mix(in srgb, var(--cream) 92%, transparent); margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.manifesto-cine__p strong { color: var(--cream); font-weight: 600; }
/* Fecha/sede del inicio: recuadro crema, letra naranja oscuro, legible sobre el video */
.manifesto-cine__body .manifesto-cine__p--lede {
  font-size: clamp(1.35rem, 2.9vw, 2.1rem); line-height: 1.75;
  letter-spacing: 0.01em; text-shadow: none;
}
.manifesto-cine__p--lede strong {
  color: var(--orange-d); background: var(--cream);
  padding: 0.1em 0.45em; border-radius: 8px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  box-shadow: 0 6px 18px rgba(20, 44, 34, 0.28);
}

.manifesto-cine__audience { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.4rem 0 0; padding: 0; }
.manifesto-cine__audience li {
  font-family: var(--grot); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px dashed color-mix(in srgb, var(--orange-l) 55%, transparent);
  color: var(--orange-l); border-radius: 99px; padding: 0.4em 1em;
  transition: background 0.3s, color 0.3s;
}
.manifesto-cine__audience li:hover { background: var(--orange-l); color: var(--pine-dd); }

.manifesto-cine__quote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.4;
  color: var(--cream); margin: 0.8rem 0 0; max-width: 28ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.manifesto-cine__quote em { color: var(--orange-l); }

.manifesto-cine__caption {
  position: absolute; bottom: 4%; right: 4%; z-index: 2;
  font-family: var(--script); font-weight: 600; font-size: 1.2rem;
  color: color-mix(in srgb, var(--cream) 80%, transparent); transform: rotate(-4deg);
}
.manifesto-cine__caption em { font-style: italic; }
.manifesto-cine__hint { display: none; }

/* — Modo cinematográfico: solo con JS (sin reduced-motion) — */
.js .manifesto-cine__stage { height: 100svh; min-height: 600px; display: flex; }
.js .manifesto-cine__video { position: absolute; inset: 0; height: 100%; }
.js .manifesto-cine__inner {
  position: absolute; inset: 0; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  align-self: center; width: 100%;
}
.js .manifesto-cine__eyebrow { position: absolute; top: clamp(5.5rem, 12vh, 8rem); left: var(--gutter); margin: 0; }
.js .manifesto-cine__intro {
  position: absolute; left: var(--gutter); right: var(--gutter);
  top: 50%; transform: translateY(-50%); will-change: transform, opacity;
}
.js .manifesto-cine__body {
  position: absolute; left: var(--gutter); right: var(--gutter);
  top: 50%; transform: translateY(-46%); margin-top: 0;
  opacity: 0; will-change: opacity;
}
.js .manifesto-cine__body [data-cine-line] { opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.js .manifesto-cine__hint {
  display: flex; flex-direction: column; align-items: center; gap: 0.75em;
  position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); z-index: 3;
  transform-origin: bottom center;
  font-family: var(--grot); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 72%, transparent); pointer-events: none;
}
.manifesto-cine__hint-mouse {
  display: block; width: 30px; height: 48px; border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--cream) 58%, transparent);
  position: relative;
}
.manifesto-cine__hint-dot {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 10px;
  margin-left: -2px; border-radius: 3px; background: var(--orange-l);
  animation: cineHintDot 1.8s var(--ease-fruit) infinite;
}
@keyframes cineHintDot {
  0% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(16px); opacity: 0; }
  56% { transform: translateY(0); opacity: 0; }
  85% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.manifesto-cine__hint-chevron-wrap { display: block; animation: cineHintChevron 1.8s var(--ease-fruit) infinite; }
.manifesto-cine__hint-chevron {
  display: block; width: 7px; height: 7px;
  border-right: 1.5px solid color-mix(in srgb, var(--cream) 55%, transparent);
  border-bottom: 1.5px solid color-mix(in srgb, var(--cream) 55%, transparent);
  transform: rotate(45deg);
}
@keyframes cineHintChevron { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(4px); opacity: 1; } }

/* ════════ 4 · RAZONES ════════ */
.reasons { overflow: hidden; position: relative; background: var(--pine-dd); color: var(--cream); }
.reasons__bg { position: absolute; inset: 0; pointer-events: none; }
.reasons__bg img { width: 100%; height: 100%; object-fit: cover; }
.reasons__bg::after {
  content: ''; position: absolute; inset: 0;
  /* Capa 1: fundido rápido en el borde SUPERIOR a casi-sólido, para que la
     costura con #auspiciadores (que entrega ~0.94 de opacidad) no muestre
     un salto de luminosidad foto-contra-foto.
     Capa 2: viñeta radial existente (centro más tintado, bordes más vivos). */
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--pine-dd) 92%, transparent) 0%, transparent 14%),
    radial-gradient(ellipse 76% 70% at 50% 48%,
      color-mix(in srgb, var(--pine-dd) 90%, transparent) 0%,
      color-mix(in srgb, var(--pine-dd) 72%, transparent) 52%,
      color-mix(in srgb, var(--pine-dd) 22%, transparent) 100%);
}
.reasons .section__inner { position: relative; z-index: 1; }
.reasons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.card {
  background: var(--paper); border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--pine) 12%, transparent);
  box-shadow: 0 6px 22px rgba(33, 53, 46, 0.07);
  transition: box-shadow 0.4s var(--ease-fruit);
  will-change: transform;
}
.card:hover { box-shadow: 0 22px 48px rgba(33, 53, 46, 0.15); }
.reason { position: relative; padding: clamp(1.6rem, 3vw, 2.4rem); overflow: hidden; }
.reason__index {
  position: absolute; top: 1.1rem; right: 1.4rem;
  font-family: var(--disp); font-size: 2.6rem; line-height: 1;
  color: color-mix(in srgb, var(--orange) 18%, transparent);
}
.reason__icon { width: 56px; height: 56px; color: var(--orange); margin-bottom: 1.1rem; }
.reason__icon svg { width: 100%; height: 100%; }
.reason__title { font-family: var(--disp); font-weight: 400; font-size: var(--fs-h3); letter-spacing: 0.03em; color: var(--pine-d); margin-bottom: 0.6rem; }
.reason__text { font-size: 0.97rem; color: color-mix(in srgb, var(--ink) 85%, transparent); }

/* ════════════════════════════════════════════════════════════════════
   #razones · Bento tipográfico "Cuatro razones" (V5 aprobada 2026-07)
   Mosaico asimétrico 12-col sobre el fondo oscuro: celda claim naranja +
   4 celdas con número calado, kicker de acento y foto Higgsfield que se
   revela al hover (la 04 —muro de cítricos— siempre visible; en táctil
   todas visibles). La entrada la anima GSAP vía [data-stagger]; el hover
   usa transform propio (estas celdas NO llevan data-tilt).
   ════════════════════════════════════════════════════════════════════ */
@property --shine { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes bentoShine { to { --shine: 360deg; } }
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(148px, auto);
}
.bento__cell--1 { --acc: var(--orange); }
.bento__cell--2 { --acc: var(--pomelo); }
.bento__cell--3 { --acc: var(--leaf); }
.bento__cell--4 { --acc: var(--zest); }

/* — Celda claim (naranja) — */
.bento__claim {
  grid-column: 1/6; grid-row: 1/3;
  position: relative; overflow: hidden; border-radius: 22px; isolation: isolate;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, color-mix(in srgb, var(--orange) 96%, transparent), color-mix(in srgb, var(--orange-l) 88%, transparent));
  -webkit-backdrop-filter: blur(6px) saturate(1.3); backdrop-filter: blur(6px) saturate(1.3);
  color: var(--pine-dd);
  box-shadow: 0 14px 44px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.42), inset 0 0 0 1px rgba(255,255,255,.12);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1rem;
}
.bento__claim::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px; pointer-events: none; z-index: 2;
  background: conic-gradient(from var(--shine),
    rgba(255,255,255,.05) 0deg, rgba(255,255,255,.85) 55deg, rgba(255,255,255,.05) 120deg,
    rgba(255,255,255,.05) 235deg, rgba(255,255,255,.5) 300deg, rgba(255,255,255,.05) 340deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: bentoShine 7s linear infinite;
}
.bento__script {
  font-family: var(--script); font-weight: 600;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem); transform: rotate(-2deg);
  align-self: flex-start;
}
.bento__big {
  font-family: var(--disp); text-transform: uppercase;
  font-size: clamp(1.5rem, 2.7vw, 2.3rem); line-height: 1.02;
  max-width: 21ch; position: relative; z-index: 1;
}
.bento__when {
  display: inline-flex; align-items: center; gap: 0.55em;
  position: relative; z-index: 1;
  font-family: var(--grot); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--pine-dd) 88%, transparent);
}
.bento__when::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--pine-dd); }
.bento__claim::after {
  content: '04'; position: absolute; right: -0.12em; bottom: -0.26em;
  font-family: var(--disp); font-size: clamp(7rem, 14vw, 11rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px color-mix(in srgb, var(--pine-dd) 30%, transparent);
  pointer-events: none;
}

/* — Celdas razón · vidrio líquido (frost sobre el fondo de piedra + brillo de borde) — */
.bento__cell {
  --acc: var(--orange);
  position: relative; overflow: hidden; isolation: isolate; border-radius: 22px;
  background: linear-gradient(135deg, rgba(40,74,62,.5), rgba(20,44,34,.34));
  -webkit-backdrop-filter: blur(14px) saturate(1.35); backdrop-filter: blur(14px) saturate(1.35);
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.45rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.26), inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform 0.5s var(--ease-fruit), box-shadow 0.5s var(--ease-fruit);
}
.bento__cell:hover { transform: translateY(-6px); box-shadow: 0 28px 62px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.4), inset 0 0 0 1px rgba(255,255,255,.1); }
.bento__cell::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px; pointer-events: none; z-index: 2;
  background: conic-gradient(from var(--shine),
    rgba(247,242,227,.02) 0deg, rgba(247,242,227,.55) 55deg, rgba(247,242,227,.02) 120deg,
    rgba(247,242,227,.02) 235deg, rgba(247,242,227,.3) 300deg, rgba(247,242,227,.02) 340deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: bentoShine 7s linear infinite;
}

/* Foto propia de la celda — oculta; al hover emerge sobre el vidrio con más
   presencia (nítida, sólo un susurro de blur para que se lea "tras el cristal"). */
.bento__ph { position: absolute; inset: 0; z-index: -1; opacity: 0; overflow: hidden; transition: opacity 0.5s var(--ease-fruit); }
.bento__ph img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9); transform: scale(1);
  transition: transform 0.6s var(--ease-fruit), filter 0.6s var(--ease-fruit);
}
.bento__ph::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--pine-dd) 55%, transparent) 0%,
    color-mix(in srgb, var(--pine-dd) 82%, transparent) 100%);
  transition: background 0.6s var(--ease-fruit);
}
.bento__cell:hover .bento__ph { opacity: 1; }
.bento__cell:hover .bento__ph img { transform: scale(1.05); filter: saturate(1.06) brightness(1.08) blur(0.6px); }
.bento__cell:hover .bento__ph::after {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--pine-dd) 20%, transparent) 0%,
    color-mix(in srgb, var(--pine-dd) 58%, transparent) 100%);
}

.bento__wm {
  position: absolute; top: 0.35rem; right: 0.9rem;
  font-family: var(--disp); font-size: clamp(3.6rem, 7vw, 5.6rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in srgb, var(--acc) 70%, transparent);
  pointer-events: none;
}
.bento__kick {
  font-family: var(--grot); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--acc);
}
.bento__title {
  font-family: var(--disp); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.5vw, 2.05rem); line-height: 1;
  color: var(--cream); max-width: 18ch;
}
.bento__text {
  font-size: 0.93rem; line-height: 1.48;
  color: color-mix(in srgb, var(--cream) 76%, transparent); max-width: 46ch;
}

.bento__cell--1 { grid-column: 6/13; grid-row: 1/2; }
.bento__cell--2 { grid-column: 6/10; grid-row: 2/4; }
.bento__cell--3 { grid-column: 10/13; grid-row: 2/4; }
.bento__cell--4 { grid-column: 1/6; grid-row: 3/4; }

/* En táctil no hay hover: fotos siempre visibles */
@media (hover: none) { .bento__cell .bento__ph { opacity: 1; } }
/* Sin movimiento: se detiene el brillo del borde */
@media (prefers-reduced-motion: reduce) { .bento__cell::before, .bento__claim::before { animation: none; } }

/* Tablet: claim arriba a lo ancho, celdas en 2 columnas */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento__claim { grid-column: 1/-1; grid-row: auto; min-height: 230px; }
  .bento__cell--1, .bento__cell--2, .bento__cell--3, .bento__cell--4 {
    grid-column: auto; grid-row: auto; min-height: 205px;
  }
}
/* Móvil: secuencia editorial dinámica — foto de fondo siempre visible, tarjetas
   tipo póster, alturas alternadas y números que cambian de lado. Texto grande
   (legible para todo público, no se achica). */
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; gap: 0.95rem; }
  .bento__claim { min-height: 0; }
  .bento__cell--1, .bento__cell--2, .bento__cell--3, .bento__cell--4 {
    grid-column: 1/-1; grid-row: auto;
  }
  .bento__title { max-width: none; font-size: clamp(1.55rem, 6.2vw, 2rem); }
  .bento__text { font-size: 1rem; line-height: 1.5; color: color-mix(in srgb, var(--cream) 88%, transparent); }
  .bento__kick { font-size: 0.72rem; }
  /* Foto de fondo siempre visible → tarjeta póster (no caja plana) */
  .bento__cell { min-height: 280px; justify-content: flex-end; padding: 1.5rem; }
  .bento__cell .bento__ph { opacity: 1; }
  .bento__cell .bento__ph::after {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--pine-dd) 18%, transparent) 0%,
      color-mix(in srgb, var(--pine-dd) 44%, transparent) 45%,
      color-mix(in srgb, var(--pine-dd) 90%, transparent) 100%);
  }
  /* Ritmo: alturas alternadas */
  .bento__cell--1, .bento__cell--4 { min-height: 330px; }
  /* Números más grandes, alternando el lado para dar movimiento */
  .bento__wm { font-size: 5.4rem; top: 0.5rem; }
  .bento__cell--2 .bento__wm, .bento__cell--4 .bento__wm { right: auto; left: 1.1rem; }
}

/* ════════════════════════════════════════════════════════════════════
   #porque-auspiciar (.why) · Tarjetas "Cuerpo Cítrico Tintado"
   Hermano coherente de #razones (NO clon): #razones usa borde-superior 3px +
   chip CIRCULAR + translateY(-7px) sobre fondo OSCURO. Aquí, sobre el fondo
   claro --cream-2, cada tarjeta tinta su CUERPO en un cítrico distinto (que SÍ
   despega del fondo tostado), chip CUADRADO-redondeado, y un subrayado de
   acento que crece al hover. Cero transform en el .card/.reason root: GSAP es
   dueño del tilt 3D (data-tilt). Todo scoped a .why. Sin cambios de HTML.
   ════════════════════════════════════════════════════════════════════ */

/* — Variables de acento por tarjeta (tint = cuerpo/chip/subrayado; ink = trazo
     del ícono, oscurecido por tarjeta para legibilidad sobre su chip) — */
.why .reasons__grid > .reason:nth-child(1) { --why-accent: var(--orange); --why-ink: var(--orange-dd); }
.why .reasons__grid > .reason:nth-child(2) { --why-accent: var(--pomelo); --why-ink: color-mix(in srgb, var(--pomelo) 42%, var(--pine-dd)); }
.why .reasons__grid > .reason:nth-child(3) { --why-accent: var(--leaf);   --why-ink: var(--leaf-d); }
.why .reasons__grid > .reason:nth-child(4) { --why-accent: var(--zest);   --why-ink: var(--zest); }

/* — Tarjeta: cuerpo levemente tintado del cítrico (despega del fondo --cream-2),
     borde y sombra cálidos. SOLO box-shadow/background/border en hover (no transform). — */
.why .card {
  --why-accent: var(--orange);
  background: color-mix(in srgb, var(--paper) 90%, var(--why-accent) 10%);
  border: 1px solid color-mix(in srgb, var(--why-accent) 24%, transparent);
  border-radius: 18px;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--paper) 80%, #fff) inset,
    0 8px 26px rgba(33, 53, 46, 0.08);
  transition: background 0.45s var(--ease-fruit),
              border-color 0.45s var(--ease-fruit),
              box-shadow 0.45s var(--ease-fruit);
}
.why .card:hover {
  background: color-mix(in srgb, var(--paper) 86%, var(--why-accent) 14%);
  border-color: color-mix(in srgb, var(--why-accent) 36%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--paper) 85%, #fff) inset,
    0 20px 46px rgba(33, 53, 46, 0.15),
    0 0 0 1px color-mix(in srgb, var(--why-accent) 22%, transparent);
}

/* — Aire interno generoso (look editorial) — */
.why .reason {
  padding: clamp(1.8rem, 3vw, 2.5rem);
}

/* — Ícono en CHIP cuadrado-redondeado (≠ círculo del hermano).
     El glyph se mantiene grande overriding la regla global `svg{width:100%}`.
     Sube 2px al hover: transform en el HIJO, no en la tarjeta → no pelea con GSAP. — */
.why .reason__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--why-accent) 18%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--why-accent) 30%, transparent);
  color: var(--why-ink, var(--orange-d));
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 55%, transparent);
  transition: transform 0.4s var(--ease-fruit),
              background 0.4s var(--ease-fruit),
              box-shadow 0.4s var(--ease-fruit);
}
.why .reason__icon svg { width: 32px; height: 32px; }
.why .card:hover .reason__icon {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--why-accent) 26%, var(--paper));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 55%, transparent),
    0 6px 16px color-mix(in srgb, var(--why-accent) 28%, transparent);
}

/* — Título: posición relativa para colgar divisor (::before) y subrayado (::after).
     --pine-d sobre el cuerpo tintado claro mantiene AA holgado (≥9.8:1). — */
.why .reason__title {
  position: relative;
  margin-bottom: 0.55rem;
  padding-bottom: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--pine-d);
}
/* Divisor finísimo que ordena título → texto */
.why .reason__title::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: color-mix(in srgb, var(--pine) 12%, transparent);
}
/* Subrayado de acento cítrico: arranca corto y crece a todo el ancho en hover */
.why .reason__title::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 30px; height: 2.5px; border-radius: 2px;
  background: var(--why-accent);
  transition: width 0.5s var(--ease-fruit);
}
.why .card:hover .reason__title::after { width: 100%; }

/* — Texto con más aire para la lectura editorial — */
.why .reason__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ink) 86%, transparent);
}

/* — Responsive: 1 columna ≤640px (la grilla ya colapsa por regla global :1236).
     Reescalamos chip, aire y subrayado para que se vea impecable en móvil. — */
@media (max-width: 640px) {
  .why .reason { padding: clamp(1.5rem, 6vw, 1.9rem); }
  .why .reason__icon { width: 50px; height: 50px; margin-bottom: 1.05rem; }
  .why .reason__icon svg { width: 30px; height: 30px; }
  .why .reason__title { padding-bottom: 0.62rem; }
  .why .reason__title::after { width: 26px; }
}

/* — Respeta movimiento reducido (las microinteracciones son sutiles, pero por rigor a11y) — */
@media (prefers-reduced-motion: reduce) {
  .why .card,
  .why .reason__icon,
  .why .reason__title::after { transition: none; }
}

/* ════════ 5 · EJES ════════ */
.themes { overflow: hidden; padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.themes__strip {
  display: flex; gap: clamp(1rem, 2vw, 1.5rem);
  padding-inline: max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 1.4rem;
  scrollbar-width: thin; scrollbar-color: var(--orange) transparent;
}
.theme {
  flex: 0 0 clamp(240px, 26vw, 300px); scroll-snap-align: start;
  position: relative; color: var(--cream);
  height: clamp(340px, 42vw, 420px);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 14px 34px rgba(33, 53, 46, 0.18);
  transition: transform 0.45s var(--ease-fruit), box-shadow 0.45s;
  will-change: transform;
}
.theme__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 0.6s var(--ease-fruit);
}
.theme::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,44,34,0.1) 0%, rgba(20,44,34,0.3) 38%, rgba(20,44,34,0.94) 100%);
}
.theme__body { position: relative; z-index: 2; padding: 1.5rem 1.4rem 1.6rem; display: grid; gap: 0.45rem; }
.theme:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(33, 53, 46, 0.32); }
.theme:hover .theme__img { transform: scale(1.07); }
.theme__num { font-family: var(--grot); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange-l); }
.theme__title { font-family: var(--disp); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.04em; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.theme__text { font-size: 0.92rem; color: color-mix(in srgb, var(--cream) 82%, transparent); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }

/* ════════ 6 · PROGRAMA ════════ */
.program__filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.chip {
  font-family: var(--grot); font-weight: 600; font-size: 0.82rem;
  border: 1.5px solid color-mix(in srgb, var(--pine) 35%, transparent);
  color: var(--pine); border-radius: 99px; padding: 0.5em 1.2em;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-snap);
}
.chip:hover { transform: translateY(-2px); border-color: var(--pine); }
.chip.is-active { background: var(--pine); color: var(--cream); border-color: var(--pine); }

.timeline { list-style: none; position: relative; padding-left: clamp(0px, 2vw, 12px); }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  left: calc(clamp(0px, 2vw, 12px) + clamp(54px, 7vw, 78px) + 1.05rem);
  width: 2.5px; background: color-mix(in srgb, var(--pine) 18%, transparent);
}
.timeline__progress { display: none; }
.slot {
  position: relative; display: grid;
  grid-template-columns: clamp(54px, 7vw, 78px) 1fr;
  gap: 2.2rem; padding-block: 1.05rem;
  transition: opacity 0.4s, transform 0.45s var(--ease-fruit);
}
.slot::before {
  content: ''; position: absolute; top: 1.75rem;
  left: calc(clamp(54px, 7vw, 78px) + 1.05rem - 5px);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2.5px solid var(--cream-2);
  box-shadow: 0 0 0 2.5px var(--orange);
}
.slot.is-hidden { display: none; }
.slot__time { font-family: var(--disp); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--orange-d); line-height: 1.2; text-align: right; }
.slot__body {
  background: var(--paper); border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--pine) 10%, transparent);
  padding: 1.2rem 1.5rem; box-shadow: 0 4px 16px rgba(33, 53, 46, 0.06);
  transition: transform 0.4s var(--ease-fruit), box-shadow 0.4s;
}
.slot__body:hover { transform: translateX(6px); box-shadow: 0 10px 30px rgba(33, 53, 46, 0.12); }
.slot__tag {
  display: inline-block; font-family: var(--grot); font-weight: 700;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: color-mix(in srgb, var(--orange) 14%, transparent); color: var(--orange-d);
  border-radius: 4px; padding: 0.3em 0.7em; margin-bottom: 0.5rem;
}
.slot__tag--panel { background: color-mix(in srgb, var(--leaf) 16%, transparent); color: var(--leaf-d); }
.slot__tag--net { background: color-mix(in srgb, var(--pomelo) 28%, transparent); color: #8a6414; }
.slot__tag--tech { background: color-mix(in srgb, var(--pine) 12%, transparent); color: var(--pine); }
.slot__title { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--pine-d); margin-bottom: 0.35rem; }
.slot__detail { font-size: 0.93rem; color: color-mix(in srgb, var(--ink) 78%, transparent); margin-bottom: 0.55rem; }
.slot__room { font-family: var(--grot); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pine); }
.program__note { margin-top: 2.4rem; font-size: 0.92rem; font-style: italic; color: color-mix(in srgb, var(--ink) 72%, transparent); }

/* ════════ 7 · PONENTES ════════ */
.speakers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); margin-bottom: 2.8rem; }
.profile {
  background: var(--paper); border-radius: 16px; text-align: center;
  border: 1.5px dashed color-mix(in srgb, var(--pine) 30%, transparent);
  padding: 1.8rem 1.3rem 1.6rem;
  transition: transform 0.4s var(--ease-fruit), border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
}
.profile:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--orange); border-style: solid;
  box-shadow: 0 18px 38px rgba(33, 53, 46, 0.13);
}
.profile__roundel {
  width: 76px; height: 76px; margin: 0 auto 1rem; color: var(--pine);
  background: var(--cream-2); border-radius: 50%; padding: 12px;
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease-snap);
}
.profile:hover .profile__roundel { background: var(--orange); color: var(--cream); transform: rotate(8deg) scale(1.06); }
.profile__roundel svg { width: 100%; height: 100%; }
.profile__role { font-family: var(--serif); font-weight: 600; font-size: 0.95rem; line-height: 1.4; color: var(--pine-d); margin-bottom: 0.4rem; }
.profile__area { font-family: var(--grot); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em; color: var(--orange-d); text-transform: uppercase; }

.speakers__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--pine); color: var(--cream);
  border-radius: 18px; padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3.4vw, 2.6rem);
  flex-wrap: wrap;
}
.speakers__announce { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.speakers__announce p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; }
.speakers__cta .btn--outline { border-color: var(--orange-l); color: var(--orange-l); }
.speakers__cta .btn--outline:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ════════ 8 · ENTRADAS ════════ */
.tickets { overflow: hidden; position: relative; background: var(--cream); }
.tickets__bg { position: absolute; inset: 0; pointer-events: none; }
.tickets__bg img { width: 100%; height: 100%; object-fit: cover; }
.tickets__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 82% 78% at 50% 52%,
    color-mix(in srgb, var(--cream) 84%, transparent) 0%,
    color-mix(in srgb, var(--cream) 58%, transparent) 55%,
    color-mix(in srgb, var(--cream) 12%, transparent) 100%);
}
.tickets .section__inner { position: relative; z-index: 1; }
.tickets .section__head { text-align: center; }
.tickets .eyebrow { justify-content: center; }
.tickets .eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--orange); }
.tickets__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem); align-items: stretch; position: relative;
}
.ticket {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border-radius: 18px;
  border: 1.5px solid color-mix(in srgb, var(--pine) 14%, transparent);
  box-shadow: 0 8px 26px rgba(33, 53, 46, 0.08);
  padding: 2.1rem 1.8rem 1.8rem;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease-fruit);
}
.ticket:hover { box-shadow: 0 24px 54px rgba(33, 53, 46, 0.16); }
.ticket--featured { border: 2.5px solid var(--orange); background: linear-gradient(180deg, #fff8ec, var(--paper)); }
.ticket__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-1.5deg);
  white-space: nowrap; font-family: var(--grot); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--zest); color: #fff; border-radius: 5px; padding: 0.45em 1.1em;
  box-shadow: 0 4px 12px rgba(199, 59, 39, 0.4);
}
.ticket__head { text-align: center; margin-bottom: 1.2rem; }
.ticket__name { font-family: var(--disp); font-weight: 400; font-size: 1.45rem; letter-spacing: 0.08em; color: var(--pine); margin-bottom: 0.5rem; }
.ticket__price { font-family: var(--disp); font-size: clamp(2.6rem, 4.6vw, 3.4rem); line-height: 1; color: var(--orange-d); }
.ticket__currency { font-size: 0.5em; vertical-align: 0.6em; margin-right: 0.06em; }
.ticket__clp { font-family: var(--grot); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.18em; color: var(--pine); margin-left: 0.4em; }
.ticket__validity { font-size: 0.84rem; font-style: italic; color: color-mix(in srgb, var(--ink) 64%, transparent); margin-top: 0.4rem; }
.ticket__tear {
  position: relative; height: 2px; margin: 0.4rem -1.8rem 1.2rem;
  background-image: linear-gradient(90deg, color-mix(in srgb, var(--pine) 30%, transparent) 50%, transparent 50%);
  background-size: 12px 2px;
}
.ticket__tear::before, .ticket__tear::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; background: var(--cream-2);
}
.ticket--featured .ticket__tear::before, .ticket--featured .ticket__tear::after { box-shadow: inset 0 0 0 2.5px var(--orange); }
.ticket__tear::before { left: -11px; }
.ticket__tear::after { right: -11px; }
.ticket__perks { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.6rem; flex: 1; }
.ticket__perks li { position: relative; padding-left: 1.7em; font-size: 0.94rem; }
.ticket__perks li::before {
  content: ''; position: absolute; left: 0; top: 0.32em;
  width: 1em; height: 1em; border-radius: 50%;
  background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 L6.5 12 L13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 L6.5 12 L13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.tickets__notes {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem 2rem; margin-top: 2.6rem;
}
.tickets__notes li { font-size: 0.84rem; font-style: italic; color: color-mix(in srgb, var(--ink) 68%, transparent); }
.tickets__notes li::before { content: '·'; color: var(--orange); font-weight: 700; margin-right: 0.5em; }

/* ════════ 9 · SEDE ════════ */
.venue__grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.venue__desc { margin-block: 1.2rem 2rem; }
.venue__data { display: grid; gap: 0; border-top: 1.5px solid color-mix(in srgb, var(--pine) 18%, transparent); }
.venue__row {
  display: grid; grid-template-columns: 150px 1fr; gap: 1.2rem;
  padding-block: 0.95rem;
  border-bottom: 1.5px solid color-mix(in srgb, var(--pine) 18%, transparent);
}
.venue__row dt { font-family: var(--grot); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-d); padding-top: 0.2em; }
.venue__row dd { font-size: 0.95rem; }
.venue__map {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 2px solid var(--pine);
  box-shadow: 10px 10px 0 color-mix(in srgb, var(--orange) 30%, transparent), 0 18px 44px rgba(33, 53, 46, 0.16);
  aspect-ratio: 4 / 3.4;
}
.venue__svgmap { position: absolute; inset: 0; width: 100%; height: 100%; }
.venue__open {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--grot); font-weight: 600; font-size: 0.8rem;
  background: var(--pine); color: var(--cream); text-decoration: none;
  padding: 0.55em 1.1em; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(20, 44, 34, 0.3);
  transition: background 0.3s, transform 0.3s var(--ease-snap);
}
.venue__open:hover { background: var(--orange-d); transform: translateY(-2px); }
.venue__pin {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--disp); font-size: 1rem; letter-spacing: 0.1em;
  background: var(--pine); color: var(--cream);
  padding: 0.45em 1em; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(20, 44, 34, 0.35);
}

/* ════════ 10 · AUSPICIOS ════════ */
.sponsors { overflow: hidden; }
.sponsors__bg { position: absolute; top: 0; left: 0; right: 0; height: clamp(380px, 50vw, 580px); pointer-events: none; }
.sponsors__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.sponsors__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, var(--pine-d) 4%, color-mix(in srgb, var(--pine-d) 55%, transparent) 48%, transparent 78%),
    linear-gradient(180deg, color-mix(in srgb, var(--pine-d) 35%, transparent) 0%, color-mix(in srgb, var(--pine-d) 30%, transparent) 50%, var(--pine-d) 97%);
}
.sponsors .section__inner { position: relative; z-index: 1; }

.sponsors__head { max-width: 780px; margin-bottom: clamp(2.6rem, 5.5vw, 4rem); }
.sponsors__head .section__intro--light { margin-top: 1rem; }
.sponsors__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }
.sponsors__trust-label {
  font-family: var(--grot); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 60%, transparent);
}
.sponsors__trust { gap: 1.1rem; }
.sponsor-plaque {
  display: block; border-radius: 16px; overflow: hidden;
  height: clamp(104px, 12vw, 132px); background: var(--paper);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  animation: plaqueFloat 5s ease-in-out infinite;
  transition: transform 0.45s var(--ease-fruit), box-shadow 0.45s;
  will-change: transform;
}
.sponsor-plaque:nth-of-type(even) { animation-delay: -2.5s; }
.sponsor-plaque img { height: 100%; width: auto; display: block; }
.sponsor-plaque:hover { transform: translateY(-7px) scale(1.03); box-shadow: 0 26px 52px rgba(0, 0, 0, 0.44); animation-play-state: paused; }
@keyframes plaqueFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.sponsors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 1.6vw, 1.3rem); align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  border: 1.5px solid color-mix(in srgb, var(--cream) 20%, transparent);
  border-top: none;
  border-radius: 18px; padding: 2.3rem 1.7rem 1.7rem; overflow: visible;
  background-repeat: no-repeat; background-origin: border-box;
  background-image:
    linear-gradient(90deg, #8fa399, var(--mist), #ffffff, var(--mist), #8fa399),
    linear-gradient(160deg, color-mix(in srgb, var(--cream) 9%, transparent), color-mix(in srgb, var(--cream) 5%, transparent));
  background-size: 200% 4px, 100% 100%;
  background-position: 100% 0, 0 0;
  animation: tierBarShimmer 4s linear infinite;
  transition: border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
}
.tier__citrus {
  position: absolute; top: -28px; right: -14px; width: 90px; height: 92px;
  z-index: 3; pointer-events: none; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}
.tier__citrus img { width: 100%; height: 100%; object-fit: contain; display: block; animation: tierCitrusFloat 7s ease-in-out infinite; transform-origin: center; }

.tier--silver .tier__perks li::before { color: var(--mist); }
.tier--silver:hover { border-color: color-mix(in srgb, var(--mist) 70%, transparent); border-top: none; }

.tier--gold {
  background-image:
    linear-gradient(90deg, #9a7318, var(--pomelo), #fff0c4, var(--pomelo), #9a7318),
    linear-gradient(160deg, color-mix(in srgb, var(--pomelo) 17%, transparent), color-mix(in srgb, var(--cream) 5%, transparent));
  border-color: color-mix(in srgb, var(--pomelo) 48%, transparent);
}
.tier--gold .tier__perks li::before { color: var(--pomelo); }
.tier--gold:hover { border-color: color-mix(in srgb, var(--pomelo) 78%, transparent); border-top: none; }

.tier--featured {
  color: var(--ink); border: none;
  background-image:
    linear-gradient(90deg, var(--orange-d), var(--orange), var(--orange-l), var(--orange), var(--orange-d)),
    linear-gradient(0deg, var(--cream), var(--cream));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}
.tier--featured .tier__name { color: var(--orange-d); }
.tier--featured .tier__pitch { color: color-mix(in srgb, var(--ink) 72%, transparent); }
.tier--featured .tier__perks li::before { color: var(--orange); }

.tier__stamp {
  position: absolute; top: -14px; left: 18px;
  font-family: var(--grot); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--zest); color: #fff;
  padding: 0.5em 1em; border-radius: 5px; transform: rotate(-2deg);
  box-shadow: 0 6px 16px rgba(199, 59, 39, 0.45); z-index: 4;
}
.tier__name { font-family: var(--disp); font-weight: 400; font-size: clamp(1.5rem, 2.7vw, 2.1rem); line-height: 1.05; letter-spacing: 0.09em; text-transform: uppercase; margin: 0.3rem 0 0.3rem; }
.tier__pitch { font-family: var(--serif); font-size: 0.95rem; font-style: italic; margin-bottom: 1.35rem; color: color-mix(in srgb, var(--cream) 76%, transparent); }
.tier__perks { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.7rem; flex: 1; }
.tier__perks li { position: relative; padding-left: 1.5em; font-size: 0.9rem; line-height: 1.45; }
.tier__perks li::before { content: '◆'; position: absolute; left: 0; top: 0.05em; font-size: 0.7em; line-height: 1.7; color: var(--orange-l); }

.tier--silver:hover { box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), 0 0 36px rgba(220, 229, 221, 0.45); border-color: color-mix(in srgb, var(--mist) 75%, transparent); }
.tier--gold:hover { box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), 0 0 38px rgba(232, 180, 58, 0.55); border-color: color-mix(in srgb, var(--pomelo) 80%, transparent); }
.tier--featured:hover { box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 48px rgba(221, 107, 28, 0.6); }
.tier:hover .tier__citrus { transform: rotate(360deg) scale(1.14); transition: transform 0.95s var(--ease-fruit); }

.sponsors__note { margin-top: 2.6rem; text-align: center; font-size: 0.95rem; color: color-mix(in srgb, var(--cream) 75%, transparent); }
.sponsors__note a { color: var(--orange-l); }

@keyframes tierBarShimmer { 0% { background-position: 100% 0, 0 0; } 100% { background-position: -100% 0, 0 0; } }
@keyframes tierCitrusFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(5deg); } }
@keyframes tierCitrusPop { 0% { transform: translateY(-46px) rotate(-120deg) scale(0.4); } 58% { transform: translateY(8px) rotate(12deg) scale(1.08); } 80% { transform: translateY(-3px) rotate(-4deg) scale(0.99); } 100% { transform: translateY(0) rotate(0) scale(1); } }

/* ════════ 11 · ORGANIZA ════════ */
.org__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
.org__card {
  background: var(--paper); border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--pine) 12%, transparent);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  box-shadow: 0 8px 26px rgba(33, 53, 46, 0.07);
}
.org__person { display: flex; align-items: center; gap: 1.1rem; margin-block: 1.2rem; }
.org__avatar { width: 72px; height: 72px; flex: 0 0 auto; }
.org__name { font-family: var(--disp); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.04em; color: var(--pine-d); }
.org__role { font-family: var(--grot); font-size: 0.82rem; font-weight: 500; color: var(--orange-d); }
.org__text { font-size: 0.98rem; }
.org__side { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); align-content: start; }
.org__partners, .org__press {
  background: var(--cream-2); border-radius: 18px;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  border: 1.5px dashed color-mix(in srgb, var(--pine) 32%, transparent);
}
.org__partners-note, .org__press p { font-size: 0.93rem; margin-bottom: 0.9rem; }

/* ════════ 12 · FAQ ════════ */
.faq__list { display: grid; gap: 0.8rem; }
.faq__item {
  background: var(--paper); border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--pine) 14%, transparent);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] { border-color: var(--orange); box-shadow: 0 10px 30px rgba(33, 53, 46, 0.1); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-weight: 600; font-size: 1.02rem;
  color: var(--pine-d); list-style: none; cursor: pointer;
  padding: 1.15rem 1.5rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: 0 0 22px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2.5px; background: var(--orange);
  transform: translate(-50%, -50%); border-radius: 2px;
  transition: transform 0.4s var(--ease-fruit);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 1.5rem; overflow: hidden; }
.faq__a p { padding-bottom: 1.2rem; font-size: 0.95rem; color: color-mix(in srgb, var(--ink) 82%, transparent); }

/* ════════ 13 · CTA FINAL ════════ */
.finale {
  position: relative; overflow: hidden;
  background: var(--pine-dd); color: var(--cream);
  padding-block: clamp(5rem, 11vw, 9rem);
  text-align: center;
}
.finale__bg { position: absolute; inset: -12% 0; opacity: 0.16; pointer-events: none; will-change: transform; }
.finale__bg img { width: 100%; height: 100%; object-fit: cover; }
.finale__inner { position: relative; max-width: 880px; margin-inline: auto; padding-inline: var(--gutter); }
.finale__script {
  font-family: var(--script); font-weight: 700;
  font-size: clamp(1.8rem, 4.4vw, 3rem); color: var(--orange-l);
  transform: rotate(-2deg); margin-bottom: 0.3rem;
}
.finale__title {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: 0.02em;
  margin-bottom: 2.2rem;
}
.countdown--finale { margin-bottom: 2.4rem; }
.countdown--finale .countdown__unit { background: color-mix(in srgb, var(--cream) 8%, transparent); border-color: color-mix(in srgb, var(--cream) 25%, transparent); }
.countdown--finale .countdown__num { color: var(--orange-l); }
.countdown--finale .countdown__label { color: color-mix(in srgb, var(--cream) 70%, transparent); }
.finale__ctas { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.finale__link { font-family: var(--grot); font-weight: 600; font-size: 0.92rem; color: var(--orange-l); text-decoration: none; }
.finale__link:hover { text-decoration: underline; }

/* ════════ 14 · CONTACTO ════════ */
.contact { position: relative; overflow: hidden; background: var(--cream); }
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 92% 82% at 50% 50%,
    color-mix(in srgb, var(--cream) 82%, transparent) 0%,
    color-mix(in srgb, var(--cream) 52%, transparent) 60%,
    color-mix(in srgb, var(--cream) 8%, transparent) 100%);
}
.contact .section__inner { position: relative; z-index: 1; }
.contact .form { box-shadow: 0 24px 56px rgba(33, 53, 46, 0.2); }
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__text { margin-block: 1.1rem 1.6rem; }
.contact__email {
  font-family: var(--disp); font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.04em; color: var(--orange-d); text-decoration: none;
  border-bottom: 3px solid color-mix(in srgb, var(--orange) 40%, transparent);
  transition: border-color 0.3s;
}
.contact__email:hover { border-color: var(--orange); }

.form {
  background: var(--paper); border-radius: 20px;
  border: 1.5px solid color-mix(in srgb, var(--pine) 16%, transparent);
  box-shadow: 0 14px 40px rgba(33, 53, 46, 0.1);
  padding: clamp(1.6rem, 3.4vw, 2.6rem);
  display: grid; gap: 1.15rem;
  position: relative;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form__field { display: grid; gap: 0.4rem; }
.form__field label {
  font-family: var(--grot); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine);
}
.form__field label span[aria-hidden] { color: var(--orange); }
.form__opt { color: color-mix(in srgb, var(--pine) 55%, transparent); text-transform: none; letter-spacing: 0; }
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--serif); font-size: 0.97rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid color-mix(in srgb, var(--pine) 22%, transparent);
  border-radius: 10px; padding: 0.78em 1em; width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 16%, transparent);
}
.form__field.is-invalid input, .form__field.is-invalid select, .form__field.is-invalid textarea {
  border-color: var(--zest);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--zest) 14%, transparent);
}
.form__error {
  display: none; font-size: 0.8rem; font-style: italic; color: var(--zest);
}
.form__field.is-invalid .form__error { display: block; }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form__success {
  display: none; text-align: center;
  font-size: 1rem; font-weight: 500; color: var(--leaf-d);
  background: color-mix(in srgb, var(--leaf) 12%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--leaf) 35%, transparent);
  border-radius: 12px; padding: 1rem 1.2rem;
}
.form.is-sent .form__success { display: block; }
.form.is-sent button[type="submit"] { display: none; }

/* ════════ FOOTER ════════ */
.footer { background: var(--pine-dd); color: var(--cream); }
.footer__inner {
  max-width: var(--max-w); margin-inline: auto; padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2.5rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem);
}
.footer__brand { display: grid; gap: 1.2rem; align-content: start; justify-items: start; }
.footer__phrase { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; }
.footer__phrase em { font-family: var(--script); font-style: normal; font-weight: 600; font-size: 1.2em; color: var(--orange-l); }
.footer__col { display: grid; gap: 0.55rem; align-content: start; }
.footer__col h3 {
  font-family: var(--grot); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange-l);
  margin-bottom: 0.5rem;
}
.footer__col a { color: color-mix(in srgb, var(--cream) 80%, transparent); text-decoration: none; font-size: 0.93rem; transition: color 0.25s, transform 0.25s; width: fit-content; }
.footer__col a:hover { color: var(--orange-l); transform: translateX(3px); }
.footer__legal {
  border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  padding: 1.4rem var(--gutter) 2rem; text-align: center;
  font-size: 0.78rem; color: color-mix(in srgb, var(--cream) 52%, transparent);
  max-width: 900px; margin-inline: auto;
}

/* ════════ Sticky CTA móvil ════════ */
.sticky-cta {
  position: fixed; left: auto; right: 0.8rem; bottom: 0.8rem; z-index: 950;
  transform: translateY(160%); transition: transform 0.5s var(--ease-fruit);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
/* Píldora compacta (no barra a lo ancho) para que no moleste tanto */
.sticky-cta .btn {
  width: auto; padding: 0.7em 1.3em; font-size: 0.82rem;
  box-shadow: 0 3px 0 var(--orange-d), 0 9px 20px rgba(20, 44, 34, 0.35);
}

/* ════════ Animación: estados iniciales (JS los anima) ════════ */
.js [data-hero] { opacity: 0; }
.js .hero__line > span { transform: translateY(110%); }
.js [data-reveal] { opacity: 0; transform: translateY(36px); }
.js [data-stagger] > * { opacity: 0; transform: translateY(44px); }
.js [data-theme-card] { opacity: 0; transform: translateY(50px) rotate(1.5deg); }
.js .slot { opacity: 0; transform: translateX(-26px); }

/* — Entrada de las cards de auspicio (la dispara .is-in vía ScrollTrigger) — */
.js [data-tiers] .tier { opacity: 0; transform: translateY(46px); }
.js [data-tiers].is-in .tier { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease-fruit), transform 0.8s var(--ease-fruit); }
.js [data-tiers].is-in .tier:nth-child(1) { transition-delay: 0.05s; }
.js [data-tiers].is-in .tier:nth-child(2) { transition-delay: 0.18s; }
.js [data-tiers].is-in .tier:nth-child(3) { transition-delay: 0.31s; }
.js [data-tiers].is-in .tier:nth-child(4) { transition-delay: 0.44s; }
.js [data-tiers].is-in .tier__citrus { animation: tierCitrusPop 0.7s var(--ease-snap) backwards; }
.js [data-tiers].is-in .tier:nth-child(1) .tier__citrus { animation-delay: 0.35s; }
.js [data-tiers].is-in .tier:nth-child(2) .tier__citrus { animation-delay: 0.48s; }
.js [data-tiers].is-in .tier:nth-child(3) .tier__citrus { animation-delay: 0.61s; }

/* ════════ Responsive ════════ */
@media (max-width: 1080px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors__grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
  .tier--featured { order: -1; }
}
@media (max-width: 620px) {
  .sponsors__grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 960px) {
  :root { --header-h: 96px; --header-h-compact: 78px; }
  /* En móvil el logo NO debe crecer al compactar (82px cabía solo en desktop) → se cortaba */
  .header.is-compact .brand__logo { height: 64px; }
  .nav { display: none; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 1rem; }
  .hero__visual { order: -1; height: clamp(290px, 50vw, 440px); }
  /* subconjunto curado en móvil (menos piezas, sin saturar ni pesar) */
  .hf--mandarinas, .hf--gajo, .hf--limon, .hf--limon-azahar, .hf--azahar2 { display: none; }
  .hf--main { top: 7%; right: 18%; width: clamp(215px, 48vw, 350px); }
  .hf--media-naranja { top: 8%; right: 0%; width: clamp(120px, 30vw, 195px); }
  .hf--mandarina-azahar { bottom: 4%; left: 2%; width: clamp(112px, 30vw, 185px); }
  .hf--azahar1 { top: 50%; left: 6%; width: clamp(52px, 13vw, 86px); }
  .stamp--hero { left: 4%; top: auto; bottom: 4%; width: 92px; height: 92px; }
  .section__head--split { grid-template-columns: 1fr; align-items: start; }
  .js .manifesto-cine__title { font-size: clamp(2rem, 8.5vw, 3rem); max-width: 100%; }
  .js .manifesto-cine__body { top: 50%; gap: 0.7rem; }
  .manifesto-cine__body .manifesto-cine__p { font-size: 0.92rem; line-height: 1.5; }
  .manifesto-cine__body .manifesto-cine__p--lede { font-size: clamp(1.12rem, 4.6vw, 1.45rem); line-height: 1.9; letter-spacing: 0.015em; }
  .manifesto-cine__body .manifesto-cine__quote { font-size: clamp(1.1rem, 4.5vw, 1.35rem); margin-top: 0.5rem; }
  .manifesto-cine__body .manifesto-cine__audience { gap: 0.4rem; }
  .manifesto-cine__body .manifesto-cine__audience li { font-size: 0.7rem; padding: 0.35em 0.85em; }
  .venue__grid, .contact__grid, .org__grid { grid-template-columns: 1fr; }
  .tickets__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .ticket--featured { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .reasons__grid { grid-template-columns: 1fr; }
  .speakers__grid { grid-template-columns: 1fr 1fr; }
  .profile__role { font-size: 0.85rem; }
  .form__row { grid-template-columns: 1fr; }
  .countdown { gap: 0.5rem; }
  .countdown__unit { min-width: 78px; padding: 0.85rem 0.6rem; }
  .countdown__num { font-family: var(--grot); font-weight: 700; font-size: clamp(1.5rem, 7vw, 1.85rem); letter-spacing: -0.02em; }
  .countdown__sep { display: none; }
  /* — Hero móvil: legibilidad sobre la naranja + posición + escala (QA jul-2026) — */
  .manifesto-cine__scrim { background: linear-gradient(180deg, rgba(20,44,34,0.6) 0%, rgba(20,44,34,0.34) 30%, rgba(20,44,34,0.47) 60%, rgba(20,44,34,0.96) 100%); }
  .js .manifesto-cine__title { text-shadow: 0 2px 5px rgba(11,26,20,0.9), 0 10px 34px rgba(11,26,20,0.55); }
  .js .manifesto-cine__body { top: 58%; }
  .manifesto-cine__ctas .btn--lg { font-size: 0.9rem; padding: 0.86em 1.55em; }
  .venue__row { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .speakers__cta { justify-content: center; text-align: center; }
  .timeline::before { left: calc(clamp(0px, 2vw, 12px) + clamp(54px, 7vw, 78px) + 0.6rem); }
  .slot { gap: 1.3rem; }
  .slot::before { left: calc(clamp(54px, 7vw, 78px) + 0.6rem - 5px); }
}

/* ════════ Reduced motion ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js [data-hero], .js [data-reveal], .js [data-stagger] > *, .js [data-theme-card], .js .slot { opacity: 1 !important; transform: none !important; }
  .js .hero__line > span { transform: none !important; }
  .js .manifesto-cine__body, .js .manifesto-cine__body [data-cine-line], .js .manifesto-cine__intro { opacity: 1 !important; }
  .js [data-tiers] .tier, .js [data-tiers] .tier__citrus { opacity: 1 !important; transform: none !important; }
  .tier, .tier__citrus img, .sponsor-plaque { animation: none !important; }
}

/* ════════════════════════════════════════════════════════
   v2.1 · Refinamientos Fase 0 (diseño · escala · a11y)
   ════════════════════════════════════════════════════════ */

/* — Cifras como Meta 2026 — */
.badge--meta { background: var(--pomelo); color: var(--pine-dd); transform: rotate(-2deg); margin-right: 0.55em; }
.stats__kicker .badge--meta { vertical-align: middle; }
.stats__kicker { display: flex; align-items: center; justify-content: center; gap: 0.7em; flex-wrap: wrap; }
.stat__meta {
  font-family: var(--grot); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--pomelo);
}
.stats__foot {
  margin-top: 2.2rem; text-align: center; font-size: 0.82rem; font-style: italic;
  color: color-mix(in srgb, var(--cream) 62%, transparent);
  max-width: 64ch; margin-inline: auto;
}

/* — Escala media reforzada (jerarquía de 3er nivel) — */
.slot__title { font-size: clamp(1.12rem, 1.7vw, 1.28rem); font-weight: 700; }
.profile__role { font-size: 1.04rem; }

/* — Cabecera "mayor" para los hitos comerciales — */
.h2--major { font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.0; }

/* — Accesibilidad: foco, skip-link, sr-only, áreas táctiles — */
.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;
}
:focus-visible { outline: 3px solid var(--orange-d); outline-offset: 3px; border-radius: 4px; }
.section--dark :focus-visible, .drawer :focus-visible, .footer :focus-visible,
.stats :focus-visible, .finale :focus-visible { outline-color: var(--orange-l); }

.skip-link {
  position: fixed; top: 0.6rem; left: 0.6rem; z-index: 10000;
  background: var(--pine); color: var(--cream);
  font-family: var(--grot); font-weight: 600; font-size: 0.9rem;
  padding: 0.7em 1.2em; border-radius: 8px; text-decoration: none;
  transform: translateY(-180%); transition: transform 0.25s var(--ease-fruit);
}
.skip-link:focus { transform: translateY(0); }

/* Áreas táctiles ≥44px */
.nav__link { padding-block: 0.7rem; }
.footer__col a { padding-block: 0.28rem; }
.chip { min-height: 44px; }
.burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

/* Pin del mapa: pulso por CSS (reemplaza SMIL; respeta reduced-motion) */
.venue__pulse { animation: venuePulse 3.4s ease-in-out infinite; }
@keyframes venuePulse {
  0%, 100% { r: 46px; opacity: 0.16; }
  50%      { r: 62px; opacity: 0.06; }
}

/* Bloqueo de scroll de fondo con el drawer abierto */
body.drawer-open { overflow: hidden; }

/* — Bloque "Por qué auspiciar" — */
.why__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem); justify-content: center;
}

/* — Selector de idioma (i18n preparado) — */
.langsel { display: inline-flex; gap: 2px; border: 1.5px solid color-mix(in srgb, var(--pine) 28%, transparent); border-radius: 99px; padding: 2px; }
.langsel__btn {
  font-family: var(--grot); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--pine); padding: 0.4em 0.6em; border-radius: 99px; line-height: 1; min-height: 36px;
  transition: background 0.25s, color 0.25s;
}
.langsel__btn.is-active { background: var(--pine); color: var(--cream); }
.langsel__btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.langsel--drawer { margin-top: 0.4rem; border-color: color-mix(in srgb, var(--cream) 35%, transparent); }
.langsel--drawer .langsel__btn { color: var(--cream); }
.langsel--drawer .langsel__btn.is-active { background: var(--cream); color: var(--pine-d); }

/* — Matriz comparativa de auspicios (sobre fondo pine) — */
.matrix { margin-top: 2.4rem; }
.matrix__toggle {
  font-family: var(--grot); font-weight: 600; font-size: 0.9rem; color: var(--orange-l);
  cursor: pointer; list-style: none; padding: 0.6em 0; display: inline-flex; align-items: center; gap: 0.5em; min-height: 44px;
}
.matrix__toggle::-webkit-details-marker { display: none; }
.matrix__toggle::before { content: '+'; font-family: var(--disp); font-size: 1.2em; }
.matrix[open] .matrix__toggle::before { content: '–'; }
.matrix__scroll { overflow-x: auto; margin-top: 1rem; -webkit-overflow-scrolling: touch; }
.matrix__table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.9rem; }
.matrix__table th, .matrix__table td { padding: 0.7em 0.9em; border-bottom: 1px solid color-mix(in srgb, var(--cream) 18%, transparent); }
.matrix__table thead th { font-family: var(--grot); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); text-align: center; }
.matrix__table thead th:first-child { text-align: left; }
.matrix__table thead th:nth-child(2) { color: var(--orange-l); }
.matrix__table tbody th { font-weight: 500; color: color-mix(in srgb, var(--cream) 88%, transparent); text-align: left; }
.matrix__table tbody td { color: color-mix(in srgb, var(--cream) 80%, transparent); text-align: center; }
.matrix__hint { display: block; font-family: var(--grot); font-weight: 600; font-size: 0.62rem; color: var(--zest); }
.matrix__note { margin-top: 0.8rem; font-size: 0.8rem; font-style: italic; color: color-mix(in srgb, var(--cream) 60%, transparent); }

/* — Formulario nativo de auspicio — */
.sponsor-lead__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.sponsor-lead__text { margin-block: 1.1rem 1.4rem; }
.sponsor-lead__points { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.sponsor-lead__points li { position: relative; padding-left: 1.7em; font-size: 0.95rem; }
.sponsor-lead__points li::before {
  content: ''; position: absolute; left: 0; top: 0.32em; width: 1em; height: 1em; border-radius: 50%; background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 L6.5 12 L13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 L6.5 12 L13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 960px) { .sponsor-lead__grid { grid-template-columns: 1fr; } }

/* — Captura de leads (newsletter ponentes) — */
.leadcap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center; background: var(--pine); color: var(--cream);
  border-radius: 18px; padding: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.2rem;
}
.leadcap__title { font-family: var(--disp); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.03em; margin: 0.7rem 0 0.3rem; }
.leadcap__text { font-size: 0.95rem; color: color-mix(in srgb, var(--cream) 80%, transparent); }
.leadcap__form.form { background: transparent; border: 0; box-shadow: none; padding: 0; display: flex; gap: 0.6rem; align-items: flex-start; flex-wrap: wrap; }
.leadcap__form .form__field { flex: 1; min-width: 200px; gap: 0.3rem; }
.leadcap__form input[type="email"] {
  font-family: var(--serif); font-size: 0.97rem; color: var(--ink); background: var(--cream);
  border: 1.5px solid color-mix(in srgb, var(--pine) 22%, transparent); border-radius: 10px; padding: 0.78em 1em; width: 100%;
}
.leadcap__form .form__error { color: var(--orange-l); }
.leadcap__form .form__success { flex-basis: 100%; }
@media (max-width: 760px) { .leadcap { grid-template-columns: 1fr; } }

/* — Consentimiento en formularios — */
.form__consent .consent { display: flex; gap: 0.6em; align-items: flex-start; font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.85rem; color: color-mix(in srgb, var(--ink) 82%, transparent); cursor: pointer; }
.form__consent input[type="checkbox"] { width: auto; flex: 0 0 auto; margin-top: 0.25em; accent-color: var(--orange-d); }
.form__consent .consent a { color: var(--orange-d); }
.leadcap__legal { flex-basis: 100%; font-size: 0.78rem; color: color-mix(in srgb, var(--cream) 72%, transparent); margin-top: 0.2rem; }
.leadcap__legal a { color: var(--orange-l); }

/* — Footer legal — */
.footer__legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem 1.4rem; padding: 0.6rem var(--gutter) 0; }
.footer__legal-links a, .footer__cookiebtn {
  font-family: var(--grot); font-weight: 500; font-size: 0.82rem;
  color: color-mix(in srgb, var(--cream) 78%, transparent);
  text-decoration: none; padding: 0.45rem 0; transition: color 0.25s;
}
.footer__legal-links a:hover, .footer__cookiebtn:hover { color: var(--orange-l); }

/* — Banner de cookies — */
.cookie {
  position: fixed; left: 0.8rem; right: 0.8rem; bottom: 0.8rem; z-index: 960;
  max-width: 720px; margin-inline: auto;
  background: var(--pine-d); color: var(--cream);
  border: 1.5px solid color-mix(in srgb, var(--cream) 20%, transparent);
  border-radius: 14px; padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 44px rgba(20, 44, 34, 0.45);
  display: grid; gap: 0.9rem;
}
.cookie[hidden] { display: none; }
.cookie__text { font-size: 0.86rem; color: color-mix(in srgb, var(--cream) 86%, transparent); }
.cookie__text a { color: var(--orange-l); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-end; }
@media (max-width: 560px) { .cookie__actions { } .cookie__actions .btn { flex: 1; } }

/* — Páginas legales — */
.legal { max-width: 820px; margin-inline: auto; padding: clamp(2rem, 5vw, 4rem) var(--gutter) 4rem; }
.legal h1 { font-family: var(--disp); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); color: var(--pine-d); letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.legal h2 { font-family: var(--disp); font-weight: 400; font-size: 1.4rem; color: var(--pine-d); letter-spacing: 0.03em; margin: 2rem 0 0.6rem; }
.legal p, .legal li { font-size: 0.98rem; margin-bottom: 0.7rem; }
.legal ul { padding-left: 1.4rem; margin-bottom: 0.7rem; }
.legal a { color: var(--orange-d); }
.legal__updated { font-family: var(--grot); font-size: 0.8rem; color: color-mix(in srgb, var(--ink) 60%, transparent); }
.legal__note { background: color-mix(in srgb, var(--pomelo) 22%, transparent); border-left: 4px solid var(--pomelo); border-radius: 8px; padding: 1rem 1.2rem; margin: 1.4rem 0; font-size: 0.9rem; }
.legal__back { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--grot); font-weight: 600; font-size: 0.85rem; color: var(--orange-d); text-decoration: none; margin-bottom: 1.4rem; }

/* — Muro de logos (placeholder honesto, se puebla al confirmar marcas) — */
.logowall { margin-top: 2.8rem; text-align: center; }
.logowall__title { font-family: var(--grot); font-weight: 600; font-size: 0.92rem; color: color-mix(in srgb, var(--cream) 80%, transparent); margin-bottom: 1.1rem; }
.logowall__title span { color: var(--orange-l); }
.logowall__grid { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.logowall__slot {
  flex: 0 0 auto; width: clamp(118px, 16vw, 160px); height: 64px;
  display: grid; place-items: center;
  border: 1.5px dashed color-mix(in srgb, var(--cream) 28%, transparent); border-radius: 10px;
  font-family: var(--grot); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}

/* — Slogan + logo del footer (silhouette) — */
.hero__slogan {
  font-family: var(--grot); font-weight: 600;
  font-size: clamp(0.92rem, 1.5vw, 1.12rem); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-d); margin-bottom: 1.1rem; max-width: 32ch;
}
.footer__logo { width: clamp(126px, 15vw, 162px); }
.footer__logo img { width: 100%; height: auto; display: block; }
.footer__slogan { font-family: var(--grot); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.05em; color: var(--orange-l); max-width: 30ch; }

/* — Citrus-meridian (globo) en Sede — */
.venue__globe-wrap { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.4rem; }
.venue__globe { width: clamp(78px, 9vw, 104px); height: auto; flex: 0 0 auto; }
.venue__globe-cap { font-family: var(--grot); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--pine); max-width: 19ch; }

/* — Acentos de fruta (pequeños, peek de esquina) — */
.themes__deco, .speakers__deco { position: absolute; pointer-events: none; z-index: 0; will-change: transform; filter: drop-shadow(0 10px 18px rgba(33,53,46,0.15)); }

/* ════════ Mobile optimization (appended 2026-06-23 — mobile-only; desktop ≥961px untouched) ════════ */
@media (max-width: 960px) {
  /* Drawer: scrollable + comfortable tap targets */
  .drawer { justify-content: flex-start; overflow-y: auto; padding-block: max(96px, env(safe-area-inset-top)) 2rem; gap: 1.5rem; }
  .drawer__nav { gap: 0.2rem; }
  .drawer__link { min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Hero: drop the empty visual block; soft scrim improves text legibility over the photo */
  .hero__visual { display: none; }
  .hero__content { position: relative; }
  .hero__content::before {
    content: ''; position: absolute; inset: -1.1rem -0.9rem; z-index: -1; border-radius: 18px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--plaster) 92%, transparent) 0%, color-mix(in srgb, var(--plaster) 55%, transparent) 48%, transparent 100%);
  }

  /* Forms: 16px prevents iOS auto-zoom on focus */
  .form__field input, .form__field select, .form__field textarea, .leadcap__form input[type="email"] { font-size: 16px; }

  /* Sticky CTA: clear the notch + footer, and yield while the cookie banner is open */
  .sticky-cta { bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px)); }
  body:has(#cookie:not([hidden])) .sticky-cta { transform: translateY(160%); }
  .footer__legal { padding-bottom: calc(2rem + 76px + env(safe-area-inset-bottom, 0px)); }

  /* Tap targets ≥ 44px */
  .langsel__btn { min-height: 44px; min-width: 44px; }
  .footer__col a, .footer__legal-links a, .footer__cookiebtn { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 640px) {
  /* Tighter, consistent vertical rhythm */
  .section { padding-block: clamp(2.6rem, 8vw, 4rem); }
  .section__head { margin-bottom: clamp(1.5rem, 5vw, 2.2rem); }
  /* Stats heading + sponsor label tidy */
  .stats__kicker { font-size: 0.95rem; letter-spacing: 0.18em; }
  .sponsors__trust-label { flex-basis: 100%; }
  /* Tap targets on CTAs */
  .sponsors__grid .tier .btn--block { min-height: 48px; }
  .venue__open { min-height: 44px; display: inline-flex; align-items: center; padding: 0.75em 1.2em; }
  /* Hint that the comparison table scrolls horizontally */
  .matrix__scroll { -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent); mask-image: linear-gradient(90deg, #000 86%, transparent); }
}

@media (max-width: 480px) {
  /* Protect the hero title on small phones; keep it bold */
  .hero__title { font-size: clamp(2.05rem, 10.5vw, 2.6rem); line-height: 1.04; }
  .eyebrow { letter-spacing: 0.16em; }
  .hero__eyebrow { color: var(--pine-dd); }
  /* Stack hero CTAs full-width */
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .section__intro { font-size: 1rem; line-height: 1.65; }
}

/* ════════ Programa — estado "por confirmar" (placeholder hasta tener el itinerario real) ════════ */
.program__tba {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--pine) 16%, transparent);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  box-shadow: 0 18px 44px rgba(33, 53, 46, 0.08);
}
.program__tba-title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--pine-d); margin: 0.9rem 0 0.6rem; }
.program__tba-text { font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--ink) 80%, transparent); max-width: 52ch; margin-inline: auto; }
.program__tba-cta { margin-top: 1.6rem; }

/* ════════ Precios por tramo de fecha (sección Entradas) ════════ */
.pricing { margin-top: 2.6rem; }
.pricing + .pricing { margin-top: 2.4rem; }
.pricing__head { text-align: center; margin-bottom: 1rem; }
.pricing__title { font-family: var(--disp); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.06em; color: var(--pine); }
.pricing__sub { font-family: var(--grot); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; color: color-mix(in srgb, var(--ink) 62%, transparent); margin-top: 0.2rem; }
.pricing__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; background: var(--paper); box-shadow: 0 16px 40px rgba(33, 53, 46, 0.10); border: 1px solid color-mix(in srgb, var(--pine) 10%, transparent); }
.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.price-table th, .price-table td { padding: 0.85em 1em; border-bottom: 1px solid color-mix(in srgb, var(--pine) 12%, transparent); text-align: center; vertical-align: middle; }
.price-table thead th { font-family: var(--grot); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pine); vertical-align: bottom; }
.price-table thead th.price-table__rowhead { color: color-mix(in srgb, var(--ink) 70%, transparent); }
.price-table thead th.price-table__rowhead, .price-table tbody th { text-align: left; }
.price-table tbody th { font-family: var(--grot); font-weight: 600; font-size: 0.92rem; color: var(--pine-d); }
.price-table__win { display: block; }
.price-table__tag { display: inline-block; margin-top: 0.4em; font-family: var(--grot); font-weight: 700; font-size: 0.58rem; letter-spacing: 0.1em; padding: 0.25em 0.6em; border-radius: 4px; background: var(--pomelo); color: var(--pine-dd); }
.price { font-family: var(--disp); font-weight: 400; font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--orange-d); letter-spacing: 0.01em; white-space: nowrap; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.pricing__cta { margin-top: 1.3rem; max-width: 420px; margin-inline: auto; }
.pricing__cta .btn.is-disabled { opacity: 0.55; pointer-events: none; box-shadow: none; }

/* estados por fecha */
.price-table .is-active-window { background: color-mix(in srgb, var(--orange) 10%, transparent); }
.price-table thead th.is-active-window { box-shadow: inset 0 -3px 0 var(--orange); }
.price-table tbody td.is-active-window .price { color: var(--orange-dd); }
.price-table thead th.is-active-window[data-window-state="active"]::after { content: 'Vigente'; display: block; margin-top: 0.4em; font-family: var(--grot); font-weight: 700; font-size: 0.56rem; letter-spacing: 0.14em; color: var(--orange-d); }
.price-table .is-past { opacity: 0.5; }
.price-table .is-past .price { text-decoration: line-through; color: color-mix(in srgb, var(--ink) 55%, transparent); }
.price-table thead th.is-past::after { content: 'Cerrado'; display: block; margin-top: 0.4em; font-family: var(--grot); font-weight: 700; font-size: 0.54rem; letter-spacing: 0.12em; color: color-mix(in srgb, var(--ink) 55%, transparent); }

/* móvil: pista de scroll + columna de etiqueta fija */
@media (max-width: 640px) {
  .pricing__scroll { -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); }
  .price-table th, .price-table td { padding: 0.7em 0.8em; }
}
@media (max-width: 480px) {
  .price-table th[scope="row"], .price-table thead th.price-table__rowhead { position: sticky; left: 0; z-index: 1; background: var(--paper); }
  .price { font-size: 1.12rem; }
}
.themes__deco { left: -26px; bottom: -20px; width: clamp(88px, 9vw, 130px); opacity: 0.92; }
.speakers__deco { right: -20px; top: 12px; width: clamp(80px, 8vw, 116px); opacity: 0.9; }
.themes .section__inner, .themes__strip, .speakers .section__inner { position: relative; z-index: 1; }
@media (max-width: 760px) { .themes__deco, .speakers__deco { display: none; } }

/* ════════ Rediseño jul-2026 · inicio naranja + auspiciadores + participar ════════ */

/* — Barra superior en mayúsculas — */
.nav__link, .nav__pill, .btn--nav, .drawer__link { text-transform: uppercase; }
.nav__link { letter-spacing: 0.04em; }
/* jerarquía: links · idioma · acciones — con aire entre grupos */
.nav .langsel { margin-left: clamp(0.2rem, 0.8vw, 0.8rem); }
.nav .nav__pill { margin-left: clamp(0.1rem, 0.5vw, 0.5rem); }
/* el logo acompaña al header compacto */
.brand__logo { transition: height 0.35s var(--ease-fruit); }
/* 82px solo en escritorio; en móvil el header compacto es 78px y lo cortaba (ver regla en @media ≤960) */
@media (min-width: 961px) { .header.is-compact .brand__logo { height: 82px; } }
/* con 6 ítems en mayúsculas la nav necesita aire: drawer antes de que se apriete */
@media (max-width: 1240px) {
  .nav { display: none; }
  .burger { display: flex; }
}

/* — Inicio (naranja): CTAs sobre el video — */
.manifesto-cine__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.4rem; }

/* — Banda de auspiciadores — */
.sponsors-band { position: relative; overflow: hidden; }
.sponsors-band__photo {
  position: absolute; inset: 0; pointer-events: none;
  background-image: image-set(
    url("../img/hero-citricos-1792.webp") type("image/webp"),
    url("../img/hero-citricos-1792.png") type("image/png"));
  background-image: -webkit-image-set(url("../img/hero-citricos-1792.webp") 1x);
  background-repeat: no-repeat; background-position: center; background-size: cover;
}
.sponsors-band__scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* Bordes casi sólidos (0.94) para que el hero (arriba) y #razones (abajo)
     entreguen/reciban el cambio de sección en el mismo verde-pino opaco,
     sin costura de foto-contra-foto. El centro se aclara para que se
     asome la textura de piedra oscura tras la marquesina de logos. */
  background: linear-gradient(180deg, rgba(20, 44, 34, 0.94), rgba(20, 44, 34, 0.55) 45%, rgba(20, 44, 34, 0.94));
}
.sponsors-band > .section__inner,
.sponsors-band > .sponsors__logos-wrap,
.sponsors-band > .sponsors-band__cta,
.sponsors-band > .sr-only { position: relative; z-index: 1; }
.sponsors-band .sponsors__logos-wrap { margin-top: 0; }
.sponsor-chip--slot {
  font-family: var(--grot); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
  background: transparent; box-shadow: none;
  border: 2px dashed color-mix(in srgb, var(--cream) 48%, transparent);
}
.sponsors-band__cta { text-align: center; margin-top: clamp(1.8rem, 4vw, 2.6rem); }

/* ════════ Cómo participar · banner + díptico inmersivo editorial claro ════════ */
.participate { background: var(--cream); }
.cp-banner {
  position: relative; height: clamp(180px, 22vw, 260px); border-radius: 24px; overflow: hidden;
  margin-bottom: clamp(1rem, 2vw, 1.4rem); display: flex; align-items: center; justify-content: center; isolation: isolate;
}
.cp-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cp-banner__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(247,242,227,.34), rgba(247,242,227,.7)); }
.cp-banner__copy { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1rem; }
.cp-eyebrow {
  font-family: var(--grot); font-weight: 600; font-size: var(--fs-eyebrow); letter-spacing: .3em; text-transform: uppercase;
  color: var(--orange-d); display: inline-flex; align-items: center; gap: .7rem;
}
.cp-eyebrow::before, .cp-eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--orange); }
.cp-h2 {
  font-family: var(--disp); font-weight: 400; font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1; letter-spacing: .015em; text-transform: uppercase; color: var(--pine-d);
}
.cp-h2 em { font-style: normal; color: var(--orange); }
.cp-dip { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.4rem); }
.cp-panel {
  position: relative; overflow: hidden; isolation: isolate; border-radius: 24px;
  min-height: clamp(400px, 46vw, 500px); display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.7rem, 3vw, 2.6rem); color: var(--pine-d); text-decoration: none;
  transition: transform .5s var(--ease-fruit), box-shadow .5s var(--ease-fruit); box-shadow: 0 14px 40px rgba(20,44,34,.1);
}
.cp-panel:hover { transform: translateY(-7px); box-shadow: 0 30px 66px rgba(20,44,34,.2); }
.cp-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease-fruit); }
.cp-panel:hover img { transform: scale(1.06); }
.cp-panel__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(247,242,227,.14) 0%, rgba(247,242,227,.5) 42%, rgba(247,242,227,.92) 100%); }
.cp-kick { font-family: var(--grot); font-weight: 600; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--orange-d); margin-bottom: .55rem; }
.cp-title { font-family: var(--disp); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; margin-bottom: .7rem; color: var(--pine-d); }
.cp-text { font-size: clamp(.92rem, 1.1vw, 1.02rem); line-height: 1.5; color: color-mix(in srgb, var(--ink) 82%, transparent); max-width: 34ch; margin-bottom: 1.3rem; }
.cp-btn { display: inline-flex; align-items: center; gap: .5em; font-family: var(--grot); font-weight: 600; font-size: .82rem; border-radius: 100px; padding: .72rem 1.4rem; align-self: flex-start; transition: .25s var(--ease-fruit); text-decoration: none; }
.cp-btn--solid { background: var(--orange-d); color: #fff; }
.cp-btn--solid:hover { background: var(--orange); }
.cp-btn--ghost { background: transparent; color: var(--pine-d); border: 1.5px solid color-mix(in srgb, var(--pine) 30%, transparent); }
.cp-btn--ghost:hover { background: var(--pine); color: #fff; border-color: var(--pine); }
@media (max-width: 760px) { .cp-dip { grid-template-columns: 1fr; } .cp-panel { min-height: 340px; } }

/* — IVA destacado — */
.iva-flag {
  display: inline-block; font-family: var(--grot); font-weight: 700; font-size: 1.1em;
  color: var(--orange-dd); background: color-mix(in srgb, var(--pomelo) 45%, transparent);
  padding: 0.05em 0.5em; border-radius: 6px; white-space: nowrap;
}

/* — Tramos de fecha más visibles en las tablas de precios — */
.price-table thead th[data-window] { font-size: 0.8rem; }
.price-table__win {
  display: block; letter-spacing: 0.04em;
  padding: 0.32em 0.5em; border-radius: 6px;
  background: color-mix(in srgb, var(--pine) 8%, transparent);
}
.price-table thead th.is-active-window .price-table__win {
  background: color-mix(in srgb, var(--orange) 18%, transparent);
  color: var(--orange-dd);
}

/* — Subpáginas de auspicios — */
.page-top { padding-top: calc(var(--header-h) + clamp(1.5rem, 5vw, 3rem)); }
.tier__request {
  display: block; text-align: center; margin-top: 0.7rem;
  font-family: var(--grot); font-weight: 600; font-size: 0.85rem;
  color: inherit; opacity: 0.85; text-decoration: underline; text-underline-offset: 3px;
}
.tier__request:hover { opacity: 1; }
.tier-hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.tier-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.tier-hero__fruit { position: relative; text-align: center; }
.tier-hero__fruit img {
  width: min(320px, 60vw); height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}
.tier-hero__fruit .tier__stamp { top: 0; left: 8%; }
@media (max-width: 860px) { .tier-hero__grid { grid-template-columns: 1fr; } }
.invest .section__inner { text-align: center; }
.invest__price {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.6rem); color: var(--orange-d);
  margin: 0.4rem 0 0.6rem;
}
.invest__note { color: color-mix(in srgb, var(--ink) 75%, transparent); }
.invest__ctas { margin-top: 1.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.placeholder-flag {
  display: inline-block; font-family: var(--grot); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--zest); color: #fff;
  padding: 0.3em 0.7em; border-radius: 4px; transform: rotate(-1.5deg);
  margin-right: 0.5em;
}
.btn[aria-disabled="true"] { opacity: 0.55; cursor: default; box-shadow: none; }
.btn[aria-disabled="true"]:hover { transform: none; }

/* — Auspicios: bloques de beneficios (páginas de categoría) — */
.benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); align-items: start; }
.benefits__grid .reason { display: flex; flex-direction: column; }
.reason .tier__perks { margin-bottom: 0; margin-top: 0.2rem; }
.reason .tier__perks li { color: color-mix(in srgb, var(--ink) 86%, transparent); }
.reason .tier__perks li::before { color: var(--orange); }
.reason--wide { grid-column: 1 / -1; }
@media (max-width: 720px) { .benefits__grid { grid-template-columns: 1fr; } .reason--wide { grid-column: auto; } }

/* — Categoría Stand (opción de entrada, acento verde como en el plano) — */
.tier--stand .tier__perks li::before { color: var(--leaf); }
.tier--stand:hover { box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), 0 0 34px rgba(78, 154, 62, 0.4); border-color: color-mix(in srgb, var(--leaf) 62%, transparent); }

/* — Plano de la muestra comercial — */
.plano__figure { margin: 1.8rem auto 0; max-width: 1000px; border-radius: 16px; overflow: hidden; border: 1.5px solid color-mix(in srgb, var(--pine) 14%, transparent); background: #fff; box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.plano__figure img { width: 100%; height: auto; display: block; }
.plano__caption { margin: 0.9rem auto 0; max-width: 720px; font-size: 0.9rem; color: color-mix(in srgb, var(--ink) 70%, transparent); text-align: center; }
