/* ============================================================
   BROWNIE PASSPORT CLUB — presentación
   Estética editorial: marfil / terracota / rosa empolvado
   Concepto: la web ES un pasaporte
   ============================================================ */

:root {
  --choco:     #3B2A22;
  --choco-2:   #533C31;
  --cream:     #F4EEE4;   /* marfil cálido */
  --cream-2:   #ECE3D5;
  --paper:     #FAF6EE;
  --terra:     #B26A54;   /* terracota */
  --terra-d:   #9C5843;
  --brick:     #A9503E;   /* banda ladrillo (deck) */
  --rose:      #C08C84;   /* rosa empolvado */
  --rose-d:    #A9756E;
  --rose-soft: #E4D3CC;
  --teal:      #5E827E;   /* salvia */
  --navy:      #45566E;
  --ink:       #33261E;
  --muted:     #6E5C4F;
  --line:      rgba(59,42,34,.13);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;
  --hand:  "Caveat", cursive;

  --wrap: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

.wrap { width: 90%; max-width: var(--wrap); margin: 0 auto; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.center { text-align: center; }

.eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 1rem;
}
.eyebrow.center { margin-inline: auto; }

/* ---------- botones ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  padding: .95rem 2.1rem; border-radius: 999px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--choco); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.btn--fill  { background: var(--terra); color: #fff; box-shadow: 0 12px 30px rgba(178,106,84,.4); }
.btn--fill:hover { background: var(--terra-d); }

/* ---------- POP-UP DE INICIO ---------- */
body.intro-open { overflow: hidden; }
.intro {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 4vmin;
  background: radial-gradient(120% 120% at 50% 40%, rgba(59,42,34,.86), rgba(15,10,7,.96));
  backdrop-filter: blur(6px);
  opacity: 1; transition: opacity .5s ease;
}
.intro.hide { opacity: 0; pointer-events: none; }
.intro__box {
  position: relative; width: min(92vw, 900px);
  aspect-ratio: 16 / 9; max-height: 88vh;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.6); background: #000;
  animation: intropop .6s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes intropop { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: none; } }
.intro__video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.intro__play {
  position: absolute; inset: 0; margin: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
  width: 100%; height: 100%; border: none; cursor: pointer; color: #fff;
  background: linear-gradient(180deg, rgba(30,20,14,.15), rgba(30,20,14,.55));
  font-family: var(--sans); transition: opacity .3s;
}
.intro__play-ico {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--terra); color: #fff; display: grid; place-items: center;
  font-size: 2rem; padding-left: 6px;
  box-shadow: 0 10px 40px rgba(178,106,84,.6); transition: transform .25s, background .25s;
}
.intro__play:hover .intro__play-ico { transform: scale(1.08); background: var(--terra-d); }
.intro__play-txt { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.intro__play-txt em { font-style: italic; color: var(--rose); font-weight: 500; }
.intro__play.gone { opacity: 0; pointer-events: none; }
.intro__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: rgba(15,10,7,.55); color: #fff; border: 1px solid rgba(255,255,255,.25);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .5rem .9rem; border-radius: 999px; cursor: pointer;
  backdrop-filter: blur(4px); transition: background .25s, transform .25s;
}
.intro__close:hover { background: var(--terra); transform: translateY(-1px); }

/* ---------- progreso ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--terra), var(--rose)); z-index: 1000;
  transition: width .1s linear;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(244,238,228,.92); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); padding-top: .7rem; padding-bottom: .7rem;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav__b {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--terra); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
}
.nav__name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: #fff; transition: color .35s; }
.nav__name em { font-style: italic; font-weight: 500; opacity: .85; }
.nav.scrolled .nav__name { color: var(--choco); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { text-decoration: none; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.92); transition: color .3s; }
.nav.scrolled .nav__links a { color: var(--choco-2); }
.nav__links a:hover { color: var(--rose); }
.nav.scrolled .nav__links a:hover { color: var(--terra); }
.nav__cta { background: var(--terra); color: #fff !important; padding: .5rem 1.2rem; border-radius: 999px; }
.nav__cta:hover { background: var(--terra-d); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; color: #fff; overflow: hidden; background: var(--choco);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(30,20,14,.55) 0%, rgba(30,20,14,.22) 35%, rgba(30,20,14,.72) 100%),
    radial-gradient(120% 90% at 72% 30%, rgba(59,42,34,.1), rgba(30,20,14,.75));
}
.hero__content { position: relative; z-index: 3; width: 90%; max-width: var(--wrap); margin: 0 auto; }
.hero__kicker { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 1.4rem; }
.hero__title { font-family: var(--serif); font-weight: 700; line-height: .95; font-size: clamp(3rem, 9vw, 7rem); letter-spacing: -.01em; text-shadow: 0 6px 40px rgba(0,0,0,.4); }
.hero__title-serif { font-style: italic; font-weight: 500; color: var(--cream); }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.2rem); margin: 1.2rem 0 1rem; }
.hero__tag em { color: var(--rose); font-style: italic; }
.hero__sub { font-size: clamp(1rem, 1.7vw, 1.2rem); max-width: 42ch; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero__ribbon {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--brick); color: var(--cream); text-align: center;
  font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.35rem);
  padding: .9rem 1rem; letter-spacing: .01em;
}
.hero__stamp {
  position: absolute; top: 13%; right: 6%; z-index: 3; display: none;
  flex-direction: column; align-items: center; gap: .1rem;
  border: 3px solid rgba(244,238,228,.7); border-radius: 12px; padding: 1.1rem 1.5rem;
  transform: rotate(-11deg); color: rgba(244,238,228,.82); text-align: center; font-family: var(--serif);
}
.hero__stamp span { font-size: .7rem; letter-spacing: .3em; }
.hero__stamp strong { font-size: 1.4rem; letter-spacing: .12em; }
.hero__stamp em { font-style: normal; font-size: 1rem; }
@media (min-width: 900px) { .hero__stamp { display: flex; } }
.hero__scroll { position: absolute; bottom: 4.2rem; left: 50%; transform: translateX(-50%); z-index: 4; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;top:8px} 40%{opacity:1} 80%{opacity:0;top:22px} 100%{opacity:0} }

/* ============ RETO ============ */
.reto { background: var(--paper); text-align: center; }
.reto__q { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.05; color: var(--choco); }
.reto__q .ul { position: relative; white-space: nowrap; }
.reto__q .ul::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .1em; background: var(--terra); border-radius: 2px; opacity: .5; }
.reto__lead { font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 1.6rem auto 0; max-width: 48ch; color: var(--choco-2); }
.reto__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.5rem; text-align: left; }
.reto__card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.7rem; box-shadow: 0 10px 30px rgba(59,42,34,.05); transition: transform .3s, box-shadow .3s; }
.reto__card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(59,42,34,.1); }
.reto__num { font-family: var(--serif); font-size: 2.6rem; font-weight: 800; color: var(--terra); opacity: .28; display: block; line-height: 1; }
.reto__card h3 { font-family: var(--serif); font-size: 1.35rem; margin: .5rem 0; color: var(--choco); }
.reto__card p { color: var(--muted); font-size: .98rem; }

/* ============ EMMA / OPORTUNIDAD ============ */
.emma { background: var(--cream-2); }
.emma__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.emma__note { position: relative; background: var(--rose-soft); border-radius: 14px; padding: 2.6rem 2.2rem 2rem; box-shadow: 0 20px 50px rgba(59,42,34,.1); }
.emma__quotemark { position: absolute; top: -18px; left: 24px; width: 54px; height: 54px; border-radius: 50%; background: var(--terra); color: #fff; font-family: var(--serif); font-size: 2.6rem; line-height: 54px; text-align: center; }
.emma__hand { font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--choco); font-style: italic; }
.emma__hand u { text-decoration-color: var(--terra); text-underline-offset: 3px; }
.emma__meta { margin-top: 1.4rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--terra-d); font-weight: 700; }
.emma__text h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05; color: var(--choco); margin-bottom: .6rem; }
.emma__text .lead { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--rose-d); margin-bottom: 1.8rem; }
.emma__triad { display: grid; gap: 1.1rem; }
.triad { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; row-gap: .2rem; align-items: start; }
.triad__ico { grid-row: 1 / span 2; width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.triad h3, .triad p { grid-column: 2; }
.triad h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--choco); }
.triad p { font-size: .95rem; color: var(--muted); }
.emma__strat { display: flex; gap: 1.1rem; align-items: center; background: var(--brick); color: var(--cream); border-radius: 14px; padding: 1.5rem 1.8rem; margin-top: 3rem; }
.emma__strat-ico { font-size: 1.6rem; flex: none; }
.emma__strat p { font-size: 1.05rem; }
.emma__strat b { color: #fff; }
.emma__ratio { text-align: center; margin-top: 1.6rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--terra); letter-spacing: .04em; }

/* ============ INTENCIÓN ESTRATÉGICA (tríada) ============ */
.intent { margin-top: 3.2rem; }
.intent__eyebrow { text-align: center; font-size: .76rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.4rem; }
.intent__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.intent__col { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem 1.6rem; box-shadow: 0 10px 30px rgba(59,42,34,.05); }
.intent__col p { color: var(--muted); font-size: .97rem; }
.intent__tag { display: inline-block; font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--choco); margin-bottom: .6rem; position: relative; padding-bottom: .4rem; }
.intent__tag::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 2px; background: var(--rose); }
.intent__col--obj { background: linear-gradient(160deg, var(--brick), #8f4636); border-color: transparent; }
.intent__col--obj .intent__tag { color: #fff; }
.intent__col--obj .intent__tag::after { background: rgba(255,255,255,.6); }
.intent__col--obj p { color: rgba(244,238,228,.9); }
.intent__col--obj b { color: #fff; }

/* ============ SOLUCIÓN (4 pasos) ============ */
.sol { background: var(--choco); color: var(--cream); }
.sol .eyebrow { color: var(--rose); }
.sol__title { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; margin-bottom: 1rem; }
.sol__lead { max-width: 60ch; margin: 0 auto; color: rgba(244,238,228,.82); font-size: 1.15rem; }
.sol__lead em { color: var(--rose); font-style: italic; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.5rem; counter-reset: s; }
.step { position: relative; background: rgba(244,238,228,.05); border: 1px solid rgba(244,238,228,.14); border-radius: 18px; padding: 2.2rem 1.5rem 1.8rem; transition: transform .3s, background .3s, border-color .3s; }
.step:hover { transform: translateY(-6px); background: rgba(244,238,228,.09); border-color: rgba(192,140,132,.6); }
.step__n { position: absolute; top: 1.1rem; right: 1.2rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--rose); opacity: .55; }
.step__ico { font-size: 2rem; margin-bottom: .8rem; }
.step h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .5rem; color: #fff; }
.step p { color: rgba(244,238,228,.72); font-size: .96rem; }

/* ============ FLOW / RECORRIDO ============ */
.flow { background: var(--paper); }
.flow__title { font-family: var(--serif); font-size: clamp(1.9rem, 5vw, 3.2rem); color: var(--choco); margin-bottom: 3rem; }
.flow__chain { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: .4rem 0; }
.flow__chain li { flex: 1 1 130px; max-width: 170px; text-align: center; position: relative; padding: 0 .3rem; }
.flow__chain li:not(:last-child)::after { content: "→"; position: absolute; top: 22px; right: -8px; color: var(--terra); font-size: 1.2rem; opacity: .6; }
.flow__ico { width: 58px; height: 58px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; font-size: 1.5rem; margin: 0 auto .7rem; }
.flow__chain p { font-size: .88rem; color: var(--choco-2); font-weight: 500; line-height: 1.35; }
.flow__note { display: flex; gap: 1.3rem; align-items: center; max-width: 780px; margin: 3.2rem auto 0; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--teal); border-radius: 16px; padding: 1.6rem 1.9rem; box-shadow: 0 12px 30px rgba(59,42,34,.06); }
.flow__globe { font-size: 2rem; flex: none; }
.flow__note h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--choco); margin-bottom: .3rem; }
.flow__note p { color: var(--muted); font-size: 1rem; }

/* ============ VOTA ============ */
.vota { background: radial-gradient(90% 60% at 50% 0%, rgba(178,106,84,.25), transparent 60%), linear-gradient(180deg, #241812, #17100c); color: var(--cream); text-align: center; }
.vota__title { font-family: var(--serif); font-size: clamp(2.4rem, 6.5vw, 4.4rem); font-weight: 800; margin: .3rem 0 .8rem; }
.vota__lead { max-width: 54ch; margin: 0 auto 3rem; color: rgba(244,238,228,.8); font-size: 1.1rem; }
.vota__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.city { position: relative; text-align: left; cursor: pointer; background: var(--paper); border: none; border-radius: 20px; padding: 1.8rem 1.6rem 1.6rem; color: var(--choco); font-family: var(--sans); overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.35); transition: transform .25s, box-shadow .25s; border-top: 5px solid var(--accent); }
.city:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.45); }
.city.voted { outline: 2px solid var(--accent); }
.city.bump { animation: bump .4s ease; }
@keyframes bump { 0%,100%{transform:translateY(-6px) scale(1)} 40%{transform:translateY(-6px) scale(1.04)} }
.city__stamp { position: absolute; top: 14px; right: 14px; font-size: .62rem; letter-spacing: .2em; font-weight: 700; color: var(--accent); border: 1.5px solid var(--accent); padding: .15rem .5rem; border-radius: 4px; transform: rotate(6deg); opacity: .8; }
.city__flag { font-size: 2.2rem; display: block; }
.city__name { font-family: var(--serif); font-size: 1.7rem; margin: .5rem 0 .1rem; }
.city__zone { font-size: .85rem; color: #7a6858; margin-bottom: 1.2rem; }
.city__bar { height: 10px; background: rgba(59,42,34,.12); border-radius: 999px; overflow: hidden; }
.city__fill { display: block; height: 100%; width: 0%; background: var(--accent); border-radius: 999px; transition: width .7s cubic-bezier(.2,.7,.2,1); }
.city__stats { display: flex; justify-content: space-between; align-items: baseline; margin-top: .5rem; }
.city__pct { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--accent); }
.city__votes { font-size: .82rem; color: #7a6858; }
.city__cta { display: block; text-align: center; margin-top: 1.1rem; font-weight: 600; font-size: .9rem; color: #fff; background: var(--accent); padding: .6rem; border-radius: 999px; transition: filter .2s; }
.city:hover .city__cta { filter: brightness(1.08); }
.vota__leader { margin-top: 2.4rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.7rem); min-height: 1.5em; color: var(--cream); }
.vota__leader b { color: var(--rose); font-style: normal; }
.vota__disclaimer { margin-top: .8rem; font-size: .78rem; color: rgba(244,238,228,.45); }

/* ============ PLAN ============ */
.plan { background: var(--cream-2); }
.plan__title { font-family: var(--serif); font-size: clamp(2rem, 5.5vw, 3.6rem); color: var(--choco); margin-bottom: .4rem; }
.plan__lead { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--rose-d); margin-bottom: 3.2rem; }
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.phase { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.7rem; text-align: left; box-shadow: 0 10px 30px rgba(59,42,34,.05); transition: transform .3s; }
.phase:hover { transform: translateY(-6px); }
.phase__ico { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.phase__tag { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--choco); }
.phase__time { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); font-weight: 700; margin-bottom: .8rem; }
.phase p:last-child { color: var(--muted); font-size: .97rem; }
.plan__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.4rem; }
.kpis { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem 2rem; }
.kpis h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--choco); margin-bottom: 1rem; }
.kpis ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; }
.kpis li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--choco-2); }
.kpis li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.reco { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--brick); color: var(--cream); border-radius: 18px; padding: 1.8rem 2rem; }
.reco__check { flex: none; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-weight: 700; }
.reco p { font-size: 1.05rem; }
.reco b { color: #fff; }

/* ============ IMPACTO / FINANCIERO ============ */
.fin {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(192,140,132,.16), transparent 55%),
    var(--paper);
}
.fin__title { font-family: var(--serif); font-size: clamp(2rem, 5.5vw, 3.6rem); color: var(--choco); margin-bottom: .4rem; }
.fin__lead { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--rose-d); margin-bottom: 3rem; }

.fin__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 820px; margin: 0 auto 3.2rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1rem; box-shadow: 0 16px 44px rgba(59,42,34,.07);
}
.fin__kpi { padding: .4rem 1rem; position: relative; }
.fin__kpi + .fin__kpi::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--line); }
.fin__num { display: block; font-family: var(--serif); font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.1rem); color: var(--terra); line-height: 1; letter-spacing: -.01em; }
.fin__label { display: block; margin-top: .6rem; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.fin__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fin__card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.9rem; box-shadow: 0 10px 30px rgba(59,42,34,.05); transition: transform .3s; }
.fin__card:hover { transform: translateY(-5px); }
.fin__ico { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 1.35rem; margin-bottom: 1rem; }
.fin__card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--choco); margin-bottom: .6rem; }
.fin__card p { color: var(--muted); margin-bottom: .6rem; }
.fin__card strong { color: var(--terra-d); }
.fin__phase { font-size: .92rem; color: var(--choco-2); }
.fin__phase b { color: var(--terra-d); }
.fin__list { list-style: none; display: grid; gap: .55rem; }
.fin__list li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: .98rem; }
.fin__list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.fin__card--strat { background: linear-gradient(160deg, var(--brick), #8f4636); border-color: transparent; color: var(--cream); }
.fin__card--strat h3 { color: #fff; }
.fin__card--strat p { color: rgba(244,238,228,.9); }
.fin__card--strat .fin__ico { background: rgba(255,255,255,.16); }
.fin__reco { border-top: 1px solid rgba(255,255,255,.25); padding-top: .9rem; margin-top: .3rem; font-size: .96rem; }
.fin__reco b { color: #fff; }
.fin__ribbon { text-align: center; margin-top: 3rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2.6vw, 1.7rem); color: var(--terra); }

/* Estampas de ciudad (3 mercados) */
.markets { max-width: 940px; margin: 0 auto 3.4rem; text-align: center; }
.markets__k { font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); font-weight: 700; margin-bottom: 1.4rem; }
.markets__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.stamp3 { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; box-shadow: 0 12px 30px rgba(59,42,34,.08); transition: transform .3s, box-shadow .3s; }
.stamp3:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 22px 46px rgba(59,42,34,.14); }
.stamp3__img { position: relative; border-radius: 9px; overflow: hidden; aspect-ratio: 12 / 7; border: 2px dashed rgba(156,88,67,.4); }
.stamp3__img svg { width: 100%; height: 100%; display: block; }
.stamp3__post { position: absolute; top: 8px; right: 8px; font-size: .55rem; font-weight: 700; letter-spacing: .16em; color: #fff; background: rgba(122,68,51,.85); padding: .15rem .45rem; border-radius: 3px; transform: rotate(6deg); }
.stamp3 figcaption { padding: .8rem .2rem .2rem; }
.stamp3 h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--choco); }
.stamp3 figcaption p { font-size: .78rem; color: var(--muted); margin-top: .1rem; }
.markets__phase2 { margin-top: 1.5rem; font-size: .92rem; color: var(--choco-2); }
.markets__phase2 b { color: var(--terra-d); }

/* ============ MIX ============ */
.mix { background: var(--paper); }
.mix__title { font-family: var(--serif); font-size: clamp(2rem,5vw,3.4rem); color: var(--choco); margin-bottom: 3rem; }
.mix__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.mix__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem 1.5rem; box-shadow: 0 10px 26px rgba(59,42,34,.05); transition: transform .3s; }
.mix__card:hover { transform: translateY(-5px); }
.mix__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .18em; color: #fff; background: var(--c); padding: .3rem .7rem; border-radius: 6px; margin-bottom: 1rem; }
.mix__card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--choco); margin-bottom: .5rem; }
.mix__card p { font-size: .95rem; color: var(--muted); }
.mix__quote { text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem); color: var(--terra); margin: 3rem auto 0; max-width: 26ch; }

/* ============ RTB ============ */
.rtb { background: var(--teal); color: var(--cream); }
.rtb__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.rtb__head .eyebrow { color: rgba(244,238,228,.85); }
.rtb__head h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; line-height: 1.05; }
.rtb__list { list-style: none; display: grid; gap: .9rem; }
.rtb__list li { display: flex; gap: .9rem; align-items: flex-start; font-size: 1.08rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(244,238,228,.18); color: rgba(244,238,228,.92); }
.rtb__list span { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream); color: var(--teal); display: grid; place-items: center; font-weight: 700; font-size: .85rem; }

/* ============ CTA ============ */
.cta { background: var(--choco); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.cta__stampring { position: absolute; width: 520px; height: 520px; border: 2px dashed rgba(192,140,132,.35); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin 40s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.cta__wrap { position: relative; z-index: 2; }
.cta__pre { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--rose); margin-bottom: .6rem; }
.cta__big { font-family: var(--serif); font-weight: 800; font-size: clamp(2.2rem, 6.5vw, 4.6rem); line-height: 1.02; margin-bottom: 1.4rem; }
.cta__big span { color: var(--terra); font-style: italic; font-weight: 600; }
.cta__line { font-size: 1.15rem; color: rgba(244,238,228,.85); margin-bottom: 2rem; }
.cta__foot { margin-top: 2.4rem; font-size: .78rem; letter-spacing: .12em; color: rgba(244,238,228,.5); text-transform: uppercase; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .steps, .phases { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .reto__grid, .mix__grid { grid-template-columns: 1fr; }
  .emma__wrap, .rtb__wrap, .plan__bottom, .fin__grid, .intent__grid { grid-template-columns: 1fr; }
  .vota__cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps, .phases, .mix__grid, .kpis ul { grid-template-columns: 1fr; }
  .fin__kpis { grid-template-columns: 1fr; gap: 1.4rem; }
  .fin__kpi + .fin__kpi::before { display: none; }
  .markets__row { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .flow__chain li:not(:last-child)::after { content: "↓"; top: auto; bottom: -4px; right: 50%; transform: translateX(50%); }
  .flow__chain li { flex-basis: 100%; max-width: 240px; margin-bottom: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta__stampring, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
