/* ==========================================================================
   promo.jcb.br.com — folha de estilo única
   Mobile-first. Breakpoints: 360 / 768 / 1024 / 1440.
   Sem dependências externas: nenhuma fonte, imagem ou script remoto.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

/* --- Fontes auto-hospedadas (subconjunto latino; sem requisição remota) --- */
@font-face { font-family: "Orbitron"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/orbitron-600.woff2") format("woff2"); }
@font-face { font-family: "Orbitron"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/orbitron-700.woff2") format("woff2"); }
@font-face { font-family: "Orbitron"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/orbitron-800.woff2") format("woff2"); }
@font-face { font-family: "Rajdhani"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/rajdhani-400.woff2") format("woff2"); }
@font-face { font-family: "Rajdhani"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/rajdhani-500.woff2") format("woff2"); }
@font-face { font-family: "Rajdhani"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/rajdhani-600.woff2") format("woff2"); }
@font-face { font-family: "Rajdhani"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/rajdhani-700.woff2") format("woff2"); }
@font-face { font-family: "Share Tech Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/sharetechmono-400.woff2") format("woff2"); }

:root {
  /* Paleta — cyberpunk-brasileira neon (herdada do site principal) */
  --c-bg:            #060814;   /* near-black navy */
  --c-bg-alt:        #0a0e1f;
  --c-surface:       #0e1428;
  --c-surface-2:     #151d38;
  --c-border:        #1e2a4e;
  --c-border-strong: #2e3e6e;

  --c-text:          #e7eeff;
  --c-text-2:        #9aa8d0;
  --c-text-3:        #8494be;

  --c-accent:        #19f0a0;   /* neon green — ação primária */
  --c-accent-hover:  #12c083;
  --c-accent-fg:     #041a12;
  --c-accent-soft:   #2be3ff;   /* neon cyan — links e realces */

  --c-gold:          #ffd84d;   /* neon amber — prêmio/dinheiro */

  --c-age-bg:        #0b1030;
  --c-age-fg:        #ffe9a8;
  --c-age-border:    #2e3e6e;

  --c-focus:         #2be3ff;

  /* Neon + brilhos */
  --neon-green: #19f0a0;
  --neon-cyan:  #2be3ff;
  --neon-gold:  #ffd84d;
  --neon-pink:  #ff2e88;
  --glow-green: 0 0 0 1px rgba(25,240,160,.4), 0 0 18px rgba(25,240,160,.32);
  --glow-cyan:  0 0 0 1px rgba(43,227,255,.4), 0 0 18px rgba(43,227,255,.30);
  --glow-gold:  0 0 0 1px rgba(255,216,77,.4), 0 0 18px rgba(255,216,77,.32);
  --glow-pink:  0 0 0 1px rgba(255,46,136,.45), 0 0 18px rgba(255,46,136,.35);
  --clip-hud:   polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);

  /* Tipografia */
  --font-head: "Orbitron", "Rajdhani", system-ui, sans-serif;
  --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
  --font-sans: var(--font-body);

  --fs-100: 0.75rem;    /* 12 */
  --fs-200: 0.8125rem;  /* 13 */
  --fs-300: 0.875rem;   /* 14 */
  --fs-400: 1rem;       /* 16 */
  --fs-500: 1.0625rem;  /* 17 */
  --fs-600: clamp(1.125rem, 0.9rem + 0.9vw, 1.375rem);
  --fs-700: clamp(1.375rem, 1.05rem + 1.4vw, 2rem);
  --fs-800: clamp(1.75rem, 1.2rem + 2.6vw, 3.125rem);

  --lh-tight: 1.18;
  --lh-snug:  1.35;
  --lh-body:  1.6;

  --ls-caps: 0.08em;

  /* Espaço */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;

  --section-y: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);

  /* Formas */
  --radius: 4px;
  --radius-lg: 6px;

  --wrap: 1200px;
  --wrap-narrow: 820px;

  --agebar-h: 44px;
}

/* --------------------------------------------------------------------------
   2. Reset e base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: var(--fs-400);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, p, ul, ol, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
strong { font-weight: 600; }

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  text-underline-offset: 0.18em;
}
a:hover { text-decoration-color: currentColor; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--c-accent); color: var(--c-accent-fg); }

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--sp-4));
  margin-inline: auto;
}
.wrap--narrow { width: min(var(--wrap-narrow), 100% - 2 * var(--sp-4)); }

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 999;
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-accent);
  color: var(--c-accent-fg);
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 120ms ease;
}
.skip-link:focus-visible { top: var(--sp-3); }

/* --------------------------------------------------------------------------
   3. Botões e links de ação
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 40px;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: var(--fs-300);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn--primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-accent-fg);
}
.btn--primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); }

.btn--outline {
  background: transparent;
  border-color: var(--c-border-strong);
  color: var(--c-text);
}
.btn--outline:hover { border-color: var(--c-text-2); background: rgba(255, 255, 255, 0.04); }

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--c-text-2);
}
.btn--ghost:hover { color: var(--c-text); background: rgba(255, 255, 255, 0.05); }

.btn--lg {
  min-height: 48px;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-400);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-accent-soft);
  font-weight: 600;
  font-size: var(--fs-300);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--c-accent-soft) 40%, transparent);
  padding-bottom: 2px;
}
.link-arrow:hover { border-bottom-color: var(--c-accent-soft); }

.arrow { display: inline-block; transition: transform 120ms ease; }
.link-arrow:hover .arrow,
.agebar__link:hover .arrow { transform: translateX(3px); }

.linkbtn {
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font-size: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  text-underline-offset: 0.18em;
  cursor: pointer;
}
.linkbtn:hover { text-decoration-color: currentColor; }

/* --------------------------------------------------------------------------
   4. Faixa 18+ e cabeçalho (3.1 / 3.2)
   -------------------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg);
}

.agebar {
  background: var(--c-age-bg);
  border-bottom: 1px solid var(--c-age-border);
  color: var(--c-age-fg);
}

/* Orçamento de altura: 2 linhas de 11px (27,5px) + 12px de padding = ~40px,
   dentro do limite de --agebar-h (44px) a partir de 360px de largura. */
.agebar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-block: 6px;
}

.agebar__badge {
  flex: 0 0 auto;
  padding: 1px 5px;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: var(--c-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.agebar__text {
  font-size: 0.6875rem;
  line-height: 1.25;
}

.agebar__link {
  color: var(--c-gold);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--c-gold) 45%, transparent);
}
.agebar__link .arrow { margin-left: 0.25em; }
.agebar__link:hover { border-bottom-color: var(--c-gold); }

.header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

.header__inner {
  position: relative;   /* contexto do painel de navegação móvel */
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 56px;
  padding-block: var(--sp-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-right: auto;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--c-gold);
  border-radius: 3px;
  color: var(--c-gold);
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Alternador de menu — caixa de seleção estilizada, operável por teclado, sem JS */
.navtoggle {
  order: -1;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-2);
  cursor: pointer;
}
.navtoggle::before {
  content: "\2630";
  display: block;
  font-size: 1.05rem;
  line-height: 38px;
  text-align: center;
}
.navtoggle:checked::before { content: "\00D7"; font-size: 1.4rem; }
.navtoggle:hover { border-color: var(--c-border-strong); color: var(--c-text); }

.nav {
  display: none;
  position: absolute;
  left: calc(-1 * var(--sp-4));
  right: calc(-1 * var(--sp-4));
  top: 100%;
  flex-direction: column;
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.navtoggle:checked ~ .nav { display: flex; }

.nav a {
  padding: var(--sp-3) 0;
  color: var(--c-text-2);
  font-size: var(--fs-300);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
}
.nav a:last-child { border-bottom: 0; }
.nav a:hover { color: var(--c-text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.header__actions .btn { min-height: 36px; padding-inline: var(--sp-3); }

/* --------------------------------------------------------------------------
   5. Herói (3.3)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 8vw, 6.5rem);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}

.hero picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.82) 0%, rgba(16, 20, 24, 0.9) 55%, rgba(16, 20, 24, 0.97) 100%),
    rgba(16, 20, 24, 0.35);
}

.hero__title {
  max-width: 18ch;
  font-size: var(--fs-800);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
}

.hero__lead {
  max-width: 58ch;
  margin-top: var(--sp-4);
  color: var(--c-text-2);
  font-size: var(--fs-500);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.trust__item {
  position: relative;
  padding-left: 0.85rem;
  color: var(--c-text-2);
  font-size: var(--fs-100);
  line-height: 1.4;
}
.trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
}

/* --------------------------------------------------------------------------
   6. Seções genéricas
   -------------------------------------------------------------------------- */

.section { padding-block: var(--section-y); }
.section--alt { background: var(--c-bg-alt); border-block: 1px solid var(--c-border); }

.section__title {
  max-width: 24ch;
  font-size: var(--fs-700);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

.section__note {
  max-width: 70ch;
  margin-top: var(--sp-5);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}

.section__note + .link-arrow { margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   7. Cartões (3.4)
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.card {
  padding: var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  color: var(--c-accent-soft);
}

.card__title {
  font-size: var(--fs-500);
  font-weight: 600;
  line-height: var(--lh-snug);
}

.card__text {
  margin-top: var(--sp-2);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}

/* --------------------------------------------------------------------------
   8. Bloco com fotografia (3.5)
   -------------------------------------------------------------------------- */

.feature {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 6vw, 5.5rem);
  background: var(--c-bg-alt);
  border-block: 1px solid var(--c-border);
}

.feature picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 20, 24, 0.88) 0%, rgba(16, 20, 24, 0.93) 100%);
}

.feature__text {
  max-width: 62ch;
  margin-top: var(--sp-4);
  color: var(--c-text-2);
  font-size: var(--fs-400);
}
.feature__text strong { color: var(--c-text); }

.feature .btn { margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   9. Passos (3.6 / 3.7)
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.step {
  padding: var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--sp-3);
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
  font-size: var(--fs-200);
  font-weight: 700;
}

.step__title {
  font-size: var(--fs-500);
  font-weight: 600;
  line-height: var(--lh-snug);
}

.step__text {
  margin-top: var(--sp-2);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}

/* --------------------------------------------------------------------------
   10. Cadastro — âncora (3.8; formulário na etapa 2)
   -------------------------------------------------------------------------- */

.cadastro { scroll-margin-top: 7.5rem; }

/* --------------------------------------------------------------------------
   11. Jogo responsável (3.9)
   -------------------------------------------------------------------------- */

.tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.tools__item {
  position: relative;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}
.tools__item::before {
  content: "";
  position: absolute;
  left: var(--sp-4);
  top: 1.15em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-soft);
}

.help {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-5);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}
.help__item a { color: var(--c-text); font-weight: 600; }

.help + .link-arrow { margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   12. FAQ (3.10)
   -------------------------------------------------------------------------- */

.faq {
  margin-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}

.faq__item { border-bottom: 1px solid var(--c-border); }

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  color: var(--c-text);
  font-size: var(--fs-400);
  font-weight: 600;
  line-height: var(--lh-snug);
  list-style: none;
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--c-gold);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}
.faq__item[open] > .faq__q::after { content: "\2212"; }

.faq__a {
  padding-bottom: var(--sp-4);
  color: var(--c-text-2);
  font-size: var(--fs-300);
}
.faq__a p { max-width: 78ch; }

/* --------------------------------------------------------------------------
   13. Rodapé (3.11)
   -------------------------------------------------------------------------- */

.footer {
  padding-block: var(--section-y) var(--sp-6);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  color: var(--c-text-2);
  font-size: var(--fs-200);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.fcol__title {
  margin-bottom: var(--sp-3);
  color: var(--c-text-3);
  font-size: var(--fs-100);
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.fcol__addr { line-height: 1.75; }
.fcol__text + .fcol__text { margin-top: var(--sp-2); }
.fcol__text { line-height: 1.6; }

.fcol__list li + li { margin-top: var(--sp-2); }
.fcol__list a, .fcol__addr a { color: var(--c-text-2); }
.fcol__list a:hover, .fcol__addr a:hover { color: var(--c-text); }

.footer__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.agemark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
  font-size: var(--fs-200);
  font-weight: 700;
}

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.pay__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.pay__logo {
  display: block;
  height: 20px;
  width: auto;
  opacity: 0.9;
}

.footer__warning {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--c-age-bg);
  border: 1px solid var(--c-age-border);
  border-radius: var(--radius);
  color: var(--c-age-fg);
  font-size: var(--fs-200);
  font-weight: 600;
  line-height: 1.5;
}

.footer__operator {
  margin-top: var(--sp-4);
  max-width: 92ch;
  color: var(--c-text-3);
  font-size: var(--fs-100);
  line-height: 1.6;
}

.footer__copy {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
  color: var(--c-text-3);
  font-size: var(--fs-100);
}

/* --------------------------------------------------------------------------
   14. Breakpoints
   -------------------------------------------------------------------------- */

/* < 360px — margem de segurança para a altura da faixa 18+ */
@media (max-width: 22.5em) {
  .agebar__text, .agebar__badge { font-size: 0.625rem; }
  .agebar__inner { padding-block: 5px; }
}

/* ≥ 480px — a faixa 18+ já cabe em uma linha confortável */
@media (min-width: 30em) {
  .agebar__text { font-size: var(--fs-100); }
  .agebar__badge { font-size: var(--fs-100); }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { flex: 0 1 auto; }
}

/* ≥ 768px — tablet */
@media (min-width: 48em) {
  .navtoggle { display: none; }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
    margin-right: var(--sp-5);
    padding: 0;
    background: none;
    border: 0;
  }
  .nav a { padding: 0; border: 0; }

  .brand__name {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip-path: none;
    color: var(--c-text);
    font-size: var(--fs-300);
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .header__inner { min-height: 64px; gap: var(--sp-4); }
  .header__actions .btn { min-height: 38px; padding-inline: var(--sp-4); }

  .trust { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust__item { font-size: var(--fs-200); }

  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-6) var(--sp-5); }

  .faq__q { font-size: var(--fs-500); }
  .faq__a { font-size: var(--fs-400); }
  .section__note { font-size: var(--fs-400); }
  .card__text, .step__text { font-size: var(--fs-300); }
}

/* ≥ 1024px — desktop */
@media (min-width: 64em) {
  :root { --section-y: 4.5rem; }

  .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-6) var(--sp-5); }
  .tools { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .hero { padding-block: 6rem 5rem; }
  .hero__lead { font-size: 1.125rem; }
  .section__title { max-width: 28ch; }
}

/* ≥ 1440px — telas largas */
@media (min-width: 90em) {
  :root { --wrap: 1280px; --section-y: 5.5rem; }
  .hero { padding-block: 7rem 5.5rem; }
}

/* --------------------------------------------------------------------------
   15. Preferências do usuário e impressão
   -------------------------------------------------------------------------- */

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

@media (prefers-contrast: more) {
  :root {
    --c-text-2: #d6dee4;
    --c-text-3: #b3bdc5;
    --c-border: #45525c;
    --c-border-strong: #5d6b76;
  }
}

@media print {
  .topbar, .hero picture, .feature picture { display: none; }
  body { background: #fff; color: #000; }
  .faq__a { display: block; }
}

/* --------------------------------------------------------------------------
   16. Formulário de cadastro (3.8 / seção 4)
   -------------------------------------------------------------------------- */

:root {
  --c-error:      #f08a8a;   /* 8.0:1 sobre --c-bg */
  --c-error-bg:   #241416;
  --c-error-line: #6d2f34;
}

.form { margin-top: var(--sp-6); }

.form__noscript {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--c-error-bg);
  border: 1px solid var(--c-error-line);
  border-radius: var(--radius);
  color: var(--c-error);
  font-size: var(--fs-300);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.field { display: flex; flex-direction: column; }

.field__label {
  margin-bottom: var(--sp-2);
  color: var(--c-text-2);
  font-size: var(--fs-300);
  font-weight: 600;
}

.field__input {
  width: 100%;
  min-height: 46px;
  padding: var(--sp-3);
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: inherit;
  font-size: var(--fs-400);   /* 16px: evita o zoom automático no iOS */
  line-height: 1.3;
}
.field__input::placeholder { color: var(--c-text-3); opacity: 1; }
.field__input:hover { border-color: var(--c-text-3); }
.field__input:focus { border-color: var(--c-accent-soft); }

.field__input[aria-invalid="true"] {
  border-color: var(--c-error);
  background: var(--c-error-bg);
}

/* Normaliza o campo de data, que o Chrome/Safari desenham à parte */
.field__input[type="date"] { appearance: none; -webkit-appearance: none; }
.field__input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.55; cursor: pointer; }
.field__input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.field__error {
  margin-top: var(--sp-2);
  color: var(--c-error);
  font-size: var(--fs-200);
  line-height: 1.45;
}
.field__error[hidden] { display: none; }

/* --- Declarações obrigatórias ------------------------------------------- */

.checks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.check__box {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.check__box[aria-invalid="true"] { outline: 2px solid var(--c-error); outline-offset: 2px; }

.check__body { min-width: 0; }

.check__label {
  display: block;
  color: var(--c-text-2);
  font-size: var(--fs-300);
  line-height: 1.5;
  cursor: pointer;
}
.check__label a { color: var(--c-text); font-weight: 600; }

.check__details { margin-top: var(--sp-2); }

.check__details > summary {
  color: var(--c-accent-soft);
  font-size: var(--fs-200);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.check__details > summary::-webkit-details-marker { display: none; }
.check__details > summary::before {
  content: "+";
  display: inline-block;
  width: 1em;
  color: var(--c-gold);
  font-weight: 400;
}
.check__details[open] > summary::before { content: "\2212"; }

.check__details ul {
  margin-top: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-3);
  font-size: var(--fs-200);
  line-height: 1.55;
}
.check__details li { position: relative; padding-left: 0.9rem; }
.check__details li + li { margin-top: var(--sp-2); }
.check__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
}

/* --- Alerta de resposta da API ------------------------------------------ */

.form__alert {
  margin-bottom: var(--sp-5);
  padding: var(--sp-4);
  background: var(--c-error-bg);
  border: 1px solid var(--c-error-line);
  border-left: 3px solid var(--c-error);
  border-radius: var(--radius);
  color: var(--c-error);
  font-size: var(--fs-300);
  line-height: 1.5;
}
.form__alert[hidden] { display: none; }
.form__alert a { color: var(--c-text); font-weight: 600; }

/* --- Botão de envio ------------------------------------------------------ */

.form__submit {
  width: 100%;
  margin-top: var(--sp-6);
}
.form__submit[disabled] { opacity: 0.7; cursor: progress; }

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--c-accent-fg);
  border-radius: 50%;
}
.form__submit[aria-busy="true"] .spinner {
  display: block;
  animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .form__submit[aria-busy="true"] .spinner { animation: none; opacity: 0.6; }
}

/* --- Breakpoints do formulário ------------------------------------------- */

@media (min-width: 48em) {
  .form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-4) var(--sp-5);
  }
  .field--wide { grid-column: 1 / -1; }

  .form__submit { width: auto; min-width: 16rem; }
  .check__label { font-size: var(--fs-400); }
  .form__alert { font-size: var(--fs-400); }
}

@media (min-width: 64em) {
  .cadastro .form { max-width: 46rem; }
}

/* --------------------------------------------------------------------------
   17. Aviso de cookies (3.12)

   Faixa fixa no rodapé da janela, nunca um modal. A página continua legível e
   rolável com o aviso aberto — tanto para quem revisa o anúncio quanto para o
   AdsBot. Os dois botões são idênticos: recusar não pode ser mais difícil que
   aceitar.
   -------------------------------------------------------------------------- */

.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.ck {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;               /* abaixo da faixa 18+, que é 100 */
  background: var(--c-surface);
  border-top: 1px solid var(--c-border-strong);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}
.ck[hidden] { display: none; }

.ck__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: min(var(--wrap), 100% - 2 * var(--sp-4));
  margin-inline: auto;
  padding-block: var(--sp-4);
}

.ck__text {
  color: var(--c-text-2);
  font-size: var(--fs-200);
  line-height: 1.5;
}

.ck__link { color: var(--c-text); font-weight: 600; }

.ck__acoes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

/* Mesmo tamanho, mesmo peso, mesmo contraste nos dois. */
.ck__btn {
  width: 100%;
  min-height: 44px;
  font-size: var(--fs-300);
  font-weight: 600;
}

@media (min-width: 48em) {
  .ck__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
  }
  .ck__text { flex: 1 1 auto; font-size: var(--fs-300); }
  .ck__acoes {
    flex: 0 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-3);
  }
  .ck__btn { width: auto; min-width: 13.5rem; }
}

/* Enquanto o aviso está aberto, o fim da página não fica embaixo dele. */
.tem-aviso-de-cookies .footer { padding-bottom: 8.5rem; }

@media (min-width: 48em) {
  .tem-aviso-de-cookies .footer { padding-bottom: 6rem; }
}

@media print {
  .ck { display: none; }
}

/* ==========================================================================
   18. CAMADA CYBERPUNK-BRASILEIRA (skin) — herdada de jcb.br.com
   Sobrescreve componentes com a identidade neon: Orbitron/Rajdhani,
   brilhos, cantos HUD e grade de fundo. Aplicada por último.
   ========================================================================== */

/* Fundo global: brilhos neon + grade sutil com máscara radial */
body { position: relative; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(25,240,160,.10), transparent 60%),
    radial-gradient(1000px 700px at 10% 110%, rgba(43,227,255,.09), transparent 60%),
    var(--c-bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(43,227,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,227,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 85%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 85%);
}

/* Títulos display */
.hero__title, .section__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero__title { font-weight: 800; color: #fff; text-shadow: 0 0 18px rgba(43,227,255,.35); }
.section__title { font-weight: 700; }

/* Botões — HUD angular + neon */
.btn {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 2px;
  clip-path: var(--clip-hud);
}
.btn--primary {
  background: linear-gradient(180deg, var(--neon-green), #12c083);
  border-color: transparent; color: var(--c-accent-fg); box-shadow: var(--glow-green);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #5cffc2, var(--neon-green));
  border-color: transparent; box-shadow: 0 0 26px rgba(25,240,160,.6);
}
.btn--outline, .btn--ghost {
  background: rgba(43,227,255,.05); border: 1px solid var(--neon-cyan); color: var(--neon-cyan);
}
.btn--outline:hover, .btn--ghost:hover {
  background: rgba(43,227,255,.14); color: #bdf3ff; border-color: var(--neon-cyan); box-shadow: var(--glow-cyan);
}

/* Barra 18+ */
.topbar { background: transparent; }
.agebar {
  background: linear-gradient(90deg, #0b1030, #14103a);
  border-bottom: 1px solid rgba(255,46,136,.35);
}
.agebar__badge {
  color: var(--neon-pink); border-color: currentColor; font-family: var(--font-mono);
  box-shadow: 0 0 10px rgba(255,46,136,.3); text-shadow: 0 0 8px rgba(255,46,136,.5);
}
.agebar__link { color: var(--neon-cyan); border-bottom-color: rgba(43,227,255,.45); }
.agebar__link:hover { border-bottom-color: var(--neon-cyan); text-shadow: 0 0 8px rgba(43,227,255,.5); }

/* Cabeçalho — vidro + borda neon */
.header {
  background: rgba(6,8,20,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neon-green);
  box-shadow: 0 0 28px rgba(25,240,160,.14);
}
.nav a:hover { color: var(--neon-cyan); text-shadow: 0 0 8px rgba(43,227,255,.5); }

/* Marca — wordmark JC<em>B</em> + subtítulo mono */
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  position: static; width: auto; height: auto; margin: 0; padding: 0;
  overflow: visible; clip-path: none;
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.brand__name em { color: var(--neon-gold); font-style: normal; text-shadow: 0 0 10px rgba(255,216,77,.4); }
.brand__sub {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--neon-cyan); margin-top: 3px;
}

/* Herói — foto + grade neon + scanline CRT */
.hero {
  background:
    linear-gradient(120deg, rgba(6,8,20,.96) 0%, rgba(8,12,30,.8) 45%, rgba(12,16,40,.5) 100%),
    url("../img/hero.webp") center 30% / cover no-repeat,
    var(--c-bg);
  border-bottom: 1px solid var(--neon-green);
}
.hero > picture { display: none; }
.hero::after {
  background-color: transparent;
  background-image:
    linear-gradient(rgba(25,240,160,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,240,160,.12) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .18;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.16) 0 1px, transparent 1px 3px);
}
.hero__lead { color: var(--c-text-2); }
.trust__item::before { background: var(--neon-green); box-shadow: 0 0 8px rgba(25,240,160,.6); }

/* Cartões / passos — painel gradiente + brilho no hover */
.card, .step, .tools__item {
  background: linear-gradient(180deg, rgba(21,29,56,.55), rgba(14,20,40,.85));
  border-radius: 3px;
}
.card, .step { transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.card:hover, .step:hover { border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); transform: translateY(-3px); }
.card__icon {
  border-color: rgba(25,240,160,.3); background: rgba(25,240,160,.08);
  color: var(--neon-green); box-shadow: 0 0 14px rgba(25,240,160,.15);
}
.step__num {
  border-color: var(--neon-green); background: var(--neon-green);
  color: var(--c-accent-fg); font-family: var(--font-head);
  box-shadow: 0 0 12px rgba(25,240,160,.5);
}
.tools__item::before { background: var(--neon-cyan); box-shadow: 0 0 8px rgba(43,227,255,.6); }

/* Bloco com foto */
.feature {
  background:
    linear-gradient(120deg, rgba(6,8,20,.95) 0%, rgba(10,14,34,.7) 60%, rgba(14,16,44,.5) 100%),
    url("../img/feature.webp") center / cover no-repeat,
    var(--c-bg);
  border-block: 1px solid var(--neon-green);
}
.feature > picture { display: none; }
.feature::after {
  background-color: transparent;
  background-image:
    linear-gradient(rgba(25,240,160,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,240,160,.10) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .16;
}

/* Links de ação */
.link-arrow { color: var(--neon-cyan); border-bottom-color: rgba(43,227,255,.4); }
.link-arrow:hover { border-bottom-color: var(--neon-cyan); text-shadow: 0 0 8px rgba(43,227,255,.4); }

/* FAQ */
.faq__q::after { color: var(--neon-gold); }
.faq__item[open] > .faq__q { color: var(--neon-cyan); }

/* Formulário */
.field__label { font-family: var(--font-head); font-weight: 500; letter-spacing: .02em; }
.field__input { background: rgba(8,12,26,.7); border-radius: 2px; }
.field__input:focus { border-color: var(--neon-cyan); box-shadow: 0 0 0 2px rgba(43,227,255,.2), 0 0 14px rgba(43,227,255,.2); }
.check__box { accent-color: var(--neon-green); }
.check__details > summary { color: var(--neon-cyan); }

/* Rodapé — borda neon + títulos ciano */
.footer { background: linear-gradient(180deg, #070a16, #05070f); border-top: 1px solid var(--neon-green); }
.fcol__title { color: var(--neon-cyan); font-family: var(--font-head); letter-spacing: .06em; }
.agemark {
  border-color: var(--neon-pink); color: var(--neon-pink); background: transparent;
  font-family: var(--font-mono);
  box-shadow: 0 0 12px rgba(255,46,136,.4); text-shadow: 0 0 8px rgba(255,46,136,.5);
}
.footer__warning { background: rgba(255,46,136,.06); border-color: rgba(255,46,136,.3); }

/* Formas de pagamento — logos coloridos em placa HUD clara */
.pay { gap: var(--sp-2); }
.pay__item {
  padding: 7px 12px; background: #f5f7fb;
  border: 1px solid rgba(43,227,255,.5); border-radius: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  box-shadow: 0 0 10px rgba(43,227,255,.15);
}
.pay__logo { height: 22px; opacity: 1; }

/* Aviso de cookies */
.ck {
  background: rgba(6,8,20,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--neon-green);
}
