/* ============================================
   Landing Page V2 - TCG China Import
   Design System — Clean, Premium, Aligned
   ============================================ */

@font-face {
  font-family: 'Europa Grotesk';
  src: url('europa-grotesk-sh-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0e1a;
  --bg-alt: #0d1322;
  --bg-card: #131b2e;
  --bg-card-hover: #1a2440;

  --gold: #e0b73a;
  --gold-bright: #ffcb05;
  --gold-glow: rgba(255, 203, 5, 0.28);
  --gold-subtle: rgba(255, 203, 5, 0.07);

  /* Pokémon TCG palette */
  --poke-yellow: #ffcb05;
  --poke-yellow-dark: #f0b400;
  --poke-blue: #2a75bb;
  --poke-blue-deep: #1b4f8a;
  --poke-blue-bright: #3b6fd4;
  --poke-red: #e3350d;

  --text: #f2f4f8;
  --text-sub: #c4ccd9;
  --text-dim: #aab2c2;

  --red: #d94040;
  --green: #3dae6a;

  --max-w: 720px;
  --max-w-wide: 1080px;
  --pad-section: clamp(5rem, 12vh, 9rem);
  --pad-x: clamp(1.5rem, 5vw, 3rem);

  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1rem, 1.5vw, 1.15rem); }

p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--text-sub);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

.gold { color: var(--gold); }
.bright { color: var(--text); font-weight: 600; }

/* ---- Layout ---- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 var(--pad-x); }

section {
  padding: var(--pad-section) 0;
  position: relative;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  width: 220px;
  height: 24px;
}
.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255,203,5,0.45));
}
.divider::after { transform: scaleX(-1); }
.divider span,
.divider i {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 14px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, var(--poke-red) 0 calc(50% - 1.5px), #0a0e1a calc(50% - 1.5px) calc(50% + 1.5px), #f6f6f6 calc(50% + 1.5px) 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 0 12px rgba(255,203,5,0.18);
  flex-shrink: 0;
}
.divider span::after,
.divider i::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f6f6f6;
  box-shadow: 0 0 0 1.5px #0a0e1a;
}

/* ---- Reveal ---- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.rv.on { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ---- Icon (inline SVG wrapper) ---- */
.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}
.icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 52px;
  height: 52px;
}
.icon-lg svg {
  width: 24px;
  height: 24px;
}

/* ---- CTA ---- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.1rem 2.7rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1a1305;
  background: linear-gradient(168deg, #ffe27a 0%, var(--gold-bright) 42%, var(--gold) 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 6px rgba(150, 100, 0, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.25),
    0 10px 28px var(--gold-glow);
}
.cta:hover {
  transform: translateY(-3px) scale(1.025);
  filter: saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 6px rgba(150, 100, 0, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.28),
    0 16px 44px rgba(255, 203, 5, 0.5);
}
.cta:active { transform: translateY(-1px) scale(1.005); }

.cta-pulse { animation: pulse 2.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
  50% { box-shadow: 0 4px 40px rgba(201, 168, 76, 0.5); }
}

.cta-outline {
  padding: .7rem 1.8rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.cta-outline:hover { background: var(--gold-subtle); transform: translateY(-1px); }

/* ============================================
   TOP BANNER
   ============================================ */
#top-banner {
  background: linear-gradient(90deg, #b01a1a, #d94040, #b01a1a);
  color: #fff;
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(217, 64, 64, 0.4);
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.banner-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}
.banner-icon {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.countdown {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.cd-num {
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 0.9rem;
  margin-right: 0.2rem;
  opacity: 0.8;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: lowercase;
}
.cd-sep {
  opacity: 0.6;
  font-size: 1.2rem;
  margin: 0 0.1rem;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 90% at 50% -10%, #15203a 0%, #0b1020 55%, var(--bg) 100%);
}

/* Ambient color mesh — soft blurred glows (backmost) */
.hero-flag {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, rgba(227,53,13,0.22), transparent 42%),
    radial-gradient(circle at 82% 24%, rgba(42,117,187,0.26), transparent 44%),
    radial-gradient(circle at 50% 88%, rgba(255,203,5,0.14), transparent 50%);
  filter: blur(60px);
  opacity: 0.9;
}

/* Blurred card-fan backdrop — the soft bokeh behind the content */
.hero-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image: url('cartas-leque.png');
  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;
  filter: blur(38px) saturate(1.3) brightness(0.8);
  opacity: 0.4;
  transform: scale(1.1);
  will-change: transform;
  pointer-events: none;
}

/* Scrim: keeps text crisp and fades the hero into the page */
.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 44%, rgba(8,11,20,0.6) 0%, rgba(8,11,20,0.2) 55%, transparent 78%),
    linear-gradient(180deg, rgba(8,11,20,0.7) 0%, transparent 26%, transparent 68%, var(--bg) 100%);
}

/* Top-corner Poké atmosphere — frames the headline so the upper area isn't empty */
.hero-corners {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* Faint pokéball outlines tucked into the upper corners + corner glow behind them */
.hero-corners .hc-ball {
  position: absolute;
  width: 190px;
  height: 190px;
  color: var(--poke-yellow);
  opacity: 0.07;
  filter: drop-shadow(0 0 1px rgba(255,203,5,0.4));
}
.hero-corners .hc-ball-l {
  top: -46px;
  left: -42px;
  transform: rotate(-18deg);
  animation: hc-spin 60s linear infinite;
}
.hero-corners .hc-ball-r {
  top: -54px;
  right: -48px;
  transform: rotate(14deg);
  animation: hc-spin 75s linear infinite reverse;
}
.hero-corners::before,
.hero-corners::after {
  content: '';
  position: absolute;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-corners::before {
  left: -120px;
  background: radial-gradient(circle, rgba(227,53,13,0.16), transparent 70%);
}
.hero-corners::after {
  right: -120px;
  background: radial-gradient(circle, rgba(42,117,187,0.18), transparent 70%);
}
@keyframes hc-spin { to { transform: rotate(360deg); } }
@media (max-width: 700px) {
  .hero-corners .hc-ball { width: 130px; height: 130px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 var(--pad-x);
  margin-top: -6vh;
}

/* Real Pokémon products, staged as two curated clusters that frame the headline.
   Each cluster = a crisp hero piece in front + a softly-blurred item receding behind,
   so it reads like a deliberate display instead of pasted-on floating images. */
.hero-products {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-products .hp {
  position: absolute;
  bottom: 0;
}
/* Back layer — pushed into depth: softly blurred, dimmed, desaturated */
.hero-products .hp-back {
  z-index: 1;
  opacity: 0.92;
  filter: blur(2.5px) brightness(0.6) saturate(0.95);
}
/* Front layer — crisp hero pieces, grounded shadow + faint Poké-gold glow */
.hero-products .hp-front {
  z-index: 2;
  filter:
    drop-shadow(0 26px 34px rgba(0,0,0,0.55))
    drop-shadow(0 0 24px rgba(255,203,5,0.12));
}

/* Left cluster: sealed box behind, Rayquaza VMAX alt-art card in front */
.hero-products .hp-box  { width: 214px; left: -3.5%; bottom: 14%; transform: rotate(-11deg); }
.hero-products .hp-slab { width: 188px; left: 4.5%;  bottom: 6%;  transform: rotate(-5deg); border-radius: 12px; }
/* Right cluster: booster pack behind, Lugia V alt-art card in front */
.hero-products .hp-pack { width: 166px; right: -2.5%; bottom: 16%; transform: rotate(12deg); }
.hero-products .hp-card { width: 188px; right: 4.5%;  bottom: 6%;  transform: rotate(5deg);  border-radius: 12px; }

/* Gentle parallax bob via the independent `translate` property so rotate is preserved.
   Front and back drift at different speeds for a subtle sense of depth. */
.float-slow { animation: hp-bob 8s ease-in-out infinite; }
.float-mid  { animation: hp-bob 6s ease-in-out .6s infinite; }
@keyframes hp-bob {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -10px; }
}

@media (max-width: 1180px) {
  .hero-products .hp-box  { width: 150px; bottom: 12%; }
  .hero-products .hp-slab { width: 134px; }
  .hero-products .hp-pack { width: 118px; bottom: 14%; }
  .hero-products .hp-card { width: 134px; }
}
/* Mobile stays clean — the visitor praised the uncluttered phone view */
@media (max-width: 900px) {
  .hero-products { display: none; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  padding: .35rem 1rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  background: rgba(201,168,76,0.05);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-h1 .flip {
  color: var(--gold-bright);
  background-image: linear-gradient(var(--gold-bright), var(--gold-bright));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  padding-bottom: 4px;
  transition: background-size .7s var(--ease);
}
.hero-h1 .flip.on { background-size: 100% 2px; }

/* Reusable gold underline emphasis */
.under {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,203,5,0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Catalog headline emphasis uses the local display font */
#catalogo h2 .under {
  font-family: 'Europa Grotesk', var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1.15rem, 1.38vw, 1.32rem);
  color: var(--text-sub);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta { margin-top: .5rem; }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: .3;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 20px; height: 20px; stroke: var(--text-dim); fill: none; stroke-width: 2; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   EXPOSIÇÃO
   ============================================ */
#exposicao {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Atmospheric Pokémon products bleeding in from the edges */
.exp-deco {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
}
.exp-deco-cards {
  right: -70px;
  top: 8%;
  width: 360px;
  height: 440px;
  background-image: url('cartas-empilhadas.webp');
  background-size: contain;
  background-position: top right;
  transform: rotate(-7deg);
  filter: grayscale(.35) brightness(.55);
  opacity: .09;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
}
.exp-deco-pack {
  left: -50px;
  bottom: -40px;
  width: 230px;
  height: 380px;
  background-image: url('scarlet-violet-booster-pack.png');
  background-size: contain;
  background-position: bottom left;
  transform: rotate(9deg);
  filter: grayscale(.2) brightness(.6);
  opacity: .09;
  -webkit-mask-image: linear-gradient(to top right, #000 35%, transparent 85%);
  mask-image: linear-gradient(to top right, #000 35%, transparent 85%);
}
/* Real chase cards bleeding in from the edges — carries the Pokémon feel */
.exp-card {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 160px;
  opacity: .17;
  filter: grayscale(.28) brightness(.72) drop-shadow(0 16px 28px rgba(0,0,0,.55));
}
.exp-card-a { left: -44px;  top: 13%;      transform: rotate(-13deg); }
.exp-card-b { right: -40px; bottom: 9%;    width: 150px; opacity: .15; transform: rotate(13deg); }
.exp-card-c { left: 6%;     bottom: -36px; width: 118px; opacity: .12; transform: rotate(8deg); }

@media (max-width: 820px) {
  .exp-deco, .exp-card { display: none; }
}

.callout {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: var(--text);
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* Chain (CSS-only) */
.chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 2.5rem auto;
  flex-wrap: wrap;
  max-width: 600px;
}

.chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  min-width: 90px;
}

.chain-node span:first-child {
  font-size: .65rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chain-node span:last-child {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-sub);
}

.chain-arrow {
  color: var(--text-dim);
  font-size: .8rem;
}

.chain-vs {
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.chain-vs .line {
  height: 1px;
  flex: 1;
  max-width: 80px;
  background: var(--green);
  opacity: .5;
}

.chain-vs span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================
   REALIDADE
   ============================================ */
#realidade { background: var(--bg); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 600px;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius);
  transition: transform .3s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-bright);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
}

/* ============================================
   FOMO
   ============================================ */
#fomo { background: var(--bg-alt); }

.fomo-punchline {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--gold);
  font-weight: 600;
  padding: 1rem 1.25rem;
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.fomo-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   MECANISMO
   ============================================ */
#mecanismo {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Soft Poké-colored glows washing the section */
#mecanismo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(42,117,187,0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(227,53,13,0.10), transparent 44%),
    radial-gradient(circle at 50% 48%, rgba(255,203,5,0.045), transparent 62%);
}
#mecanismo > .wrap,
#mecanismo > .cards-band { position: relative; z-index: 1; }

/* Faint giant pokéball + drifting glints for atmosphere */
.mech-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mech-ball {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 50%;
  left: -150px;
  transform: translateY(-50%) rotate(-12deg);
  color: var(--poke-yellow);
  opacity: 0.04;
  animation: hc-spin 90s linear infinite;
}
@media (max-width: 700px) {
  .mech-ball { width: 300px; height: 300px; left: -110px; }
}

.method-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--gold-bright);
  background: var(--gold-subtle);
  padding: .5rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.15);
  margin: 1rem 0 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2.5rem auto 0;
  max-width: 650px;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: .3;
  margin-bottom: .25rem;
}

.step-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-sub);
  line-height: 1.3;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: rgba(201,168,76,0.25);
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: .75rem; }
  .step { display: flex; align-items: center; gap: .75rem; text-align: left; }
  .step:not(:last-child)::after { display: none; }
  .step-num { margin-bottom: 0; }
}

/* ============================================
   O QUE TEM DENTRO (replaces EXPERT)
   ============================================ */
#conteudo { background: var(--bg-alt); }

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 760px;
  margin: 2rem auto 0;
}

.content-card {
  position: relative;
  padding: 1.6rem;
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,203,5,0.35), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 36px rgba(0,0,0,0.4), 0 0 30px rgba(255,203,5,0.06);
}
.content-card:hover::before { opacity: 1; }

.content-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: .75rem;
  color: var(--gold);
}
.content-icon svg {
  width: 20px;
  height: 20px;
}

.content-card h3 {
  font-size: .9rem;
  margin-bottom: .35rem;
}
.content-card p { font-size: .82rem; }

@media (max-width: 700px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROVA SOCIAL
   ============================================ */
#prova-social { background: var(--bg-alt); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 24px rgba(0,0,0,0.3);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

/* "Recebi e é original" photo sitting under each review */
.review-proof {
  margin: 1.2rem -1.6rem -1.6rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}
.review-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.review-proof figcaption {
  display: flex;
  gap: .45rem;
  padding: .75rem 1.6rem .9rem;
  font-size: .78rem;
  line-height: 1.4;
  color: var(--text-sub);
  background: rgba(13,19,34,0.6);
}
.review-proof figcaption::before {
  content: '✓';
  flex-shrink: 0;
  color: #46d17f;
  font-weight: 700;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 36px rgba(0,0,0,0.42);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-stars {
  flex-shrink: 0;
  color: var(--poke-yellow);
  font-size: .9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(255,203,5,0.35);
}

.review-verified {
  font-style: normal;
  color: #46d17f;
  font-weight: 700;
  white-space: nowrap;
}

.review-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .15rem;
}

.review-info span {
  font-size: .75rem;
  color: var(--text-dim);
}

.review-body {
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   OBJEÇÕES
   ============================================ */
#objecoes { background: var(--bg); }

.faq-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq.open { border-color: rgba(201,168,76,0.2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-card-hover); }

.faq-q h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  padding-right: .75rem;
}

.faq-plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq-plus::before { width: 10px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 10px; }

.faq.open .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq.open .faq-a { max-height: 250px; }

.faq-a-inner {
  padding: 0 1.25rem 1.25rem;
}
.faq-a-inner p {
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ============================================
   OFERTA
   ============================================ */
#oferta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,203,5,0.07), transparent 60%),
    var(--bg-alt);
  overflow: hidden;
}

.oferta-center { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }

.price-block { margin: 1.5rem 0; }

.cta-trust {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--text-sub);
  letter-spacing: .01em;
}
.cta-trust::before {
  content: '\2713';
  color: var(--poke-yellow);
  font-weight: 700;
  margin-right: .4rem;
}

.founder-note {
  max-width: 640px;
  margin: 1.75rem auto 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
  text-align: left;
}
.founder-note p { color: var(--text-sub); }
.founder-line {
  color: var(--text);
  font-weight: 600;
  border-left: 3px solid var(--poke-yellow);
  padding-left: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 520px) {
  .founder-note { padding: 1.35rem 1.25rem; }
}

.price-old {
  font-size: .95rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-new {
  font-family: 'Europa Grotesk', var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--gold-bright);
  margin-top: .25rem;
}
.price-new small {
  font-size: .45em;
  color: var(--text-sub);
  font-weight: 400;
}

.bonus-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.bonus {
  padding: 1.6rem;
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.bonus:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 34px rgba(0,0,0,0.4);
}

.bonus.founder {
  border-color: rgba(201,168,76,0.28);
  background: linear-gradient(165deg, #20284a 0%, rgba(255,203,5,0.06) 100%);
}

.bonus-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.bonus-tag.t-founder {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg);
}
.bonus-tag.t-exclusive {
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.15);
}
.bonus-tag.t-scarcity {
  background: rgba(217,64,64,0.1);
  color: var(--red);
  border: 1px solid rgba(217,64,64,0.15);
}

.bonus h3 {
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .25rem;
  color: var(--gold-bright);
}

/* ============================================
   COMPARATIVO E PROJEÇÃO
   ============================================ */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 3rem auto 0;
}

.compare-card {
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
}

.compare-card.bad {
  opacity: 0.72;
}

.compare-card.good {
  background: linear-gradient(165deg, #1c2647 0%, rgba(255,203,5,0.09) 100%);
  border-color: rgba(255,203,5,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 44px rgba(0,0,0,0.4), 0 0 36px rgba(255,203,5,0.07);
}

.compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.bad-badge {
  background: #39414f;
  color: #d3d8e0;
}
.good-badge {
  background: var(--gold-bright);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  background: rgba(217,64,64,0.15);
  color: var(--red);
}
.compare-icon.good-icon {
  background: rgba(61,174,106,0.15);
  color: var(--green);
}

.compare-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.compare-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.compare-list li {
  font-size: 0.95rem;
  color: var(--text-sub);
  position: relative;
  padding-left: 1.5rem;
}
.compare-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 650px) {
  .compare-cards { grid-template-columns: 1fr; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Tilt utility */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 700px) {
  .bonus-row { grid-template-columns: 1fr; }
  .hero-img { margin: 2rem -1.5rem; border-radius: 0; border-left: none; border-right: none; }
}

.oferta-cta { text-align: center; }

/* ============================================
   GARANTIA
   ============================================ */
#garantia { background: var(--bg); }

.garantia-box {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
}

.garantia-badge {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
}
.garantia-badge strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-bright);
  line-height: 1;
}
.garantia-badge span {
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 550px) {
  .garantia-box { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1.25rem; }
}

/* ============================================
   CTA FINAL
   ============================================ */
#cta-final {
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(255,203,5,0.09), transparent 60%),
    var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final-inner .closing {
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  margin: 1.5rem 0;
}

.cta-final-btn { margin-top: 2rem; }

.cta-final-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.cta-final-route {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: .5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer p { font-size: .75rem; color: var(--text-dim); margin-bottom: .25rem; }

/* ============================================
   FLAG ICONS
   ============================================ */
.flag-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.flag-md {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.12);
}

.flag-lg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2), 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================
   UTILITY
   ============================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,203,5,0.10), rgba(255,203,5,0.03));
  border: 1px solid rgba(255,203,5,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(255,203,5,0.7);
}
.label.center { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- Responsive ---- */
@media (max-width: 480px) {
  :root { --pad-section: 3.5rem; }
  .cta { width: 100%; padding: 1rem 1.5rem; }
  .stat-row { grid-template-columns: 1fr; gap: .75rem; }
  .flag-lg { width: 36px; height: 36px; }
}

/* ============================================
   ENHANCED EFFECTS
   ============================================ */

/* Particles canvas */
#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* Hero glow (follows mouse via JS) */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left .4s ease-out, top .4s ease-out;
  left: 50%;
  top: 50%;
  will-change: left, top;
}

/* CTA shimmer sweep */
.cta-shimmer {
  position: relative;
  overflow: hidden;
}
.cta-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.25) 50%,
    transparent 80%
  );
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* Stat card glow on hover */
.stat-card {
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
}

/* Chain node entrance stagger */
.chain-node {
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}

/* Bonus card gradient border on hover */
.bonus {
  position: relative;
}
.bonus::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.bonus:hover::before { opacity: 1; }

/* Garantia badge pulse */
.garantia-badge {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0.08); }
}

/* FAQ answer smoother */
.faq-a {
  transition: max-height .4s var(--ease), opacity .3s;
}
.faq:not(.open) .faq-a {
  opacity: 0;
}
.faq.open .faq-a {
  opacity: 1;
}

/* Price pulse glow */
.price-new {
  text-shadow: 0 0 30px rgba(232,200,74,0.15);
}

/* Scroll indicator fade out */
.scroll-hint {
  transition: opacity .3s;
}
body.scrolled .scroll-hint { opacity: 0; }

/* Section relative z-index so particles stay behind */
section, header, footer {
  position: relative;
  z-index: 1;
}

/* ============================================
   POKÉMON TCG — HOLO, LOGO, GEM PACK
   ============================================ */

/* ---- Hero Pokémon logo ---- */
.footer-logo {
  width: clamp(130px, 22vw, 170px);
  margin: 0 auto 1rem;
  opacity: 0.78;
  filter: drop-shadow(0 4px 14px rgba(42,117,187,0.25));
}


/* Yellow Pokémon accent on the flip word */
.hero-h1 .flip {
  color: var(--poke-yellow);
  -webkit-text-stroke: 0.5px rgba(42,117,187,0.4);
  text-shadow: 0 2px 0 var(--poke-blue-deep), 0 0 22px rgba(255,203,5,0.35);
  background-image: linear-gradient(var(--poke-yellow), var(--poke-yellow));
}

/* Plain card frame (replaces holo) */
.card-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

/* ============================================
   GEM PACK : China vs Brasil
   ============================================ */
#gempack {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42,117,187,0.10) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
  isolation: isolate;
}
/* Faint Pokéball watermark */
#gempack::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  top: -130px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.03);
  background:
    radial-gradient(circle, transparent 36%, rgba(255,255,255,0.028) 37% 41%, transparent 42%),
    linear-gradient(transparent calc(50% - 1.5px), rgba(255,255,255,0.03) calc(50% - 1.5px) calc(50% + 1.5px), transparent calc(50% + 1.5px));
  pointer-events: none;
  z-index: -1;
}

.gp-intro {
  max-width: 640px;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--text-sub);
}

.gp-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 920px;
  margin: 3rem auto 0;
}

/* Price side panels */
.gp-side {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.gp-side .gp-flag {
  width: 46px;
  height: 46px;
  margin: 0 auto .75rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 4px 14px rgba(0,0,0,0.4);
}
.gp-side h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.gp-where {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.gp-price {
  font-family: var(--font-head);
  line-height: 1;
  white-space: nowrap;
}
.gp-tag {
  display: inline-block;
  margin-top: .85rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  border-radius: 100px;
}

/* Bad price: diminished, struck */
.gp-side.brasil {
  border-color: rgba(217,64,64,0.18);
  opacity: .82;
}
.gp-side.brasil .gp-price {
  color: #c97b7b;
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  text-decoration: line-through;
  text-decoration-color: rgba(217,64,64,0.7);
  text-decoration-thickness: 3px;
}
.gp-side.brasil .gp-tag { background: rgba(217,64,64,0.12); color: var(--red); }

/* Good price: bigger, glowing, holo foil */
.gp-side.china {
  border-color: rgba(255,203,5,0.45);
  background: linear-gradient(165deg, #1c2647 0%, rgba(255,203,5,0.10) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 54px rgba(0,0,0,0.45), 0 0 48px rgba(255,203,5,0.16);
  transform: scale(1.06);
  overflow: hidden;
}
.gp-side.china::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(120,220,255,0.10) 42%, rgba(255,120,220,0.10) 50%, rgba(170,255,140,0.10) 58%, transparent 70%);
  background-size: 220% 220%;
  animation: holo 6s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
.gp-side.china .gp-price {
  font-family: 'Europa Grotesk', var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--poke-yellow);
  font-size: clamp(2.6rem, 5.8vw, 3.7rem);
  text-shadow: 0 0 30px rgba(255,203,5,0.45);
  position: relative;
}
.gp-side.china .gp-tag { background: var(--poke-yellow); color: #1b1b22; position: relative; }
.gp-side.china > * { position: relative; z-index: 1; }
.gp-side.brasil:hover { transform: translateY(-4px); }
.gp-side.china:hover { transform: scale(1.06) translateY(-4px); }

@keyframes holo {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Center product showcase */
.gp-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gp-packs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.55));
}
.gp-pack {
  width: clamp(120px, 18vw, 168px);
  border-radius: 12px;
  display: block;
}
.gp-pack.back {
  position: relative;
  transform: rotate(-9deg) translateX(28%);
  z-index: 1;
  opacity: 0.92;
  width: clamp(105px, 16vw, 150px);
}
.gp-pack.front {
  position: relative;
  z-index: 2;
  transform: rotate(5deg) translateX(-8%);
  margin-bottom: -6px;
}
.gp-glow {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255,203,5,0.22) 0%, transparent 65%);
  filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}
.gp-label {
  margin-top: 1.25rem;
  font-family: var(--font-head);
  font-size: .95rem;
  text-align: center;
  color: var(--text);
}
.gp-label span {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .05em;
  margin-top: .15rem;
}

/* Savings banner under stage */
.gp-savings {
  max-width: 920px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 1.1rem 1.5rem;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(255,203,5,0.08), rgba(42,117,187,0.08));
  border: 1px solid rgba(255,203,5,0.2);
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text);
}
.gp-savings strong { color: var(--poke-yellow); }

@media (max-width: 760px) {
  .gp-stage { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gp-product { grid-column: 1 / -1; order: -1; margin-bottom: 1rem; }
  .gp-side { padding: 1.5rem 0.75rem; }
  .gp-side.china { transform: scale(1.03); }
  .gp-side.china:hover { transform: scale(1.03) translateY(-4px); }
  .gp-side.china .gp-price { font-size: clamp(2rem, 9vw, 2.6rem); }
}

/* ============================================
   CATÁLOGO COMPARATIVO China x Brasil
   ============================================ */
#catalogo {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(42,117,187,0.10) 0%, transparent 60%),
    var(--bg-alt);
  overflow: hidden;
}
.cat-intro {
  max-width: 640px;
  margin: 0 auto 0;
  text-align: center;
  color: var(--text-sub);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3rem auto 0;
}
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #18213a 0%, #111829 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 22px rgba(0,0,0,0.28);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,203,5,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 16px 44px rgba(0,0,0,0.42), 0 0 30px rgba(255,203,5,0.08);
}
.cat-media {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(42,117,187,0.16), transparent 70%),
    #0e1424;
}
.cat-media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.5));
}
.cat-tag {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .6rem;
  border-radius: 100px;
  background: rgba(10,14,26,0.72);
  color: var(--text-sub);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.cat-tag.exclusive { color: var(--poke-yellow); border-color: rgba(255,203,5,0.35); }
.cat-tag.graded { color: #6fd3ff; border-color: rgba(111,211,255,0.4); }
.cat-tag.jp { color: #ff7a9c; border-color: rgba(255,122,156,0.4); }
.cat-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #1a1305;
  padding: .3rem .7rem;
  border-radius: 100px;
  background: linear-gradient(168deg, #ffe27a, var(--gold-bright) 60%, var(--gold));
  box-shadow: 0 4px 14px rgba(255,203,5,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.cat-body {
  padding: 1.1rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
}
.cat-body h3 {
  font-size: .98rem;
  line-height: 1.3;
}
.cat-prices {
  display: flex;
  align-items: flex-end;
  gap: .75rem;
  margin-top: auto;
}
.cat-col {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.cat-where {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
}
.cat-old {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #c97b7b;
  text-decoration: line-through;
  text-decoration-color: rgba(217,64,64,0.7);
  text-decoration-thickness: 1px;
}
.cat-now {
  font-family: 'Europa Grotesk', var(--font-head);
  font-weight: 700;
  font-size: 1.95rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--poke-yellow);
  text-shadow: 0 0 22px rgba(255,203,5,0.3);
}
.cat-arrow {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  padding-bottom: .1rem;
}

.cat-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
}
.cat-perk {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-sub);
  padding: .6rem 1.1rem;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,203,5,0.07), rgba(255,203,5,0.02));
  border: 1px solid rgba(255,203,5,0.16);
}
.cat-perk::before {
  content: '\2713';
  color: var(--poke-yellow);
  font-weight: 700;
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-media { height: 220px; }
}

/* ---- Decorative fanned cards band ---- */
.cards-band {
  max-width: var(--max-w-wide);
  margin: 2.5rem auto 0;
  padding: 0 var(--pad-x);
}
.cards-band img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 26px 45px rgba(0,0,0,0.55));
}

/* ---- Illustrator trophy card (in FOMO) ---- */
.trophy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 560px;
  margin: 2.25rem auto 0;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--bg-card), rgba(42,117,187,0.06));
  border: 1px solid rgba(255,203,5,0.15);
  border-radius: var(--radius-lg);
}
.trophy-card {
  width: 110px;
  flex-shrink: 0;
  border-radius: 10px;
}
.trophy-card img { border-radius: 10px; }
.trophy-text h3 {
  color: var(--poke-yellow);
  margin-bottom: .35rem;
}
.trophy-text p { font-size: .88rem; }
@media (max-width: 520px) {
  .trophy { flex-direction: column; text-align: center; }
}

/* Pokémon-blue accent on method tag & flip route */
.method-tag {
  color: var(--poke-yellow);
  border-color: rgba(42,117,187,0.25);
  background: linear-gradient(90deg, rgba(255,203,5,0.06), rgba(42,117,187,0.06));
}
