/* ═══════════════════════════════════════════════════════
   YO SOY GOLEADOR · Propuesta Comercial
   Marca heredada de yosoygoleador.com · navy + oro + Sora
   ═══════════════════════════════════════════════════════ */
:root {
  --navy: #0a1428;
  --navy-deep: #050b1c;
  --navy-mid: #0d1a33;
  --navy-light: #14264f;
  --gold: #F5C451;
  --gold-bright: #FFD97A;
  --gold-dark: #C99A30;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,.74);
  --white-faint: rgba(255,255,255,.12);
  --ec-red: #CC0000;
  --glow-blue: #4da3ff;
  --glow-red: #ff5d5d;
  --glow-green: #3ddc97;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 700; }
b, strong { color: var(--white); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

/* superficies del navegador */
::selection { background: rgba(245,196,81,.85); color: var(--navy-deep); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 6px; border: 2px solid var(--navy-deep); }
::-webkit-scrollbar-thumb:hover { background: rgba(245,196,81,.55); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
[data-count] { font-variant-numeric: tabular-nums; }

/* iconos */
.ic {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.2em;
}
#i-play path { fill: currentColor; stroke: none; }
.ic--gold { color: var(--gold); }
.ic--flip { transform: scaleX(-1); }

/* texto oro metálico */
.grad-gold {
  background: linear-gradient(100deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-bright) 55%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* orbes de luz */
.section { position: relative; }
.orb {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  pointer-events: none; filter: blur(90px); opacity: .5; z-index: 0;
  left: -260px; top: -140px;
}
.orb--gold { background: radial-gradient(circle, rgba(245,196,81,.16) 0%, transparent 65%); }
.orb--blue { background: radial-gradient(circle, rgba(30,80,190,.2) 0%, transparent 65%); }
.orb--right { left: auto; right: -260px; }
.section > .container { position: relative; z-index: 1; }

/* reveal con blur */
.reveal {
  opacity: 0; transform: translateY(30px); filter: blur(7px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }
[data-stagger] > .reveal:nth-child(1) { transition-delay: 0s; }
[data-stagger] > .reveal:nth-child(2) { transition-delay: .07s; }
[data-stagger] > .reveal:nth-child(3) { transition-delay: .14s; }
[data-stagger] > .reveal:nth-child(4) { transition-delay: .21s; }
[data-stagger] > .reveal:nth-child(5) { transition-delay: .28s; }

/* ── texto que se pinta al scrollear ── */
.paint { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.3; letter-spacing: -0.02em; }
.paint--sub { font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 600; margin-top: 26px; }
.paint--title { font-size: clamp(2.2rem, 5.8vw, 4.2rem); font-weight: 800; line-height: 1.08; }
.paint .w { color: rgba(255,255,255,.14); transition: color .5s var(--ease-out), text-shadow .5s var(--ease-out); }
.paint .w.lit { color: var(--white); }
.paint .w.gold { color: rgba(245,196,81,.16); }
.paint .w.gold.lit { color: var(--gold); text-shadow: 0 0 30px rgba(245,196,81,.35); }

/* botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .4px;
  padding: 14px 28px; border-radius: 999px; font-size: .95rem;
  transition: transform .16s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, border-color .3s, color .3s;
  cursor: pointer; border: none; text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn--gold {
  background: linear-gradient(115deg, var(--gold-dark), var(--gold) 45%, var(--gold-bright));
  color: var(--navy-deep);
  box-shadow: 0 8px 28px -6px rgba(245,196,81,.45);
}
.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid rgba(245,196,81,.5); }
.btn--hairline { background: transparent; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.22); letter-spacing: 1.5px; font-weight: 600; font-size: .85rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn__circle {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(5,11,28,.14); margin-right: -12px;
  transition: transform .25s var(--ease-out);
}
.btn__circle .ic { width: 15px; height: 15px; }
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(245,196,81,.6); }
  .btn--gold:hover .btn__circle { transform: translate(2px, -1px) scale(1.06); }
  .btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
  .btn--outline:hover { background: rgba(245,196,81,.12); border-color: var(--gold); transform: translateY(-3px); }
  .btn--hairline:hover { border-color: rgba(245,196,81,.6); color: var(--gold); transform: translateY(-3px); }
}

/* chips / kickers */
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
}
.chip--gold { color: var(--gold-bright); border-color: rgba(245,196,81,.4); background: rgba(245,196,81,.09); letter-spacing: 1.5px; font-family: var(--font-head); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--ec-red); flex: none; }
.kicker--red { color: var(--glow-red); }

/* ═══ NAV ═══ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 18px clamp(14px, 3vw, 40px) 0;
  pointer-events: none;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
}
.nav.gone { transform: translateY(-120%); opacity: 0; pointer-events: none; }
.nav.gone .nav__pill { pointer-events: none; }
.nav__pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(16px, 2.6vw, 36px);
  width: 100%; max-width: 1160px;
  padding: 10px 14px 10px 20px;
  border-radius: 999px;
  background: rgba(8,15,33,.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 44px -12px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07);
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled .nav__pill {
  background: rgba(5,11,28,.88);
  box-shadow: 0 18px 50px -10px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08);
}
.nav__logo img { height: 42px; width: auto; }
.nav__links { display: flex; gap: clamp(14px, 2.2vw, 30px); margin-right: auto; }
.nav__links a {
  font-family: var(--font-head); font-size: .87rem; font-weight: 600;
  color: var(--white-dim); transition: color .25s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  border-radius: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
@media (hover: hover) {
  .nav__links a:hover { color: var(--white); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__tc { height: 32px; width: auto; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 108px 0 70px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s var(--ease-io) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12) translateY(-1.5%); } }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(5,11,28,.18) 0%, rgba(5,11,28,.78) 72%, var(--navy-deep) 100%),
    linear-gradient(to top, var(--navy-deep) 0%, rgba(5,11,28,.25) 26%, rgba(5,11,28,.35) 100%);
}
.hero__content { position: relative; z-index: 2; }
.hero__logo3d {
  perspective: 900px;
  margin: 36px auto 0;
  width: min(380px, 62vw);
}
.hero__logo3d img {
  width: 100%;
  animation: logo3d 7s var(--ease-io) infinite alternate;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(245,196,81,.18));
  transform-style: preserve-3d;
}
@keyframes logo3d {
  0%   { transform: rotateX(8deg) rotateY(-9deg) translateY(-8px); }
  50%  { transform: rotateX(-5deg) rotateY(7deg) translateY(8px); }
  100% { transform: rotateX(7deg) rotateY(-5deg) translateY(-6px); }
}
.hero__title {
  font-size: clamp(1.6rem, 4vw, 2.9rem); font-weight: 800;
  margin: 34px 0 14px;
  text-shadow: 0 12px 48px rgba(0,0,0,.6);
}
.hero__sub { font-size: clamp(.95rem, 1.7vw, 1.12rem); color: var(--white-dim); max-width: 600px; margin: 0 auto 26px; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  display: flex; justify-content: center; gap: clamp(20px, 4.5vw, 64px);
  margin-top: clamp(48px, 7.5vh, 80px); flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hstat__num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--gold); text-shadow: 0 4px 34px rgba(245,196,81,.45);
}
.hstat__sep { color: var(--white-dim); margin: 0 6px; font-weight: 400; }
.hstat__label { font-size: .78rem; color: var(--white-dim); letter-spacing: .5px; text-transform: uppercase; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold); border-radius: 3px; animation: scrollhint 1.9s var(--ease-io) infinite;
}
@keyframes scrollhint { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0; } }

/* ═══ MARQUEE ═══ */
.marquee {
  overflow: hidden; white-space: nowrap; position: relative;
  background: linear-gradient(180deg, #081124, #0b1830 55%, #081124);
  border-block: 1px solid rgba(245,196,81,.22);
  padding: 15px 0;
  box-shadow: inset 0 0 40px rgba(0,0,20,.6);
}
.marquee__inner { display: inline-flex; align-items: center; animation: ticker 30s linear infinite; will-change: transform; }
.marquee--reverse .marquee__inner { animation-direction: reverse; }
@keyframes ticker { to { transform: translateX(-33.333%); } }
.marquee span {
  font-family: var(--font-head); font-weight: 800; font-size: .92rem;
  letter-spacing: 4px; color: rgba(245,196,81,.85);
  text-shadow: 0 0 18px rgba(245,196,81,.45);
  padding-inline: 30px;
}
.marquee i {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--gold); opacity: .5; box-shadow: 0 0 10px rgba(245,196,81,.8);
}

/* ═══ SECCIONES ═══ */
.section { padding: clamp(84px, 12vw, 150px) 0; position: relative; overflow: hidden; }
.section--alt {
  background:
    radial-gradient(1100px 500px at 85% 0%, rgba(20,38,79,.55) 0%, transparent 60%),
    radial-gradient(900px 500px at 8% 100%, rgba(20,38,79,.4) 0%, transparent 55%),
    var(--navy);
}
.section--photo { background: var(--navy-deep); }
.section__head { text-align: center; margin-bottom: clamp(48px, 6.5vw, 76px); }
.section__head .kicker { justify-content: center; }
.section__head .kicker::after { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--ec-red); flex: none; }
.section__head h2 { margin-top: 4px; }
.section__note { color: var(--white-dim); font-size: .92rem; margin-top: 14px; }

/* ═══ DOUBLE BEZEL + VIDEO ═══ */
.bezel {
  max-width: 980px; margin-inline: auto;
  padding: 9px; border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 34px 90px -22px rgba(0,0,0,.65);
}
.bezel > * { border-radius: 20px; box-shadow: inset 0 1px 1px rgba(255,255,255,.12); }
.video-frame { position: relative; overflow: hidden; aspect-ratio: 16/9; cursor: pointer; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
@media (hover: hover) { .video-frame:hover img { transform: scale(1.04); } }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(115deg, var(--gold-dark), var(--gold) 50%, var(--gold-bright));
  color: var(--navy-deep); display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(245,196,81,.55); animation: pulse 2.6s var(--ease-io) infinite;
  transition: transform .25s var(--ease-out);
}
.video-frame__play .ic { width: 36px; height: 36px; margin-left: 4px; }
@media (hover: hover) { .video-frame:hover .video-frame__play { transform: translate(-50%,-50%) scale(1.08); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,196,81,.5); }
  70% { box-shadow: 0 0 0 26px rgba(245,196,81,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,196,81,0); }
}
.video-frame__glow { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(5,11,28,.55), transparent 40%); }

/* ═══ QUÉ ES · horizontal ═══ */
.qes { max-width: 900px; margin-inline: auto; text-align: center; }
.qes .kicker { justify-content: center; }
.qes .kicker::after { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--ec-red); }
.qes .tc-strip { margin-top: 36px; }
.tc-strip {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 22px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
.tc-strip img { height: 30px; width: auto; }
.tc-strip span { font-size: .92rem; color: var(--white-dim); }
.inspo { text-align: center; margin-top: clamp(50px, 7vw, 80px); }
.inspo__label {
  font-family: var(--font-head); font-weight: 700;
  color: var(--white); font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  margin-bottom: 24px; text-wrap: balance;
}
.inspo__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ PRIZE ═══ */
.prize-banner {
  margin-top: clamp(54px, 7.5vw, 90px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 60px); align-items: center;
  background: linear-gradient(120deg, rgba(245,196,81,.1), rgba(245,196,81,.02) 60%);
  border: 1px solid rgba(245,196,81,.28); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.prize-banner::before {
  content: ''; position: absolute; top: -60%; left: -20%; width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.07), transparent);
  transform: rotate(12deg); animation: sweep 7s var(--ease-io) infinite;
}
@keyframes sweep { 0%, 100% { left: -40%; } 50% { left: 110%; } }
.prize-banner__nums { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.pnum { text-align: center; }
.pnum__n { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 6.5vw, 4.8rem); line-height: 1; display: block; }
.pnum__l { font-family: var(--font-head); font-size: .78rem; letter-spacing: 3px; color: var(--white-dim); }
.pnum__arrow { color: var(--gold); }
.pnum__arrow .ic { width: 32px; height: 32px; }
.prize-banner p { color: var(--white-dim); position: relative; }

/* ═══ SPLITS ═══ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.split--media { margin-block: clamp(34px, 4.5vw, 56px); }
.split--reverse .split__text { order: 2; }
.split--reverse .split__media, .split--reverse .uni { order: 1; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.6;
  box-shadow: 0 30px 80px -18px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
}
.split__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 55%, rgba(5,11,28,.55)); }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
@media (hover: hover) { .split__media:hover img { transform: scale(1.05); } }
.split__text .lead { font-size: 1.15rem; color: var(--white); margin-bottom: 14px; }
.split__text p { color: var(--white-dim); margin-bottom: 12px; }

/* filas simples (impacto) */
.simple-rows { margin-top: 26px; display: grid; gap: 4px; }
.srow {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.srow .ic { width: 26px; height: 26px; color: var(--gold); margin-top: 3px; }
.srow b { display: block; font-family: var(--font-head); letter-spacing: 2px; font-size: .88rem; }
.srow span { color: var(--white-dim); font-size: .93rem; }
.tagline { margin-top: 24px; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }

/* ═══ ALIADOS · sobrio ═══ */
.allies-sec {
  padding: clamp(90px, 13vw, 160px) 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, #070e20 50%, var(--navy-deep) 100%);
  border-block: 1px solid rgba(255,255,255,.06);
}
.allies-head { text-align: center; margin-bottom: clamp(50px, 7vw, 80px); }
.allies-eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: 6px; color: rgba(255,255,255,.55);
}
.allies-note { margin-top: 12px; color: rgba(255,255,255,.4); font-size: .9rem; font-weight: 300; }
.allies-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}
.ally {
  padding: clamp(36px, 4.5vw, 58px) 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  min-height: 150px; position: relative;
  transition: background 1s var(--ease-out);
}
.ally__logo {
  height: clamp(56px, 7vw, 84px); width: auto; max-width: 84%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.ally__logo--color { filter: none; }
.ally__logo[src*="ministerio"] { height: clamp(38px, 4.6vw, 56px); }
/* patrocinadores nuevos: más discretos y sin cortes */
.ally__logo[src*="kao"], .ally__logo[src*="ingco"], .ally__logo[src*="proassis"] { height: clamp(30px, 3.8vw, 44px); }
.ally__logo[src*="gla"] { height: clamp(40px, 5vw, 58px); }
.ally__logo[src*="orangine"] { height: clamp(52px, 6.4vw, 72px); }
/* celda "¿Tu marca aquí?" */
.ally--cta { cursor: pointer; transition: background .3s; }
.ally--cta__q {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(.95rem, 1.6vw, 1.2rem); letter-spacing: 2.5px;
  color: rgba(245,196,81,.75);
}
@media (hover: hover) {
  .ally--cta:hover { background: rgba(245,196,81,.05); }
  .ally--cta:hover .ally--cta__q { color: var(--gold-bright); }
}
.ally__type { font-size: .72rem; letter-spacing: 1.5px; color: rgba(255,255,255,.42); text-transform: uppercase; }

/* ═══ FORMATO · stepper ═══ */
.fmt { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(26px, 4vw, 50px); align-items: stretch; }
.fmt__stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px;
  box-shadow: 0 30px 80px -18px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.09), inset 0 1px 0 rgba(255,255,255,.1);
}
.fmt__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity .8s var(--ease-out), transform 1.2s var(--ease-out);
}
.fmt__img.on { opacity: 1; transform: scale(1); }
.fmt__cap {
  position: absolute; inset: auto 0 0 0; padding: 50px 26px 22px; z-index: 2;
  background: linear-gradient(to top, rgba(5,11,28,.94), transparent);
}
.fmt__cap b { display: block; font-family: var(--font-head); letter-spacing: 2px; color: var(--gold); font-size: 1.05rem; }
.fmt__cap span { font-size: .9rem; color: var(--white-dim); }
.fmt__steps { display: flex; flex-direction: column; gap: 10px; }
.fstep {
  position: relative; display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto;
  column-gap: 16px; align-items: center; text-align: left;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  cursor: pointer; overflow: hidden; flex: 1;
  transition: background .4s, border-color .4s, transform .3s var(--ease-out);
  font-family: inherit; color: inherit;
}
.fstep__n {
  grid-row: 1 / 3;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  background: var(--navy-light); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7);
  transition: background .4s, color .4s, box-shadow .4s;
}
.fstep__t { font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; font-size: .92rem; color: rgba(255,255,255,.65); transition: color .4s; }
.fstep__d { font-size: .8rem; color: rgba(255,255,255,.4); }
.fstep__bar {
  position: absolute; left: 0; bottom: 0; height: 2.5px; width: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
}
.fstep.on { background: rgba(245,196,81,.07); border-color: rgba(245,196,81,.4); }
.fstep.on .fstep__n {
  background: linear-gradient(115deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy-deep); box-shadow: 0 6px 22px -4px rgba(245,196,81,.55);
}
.fstep.on .fstep__t { color: var(--gold-bright); }
.fstep.on .fstep__bar { animation: fstepbar var(--fmt-ms, 3000ms) linear forwards; }
@keyframes fstepbar { to { transform: scaleX(1); } }
.fstep.done .fstep__n { background: rgba(245,196,81,.18); color: var(--gold); border-color: rgba(245,196,81,.4); }

.values-strip {
  margin-top: clamp(40px, 5.5vw, 60px); display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 36px; padding: 22px 26px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
}
.values-strip span { font-size: .92rem; color: var(--white-dim); display: inline-flex; align-items: center; gap: 9px; }
.values-strip .ic { color: var(--gold); }
.values-strip b { color: var(--gold); }

/* ═══ CAROUSEL genérico + tarjetas con imagen ═══ */
.carousel { position: relative; padding: 30px 0 10px; }
.carousel__track {
  display: flex; gap: clamp(18px, 2.6vw, 30px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 40px max(calc((100vw - 430px)/2), 24px) 54px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.icard {
  flex: 0 0 min(400px, 84vw); scroll-snap-align: center;
  border-radius: 26px; overflow: hidden; text-align: center;
  background: linear-gradient(175deg, #0c1730 0%, #070f22 100%);
  border: 1px solid rgba(255,255,255,.09);
  transition: transform .6s var(--ease-drawer), opacity .6s var(--ease-out), border-color .6s, box-shadow .6s var(--ease-out);
  opacity: .45; transform: scale(.92);
}
.icard.is-center { opacity: 1; transform: scale(1); }
.icard__img { aspect-ratio: 16/9.4; overflow: hidden; position: relative; }
.icard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 3.2s var(--ease-out); }
.icard.is-center .icard__img img { transform: scale(1.07); }
.icard__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, #0a1226 0%, rgba(10,18,38,.55) 14%, transparent 42%);
  pointer-events: none;
}
.icard h3 { font-size: 1.15rem; letter-spacing: 2px; margin: 22px 0 10px; }
.icard p { font-size: .92rem; color: var(--white-dim); padding: 0 26px; margin-bottom: 30px; }
.icard p b { color: var(--white); }
.icard--gold h3 { color: var(--gold-bright); }
.icard--gold.is-center { border-color: rgba(245,196,81,.5); box-shadow: 0 34px 80px -20px rgba(245,196,81,.3); }
.icard--blue h3 { color: var(--glow-blue); }
.icard--blue.is-center { border-color: rgba(77,163,255,.5); box-shadow: 0 34px 80px -20px rgba(77,163,255,.3); }
.icard--red h3 { color: var(--glow-red); }
.icard--red.is-center { border-color: rgba(255,93,93,.5); box-shadow: 0 34px 80px -20px rgba(255,93,93,.3); }
.icard--green h3 { color: var(--glow-green); }
.icard--green.is-center { border-color: rgba(61,220,151,.5); box-shadow: 0 34px 80px -20px rgba(61,220,151,.3); }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,20,40,.75); backdrop-filter: blur(8px); color: var(--white);
  cursor: pointer; display: grid; place-items: center;
  transition: background .3s, border-color .3s, color .3s, transform .16s var(--ease-out);
}
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow .ic { width: 20px; height: 20px; }
@media (hover: hover) { .carousel__arrow:hover { background: rgba(245,196,81,.92); color: var(--navy-deep); border-color: var(--gold); } }
.carousel__arrow--prev { left: clamp(10px, 3vw, 44px); }
.carousel__arrow--next { right: clamp(10px, 3vw, 44px); }

/* ═══ ECOSISTEMA · panel de red + píldoras que caen ═══ */
.eco { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: stretch; }
.eco__left, .eco__right {
  border-radius: 28px;
  background: linear-gradient(175deg, #0c1730 0%, #070f22 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 70px -24px rgba(0,0,0,.6);
}
.eco__left {
  padding: clamp(30px, 4vw, 50px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px;
}
.eco__eyebrow {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: 3px;
  padding: 7px 16px; border-radius: 999px;
  color: var(--gold-bright); background: rgba(245,196,81,.09); border: 1px solid rgba(245,196,81,.35);
}
.eco__brand { display: flex; align-items: center; gap: 18px; }
.eco__logo { width: clamp(56px, 6vw, 78px); height: clamp(56px, 6vw, 78px); filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); transition: opacity .4s; }
.eco__name { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
.eco__desc { color: var(--white-dim); font-size: .98rem; max-width: 340px; min-height: 3.2em; }
.eco__dots { display: flex; gap: 12px; margin-top: 8px; }
.eco-dot {
  width: 54px; height: 54px; border-radius: 16px; cursor: pointer;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out), opacity .3s;
  opacity: .5;
}
.eco-dot svg { width: 26px; height: 26px; }
.eco-dot.on { opacity: 1; border-color: rgba(245,196,81,.55); background: rgba(245,196,81,.08); transform: translateY(-3px); }
@media (hover: hover) { .eco-dot:hover { opacity: 1; transform: translateY(-3px); } }
.eco__right { position: relative; overflow: hidden; min-height: 420px; }
.eco__pit { position: absolute; inset: 0; }
.pill {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(.85rem, 1.4vw, 1.05rem);
  color: #0b1226; white-space: nowrap;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.6);
  cursor: pointer; user-select: none;
  border: none;
  transform: translate(var(--x), -560px) rotate(var(--r0));
  transition: transform var(--fall, 1.3s) cubic-bezier(.26, 1.12, .38, 1);
  will-change: transform;
}
.pill.landed { transform: translate(var(--x), var(--y)) rotate(var(--r)); }
.pill.toss { animation: toss 1.15s cubic-bezier(.34, .05, .28, 1); }
@keyframes toss {
  0%   { transform: translate(var(--x), var(--y)) rotate(var(--r)); }
  22%  { transform: translate(calc(var(--x) + var(--jx) * .5), calc(var(--y) - 74px)) rotate(calc(var(--r) + var(--jr) * .6)); }
  46%  { transform: translate(calc(var(--x) + var(--jx)), calc(var(--y) - 22px)) rotate(calc(var(--r) + var(--jr))); }
  70%  { transform: translate(calc(var(--x) + var(--jx) * .3), calc(var(--y) - 6px)) rotate(calc(var(--r) + var(--jr) * .3)); }
  100% { transform: translate(var(--x), var(--y)) rotate(var(--r)); }
}
@media (hover: hover) {
  .pill:hover { filter: brightness(1.04); }
}
.pill--a { background: linear-gradient(150deg, #fdfdfb, #e9ecf4); }
.pill--b { background: linear-gradient(150deg, #fdf6dc, #f2e3ae); }
.pill--c { background: linear-gradient(150deg, #e4efff, #c9ddfb); }
.pill--d { background: linear-gradient(150deg, #eafaef, #cdeeda); }

/* ═══ TIMELINE que avanza ═══ */
.timeline {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  padding-top: 30px; margin-bottom: 10px;
}
.timeline__rail {
  position: absolute; top: 37px; left: 3%; right: 3%; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.1); overflow: visible;
}
.timeline__fill {
  height: 100%; width: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 60%, var(--gold-bright));
  box-shadow: 0 0 16px rgba(245,196,81,.5);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease-io);
}
.timeline__spark {
  position: absolute; top: 50%; left: 0; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 20px 6px rgba(245,196,81,.55);
  transform: translate(-50%, -50%);
  transition: left 1.1s var(--ease-io);
}
.tl-item { position: relative; padding-top: 26px; text-align: left; opacity: .38; transition: opacity .6s var(--ease-out); }
.tl-item.on { opacity: 1; }
.tl-item__dot {
  position: absolute; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%;
  border: 3px solid var(--navy-deep); box-shadow: 0 0 0 2px currentColor;
  transition: transform .4s var(--ease-out);
}
.tl-item.on .tl-item__dot { transform: scale(1.25); }
.tl--gold { background: var(--gold); color: var(--gold); }
.tl--navy { background: var(--glow-blue); color: var(--glow-blue); }
.tl--red { background: var(--glow-red); color: var(--glow-red); }
.tl-item__date { font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: 1px; color: var(--gold); }
.tl-item h4 { font-size: .98rem; margin: 6px 0 4px; }
.tl-item p { font-size: .82rem; color: var(--white-dim); }

/* ═══ CANAL OFICIAL · cinematográfico ═══ */
.canal { position: relative; padding: clamp(100px, 14vw, 180px) 0; overflow: hidden; text-align: center; }
.canal__bg { position: absolute; inset: 0; }
.canal__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 30s var(--ease-io) infinite alternate; }
.canal__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(5,11,28,.3) 0%, rgba(5,11,28,.88) 75%),
    linear-gradient(to bottom, var(--navy-deep) 0%, transparent 18%, transparent 80%, var(--navy-deep) 100%);
}
.canal__content { position: relative; z-index: 2; }
.canal__tc { height: clamp(80px, 11vw, 130px); width: auto; margin-inline: auto; filter: drop-shadow(0 0 60px rgba(77,163,255,.55)) drop-shadow(0 14px 40px rgba(0,0,0,.6)); }
.canal__label { font-family: var(--font-head); font-size: .8rem; letter-spacing: 4px; color: var(--white-dim); margin: 26px 0 clamp(40px, 6vw, 64px); }
.canal__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1080px; margin-inline: auto; }
.cstat { padding: 10px; }
.cstat__num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem); line-height: 1;
  white-space: nowrap;
  filter: drop-shadow(0 8px 34px rgba(245,196,81,.35));
}
.cstat__num em { font-style: normal; font-size: .55em; }
.cstat__label { display: block; margin-top: 10px; font-size: .84rem; color: var(--white-dim); }

/* Kantar */
.kantar {
  margin-top: clamp(60px, 8vw, 100px);
  text-align: left;
  background: rgba(5,11,28,.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 40px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 80px -20px rgba(0,0,0,.6);
}
.kantar h3 { text-align: center; margin-bottom: 26px; font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
.kantar__scroll { overflow-x: auto; margin-bottom: 22px; border-radius: 12px; border: 1px solid rgba(255,255,255,.09); }
.kantar table { width: 100%; border-collapse: collapse; min-width: 820px; font-variant-numeric: tabular-nums; }
.kantar th, .kantar td { padding: 10px 14px; text-align: right; font-size: .84rem; border-top: 1px solid rgba(255,255,255,.07); white-space: nowrap; }
.kantar thead th { font-family: var(--font-head); background: var(--navy-mid); font-size: .76rem; letter-spacing: .6px; color: var(--white); border-top: none; }
.kantar td em { display: block; font-style: normal; font-size: .7rem; color: rgba(255,255,255,.42); }
.kantar .krow { text-align: left; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: 1px; color: var(--white-dim); position: sticky; left: 0; background: var(--navy); z-index: 1; }
.kantar thead .krow { background: var(--navy-mid); color: var(--gold); letter-spacing: 2px; }
.kantar .ktot { background: rgba(245,196,81,.08); color: var(--gold-bright); font-weight: 700; }
.kantar thead .ktot { background: rgba(245,196,81,.16); color: var(--gold-bright); }
.kantar .ksum td { background: rgba(255,255,255,.045); font-weight: 700; color: var(--white); }
.kantar .ksum .ktot { background: rgba(245,196,81,.14); }
.kantar__grand {
  display: flex; align-items: baseline; justify-content: center; gap: 18px; flex-wrap: wrap;
  padding-top: 10px;
}
.kantar__grand span { font-family: var(--font-head); font-size: .78rem; letter-spacing: 3px; color: var(--white-dim); }
.kantar__grand strong { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }

/* ═══ ALCANCE · carrusel de presentadores estilo showcase ═══ */
.cast3 {
  position: relative; width: 100%; height: clamp(560px, 92vh, 820px);
  overflow: hidden;
  background-color: #977323;
  transition: background-color 1s cubic-bezier(.22, 1, .36, 1);
  font-family: var(--font-body);
}
.cast3__ghost {
  position: absolute; inset-inline: 0; top: 10%;
  height: 40%;
  pointer-events: none; user-select: none;
  z-index: 1;
}
.ghost-name {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', var(--font-head); font-weight: 400;
  font-size: clamp(72px, 17vw, 250px);
  color: rgba(255,255,255,.92); line-height: 1;
  letter-spacing: -0.02em; white-space: nowrap;
  opacity: 0; transform: translateY(18px) scale(.97);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}
.ghost-name.on { opacity: 1; transform: none; }
/* lienzo de partículas sobre los nombres gigantes */
.cast3__pcanvas { position: absolute; inset: 0; pointer-events: none; }
/* el nombre viejo se disuelve mientras nacen las partículas encima */
.ghost-name.fade-out { opacity: 0 !important; transition: opacity .3s ease !important; }
/* el nombre nuevo se materializa en su sitio, sin deslizarse */
.ghost-name.materialize { transform: none !important; transition: opacity 1.1s ease !important; }
.cast3__brand {
  position: absolute; top: 26px; left: clamp(18px, 4vw, 44px); z-index: 6;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,.9);
}
.cast3__stage { position: absolute; inset: 0; z-index: 2; }
.c3-fig {
  position: absolute; bottom: 0; left: 50%;
  height: 97%;
  display: flex; align-items: flex-end; justify-content: center;
  transform-origin: bottom center;
  /* solo transform/filter/opacity — GPU, nada de layout */
  transition: transform .9s cubic-bezier(.22, 1, .36, 1), filter .9s cubic-bezier(.22, 1, .36, 1),
              opacity .9s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, filter, opacity;
}
.c3-fig img {
  height: 100%; width: auto; object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
.c3-fig.is-c { transform: translateX(-50%) scale(1); filter: blur(0); opacity: 1; z-index: 20; }
.c3-fig.is-l { transform: translateX(calc(-50% - 36vw)) scale(.3); filter: blur(3px); opacity: .55; z-index: 10; }
.c3-fig.is-r { transform: translateX(calc(-50% + 36vw)) scale(.3); filter: blur(3px); opacity: .55; z-index: 10; }
.c3-fig.no-trans { transition: none !important; }
.cast3__panel {
  position: absolute; bottom: clamp(22px, 5vh, 56px); left: clamp(18px, 4vw, 60px);
  z-index: 30; max-width: 340px;
  padding: 22px 26px; border-radius: 20px;
  background: rgba(0, 0, 0, .28); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
}
.c3-meta {
  position: absolute; inset: auto 0 100% 0;
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  pointer-events: none;
}
.c3-meta.on { position: static; opacity: 1; transform: none; pointer-events: auto; }
.c3-meta h3 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.2rem, 2.4vw, 1.7rem); letter-spacing: .5px; color: #fff; }
.c3-meta > p { font-size: .8rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.85); margin: 4px 0 14px; }
.c3-nums { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.c3-nums span { font-size: .92rem; color: rgba(255,255,255,.85); }
.c3-nums b { font-family: var(--font-head); font-variant-numeric: tabular-nums; color: #fff; }
.c3-tot b { font-size: 1.15em; }
.cast3__navbtns { display: flex; gap: 12px; }
.c3-arrow {
  width: 56px; height: 56px; border-radius: 50%;
  background: transparent; border: 2px solid rgba(255,255,255,.9); color: #fff;
  cursor: pointer; display: grid; place-items: center;
  transition: transform .15s var(--ease-out), background-color .15s;
}
.c3-arrow .ic { width: 24px; height: 24px; }
.c3-arrow:active { transform: scale(.94); }
@media (hover: hover) { .c3-arrow:hover { transform: scale(1.08); background: rgba(255,255,255,.12); } }
.cast3__cta {
  position: absolute; bottom: clamp(22px, 5vh, 56px); right: clamp(18px, 4vw, 44px); z-index: 6;
  font-family: 'Anton', var(--font-head); font-weight: 400;
  font-size: clamp(20px, 3.4vw, 46px); color: rgba(255,255,255,.95);
  letter-spacing: -0.01em; line-height: 1;
}
.cast__totals { display: grid; gap: 14px; max-width: 760px; margin-inline: auto; }
.reach-big {
  text-align: center; padding: 30px 26px; border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.glow-gold-strong { border-color: rgba(245,196,81,.5); box-shadow: 0 24px 70px -18px rgba(245,196,81,.3), inset 0 1px 0 rgba(255,255,255,.1); }
.reach-big__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.reach-big__label { font-size: .84rem; color: var(--white-dim); }
.cast__tc {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 16px 22px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
}
.cast__tc img { height: 34px; width: auto; }
.cast__tc span { font-size: .9rem; color: var(--white-dim); }

/* ═══ BANNER CTA ═══ */
.banner-cta {
  padding: clamp(90px, 13vw, 160px) 0; text-align: center;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(20,38,79,.8) 0%, transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-block: 1px solid rgba(255,255,255,.07);
}
.banner-cta .kicker { justify-content: center; }
.banner-cta .kicker::after { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--ec-red); }
.banner-cta__title { max-width: 900px; margin-inline: auto; }

/* ═══ PRESENCIA · flip cards ═══ */
.flips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; perspective: 1600px; }
.flip { aspect-ratio: 16/10.5; }
.flip__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease-io);
}
.flip.flipped .flip__inner { transform: rotateY(180deg); }
.flip__front, .flip__back {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.flip__front img { width: 100%; height: 100%; object-fit: cover; }
.flip__cap {
  position: absolute; inset: auto 0 0 0; padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(5,11,28,.95), transparent);
  display: flex; align-items: center; gap: 10px;
}
.flip__cap .ic { width: 20px; height: 20px; }
.flip__cap h3 { font-size: 1.02rem; letter-spacing: 2px; }
.flip__back {
  transform: rotateY(180deg);
  background: linear-gradient(175deg, #0c1730 0%, #070f22 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 26px 22px; gap: 12px;
}
.flip__back .ic { width: 34px; height: 34px; }
.flip__back h3 { font-size: 1.05rem; letter-spacing: 2px; }
.flip__back p { font-size: .85rem; color: var(--white-dim); }
.flip__back p b { color: var(--white); }
.flip--gold .flip__cap, .flip--gold .flip__back { color: var(--gold-bright); }
.flip--gold .flip__back { border-color: rgba(245,196,81,.4); box-shadow: 0 24px 60px -16px rgba(245,196,81,.25); }
.flip--blue .flip__cap, .flip--blue .flip__back { color: var(--glow-blue); }
.flip--blue .flip__back { border-color: rgba(77,163,255,.4); box-shadow: 0 24px 60px -16px rgba(77,163,255,.25); }
.flip--red .flip__cap, .flip--red .flip__back { color: var(--glow-red); }
.flip--red .flip__back { border-color: rgba(255,93,93,.4); box-shadow: 0 24px 60px -16px rgba(255,93,93,.25); }
.flip--green .flip__cap, .flip--green .flip__back { color: var(--glow-green); }
.flip--green .flip__back { border-color: rgba(61,220,151,.4); box-shadow: 0 24px 60px -16px rgba(61,220,151,.25); }
.flip__cap h3, .flip__back h3 { color: inherit; }
.flip__back p { color: var(--white-dim); }

/* ═══ ACTIVACIONES ═══ */
.feat-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.checklist { list-style: none; margin: 18px 0; }
.checklist li { position: relative; padding: 8px 0 8px 34px; color: var(--white-dim); font-size: .97rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23050b1c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center/12px no-repeat,
    linear-gradient(115deg, var(--gold-dark), var(--gold-bright));
}
.big-number-inline { font-size: 1.1rem; color: var(--white-dim); margin-bottom: 8px; }
.big-number-inline b { font-family: var(--font-head); font-weight: 800; font-size: 3.6rem; margin-right: 10px; vertical-align: -6px; }

/* uniforme flotante */
.uni { position: relative; display: grid; place-items: center; padding: 20px 0; }
.uni__img {
  width: 100%; max-width: 560px;
  animation: floaty 5.5s var(--ease-io) infinite alternate;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
}
@keyframes floaty {
  from { transform: translateY(-10px) rotate(-.6deg); }
  to { transform: translateY(14px) rotate(.6deg); }
}
.uni__halo {
  position: absolute; inset: 12% 6%;
  background: radial-gradient(45% 45% at 50% 55%, rgba(245,196,81,.14), transparent 70%);
  filter: blur(30px); pointer-events: none;
}

.deck-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(44px, 6.5vw, 64px); }
.deck-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
@media (hover: hover) { .deck-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px -16px rgba(0,0,0,.55); } }
.deck-card img { width: 100%; aspect-ratio: 16/9.4; object-fit: cover; }
.deck-card figcaption { padding: 16px 22px; font-size: .88rem; color: var(--white-dim); }
.deck-card figcaption b { color: var(--gold); letter-spacing: 1px; font-family: var(--font-head); font-size: .82rem; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.photo-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  border: 1px solid rgba(255,255,255,.1); display: block;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
@media (hover: hover) { .photo-card:hover img { transform: scale(1.06); } }
.photo-card__cap {
  position: absolute; inset: auto 0 0 0; padding: 44px 24px 20px;
  background: linear-gradient(to top, rgba(5,11,28,.92), transparent);
}
.photo-card__cap b { display: block; font-family: var(--font-head); letter-spacing: 1.5px; color: var(--gold); font-size: .92rem; }
.photo-card__cap span { font-size: .84rem; color: var(--white-dim); }

/* ═══ PAQUETES · premium sobrio ═══ */
.section--prem {
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(16,24,45,.9) 0%, transparent 70%),
    linear-gradient(180deg, #060b18 0%, #04070f 100%);
}
.section--prem-b { background: linear-gradient(180deg, #04070f 0%, #060b18 100%); }
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.pricing--three { grid-template-columns: repeat(3, 1fr); max-width: 1020px; margin-inline: auto; }
.pcard {
  position: relative; border-radius: 18px; padding: 38px 30px 30px;
  background: linear-gradient(178deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.012) 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s var(--ease-out), background .4s;
}
@media (hover: hover) {
  .pcard:hover { transform: translateY(-6px); border-color: rgba(245,196,81,.3); box-shadow: 0 30px 70px -24px rgba(0,0,0,.7); }
}
.pcard__tier {
  font-family: var(--font-head); font-weight: 600; font-size: .68rem;
  letter-spacing: 4px; color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.pcard__tier::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(245,196,81,.4), transparent); min-width: 40px; }
.pcard__tier--silver { color: #c9d4e4; }
.pcard__tier--silver::after { background: linear-gradient(90deg, rgba(201,212,228,.35), transparent); }
.pcard__tier--bronze { color: #dba57e; }
.pcard__tier--bronze::after { background: linear-gradient(90deg, rgba(219,165,126,.35), transparent); }
.pcard h3 { display: none; }
.pcard__price { display: flex; align-items: baseline; gap: 8px; }
.pcard__price b {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  color: var(--white); font-variant-numeric: tabular-nums; letter-spacing: -0.5px;
}
.pcard__price span { color: rgba(255,255,255,.45); font-size: .88rem; }
.pcard__season {
  font-size: .82rem; color: rgba(255,255,255,.45);
  margin: 6px 0 22px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pcard__reach { font-size: .9rem; color: var(--white-dim); margin-bottom: 16px; }
.pcard ul { list-style: none; flex: 1; margin-bottom: 26px; }
.pcard ul li {
  font-size: .85rem; color: rgba(255,255,255,.6);
  padding: 7px 0 7px 20px; position: relative;
}
.pcard ul li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: rgba(245,196,81,.6);
}
.pcard ul li b { color: rgba(255,255,255,.92); }
.pcard .btn { width: 100%; }
/* MASTER — borde degradado champagne */
.pcard--master {
  background:
    linear-gradient(178deg, rgba(245,196,81,.07) 0%, rgba(245,196,81,.015) 40%, rgba(255,255,255,.01) 100%),
    #0a0f1e;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1px rgba(245,196,81,.45), 0 30px 80px -24px rgba(245,196,81,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (hover: hover) {
  .pcard--master:hover { box-shadow: 0 0 0 1px rgba(245,196,81,.7), 0 40px 90px -24px rgba(245,196,81,.4), inset 0 1px 0 rgba(255,255,255,.1); }
}
.pcard__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: .64rem; font-weight: 700; letter-spacing: 3px;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(115deg, var(--gold-dark), var(--gold-bright)); color: var(--navy-deep);
  box-shadow: 0 8px 24px -6px rgba(245,196,81,.6);
}
.pcard--master .pcard__price b { color: var(--gold-bright); }
.pcard--master::before {
  content: 'MASTER';
  font-family: var(--font-head); font-weight: 600; font-size: .68rem;
  letter-spacing: 4px; color: var(--gold-bright);
  display: inline-flex; align-items: center; gap: 10px; margin: 8px 0 20px;
}

.extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.extra {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  transition: border-color .3s, transform .3s var(--ease-out);
}
@media (hover: hover) { .extra:hover { border-color: rgba(245,196,81,.3); transform: translateY(-3px); } }
.extra__ic {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(245,196,81,.07); border: 1px solid rgba(245,196,81,.18);
}
.extra__ic .ic { width: 22px; height: 22px; }
.extra h4 { font-size: .85rem; letter-spacing: 1.5px; font-weight: 600; }
.extra p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* tabla comparativa */
.cmp { margin-top: 30px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.02); }
.cmp summary {
  cursor: pointer; list-style: none; padding: 20px 28px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; letter-spacing: .5px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .3s;
}
@media (hover: hover) { .cmp summary:hover { background: rgba(255,255,255,.04); } }
.cmp summary::-webkit-details-marker { display: none; }
.cmp summary .ic { transition: transform .3s var(--ease-out); color: var(--gold); transform: rotate(90deg); }
.cmp[open] summary .ic { transform: rotate(-90deg); }
.cmp__scroll { overflow-x: auto; }
.cmp table { width: 100%; border-collapse: collapse; min-width: 760px; }
.cmp th, .cmp td { padding: 13px 18px; text-align: center; font-size: .87rem; border-top: 1px solid rgba(255,255,255,.06); }
.cmp th { font-family: var(--font-head); background: rgba(255,255,255,.04); font-size: .8rem; letter-spacing: 1.5px; font-weight: 600; }
.cmp th span { display: block; font-size: .7rem; color: rgba(255,255,255,.45); font-weight: 400; letter-spacing: 0; margin-top: 3px; }
.cmp td:first-child, .cmp th:first-child { text-align: left; color: rgba(255,255,255,.6); position: sticky; left: 0; background: #080d1a; z-index: 1; }
.cmp .col-master { background: rgba(245,196,81,.07); color: var(--gold-bright); font-weight: 600; }
.cmp th.col-master { background: rgba(245,196,81,.14); color: var(--gold-bright); }
.soc-note { text-align: center; color: rgba(255,255,255,.55); max-width: 760px; margin: 38px auto 0; font-size: .93rem; }

/* ═══ FINALE · sólido con letras líquidas ═══ */
.finale { position: relative; padding: clamp(110px, 16vw, 190px) 0; overflow: hidden; text-align: center; }
.finale--solid { background: #04070f; }
.finale__aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 30% at 22% 30%, rgba(245,196,81,.13), transparent 70%),
    radial-gradient(34% 28% at 78% 62%, rgba(47,95,208,.16), transparent 70%),
    radial-gradient(26% 22% at 60% 20%, rgba(204,0,0,.08), transparent 70%);
  filter: blur(50px);
  animation: aurora 16s var(--ease-io) infinite alternate;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(4%, -3%) rotate(3deg) scale(1.08); }
  100% { transform: translate(-4%, 3%) rotate(-3deg) scale(1.04); }
}
.finale__content { position: relative; z-index: 2; }
.finale__title { font-size: clamp(1.9rem, 5.2vw, 3.8rem); font-weight: 800; }
.finale__title--liquid {
  background: linear-gradient(100deg,
    #ffffff 0%, #ffffff 22%,
    var(--gold-bright) 32%, var(--gold) 40%,
    #ffffff 50%,
    #7fa8ff 60%, #ff7d6b 68%,
    #ffffff 78%, #ffffff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: liquid 6s linear infinite;
  filter: drop-shadow(0 0 40px rgba(245,196,81,.18));
}
@keyframes liquid { to { background-position: -300% center; } }
.finale__sub { color: var(--white-dim); font-size: clamp(1rem, 2vw, 1.2rem); margin: 18px 0 46px; }
.contact-card {
  max-width: 560px; margin-inline: auto; padding: clamp(30px, 4.5vw, 48px);
  border-radius: 26px;
  background: rgba(8,15,33,.84); backdrop-filter: blur(16px);
  border: 1px solid rgba(245,196,81,.35);
  box-shadow: 0 40px 100px -24px rgba(245,196,81,.25), 0 30px 80px -16px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.09);
}
.contact-card__label { font-family: var(--font-head); font-size: .74rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.contact-card__name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin-bottom: 26px; }
.contact-card__btns { display: flex; flex-direction: column; gap: 12px; }
.contact-card__mail { margin-top: 18px; font-size: .88rem; color: var(--white-dim); word-break: break-all; }
.finale__logos { display: flex; justify-content: center; align-items: center; gap: 36px; margin-top: 52px; }
.finale__logos img { height: 58px; width: auto; }
.finale__logos img:last-child { height: 44px; }

/* ═══ FOOTER ═══ */
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; background: var(--navy-deep); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer p { font-size: .82rem; color: var(--white-dim); }
.footer__links { display: flex; gap: 22px; }
.footer__links a { font-size: .82rem; color: var(--white-dim); transition: color .25s; }
@media (hover: hover) { .footer__links a:hover { color: var(--gold); } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .timeline__rail { display: none; }
  .tl-item { opacity: 1; }
  .canal__stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .fmt { grid-template-columns: 1fr; }
  .fmt__stage { min-height: 300px; }
  .eco { grid-template-columns: 1fr; }
  .eco__right { min-height: 360px; }
  .cast3 { height: clamp(480px, 78vh, 640px); }
  .c3-fig.is-l { transform: translateX(calc(-50% - 42vw)) scale(.26); }
  .c3-fig.is-r { transform: translateX(calc(-50% + 42vw)) scale(.26); }
}
@media (max-width: 860px) {
  .nav { padding-top: 12px; }
  .nav__pill { padding: 8px 12px 8px 16px; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    background: rgba(5,11,28,.97); backdrop-filter: blur(16px);
    opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
    margin: 0;
  }
  .nav__links a { font-size: 1.3rem; opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
  .nav.open .nav__links { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav.open .nav__links a { opacity: 1; transform: none; }
  .nav.open .nav__links a:nth-child(1) { transition-delay: .05s; }
  .nav.open .nav__links a:nth-child(2) { transition-delay: .1s; }
  .nav.open .nav__links a:nth-child(3) { transition-delay: .15s; }
  .nav.open .nav__links a:nth-child(4) { transition-delay: .2s; }
  .nav.open .nav__links a:nth-child(5) { transition-delay: .25s; }
  .nav__burger { display: flex; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__right .btn { display: none; }
  .split, .split--media { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__media, .split--reverse .uni { order: 2; }
  .split__media { aspect-ratio: 16/11; }
  .prize-banner { grid-template-columns: 1fr; text-align: center; }
  .prize-banner__nums { justify-content: center; }
  .deck-duo, .photo-duo { grid-template-columns: 1fr; }
  .pricing--three { grid-template-columns: 1fr; }
  .extras { grid-template-columns: 1fr; }
  .allies-grid { grid-template-columns: repeat(2, 1fr); }
  .eco__stage { min-height: 460px; }
  .orb { width: 420px; height: 420px; filter: blur(70px); }
}
@media (max-width: 620px) {
  .pricing { grid-template-columns: 1fr; }
  .flips { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 22px; }
  .contact-card__btns .btn { width: 100%; }
  .carousel__arrow { display: none; }
  .marquee span { font-size: .8rem; letter-spacing: 3px; padding-inline: 20px; }
  .canal__stats { grid-template-columns: 1fr 1fr; }
  .cast3 { height: 560px; }
  .c3-fig { height: 62%; }
  .c3-fig.is-l, .c3-fig.is-r { opacity: .4; }
  .cast3__cta { display: none; }
  .cast3__panel { right: 18px; }
}

/* ═══════════════════════════════════════════════
   PULIDO MÓVIL — refinamiento por sección
   ═══════════════════════════════════════════════ */
@media (max-width: 620px) {
  /* ritmo general más compacto */
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .section__head h2 { font-size: clamp(1.7rem, 7.4vw, 2.1rem); }
  .kicker { font-size: .7rem; letter-spacing: 2px; }
  .container { padding-inline: 18px; }

  /* HERO — todo en una pantalla, respirado */
  .hero { padding: 92px 0 58px; }
  .chip--gold { font-size: .66rem; padding: 7px 14px; letter-spacing: 1px; }
  .hero__logo3d { margin: 24px auto 0; width: min(300px, 66vw); }
  .hero__title { font-size: clamp(1.45rem, 6.6vw, 1.8rem); margin: 24px 0 12px; }
  .hero__sub { font-size: .92rem; margin-bottom: 22px; padding-inline: 6px; }
  .hero__ctas { flex-direction: column; align-items: stretch; padding-inline: 12px; gap: 12px; }
  .hero__ctas .btn--lg { padding: 15px 24px; font-size: .92rem; }
  .hero__scroll { bottom: 14px; transform: translateX(-50%) scale(.85); }

  /* NAV pill compacta */
  .nav { padding-top: 10px; }
  .nav__logo img { height: 36px; }
  .nav__tc { height: 26px; }

  /* VIDEO */
  .bezel { padding: 6px; border-radius: 20px; }
  .bezel > * { border-radius: 15px; }
  .video-frame__play { width: 68px; height: 68px; }
  .video-frame__play .ic { width: 26px; height: 26px; }

  /* QUÉ ES + inspo */
  .paint { font-size: clamp(1.2rem, 5.6vw, 1.5rem); }
  .paint--sub { font-size: clamp(1rem, 4.6vw, 1.2rem); }
  .paint--title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .inspo__btns { flex-direction: column; align-items: stretch; padding-inline: 12px; }
  .prize-banner { padding: 24px 20px; }
  .pnum__n { font-size: 2.8rem; }
  .bigquote { font-size: 1.25rem; }
  .tc-strip { flex-direction: column; gap: 8px; text-align: center; padding: 14px 18px; }

  /* ALIADOS */
  .allies-sec { padding: 70px 0; }
  .ally { min-height: 116px; padding: 24px 14px; gap: 8px; }
  .ally__logo { height: clamp(42px, 11vw, 56px); }
  .ally__logo[src*="ministerio"] { height: clamp(30px, 8vw, 42px); }
  .ally__type { font-size: .62rem; }

  /* FORMATO */
  .fmt { gap: 18px; }
  .fmt__stage { min-height: 0; aspect-ratio: 4/3.1; }
  .fmt__cap { padding: 36px 18px 16px; }
  .fmt__cap b { font-size: .92rem; }
  .fmt__cap span { font-size: .8rem; }
  .fstep { padding: 12px 14px; column-gap: 12px; }
  .fstep__n { width: 36px; height: 36px; font-size: .9rem; }
  .fstep__t { font-size: .82rem; }
  .fstep__d { font-size: .72rem; }

  /* CAROUSEL escenografías */
  .carousel__track { padding: 26px 24px 40px; }
  .icard { flex-basis: 82vw; }
  .icard h3 { font-size: 1rem; margin-top: 16px; }
  .icard p { font-size: .86rem; margin-bottom: 22px; }

  /* ECOSISTEMA */
  .eco__left { padding: 26px 22px; gap: 14px; }
  .eco__name { font-size: 1.6rem; }
  .eco__desc { font-size: .9rem; min-height: 0; }
  .eco__logo { width: 50px; height: 50px; }
  .eco-dot { width: 46px; height: 46px; border-radius: 13px; }
  .eco-dot svg { width: 22px; height: 22px; }
  .eco__right { min-height: 330px; }
  .pill { font-size: .8rem; padding: 11px 17px; }

  /* CRONOGRAMA */
  .tl-item__date { font-size: .76rem; }
  .tl-item h4 { font-size: .88rem; }
  .tl-item p { font-size: .76rem; }
  .values-strip { gap: 10px 20px; padding: 16px 18px; }
  .values-strip span { font-size: .8rem; }

  /* CANAL + KANTAR */
  .canal { padding: 76px 0; }
  .canal__tc { height: 70px; }
  .canal__label { font-size: .66rem; letter-spacing: 2.5px; margin: 20px 0 34px; }
  .cstat__num { font-size: clamp(1.5rem, 7.4vw, 1.9rem); }
  .cstat__label { font-size: .76rem; }
  .kantar { padding: 18px 14px; margin-top: 48px; }
  .kantar h3 { font-size: 1rem; }
  .kantar th, .kantar td { padding: 8px 10px; font-size: .76rem; }
  .kantar__scroll { position: relative; }
  .kantar__hint { display: block; }
  .kantar__grand strong { font-size: 1.5rem; }

  /* ALCANCE cast3 — protagonista visible, sin figuras laterales */
  .cast3 { height: 660px; }
  .ghost-name { font-size: clamp(52px, 13.5vw, 68px); }
  .cast3__brand { font-size: .64rem; letter-spacing: 2.5px; }
  .c3-fig { height: 78%; bottom: 84px; filter: none !important; }
  .c3-fig img { filter: none !important; }
  .c3-fig.is-c { transform: translateX(-50%) scale(1); }
  .c3-fig.is-l, .c3-fig.is-r { opacity: 0; visibility: hidden; }
  .cast3__panel { left: 14px; right: 14px; max-width: none; bottom: 14px; padding: 16px 18px; }
  .c3-meta h3 { font-size: 1.05rem; }
  .c3-meta > p { margin-bottom: 8px; font-size: .7rem; }
  .c3-nums { flex-direction: row; flex-wrap: wrap; gap: 4px 16px; margin-bottom: 12px; }
  .c3-nums span { font-size: .8rem; }
  .c3-arrow { width: 46px; height: 46px; }
  .cast__tc { flex-direction: column; gap: 8px; text-align: center; }

  /* PRESENCIA flips */
  .flip { aspect-ratio: 16/11.5; }
  .flip__back p { font-size: .8rem; }

  /* ACTIVACIONES */
  .feat-title { font-size: 1.35rem; }
  .big-number-inline b { font-size: 2.5rem; }
  .checklist li { font-size: .9rem; }
  .uni__img { max-width: 88vw; }
  .deck-card figcaption { padding: 13px 16px; font-size: .8rem; }

  /* PAQUETES premium */
  .pcard { padding: 30px 22px 24px; }
  .pcard__price b { font-size: 1.6rem; }
  .cmp summary { padding: 16px 18px; font-size: .84rem; gap: 10px; }
  .extra { padding: 16px 18px; }
  .soc-note { font-size: .86rem; }

  /* FINALE */
  .finale { padding: 84px 0; }
  .finale__title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .contact-card { padding: 26px 20px; border-radius: 20px; }
  .contact-card__name { font-size: 1.25rem; }
  .contact-card__btns .btn { font-size: .88rem; padding: 14px 18px; }
  .finale__logos { gap: 24px; margin-top: 38px; }
  .finale__logos img { height: 44px; }
  .finale__logos img:last-child { height: 34px; }
  .footer__inner { justify-content: center; text-align: center; }
}

/* pista de deslizar en tablas (solo móvil) */
.kantar__hint {
  text-align: center; font-size: .7rem; letter-spacing: 1.5px;
  color: rgba(255,255,255,.4); margin: -14px 0 16px;
}
@media (min-width: 621px) {
  .kantar__hint { display: none; }
}

/* pantallas muy chicas */
@media (max-width: 380px) {
  .hero__title { font-size: 1.35rem; }
  .ghost-name { font-size: 48px; }
  .marquee span { font-size: .7rem; letter-spacing: 2px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  .hero__bg img, .canal__bg img, .marquee__inner, .prize-banner::before,
  .hero__scroll span, .video-frame__play, .uni__img { animation: none !important; }
  .grad-gold { animation: none !important; }
  .reveal { transition: opacity .3s ease; transform: none; filter: none; }
  .paint .w { transition: color .3s ease; }
  html { scroll-behavior: auto; }
}