/* =====================================================================
   DescobrePlay — styles.css
   Tema visual: "café em papel" (buymeacoffee) — tela creme, cartões
   brancos flutuantes, cantos generosos, botões pill, acentos marigold
   e terracota. BEM. Mobile-first.
   ===================================================================== */

:root {
  /* Cores */
  --cream: #faf8f0;
  --cream-deep: #f3efe2;
  --card: #ffffff;
  --hairline: #e5e7eb;
  --ink: #000000;
  --charcoal: #222222;
  --fog: #717171;
  --marigold: #ffdd00;
  --buttercup: #f7d046;
  --terracotta: #d8573f;
  --terracotta-btn: #c8492c;   /* tom mais fundo p/ contraste AA do texto branco */
  --terracotta-hover: #b23f26;
  --blush: #f5d5cf;
  --green-trust: #1f9d55;       /* estrelas de confiança */
  --star: #f5b301;              /* estrelas de avaliação (âmbar quente) */

  /* Tipografia */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-logo: 'Fredoka', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Espaçamento */
  --sp-4: 4px; --sp-8: 8px; --sp-12: 12px; --sp-16: 16px; --sp-20: 20px;
  --sp-24: 24px; --sp-32: 32px; --sp-40: 40px; --sp-48: 48px; --sp-64: 64px;
  --sp-80: 80px;

  /* Layout */
  --container: 1200px;
  --pad-inline: 20px;
  --section-gap: 72px;
  --header-h: 68px;

  /* Raios */
  --r-sm: 8px;
  --r-md: 16px;
  --r-card: 24px;
  --r-lg: 32px;
  --r-xl: 40px;
  --r-pill: 9999px;

  /* Sombras (receita de três camadas do tema) */
  --shadow: rgba(0,0,0,0.15) 0 0 2px 0, rgba(0,0,0,0.04) 0 8px 40px 0, rgba(0,0,0,0.05) 0 2px 5px 0;
  --shadow-soft: rgba(0,0,0,0.05) 0 6px 24px 0, rgba(0,0,0,0.04) 0 1px 3px 0;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { margin: 0; color: var(--ink); font-family: var(--font-display); }

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utilidades / container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: var(--section-gap); scroll-margin-top: 88px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--card); }
.section--band  { background: var(--cream-deep); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 var(--sp-16);
}
.eyebrow--onterr { color: var(--terracotta); }

.section__head { max-width: 680px; margin: 0 auto var(--sp-48); text-align: center; }
.section__title {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section__lead {
  margin-top: var(--sp-16);
  font-size: 17px;
  color: var(--charcoal);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: var(--r-pill);
  padding: 15px 26px;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--marigold); color: var(--ink); box-shadow: 0 6px 18px rgba(255,221,0,.35); }
.btn--primary:hover { background: #ffe633; box-shadow: 0 10px 24px rgba(255,221,0,.45); }

.btn--terracotta { background: var(--terracotta-btn); color: #fff; }
.btn--terracotta:hover { background: var(--terracotta-hover); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--hairline); }
.btn--ghost:hover { border-color: var(--charcoal); background: rgba(0,0,0,.02); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 18px; font-size: 14px; }

/* ===================================================================
   Cabeçalho / Navegação
   =================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,240,.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.has-scroll {
  border-bottom-color: var(--hairline);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
}

.logo {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo__mark {
  width: 30px; height: 30px; border-radius: 9px;
  box-shadow: var(--shadow-soft);
}
.logo__accent { color: var(--terracotta); }

.nav { display: flex; align-items: center; gap: var(--sp-8); }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover { background: rgba(0,0,0,.05); color: var(--ink); }
.nav__cta { margin-left: var(--sp-8); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--hairline);
  border-radius: 12px;
  background: var(--card);
  align-items: center; justify-content: center;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger__bars { position: relative; }
.burger__bars::before { position: absolute; top: -6px; }
.burger__bars::after  { position: absolute; top: 6px; }
.burger.is-open .burger__bars { background: transparent; }
.burger.is-open .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger.is-open .burger__bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 8vw, 88px); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 12% 8%, rgba(255,221,0,.28), transparent 60%),
    radial-gradient(50% 50% at 92% 20%, rgba(245,213,207,.55), transparent 62%),
    radial-gradient(55% 60% at 85% 96%, rgba(247,208,70,.22), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero__title em { font-style: normal; color: var(--terracotta); }
.hero__mark {
  display: inline-block;
  background: linear-gradient(180deg, transparent 62%, var(--marigold) 62%);
  padding-inline: 2px;
}
.hero__lead {
  margin-top: var(--sp-24);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 32em;
}
.hero__actions {
  margin-top: var(--sp-32);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
}
.hero__trust {
  margin-top: var(--sp-24);
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  color: var(--fog);
  font-size: 14px;
}
.hero__stars { display: inline-flex; gap: 2px; color: var(--green-trust); }
.hero__stars svg { width: 18px; height: 18px; }

/* Vitrine de ícones — cartões flutuantes tipo scrapbook */
.showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.showcase__card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s ease;
}
.showcase__card:hover { transform: translateY(-6px) rotate(0deg) !important; }
.showcase__card:nth-child(1) { transform: rotate(-4deg); }
.showcase__card:nth-child(2) { transform: rotate(2deg) translateY(14px); }
.showcase__card:nth-child(3) { transform: rotate(4deg); }
.showcase__card:nth-child(4) { transform: rotate(3deg); }
.showcase__card:nth-child(5) { transform: rotate(-2deg) translateY(14px); }
.showcase__card:nth-child(6) { transform: rotate(-4deg); }
.showcase__icon {
  width: 100%; height: auto; aspect-ratio: 1/1;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,.10);
}
.showcase__name {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.showcase__rating {
  font-size: 11px; color: var(--fog);
  display: inline-flex; align-items: center; gap: 3px;
}
.showcase__rating svg { width: 11px; height: 11px; color: var(--star); }

/* ===================================================================
   Grelha de jogos
   =================================================================== */
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.16) 0 0 2px 0, rgba(0,0,0,0.08) 0 16px 44px 0; }

.card__media { position: relative; }
.card__shot {
  width: 100%; height: 168px; object-fit: cover;
  background: var(--cream-deep);
}
.card__badge {
  position: absolute;
  left: 16px; bottom: -26px;
  width: 66px; height: 66px;
  border-radius: 18px;
  border: 3px solid var(--card);
  box-shadow: 0 4px 12px rgba(0,0,0,.16);
}
.card__genre {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,.92);
  color: var(--charcoal);
  font-size: 11px; font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
}
.card__body {
  padding: 34px var(--sp-20) var(--sp-20);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.card__dev { margin-top: 3px; font-size: 13px; color: var(--fog); }
.card__rating {
  margin-top: var(--sp-12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stars { position: relative; display: inline-block; line-height: 0; }
.stars__row { display: inline-flex; gap: 2px; }
.stars__row svg { width: 16px; height: 16px; }
.stars__bg { color: var(--hairline); }
.stars__fill { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; color: var(--star); }
.card__rating-num { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.card__desc {
  margin-top: var(--sp-12);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--charcoal);
  flex: 1;
}
.card__foot { margin-top: var(--sp-20); }
.card__store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__store svg { width: 18px; height: 18px; }

/* Divulgação publicitária discreta */
.games__note {
  margin-top: var(--sp-32);
  text-align: center;
  font-size: 13px;
  color: var(--fog);
}
.games__note a { color: var(--terracotta-btn); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===================================================================
   Como começar (passos)
   =================================================================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
.step {
  background: var(--card);
  border-radius: var(--r-card);
  padding: var(--sp-32) var(--sp-24);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--hairline);
}
.step__num {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 22px;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--marigold);
  color: var(--ink);
  margin-bottom: var(--sp-16);
}
.step:nth-child(2) .step__num { background: var(--blush); }
.step:nth-child(3) .step__num { background: var(--buttercup); }
.step__title { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.step__text { font-size: 15px; color: var(--charcoal); }

/* ===================================================================
   Porque confiar (features)
   =================================================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-24);
}
.feature {
  display: flex;
  gap: var(--sp-16);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--sp-24);
}
.feature__icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--terracotta);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.feature__text { font-size: 15px; color: var(--charcoal); }

/* ===================================================================
   Como ganhamos (monetização)
   =================================================================== */
.earn__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.earn__title {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-16);
}
.earn__text { font-size: 16px; color: var(--charcoal); margin-bottom: var(--sp-16); }
.earn__list { list-style: none; margin: 0 0 var(--sp-24); padding: 0; display: grid; gap: var(--sp-12); }
.earn__item { display: flex; gap: var(--sp-12); align-items: flex-start; font-size: 15px; }
.earn__check {
  flex: none; width: 24px; height: 24px; border-radius: var(--r-pill);
  background: var(--marigold); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.earn__check svg { width: 14px; height: 14px; }
.earn__card {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: var(--sp-32);
}
.earn__stat + .earn__stat { margin-top: var(--sp-20); padding-top: var(--sp-20); border-top: 1px solid var(--hairline); }
.earn__stat-num { font-family: var(--font-logo); font-weight: 700; font-size: 40px; color: var(--terracotta); line-height: 1; }
.earn__stat-label { margin-top: 6px; font-size: 14px; color: var(--fog); }

/* ===================================================================
   Opiniões (reviews)
   =================================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
.review {
  background: var(--card);
  border: 1px solid var(--blush);
  border-radius: var(--r-card);
  padding: var(--sp-24);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.review__stars { color: var(--star); display: inline-flex; gap: 2px; margin-bottom: var(--sp-12); }
.review__stars svg { width: 17px; height: 17px; }
.review__quote { font-size: 15.5px; line-height: 1.6; color: var(--charcoal); flex: 1; }
.review__author { display: flex; align-items: center; gap: var(--sp-12); margin-top: var(--sp-20); }
.review__avatar {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: var(--ink);
  background: var(--buttercup);
}
.review:nth-child(2) .review__avatar { background: var(--blush); }
.review:nth-child(3) .review__avatar { background: var(--marigold); }
.review__name { font-weight: 700; font-size: 15px; }
.review__role { font-size: 13px; color: var(--fog); }

/* ===================================================================
   Formulário de subscrição
   =================================================================== */
.subscribe__inner {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.subscribe__title { font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.08; letter-spacing: -0.03em; }
.subscribe__lead { margin-top: var(--sp-16); font-size: 16px; color: var(--charcoal); }
.subscribe__perks { margin: var(--sp-20) 0 0; padding: 0; list-style: none; display: grid; gap: var(--sp-8); }
.subscribe__perk { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.subscribe__perk svg { width: 18px; height: 18px; color: var(--terracotta); flex: none; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
.field { margin-bottom: var(--sp-16); }
.field__label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.field__label .req { color: var(--terracotta-btn); }
.field__input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  transition: border-color .15s ease, background-color .15s ease;
}
.field__input::placeholder { color: #9aa0a6; }
.field__input:focus { outline: none; border-color: var(--terracotta); background: #fff; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: var(--sp-20); }
.consent__box { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--terracotta); flex: none; }
.consent__text { font-size: 13.5px; color: var(--fog); line-height: 1.5; }
.consent__text a { color: var(--terracotta-btn); text-decoration: underline; text-underline-offset: 2px; }

.form__note { margin-top: var(--sp-12); font-size: 12.5px; color: var(--fog); text-align: center; }

.form__success {
  display: none;
  margin-top: var(--sp-16);
  background: #eef8f0;
  border: 1px solid #bfe3c8;
  color: #1c7a3f;
  border-radius: var(--r-md);
  padding: var(--sp-16);
  font-size: 15px;
  font-weight: 600;
}
.form__success.is-visible { display: flex; gap: 10px; align-items: center; }
.form__success svg { width: 20px; height: 20px; flex: none; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-12);
  overflow: hidden;
}
.faq__item--open { box-shadow: var(--shadow-soft); border-color: var(--blush); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px var(--sp-24);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
}
.faq__icon { flex: none; width: 22px; height: 22px; color: var(--terracotta); transition: transform .25s ease; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a-inner { padding: 0 var(--sp-24) 22px; font-size: 15.5px; color: var(--charcoal); line-height: 1.6; }

/* ===================================================================
   Rodapé
   =================================================================== */
.footer { background: var(--charcoal); color: #d8d5cd; padding-block: var(--sp-64) var(--sp-32); }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-40);
  padding-bottom: var(--sp-40);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand .logo { color: #fff; }
.footer__about { margin-top: var(--sp-16); font-size: 14.5px; color: #b7b4ac; max-width: 34ch; }
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; margin-bottom: var(--sp-16);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__link { color: #cfccc4; font-size: 15px; }
.footer__link:hover { color: #fff; }
.footer__bottom {
  padding-top: var(--sp-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #9d9a92;
}
.footer__contact a { color: var(--marigold); font-weight: 600; }

/* ===================================================================
   Botão "voltar ao topo"
   =================================================================== */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--terracotta-btn);
  color: #fff;
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 40;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--terracotta-hover); }
.to-top svg { width: 22px; height: 22px; }

/* ===================================================================
   Banner de cookies
   =================================================================== */
.cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 560px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: var(--sp-20);
  z-index: 60;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie__text { font-size: 14px; color: var(--charcoal); }
.cookie__text a { color: var(--terracotta-btn); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { margin-top: var(--sp-16); display: flex; gap: var(--sp-12); flex-wrap: wrap; }

/* ===================================================================
   Páginas legais
   =================================================================== */
.legal { padding-block: var(--sp-48) var(--sp-64); }
.legal__inner { max-width: 800px; margin-inline: auto; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--terracotta-btn); margin-bottom: var(--sp-24); }
.legal__back svg { width: 16px; height: 16px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -0.03em; line-height: 1.05; }
.legal__updated { margin-top: var(--sp-12); color: var(--fog); font-size: 14px; }
.legal h2 { font-size: 22px; margin-top: var(--sp-40); margin-bottom: var(--sp-12); letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin-top: var(--sp-24); margin-bottom: var(--sp-8); }
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: var(--charcoal); }
.legal p { margin-bottom: var(--sp-16); }
.legal ul { margin: 0 0 var(--sp-16); padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--terracotta-btn); text-decoration: underline; text-underline-offset: 2px; }
.legal__table { width: 100%; border-collapse: collapse; margin: var(--sp-16) 0 var(--sp-24); font-size: 14.5px; }
.legal__table th, .legal__table td { text-align: left; padding: 12px 14px; border: 1px solid var(--hairline); vertical-align: top; }
.legal__table th { background: var(--cream-deep); font-weight: 700; }

/* ===================================================================
   Responsivo
   =================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .showcase { max-width: 520px; margin-top: var(--sp-32); }
  .earn__inner, .subscribe__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --section-gap: 56px; }
  .nav__list, .nav__cta { display: none; }
  .burger { display: inline-flex; }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow);
    padding: var(--sp-16);
    gap: 4px;
  }
  .nav.is-open .nav__link { padding: 14px 12px; font-size: 16px; border-radius: 12px; }
  .nav.is-open .nav__cta { display: inline-flex; margin: 8px 0 0; }
  .games__grid, .steps__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --pad-inline: 16px; }
  .games__grid, .steps__grid, .reviews__grid, .showcase { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-24); }
  .hero__actions .btn { flex: 1 1 auto; }
}
@media (max-width: 420px) {
  .games__grid, .steps__grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr 1fr; max-width: 320px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .showcase__card { transform: none !important; }
}
