/* =======================================================================
   PokeView — Landing "divina" (holográfica, fundo nebulosa)
   Mesma linguagem visual da tela de assinatura do app.
   ======================================================================= */

:root {
  --gold: #ffd76b;
  --pink: #ff8bd0;
  --blue: #8be9ff;
  --green: #b6ff8b;
  --purple: #7c5cff;

  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.66);
  --ink-3: rgba(255, 255, 255, 0.46);

  --glass: rgba(255, 255, 255, 0.06);
  --glass-bd: rgba(255, 255, 255, 0.13);

  --holo: linear-gradient(100deg, var(--gold), var(--pink), var(--blue), var(--green), var(--gold));
  --maxw: 1140px;

  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #07061a;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* body é o offset da camada de cartas; conteúdo real fica acima dela */
body { position: relative; }
main, .footer { position: relative; z-index: 1; }

/* ===================== fundo nebulosa global ===================== */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% -10%, #1a1340 0%, #0c0a20 55%, #07061a 100%);
}
.bg-aurora {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(34% 30% at 18% 14%, rgba(124, 92, 255, 0.55), transparent 60%),
    radial-gradient(30% 28% at 86% 18%, rgba(255, 96, 182, 0.45), transparent 62%),
    radial-gradient(40% 34% at 50% 96%, rgba(72, 196, 255, 0.4), transparent 62%),
    radial-gradient(34% 32% at 78% 72%, rgba(255, 196, 86, 0.32), transparent 60%);
  filter: blur(40px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate(-2%, -1%) scale(1.05) rotate(-2deg); }
  to { transform: translate(2%, 2%) scale(1.16) rotate(2deg); }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
  opacity: 0.5;
}
.bg-sparks { position: absolute; inset: 0; }
.bg-sparks i {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: twinkle 3.6s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 0.9; transform: scale(1); }
}

/* ===================== cartas flutuando (decoração ambiente) ===================== */
.cards-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.drift {
  position: absolute;
  width: 100px;
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0.7;
  animation: drift-float 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes drift-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) * 0.4)); }
}
/* Espalhadas por toda a largura, com TAMANHOS bem variados p/ dar profundidade:
   XL = ao fundo (soft, mais blur, opacidade baixa) · P = à frente (nítida).
   As das BORDAS podem ser mais nítidas; as do MEIO ficam sutis (não brigam c/ texto). */
.d1  { top: 9%;  left: 3%;    width: 200px; --rot: -11deg; opacity: 0.48; filter: blur(0.7px); animation-duration: 8s; }
.d2  { top: 15%; right: 5%;   width: 120px; --rot: 9deg;   opacity: 0.6;  animation-duration: 9s;   animation-delay: 1.1s; }
.d3  { top: 24%; left: 21%;   width: 78px;  --rot: 9deg;   opacity: 0.24; filter: blur(1.4px); animation-duration: 10s;  animation-delay: 0.6s; }
.d4  { top: 30%; right: 3%;   width: 188px; --rot: -8deg;  opacity: 0.44; filter: blur(0.8px); animation-duration: 8.5s; animation-delay: 0.3s; }
.d5  { top: 37%; left: 4%;    width: 132px; --rot: 9deg;   opacity: 0.55; animation-duration: 11s;  animation-delay: 1.4s; }
.d6  { top: 44%; right: 21%;  width: 82px;  --rot: 7deg;   opacity: 0.26; filter: blur(1.3px); animation-duration: 9.5s; animation-delay: 0.2s; }
.d7  { top: 50%; right: 4%;   width: 150px; --rot: -9deg;  opacity: 0.5;  animation-duration: 8s;   animation-delay: 1s; }
.d8  { top: 56%; left: 16%;   width: 72px;  --rot: -12deg; opacity: 0.2;  filter: blur(1.5px); animation-duration: 10s;  animation-delay: 0.5s; }
.d9  { top: 62%; left: 3%;    width: 176px; --rot: 8deg;   opacity: 0.5;  filter: blur(0.7px); animation-duration: 9s;   animation-delay: 1.3s; }
.d10 { top: 68%; right: 6%;   width: 110px; --rot: -8deg;  opacity: 0.6;  animation-duration: 11s;  animation-delay: 0.7s; }
.d11 { top: 75%; left: 24%;   width: 90px;  --rot: 8deg;   opacity: 0.3;  filter: blur(1.2px); animation-duration: 8.5s; animation-delay: 0.9s; }
.d12 { top: 81%; left: 5%;    width: 150px; --rot: -11deg; opacity: 0.5;  animation-duration: 10.5s; animation-delay: 1.6s; }
.d13 { top: 87%; right: 5%;   width: 168px; --rot: 8deg;   opacity: 0.46; filter: blur(0.8px); animation-duration: 9.5s; animation-delay: 0.4s; }
.d14 { top: 93%; right: 26%;  width: 116px; --rot: -7deg;  opacity: 0.34; filter: blur(1px);   animation-duration: 8s;   animation-delay: 1.2s; }
/* reforço do HERO: preenche topo/cantos/vão do celular (não cobre título nem a tela) */
.d15 { top: 4%;  left: 9%;    width: 96px;  --rot: 8deg;   opacity: 0.5;  animation-duration: 9s;   animation-delay: 0.35s; }
.d16 { top: 6%;  right: 18%;  width: 116px; --rot: -9deg;  opacity: 0.46; animation-duration: 8.5s; animation-delay: 1.25s; }
.d17 { top: 8%;  left: 44%;   width: 72px;  --rot: 7deg;   opacity: 0.3;  filter: blur(1.2px); animation-duration: 10s;  animation-delay: 0.8s; }
.d18 { top: 18%; right: 2%;   width: 100px; --rot: -7deg;  opacity: 0.52; animation-duration: 9.5s; animation-delay: 0.15s; }
.d19 { top: 14%; left: 46%;   width: 82px;  --rot: -10deg; opacity: 0.32; filter: blur(1px);   animation-duration: 8s;   animation-delay: 1.5s; }

/* ===================== utilitários ===================== */
.holo {
  background: var(--holo);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 3px 16px rgba(255, 170, 90, 0.3));
  animation: holo 7s linear infinite;
}
.holo-green {
  background: linear-gradient(100deg, var(--green), var(--blue), var(--gold), var(--green));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 3px 16px rgba(126, 224, 138, 0.35));
  animation: holo 7s linear infinite;
}
@keyframes holo { to { background-position: 300% 0; } }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a86a;
}

.display {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin: 14px 0 18px;
}
.display-2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 10px 0 0;
}
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 540px; }
.sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--ink-2); max-width: 560px; margin: 12px auto 0; }

/* botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 54px;
  padding: 0 24px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn .ic { width: 20px; height: 20px; }
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; border-radius: 12px; }
.btn-gold {
  position: relative;
  overflow: hidden;
  color: #3a2400;
  background: linear-gradient(135deg, #ffe08a, #ffc24d 45%, #ff9d2f);
  box-shadow: 0 14px 30px rgba(255, 165, 60, 0.42);
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -65%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  animation: sheen 3.4s ease-in-out infinite;
}
@keyframes sheen { 0% { left: -65%; } 55%, 100% { left: 130%; } }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255, 185, 80, 0.55); }
.btn-ghost {
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }

/* cartão de vidro genérico */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

/* ===================== nav ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 22px;
  transition: padding 0.25s ease;
}
.nav.scrolled {
  background: rgba(12, 10, 32, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 22px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img {
  height: 98px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
  transition: height 0.25s ease;
}
.nav.scrolled .nav-brand img { height: 70px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 4px; }

/* switch de idioma (bandeiras) */
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 999px;
  line-height: 0;
  cursor: pointer;
  opacity: 0.5;
  filter: grayscale(0.35);
  transition: opacity 0.15s ease, background 0.15s ease, filter 0.15s ease;
}
.lang-btn .flag {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.lang-btn:hover {
  opacity: 0.85;
}
.lang-btn.on {
  opacity: 1;
  filter: none;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ===================== hero ===================== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) 22px clamp(50px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #ffe7a6;
  background: rgba(255, 215, 120, 0.12);
  border: 1px solid rgba(255, 215, 120, 0.4);
  border-radius: 999px;
}
.badge-soon .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255, 215, 107, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
.trust-line { font-size: 13px; color: var(--ink-3); font-weight: 600; }

/* o phone flutua suavemente */
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-16px) rotate(3deg); } }

/* ---- phone mockup ---- */
.hero-phone { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: clamp(264px, 32vw, 340px);
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2550, #14122e);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.6);
  animation: float 7s ease-in-out infinite;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 38%; height: 22px;
  background: #0a0820;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #1a1340, #0c0a20 60%, #08071c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 16px;
  text-align: center;
}
.scan-neb {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(36% 30% at 24% 24%, rgba(124, 92, 255, 0.5), transparent 60%),
    radial-gradient(34% 30% at 80% 26%, rgba(255, 96, 182, 0.42), transparent 62%),
    radial-gradient(40% 34% at 50% 88%, rgba(72, 196, 255, 0.4), transparent 62%);
  filter: blur(24px);
  animation: aurora 14s ease-in-out infinite alternate;
}
.scan-stage {
  position: relative;
  width: 210px; height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px; /* respiro maior antes do nome/preço (desce os preços) */
}
.scan-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--pink), var(--blue), var(--green), var(--gold));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  filter: saturate(1.2) drop-shadow(0 0 10px rgba(255, 160, 220, 0.5));
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scan-card {
  position: relative;
  width: 166px; height: 231px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(150deg, #2a2550, #15122f);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.scan-card-img { width: 100%; height: 100%; object-fit: cover; }
.scan-card-sheen {
  position: absolute;
  top: -60%; left: -40%;
  width: 50%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), rgba(139, 233, 255, 0.3), transparent);
  transform: skewX(-18deg);
  animation: cardsheen 2.4s ease-in-out infinite;
}
@keyframes cardsheen { 0% { left: -40%; } 60%, 100% { left: 130%; } }
.scan-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; }
.scan-price { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
.scan-src {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px; border-radius: 999px;
}
.scan-chips { display: flex; gap: 7px; margin-top: 8px; }
.scan-chips .chip {
  display: flex; flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 5px 11px;
}
.scan-chips .chip b { font-size: 13px; }
.scan-chips .chip small { font-size: 9px; color: var(--ink-3); }

/* ===================== faixa fontes ===================== */
.strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 22px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 14px;
  color: var(--ink-3);
}
.strip b { color: var(--ink); font-weight: 800; font-size: 15px; }
.strip i { color: var(--ink-3); font-style: normal; }

/* ===================== seções ===================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 22px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }

/* recursos grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat { padding: 26px; }
.feat h3 { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; margin: 16px 0 8px; }
.feat p { font-size: 15px; color: var(--ink-2); }
.feat p b { color: var(--ink); font-weight: 700; }
.feat-ic {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(255, 150, 180, 0.25);
}
.feat-ic svg { width: 26px; height: 26px; color: #2a1840; }
.g1 { background: linear-gradient(140deg, #ffe08a, #ff9d2f); }
.g2 { background: linear-gradient(140deg, #b6ff8b, #2af598); }
.g3 { background: linear-gradient(140deg, #ff8bd0, #ff6a8b); }
.g4 { background: linear-gradient(140deg, #8be9ff, #5b8bff); }
.g5 { background: linear-gradient(140deg, #ffd76b, #ff8bd0); }
.g6 { background: linear-gradient(140deg, #c9a8ff, #7c5cff); }
.g6 svg, .g4 svg { color: #fff; }

/* como funciona */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  padding: 28px 24px;
  text-align: center;
}
.step-n {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 22px;
  color: #2a1840;
  background: var(--holo);
  background-size: 200% 100%;
  animation: holo 7s linear infinite;
  box-shadow: 0 8px 22px rgba(255, 150, 180, 0.3);
}
.step h3 { font-family: 'Sora', sans-serif; font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); }
.step-arrow { display: flex; align-items: center; font-size: 26px; color: var(--ink-3); }

/* showcase */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.showcase-art { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.binder {
  width: min(380px, 90%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.2), rgba(20, 18, 46, 0.5));
  border: 1px solid var(--glass-bd);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: perspective(900px) rotateY(-9deg) rotateX(4deg);
}
.pocket {
  aspect-ratio: 63 / 88;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pocket img { width: 100%; height: 100%; object-fit: cover; }
.pocket.empty { background: rgba(255, 255, 255, 0.03); }
.binder-total {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
}
.binder-total span { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.binder-total b { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; }
.ticks { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-size: 16px; color: var(--ink-2); }
.ticks li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green), var(--blue));
  box-shadow: 0 0 10px rgba(126, 224, 138, 0.4);
}
.ticks li::after {
  content: '';
  position: absolute; left: 7px; top: 8px;
  width: 7px; height: 4px;
  border-left: 2px solid #07061a;
  border-bottom: 2px solid #07061a;
  transform: rotate(-45deg);
}

/* PokeView Pro */
.pro {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 56px);
  text-align: center;
}
.pro-emblem { position: relative; width: 96px; height: 96px; margin: 0 auto 18px; }
.pro-emblem-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--pink), var(--blue), var(--green), var(--gold));
  filter: saturate(1.2) blur(0.4px);
  animation: spin 7s linear infinite;
}
.pro-emblem-core {
  position: absolute; inset: 5px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 36% 28%, #2c2556, #141030 70%);
  box-shadow: inset 0 2px 14px rgba(255, 255, 255, 0.16), inset 0 -8px 22px rgba(0, 0, 0, 0.5);
}
.pro-emblem-core svg { width: 46px; height: 46px; color: #ffe7a6; filter: drop-shadow(0 0 12px rgba(255, 214, 120, 0.8)); }
.pro-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.pro-chips span {
  font-size: 14px; font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-bd);
}

/* botões de loja (App Store / Google Play) */
.store-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.store-cta-center { justify-content: center; margin-top: 26px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 22px 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.store-ic { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-btn small { font-size: 11px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.3px; }
.store-btn b { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; }

/* CTA final */
.cta-final { text-align: center; }

/* ===================== rodapé ===================== */
.footer {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 40px 22px calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
}
.footer-brand img { height: 84px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--ink-3); max-width: 320px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-content: start; justify-content: flex-end; }
.footer-links a { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--ink-3);
}
.footer-fine { max-width: 460px; text-align: right; }

/* ===================== scroll reveal ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== responsivo ===================== */
/* as cartas espalhadas vivem nas margens largas do desktop; some quando aperta */
@media (max-width: 1240px) {
  .cards-layer { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-copy { order: 1; }
  .hero-phone { order: 2; }
  .lead, .sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: 32px; }
  .showcase-copy { text-align: center; }
  .ticks { align-items: center; }
  .ticks li { text-align: left; }
  /* passos empilhados em COLUNA centralizada (setas na própria linha) — evita o
     desalinhamento em que a seta ao lado empurrava os passos 1 e 2 p/ a esquerda */
  .steps { flex-direction: column; align-items: center; }
  .step { width: 100%; max-width: 360px; }
  .step-arrow { transform: rotate(90deg); }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-fine { text-align: left; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .lang-switch { margin-left: auto; } /* sem os links, empurra o switch/CTA p/ a direita */
  .feat-grid { grid-template-columns: 1fr; }
  .float-orb, .float-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-aurora, .scan-neb, .holo, .holo-green, .btn-gold::after, .scan-ring, .scan-card-sheen,
  .pro-emblem-ring, .float-orb, .float-card, .drift, .phone, .badge-soon .dot, .bg-sparks i, .step-n,
  .dl-detected .dot {
    animation: none !important;
  }
  .holo, .holo-green { -webkit-text-fill-color: #ffe1a6; color: #ffe1a6; }
  .holo-green { -webkit-text-fill-color: #b6ff8b; color: #b6ff8b; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== página de download (download.html) ===================== */
.dl-body { min-height: 100vh; }
.dl-lang { position: fixed; top: 16px; right: 18px; z-index: 20; }
.dl-wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: clamp(56px, 9vw, 88px) 22px 30px;
}
.dl-logo {
  height: 96px;
  width: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
.dl-copy .display { margin: 8px 0 12px; font-size: clamp(36px, 5.4vw, 56px); }
.dl-trust { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.dl-stars {
  color: #ffd76b;
  font-size: 17px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 107, 0.5));
}
.dl-free {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green);
}
.dl-detected[hidden] { display: none; } /* sobrepõe o inline-flex quando escondido (desktop/other) */
.dl-detected {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 2px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ffe7a6;
  background: rgba(255, 215, 120, 0.12);
  border: 1px solid rgba(255, 215, 120, 0.4);
}
.dl-detected .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255, 215, 107, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}
.dl-stores { margin-top: 16px; }
.dl-stores .store-btn { height: 64px; }
/* botão da plataforma detectada: destacado (dourado, com brilho pulsante) */
.store-btn--primary {
  color: #3a2400;
  background: linear-gradient(135deg, #ffe08a, #ffc24d 45%, #ff9d2f);
  border: none;
  animation: dl-glow 2.4s ease-in-out infinite;
}
.store-btn--primary small { color: rgba(58, 36, 0, 0.72); }
.store-btn--primary .store-ic { color: #3a2400; }
@keyframes dl-glow {
  0%, 100% { box-shadow: 0 14px 30px rgba(255, 165, 60, 0.42); }
  50% { box-shadow: 0 16px 46px rgba(255, 185, 80, 0.68); }
}
.dl-points {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.dl-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.dl-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green), var(--blue));
  box-shadow: 0 0 10px rgba(126, 224, 138, 0.4);
}
.dl-points li::after {
  content: '';
  position: absolute;
  left: 6.5px;
  top: 7.5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #07061a;
  border-bottom: 2px solid #07061a;
  transform: rotate(-45deg);
}
.dl-phone { display: flex; justify-content: center; }
.dl-card { display: none; } /* visual compacto só no mobile */
.dl-cardprice { display: none; } /* preço abaixo da carta — só no mobile */
.dl-foot {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px calc(env(safe-area-inset-bottom) + 26px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
}
.dl-foot .footer-fine { max-width: 460px; }

/* tablet: uma coluna (pode rolar) */
@media (max-width: 900px) {
  .dl-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-top: 74px;
  }
  .dl-copy { order: 1; }
  .dl-phone { order: 2; }
  .dl-logo { margin-left: auto; margin-right: auto; }
  .dl-copy .lead { margin-left: auto; margin-right: auto; }
  .dl-trust, .dl-stores, .dl-detected { justify-content: center; }
  .dl-points {
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 24px auto 0;
    text-align: left;
  }
}

/* PHONES: cabe SEM SCROLL — altura travada, layout compacto, visual = carta holo */
@media (max-width: 760px) {
  html, body.dl-body { overflow: hidden; height: 100%; }
  .dl-lang { top: 12px; right: 12px; }
  .dl-wrap {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centralizado (o conteúdo mais alto preenche bem a tela) */
    gap: clamp(9px, 2.1svh, 24px); /* mais espaçado */
    padding: clamp(24px, 4svh, 46px) 20px clamp(18px, 3svh, 30px);
    text-align: center;
  }
  .dl-copy { display: contents; } /* filhos entram no flex do wrap p/ ordenar junto do visual */
  .dl-logo { order: 1; height: clamp(60px, 10svh, 92px); margin: 0; } /* logo maior */
  .dl-copy .kicker { display: none; }
  .dl-copy .display { order: 2; margin: 0; font-size: clamp(27px, 5.2svh, 40px); }
  .dl-copy .lead { order: 3; margin: 0 auto; max-width: 440px; font-size: clamp(13px, 1.95svh, 15.5px); }
  .dl-trust { order: 4; margin: 0; }
  .dl-phone { display: none; }
  .dl-card {
    order: 5;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: clamp(112px, 16svh, 168px);
    margin: 0;
  }
  .dl-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 9px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.14);
    transform: rotate(-4deg);
  }
  .dl-card-ring {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 116%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold), var(--pink), var(--blue), var(--green), var(--gold));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    filter: saturate(1.2) drop-shadow(0 0 10px rgba(255, 160, 220, 0.5));
    animation: spin 3s linear infinite;
  }
  .dl-card-glow {
    position: absolute;
    inset: -16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.5), transparent 66%);
    filter: blur(8px);
  }
  /* preço abaixo da carta */
  .dl-cardprice {
    order: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 0;
  }
  .dl-cardname {
    font-family: 'Sora', sans-serif;
    font-size: clamp(16px, 2.4svh, 20px);
    font-weight: 800;
    color: #fff;
  }
  .dl-price {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 4svh, 34px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .dl-cardsrc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-2);
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 11px;
    border-radius: 999px;
  }
  .dl-detected { order: 7; margin: 0; font-size: 13px; padding: 8px 14px; }
  /* os dois botões na MESMA linha (50% cada), conteúdo centralizado */
  .dl-stores {
    order: 8;
    margin: 0;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .dl-stores .store-btn {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 60px;
    justify-content: center;
    gap: 9px;
    padding: 0 10px;
  }
  .dl-points { display: none; }
  .dl-foot { display: none; }
}
