/* ============================================================
 *  SEÇÕES — layout de cada bloco da landing
 *  Cada bloco isolado em sua própria zona de regras.
 *  ============================================================ */

/* ---------- 01 — TOP BAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: var(--z-sticky);
  background: rgba(0, 7, 10, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid  var(--color-border);
  transition: border-color var(--duration-normal) var(--ease-out);
}
.topbar.is-scrolled { border-bottom-color: var(--color-border); }

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  height: 32px;  /* Figma: logo 151×32 no header de 90px */
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__list a {
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast) var(--ease-out);
}
.nav__list a:hover { color: var(--color-brand); }

.nav__toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
  z-index: calc(var(--z-modal) + 1);
}
.nav__toggle:hover { background: rgba(255,255,255,0.05); border-color: var(--color-border-strong); }
.nav__toggle-bars {
  position: relative;
  width: 18px; height: 12px;
  display: inline-block;
}
.nav__toggle-bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out),
              top var(--duration-normal) var(--ease-out);
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 5px; }
.nav__toggle-bars span:nth-child(3) { top: 10px; }
.nav__toggle[aria-expanded="true"] {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-text-on-brand);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  background: rgba(0, 7, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--color-ink-900);
  border-left: 1px solid var(--color-border);
  padding: calc(var(--topbar-h) + var(--space-8)) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  overflow-y: auto;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(234,97,32,0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(136,80,226,0.10), transparent 45%);
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.nav-drawer__list a {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  line-height: var(--lh-tight);
  letter-spacing: normal;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transform: translateX(20px);
  opacity: 0;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-normal) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.nav-drawer.is-open .nav-drawer__list li:nth-child(1) a { transition-delay: 80ms; }
.nav-drawer.is-open .nav-drawer__list li:nth-child(2) a { transition-delay: 140ms; }
.nav-drawer.is-open .nav-drawer__list li:nth-child(3) a { transition-delay: 200ms; }
.nav-drawer.is-open .nav-drawer__list a { transform: translateX(0); opacity: 1; }
.nav-drawer__list a:hover,
.nav-drawer__list a:focus-visible { color: var(--color-brand); }
.nav-drawer__num {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  font-family: var(--font-body);
  color: var(--color-brand);
  letter-spacing: var(--ls-overline);
  min-width: 24px;
}
.nav-drawer__foot {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration-normal) var(--ease-out) 260ms,
              transform var(--duration-normal) var(--ease-out) 260ms;
}
.nav-drawer.is-open .nav-drawer__foot { opacity: 1; transform: translateY(0); }
.nav-drawer__cta { justify-content: center; width: 100%; }
.nav-drawer__hint {
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  text-align: center;
}

/* ---------- 02 — HERO ---------- */
.hero {
  padding-top: calc(var(--topbar-h) + var(--space-12));
  padding-bottom: var(--space-20);
  background: var(--color-bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}
/* Ritmo vertical do Figma: eyebrow→21→H1→16→body→30→ctas→27→badges→17→micro */
.hero__copy { display: flex; flex-direction: column; gap: 0; }
.hero__copy .eyebrow { margin-bottom: 21px; }
.hero__title { color: var(--color-white); margin-bottom: 16px; }
.hero__copy .subtitle { margin-bottom: 30px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3); /* Figma: 13.5px entre os botões */
  margin-bottom: 27px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: 17px;
}
.hero__micro {
  font-size: var(--fs-small);
  color: var(--color-text-tertiary);
}

.bubble {
  margin: 0;
  max-width: 486px;
  width: 100%;
  margin-inline: auto;
}
.bubble__art {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 03 — FAIXA FANDOMS (laranja, zebra no topo) ---------- */
.fandoms {
  background: var(--color-brand);
}
.fandoms__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
  /* Figma: faixa de 150px = zebra 37.5 + conteúdo 112.5 (medals 55px centradas) */
  padding-block: 28.75px;
}
.fandoms__label {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 1.3125rem;       /* 21px (Figma) */
  line-height: 1;
  color: var(--color-white);
}
.fandoms__label .em-script { font-size: 1.3214em; color: var(--color-text-on-brand) } /* "Club" 27.75px */
.fandoms__row { display: flex; gap: var(--space-12); flex-wrap: wrap; }
.medal {
  width: 55px; height: 55px;
  display: grid;
  place-items: center;
  transition: transform var(--duration-fast) var(--ease-out);
  user-select: none;
}
.medal:hover { transform: scale(1.08); }
.medal img {
  width: 100%; height: auto; display: block;
  /* ícones decorativos — bloqueia drag-ghost branco do navegador no hover */
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* Faixa zebra laranja/preta */
.zebra {
  height: 37.5px;
  position: relative;
  overflow: hidden;
  background: var(--color-brand);
}
.zebra::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -100px; right: -100px;
  background: repeating-linear-gradient(
    -45deg,
    var(--color-brand) 0 24px,
    var(--color-ink-900) 24px 48px
  );
}

/* ---------- 04 — PILARES (FUNDO ESCURO) ---------- */
.pillars {
  background: var(--color-bg);
  color: var(--color-white);
  padding-block: var(--section-pad-y);
}
.pillars__head { text-align: center; margin-bottom: var(--space-14); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; /* Figma: cards 402×364.5, gap 12 */
}
.pillar {
  background: var(--color-surface);
  color: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: transform var(--duration-normal) var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); }
.pillar__icon {
  width: 55px;  /* Figma: 55×55 */
  height: 55px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-step-title);   /* 27/31.5 (Figma) */
  line-height: 1.1667;
  color: var(--color-brand);
}
.pillar p {
  font-size: var(--fs-body-md);
  line-height: var(--lh-body-md);
  color: var(--color-ink-100);
}

/* ---------- 05 — NÍVEIS ----------
 * Figma frame "4-steps" (6619:10211, 1440×880):
 * pad 14.75/64.25 · cards 298.5×548.25 gap 12 · borda 1.5 radius 18
 * arte 292.5 alto · textos a 33px da borda externa · divisor full-bleed */
.levels {
  background: var(--color-bg);
  padding-block: clamp(0.5rem, 1.024vw, 0.921875rem) clamp(2.5rem, 4.462vw, 4.015625rem);
}
.levels__head { text-align: center; margin-bottom: 48px; }
.levels__head .display-2 { font-weight: var(--fw-medium); } /* Figma: Inter Medium + Bold no "4 NÍVEIS" */
.levels__head .eyebrow { display: block; line-height: 1.2; margin-bottom: 18px; }
.levels__head .section-sub { margin-top: 9.75px; }
.levels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.level {
  background: #000;
  border-radius: 18px;
  border: 1.5px solid var(--level-color, var(--color-brand));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out);
}
.level:hover { transform: translateY(-6px); }
.level__art {
  height: 292.5px;
  margin-top: 11.25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.level__art svg,
.level__art img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.level__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-level-title); /* 31.5px (Figma) */
  line-height: 1;
  color: var(--level-color, var(--color-brand));
  margin: 9px 31.5px 0;
  height: 31.5px; /* trava a caixa em 31.5 — métrica da Quimby estoura a line box */
}
.level__name .em-script { font-size: 1em; } /* script no mesmo corpo do título */
.level__entry {
  font-size: 12px;
  line-height: 27px;
  color: var(--color-ink-100);
  margin: -1.5px 31.5px 0;
}
.level__divider {
  height: 1.5px;
  border: none;
  width: 100%;
  background: var(--level-color, var(--color-brand));
  margin: 28.125px 0 0;
}
.level__perks {
  display: flex;
  flex-direction: column;
  margin: 25.125px 31.5px;
}
.level__perks li {
  display: flex;
  gap: 5px;
  align-items: baseline;
  font-size: var(--fs-body-md);   /* 15.75px */
  line-height: var(--lh-body-md); /* 27px */
  color: var(--color-ink-100);
}
.level__perks li::before {
  content: "•";
  color: var(--level-color, var(--color-brand));
  flex-shrink: 0;
}

/* ---------- 05B — FAIXA CTA (laranja, zebra na base) ---------- */
.cta-strip {
  background: var(--color-brand);
}
.cta-strip__inner {
  display: flex;
  justify-content: center;
  /* Figma: faixa 150px = botão 78 + zebra 37.5; botão a 15px do topo */
  padding-block: 15px 19.5px;
}

/* ---------- 06 — COMO FUNCIONA ---------- */
.steps {
  background: var(--color-surface);
  padding-block: var(--section-pad-y);
}
.steps__head { text-align: center; margin-bottom: var(--space-14); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.step { display: flex; flex-direction: column; gap: var(--space-3); }
.step__badge {
  width: 55px;
  height: 55px;
  margin-bottom: var(--space-6); /* Figma: número y2860 → título y2954 */
}
.step h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-step-title);  /* 27/31.5 (Figma) */
  line-height: 1.1667;
  color: var(--color-brand);
}
.step p {
  font-size: var(--fs-body-md);
  line-height: var(--lh-body-md);
  color: var(--color-ink-100);
}

/* ---------- 07 — SHOWCASE ---------- */
/* Figma 6619:10298 — frame 1427.5×1093.5. Fones PSD (634.5×567, sombra
   embutida) sobrepostos em faixa própria; posições em % do frame. */
.showcase {
  position: relative;
  background: var(--color-surface);
  padding-block: 70.5px 45.75px;
  overflow: hidden;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/section-showcase/bg-diagonals.svg") center / cover no-repeat;
  pointer-events: none;
}
.showcase .container { position: relative; }
.showcase__head { text-align: center; margin-bottom: 16.5px; }
.showcase__head .eyebrow { display: block; line-height: 1.2; margin-bottom: 18px; }
.showcase__head .display-2 { font-weight: var(--fw-medium); } /* Figma: Inter Medium + Bold só no "APP" */
.showcase__head .em-script { line-height: 0.8334; } /* script 72px com leading 60px (Figma) */
.showcase__head .section-sub { margin-top: 21.75px; max-width: 778.5px; }

/* Palco dos fones: full-bleed (largura da viewport), leque centralizado */
.showcase__row {
  position: relative;
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: 48px;          /* respiro até a legenda acima (fone p2 sobe) */
  aspect-ratio: 1440 / 540;
}
.shot { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.showcase__row .shot {
  position: absolute;
  width: 13.6%;
  margin: 0;
}
/* Leque fiel ao Figma — centros: 15.2 / 33.0 / 50.7 / 68.6 / 86.5 (left = centro - 6.8%).
   Onda vertical: p2 sobe, p4 desce, p1/p3/p5 na base. */
.shot--1 { left: 8.4%;  top: 2.4%;   z-index: 1; }
.shot--2 { left: 26.2%; top: -7.4%;  z-index: 4; }
.shot--3 { left: 43.9%; top: 2.4%;   z-index: 5; }
.shot--4 { left: 61.8%; top: 13.5%;  z-index: 2; }
.shot--5 { left: 79.7%; top: 2.4%;   z-index: 3; }
.shot__phone {
  position: relative;
  width: 100%;
}
/* Moldura do aparelho montada via CSS sobre a screenshot crua */
.shot__phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 393 / 852;     /* uniformiza alturas (perfil é mais alto) */
  object-fit: cover;
  object-position: top;
  display: block;
  background: #0b0b0d;
  border: 0.7% solid #0b0b0d;          /* bezel escuro */
  border-radius: 14% / 6.5%;
  box-shadow:
    0 0 0 1.5px var(--color-brand),                 /* fio laranja */
    0 0 22px rgba(234, 97, 32, 0.30),               /* brilho laranja */
    0 26px 48px rgba(0, 0, 0, 0.55),                /* sombra projetada */
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform var(--duration-normal) var(--ease-out);
}
.shot__phone img:hover { transform: translateY(-6px) scale(1.02); }
/* Legendas nos vãos escuros: acima (1,3,4) ou abaixo (2,5) do fone */
.shot__caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-btn);  /* 13.5px */
  line-height: 2;            /* 27px */
  color: var(--color-white);
  white-space: nowrap;
}
.shot--1 .shot__caption,
.shot--3 .shot__caption,
.shot--4 .shot__caption { bottom: calc(100% + 6px); }
.shot--2 .shot__caption,
.shot--5 .shot__caption { top: calc(100% + 6px); }

/* CTA: botão central; badges + micro alinhados à direita (gutter) */
.showcase__cta {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 33px;
}
.showcase__cta-stores {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.showcase__cta-badges { display: flex; gap: 10.5px; }
.store-badge--sm img { height: 48px; width: auto; }
.showcase__cta-micro {
  font-size: var(--fs-btn);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-btn);
  color: #707070;
}

/* ---------- 08 — GAMIFICAÇÃO ---------- */
.gamification {
  background: var(--color-surface);
  padding-block: var(--section-pad-y);
}
.gamification__head { text-align: center; margin-bottom: var(--space-14); }
.gamification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.stamps-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  min-width: 0;
}
.stamps-card h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2);
}
.stamps-card p {
  font-size: var(--fs-body);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-6);
}
.stamps {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  justify-content: space-between;
}
.stamp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-surface-raised);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.2);
}
.stamp.is-stamped {
  background: rgba(234, 97, 32, 0.2);
  border: 2px solid var(--color-brand);
  color: var(--color-brand);
}
.stamp svg { width: 20px; height: 20px; fill: currentColor; }

.streak { display: flex; flex-direction: column; gap: var(--space-2); width: 100%; }
.streak__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-body);
  flex-wrap: wrap;
}
.streak__label { color: var(--color-accent-warn); font-weight: var(--fw-medium); }
.streak__val { color: rgba(255, 255, 255, 0.85); font-weight: var(--fw-bold); }
.streak__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.streak__bar > span {
  display: block;
  height: 100%;
  background: var(--color-accent-warn);
  border-radius: inherit;
  width: 50%;
}

.mission-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-brand);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  min-width: 0;
  overflow-wrap: anywhere;
}
.mission-card .tag { margin-bottom: var(--space-3); }
.mission-card__xp {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1;
  color: var(--color-brand);
  word-spacing: 0.05em;
  max-width: 100%;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.625rem;
  line-height: var(--lh-snug);
}
.mission-card p {
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: rgba(255, 255, 255, 0.85);
}
.mission-card .streak { margin-top: var(--space-2); }
.mission-card .streak__bar > span { background: var(--color-brand); }
.mission-card .streak__label { color: rgba(255, 255, 255, 0.7); }

/* ---------- 09 — DEPOIMENTOS ---------- */
.testimonials {
  background: var(--color-bg);
  padding-block: var(--section-pad-y);
}
.testimonials__head { text-align: center; margin-bottom: var(--space-14); }
.testimonials__note {
  font-style: italic;
  color: var(--color-text-tertiary);
  font-size: var(--fs-overline);
  margin-top: 24px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 1100px;
  margin-inline: auto;
}
.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
}
.testimonial__stars { color: var(--color-accent-warn); font-size: 1.125rem; letter-spacing: 0.1em; }
.testimonial__quote {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  word-break: normal;
  overflow-wrap: break-word;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  font-weight: var(--fw-bold);
}
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial__author small {
  display: block;
  color: var(--color-text-tertiary);
  font-weight: var(--fw-regular);
}

/* ---------- 10 — FAQ ---------- */
.faq {
  background: var(--color-surface);
  padding-block: var(--section-pad-y);
}
.faq .faq-item { background: var(--color-bg); }
.faq__head { text-align: center; margin-bottom: var(--space-12); }
.faq__list {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item__summary {
  width: 100%;
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1.125rem;
  text-align: left;
  color: var(--color-white);
  background: transparent;
  border: 0;
}
.faq-item__caret {
  color: var(--color-brand);
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq-item.is-open .faq-item__caret { transform: rotate(180deg); }
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--ease-out);
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body > div {
  overflow: hidden;
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  padding-inline: var(--space-6);
}
.faq-item.is-open .faq-item__body > div { padding-bottom: var(--space-6); }

/* ---------- 11 — CTA FINAL ---------- */
.cta {
  background: var(--color-brand);
  color: var(--color-white);
  position: relative;
}
.cta__zebra {
  /* Figma: faixa zebra no topo da seção, full-bleed */
  width: 100%;
}
.cta__inner {
  /* Figma: bloco centralizado — eyebrow, título, lead e card */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: var(--space-16) var(--space-20);
}
.cta__eyebrow { color: var(--color-white); opacity: 0.9; margin-bottom: 18px; }
.cta__title { color: var(--color-ink-900); }
.cta__title .em-script { color: var(--color-white); } /* Figma: script branco sobre laranja */
.cta__lead {
  margin-top: var(--space-5);
  max-width: 540px;
  font-size: 1rem;            /* 15.75px Figma */
  line-height: 1.7;           /* 27px Figma */
  color: rgba(255, 255, 255, 0.9);
}
.cta__lead strong { font-weight: var(--fw-bold); }

.qr-card {
  margin-top: var(--space-12);
  background: var(--color-white);
  border-radius: 3rem;        /* 47.25px Figma */
  padding: 56px 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 46px;
  color: var(--color-ink-900);
  max-width: 576px;
}
.qr-card__code {
  width: 205px;
  height: 205px;
  flex-shrink: 0;
  background: var(--color-white);
}
.qr-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.qr-card__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.qr-card__micro {
  font-size: var(--fs-small);
  color: #707070;
}

/* ---------- 12 — FOOTER ---------- */
.footer {
  background: var(--color-bg);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-16);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-4);
}
.footer__col ul { line-height: 3.048; } /* Figma: 48px de ritmo @15.75px */
.footer__col a {
  color: var(--color-ink-100);
  font-size: var(--fs-body-md);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--color-brand); }
.footer__logo {
  width: 297px;  /* Figma: 297×132 */
  height: auto;
  margin-bottom: var(--space-6);
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-6);
}
.footer__social { display: flex; gap: var(--space-3); }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-white);
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.footer__social a:hover {
  background: var(--color-brand);
  color: var(--color-ink-900);
}
.footer__social svg,
.footer__social img {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: filter var(--duration-fast) var(--ease-out);
}
.footer__social a:hover img { filter: brightness(0); }
.footer__bar a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__bar a:hover { color: var(--color-brand); }
.footer__bar {
    margin-top: var(--space-12);
  padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}
.footer__bar .container {

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
 *  RESPONSIVO
 *  ============================================================ */
@media (max-width: 1024px) {
  .hero__grid           { grid-template-columns: 1fr; }
  .bubble               { order: -1; max-width: 380px; }
  .levels__grid         { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid        { grid-template-columns: 1fr; }
  .steps__grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid   { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .gamification__grid   { grid-template-columns: 1fr; }
  .qr-card              { margin-inline: auto; }
  .footer__cols         { grid-template-columns: 1fr; gap: var(--space-10); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero { padding-top: calc(var(--topbar-h) + var(--space-8)); padding-bottom: var(--space-16); }
  .levels__grid    { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .steps__grid     { grid-template-columns: 1fr; }
  .showcase__row {
    display: flex;
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--section-pad-x);
    gap: var(--space-5);
    padding-block: var(--space-5);  /* espaço p/ sombra/brilho da moldura CSS */
    padding-inline: var(--section-pad-x);
    margin-inline: calc(var(--section-pad-x) * -1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .showcase__row::-webkit-scrollbar { display: none; }
  .showcase__row .shot {
    position: static;
    width: auto;
    flex: 0 0 70%;
    scroll-snap-align: center;
  }
  /* Screenshot crua + moldura CSS: fone centralizado preenchendo o slide */
  .showcase__row .shot__phone {
    position: relative;
    aspect-ratio: auto;
    display: flex;
    justify-content: center;
  }
  .showcase__row .shot__phone img {
    position: static;
    transform: none;
    width: 80%;
    max-width: 280px;
    height: auto;
  }
  .showcase__row .shot__phone img:hover { transform: translateY(-6px) scale(1.02); }
  .showcase__row .shot__caption {
    position: static;
    left: auto;
    transform: none;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .showcase__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    margin-top: var(--space-6);
  }
  .showcase__cta-stores { position: static; align-items: center; }
  .fandoms__inner  { flex-direction: column; align-items: flex-start; }
  .cta h2          { font-size: clamp(2rem, 9vw, 3rem); }

  .stamps-card, .mission-card { padding: var(--space-6); }

  .stamps {
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
    justify-items: center;
    gap: var(--space-2);
    width: 100%;
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: var(--space-5);
    row-gap: var(--space-1);
  }
  .step__badge {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  .fandoms__inner{
    align-items: center;
  }
  .fandoms__row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 16px;
    justify-items: center;
  }
  .fandoms__row > * {
    flex: 1; 
  }
}

@media (max-width: 480px) {
  /* Hero: CTAs lado a lado, larguras iguais. Ghost pode quebrar em 2 linhas;
     align-items: stretch mantém os dois botões na mesma altura. */
  .hero__ctas {
    flex-wrap: nowrap;
    gap: var(--space-2);
    align-items: stretch;
  }
  .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    --btn-pad-x: var(--space-3);
    height: auto;
    min-height: var(--btn-h-md);
    padding-block: var(--space-2);
    white-space: normal;
    line-height: 1.15;
  }
  /* Badges lado a lado: sizing por altura (mantém Apple/Google na mesma
     altura) e reduzido p/ caber os dois numa linha de tela estreita. */
  .hero__badges {
    flex-wrap: nowrap;
    gap: var(--space-3);
    justify-content: space-between;
  }
  .hero__badges .store-badge img { height: 44px; }

  .showcase__row .shot { flex: 0 0 78%; }
  .qr-card         { flex-direction: column; padding: var(--space-8); gap: var(--space-6); }
  .qr-card__code   { width: 200px; height: 200px; }
  .qr-card__right  { align-items: center; }
}
