/* =====================================================================
   LP CREPEFY — SEJA FRANQUEADO
   Identidade visual extraída de crepefy.com.br/sejafranqueado
   Arquitetura de conversão clonada de mrcheney.growthstack.com.br
   ---------------------------------------------------------------------
   CONTRASTE (WCAG AA) — medido antes de fixar as cores:
     preto  sobre creme  18,9:1   ok
     âmbar  sobre preto  11,6:1   ok
     preto  sobre âmbar  11,6:1   ok  (é o botão)
     branco sobre preto  21,0:1   ok
     âmbar  sobre creme   1,6:1   REPROVA
   Por isso o âmbar NUNCA é usado como texto em fundo claro. Em fundo
   claro ele só aparece como área preenchida, com texto preto por cima.
   ===================================================================== */

/* ------------------------------- FONTES ----------------------------
   Servidas localmente. Montserrat é fonte variável: um único arquivo
   cobre 200 a 900, por isso a faixa em font-weight. O site da marca
   ofusca o nome da fonte, mas o alias interno do construtor entrega
   (orig_montserrat_bold / _extrabold / _black / _extralight). */
@font-face {
  font-family: 'Crepefy Display';
  src: url('../fonts/montserrat-var.woff2') format('woff2-variations'),
       url('../fonts/montserrat-var.woff2') format('woff2');
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Crepefy Body';
  src: url('../fonts/barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Crepefy Body';
  src: url('../fonts/barlow-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Crepefy Body';
  src: url('../fonts/barlow-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ------------------------------- TOKENS ---------------------------- */
:root {
  /* Escala escura derivada do preto da marca */
  --ink-900: #000000;
  --ink-850: #0C0C0C;
  --ink-800: #141414;
  --ink-700: #1E1E1E;
  --ink-600: #2A2A2A;

  /* Acento único da marca */
  --amber:      #FDB301;
  --amber-dark: #D99400;
  --amber-soft: #FFD983;

  /* Neutros */
  --cream:     #F9F2EA;
  --off-white: #FAFAFA;
  --white:     #FFFFFF;
  --ink:       #241F1C;

  /* Funcional — vermelho de erro. Não é cor de marca, mas âmbar não é
     legível como sinal de erro. 5,6:1 sobre branco, passa em AA. */
  --erro: #C62828;

  /* Tipografia */
  --f-display: 'Crepefy Display', 'Montserrat', 'Arial Black', sans-serif;
  --f-title:   'Crepefy Display', 'Montserrat', sans-serif;
  --f-sub:     'Crepefy Body', 'Barlow', sans-serif;
  --f-body:    'Crepefy Body', 'Barlow', system-ui, sans-serif;
  --f-tag:     'Crepefy Display', 'Montserrat', sans-serif;

  /* Layout */
  --wrap: 1180px;
  --pad: 28px;
  --radius: 18px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .18);
  --shadow-md: 0 14px 38px rgba(0, 0, 0, .26);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, .38);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--ink-900);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-family: var(--f-display); font-weight: 800; }
p { margin: 0; }

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

.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;
}

/* --------------------------- ESTRUTURA ----------------------------- */
.section { padding: 76px 0; position: relative; }
.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }

/* Ritmo de fundos */
.bg-dark     { background: var(--ink-850); color: var(--off-white); }
.bg-dark-mid { background: var(--ink-700); color: var(--off-white); }
.bg-black    { background: var(--ink-900); color: var(--off-white); }
.bg-cream    { background: var(--cream);   color: var(--ink); }
.bg-white    { background: var(--white);   color: var(--ink); }
/* No fundo âmbar tudo vira preto: âmbar/branco entre si não passariam. */
.bg-amber    { background: var(--amber);   color: var(--ink); }

/* ---------------------------- TÍTULOS ------------------------------ */
.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5.2vw, 3.3rem);
  letter-spacing: -.015em;
  text-align: center;
  color: var(--amber);
  text-transform: uppercase;
}
/* Fundo claro: âmbar reprovaria (1,6:1). Vai preto. */
.bg-cream .section-title,
.bg-white .section-title,
.bg-amber .section-title { color: var(--ink); }

.section-title .light { color: var(--off-white); }
.bg-cream .section-title .light,
.bg-white .section-title .light,
.bg-amber .section-title .light { color: var(--ink-600); }

.section-title--esq { text-align: left; }

.section-texto {
  font-family: var(--f-body);
  font-size: 1.02rem;
  margin-top: 20px;
  opacity: .94;
}

.section-title--alt {
  font-family: var(--f-title);
  font-weight: 800;
  text-transform: none;
  font-size: clamp(2.2rem, 5.6vw, 3.7rem);
}

.section-lead {
  font-family: var(--f-sub);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  text-align: center;
  max-width: 780px;
  margin: 20px auto 0;
  opacity: .94;
}

.disclaimer {
  font-family: var(--f-body);
  font-size: .78rem;
  line-height: 1.5;
  opacity: .84;
  max-width: 860px;
  margin: 22px auto 0;
  text-align: center;
}

/* ------------------------------ BOTÕES -----------------------------
   Âmbar com texto preto: 11,6:1. É a combinação de maior contraste
   possível dentro da paleta da marca — e por isso vira o CTA. */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(.95rem, 1.5vw, 1.06rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 16px 40px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--amber-dark); }
.btn:active { transform: translateY(0); }

/* Em fundo âmbar o botão inverte: preto com texto âmbar. */
.bg-amber .btn { --btn-bg: var(--ink-900); --btn-fg: var(--amber); }
.bg-amber .btn:hover { background: var(--ink-700); }

.btn-row { display: flex; justify-content: center; margin-top: 46px; }

/* ================================ HERO ============================= */
.hero {
  position: relative;
  background: var(--ink-900);
  padding: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/loja-1.jpg') center/cover no-repeat;
  opacity: .22;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--ink-900) 8%, rgba(0,0,0,.9) 46%, rgba(20,20,20,.8) 100%);
}
.hero > .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0 72px;
}

.hero-logo { width: 236px; margin-bottom: 34px; }

.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.hero h1 .hl { color: var(--amber); display: block; }

.hero-sub {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.68rem);
  color: var(--white);
  margin-top: 24px;
}
.hero-sub .hl { color: var(--amber); }

.hero-terms {
  font-family: var(--f-sub);
  font-weight: 500;
  font-size: clamp(.95rem, 1.5vw, 1.06rem);
  color: var(--amber-soft);
  margin-top: 10px;
}

.hero-text {
  font-family: var(--f-body);
  font-size: 1.02rem;
  color: var(--off-white);
  margin-top: 20px;
  max-width: 56ch;
  opacity: .93;
}

.hero-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 26px;
}
.hero-badge {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: clamp(.76rem, 1.15vw, .87rem);
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(253,179,1,.6);
  background: rgba(253,179,1,.14);
  color: var(--white);
}

.hero-note {
  font-family: var(--f-body);
  font-size: .74rem;
  line-height: 1.5;
  color: var(--off-white);
  opacity: .68;
  margin-top: 30px;
  max-width: 62ch;
}

/* ---------------------------- FORMULÁRIO --------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  border-top: 6px solid var(--amber);
}
.form-card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  color: var(--ink-900);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-card__sub {
  font-family: var(--f-body);
  font-size: .86rem;
  text-align: center;
  color: #6B615A;
  margin-bottom: 20px;
}

.field { margin-bottom: 13px; }
.field label {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .8rem;
  color: var(--ink);
  margin-bottom: 5px;
}
/* 16px + 14px de padding valem em TODOS os tamanhos: garante alvo de
   toque de ~48px (tablet também é touch) e impede o zoom automático do
   iOS, que dispara em campo com fonte abaixo de 16px. */
.field input,
.field select {
  width: 100%;
  min-height: 48px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 14px;
  border: 1.5px solid #D9D0C6;
  border-radius: 9px;
  background: var(--white);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field select { appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23241F1C' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--amber-dark);
  box-shadow: 0 0 0 3px rgba(253,179,1,.28);
}
.field.is-invalid input,
.field.is-invalid select { border-color: var(--erro); background: #FFF6F5; }

.field__error {
  display: none;
  font-family: var(--f-body);
  font-size: .74rem;
  font-weight: 700;
  color: var(--erro);
  margin-top: 4px;
}
.field.is-invalid .field__error { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-card .btn { width: 100%; margin-top: 8px; padding: 16px 20px; }

.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: .87rem;
  font-weight: 700;
  text-align: center;
}
.form-status.is-ok   { display: block; background: #E7F6EC; color: #14672F; }
.form-status.is-fail { display: block; background: #FDECEA; color: var(--erro); }

.form-privacy {
  font-family: var(--f-body);
  font-size: .7rem;
  color: #7C726A;
  text-align: center;
  margin-top: 12px;
  line-height: 1.45;
}

/* ========================= A MAIOR — ALCANCE ======================= */
.mapa-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
  margin-top: 46px;
}
.mapa-grid img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

.big-stat {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  color: var(--amber);
  line-height: .92;
}
.big-stat small {
  display: block;
  font-family: var(--f-sub);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: var(--off-white);
  margin-top: 8px;
  letter-spacing: .01em;
}

.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  font-family: var(--f-sub);
  font-size: 1.02rem;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='%23000' d='M4.3 9.6.3 5.6l1.5-1.5 2.5 2.5L10.2.4l1.5 1.5z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ========================= GRID DE FORMATOS ======================== */
.lojas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.loja-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-800);
}
.loja-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s ease; }
.loja-card:hover img { transform: scale(1.05); }
.loja-card figcaption {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: .92rem;
  padding: 14px 16px;
  color: var(--amber);
  text-align: center;
}

/* ====================== CREDIBILIDADE / IMAGEM ===================== */
.figure-full {
  margin: 44px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1080px;
}

/* Alternância desktop/mobile para blocos cujo criativo tem texto
   embutido e ficaria ilegível quando reduzido.

   ATENÇÃO à especificidade: .so-mobile é (0,1,0), igual a .carreira.
   Como .carreira vem depois neste arquivo e define display:grid, ela
   vencia o empate e o bloco mobile aparecia TAMBÉM no desktop — o
   criativo oficial e os cards em HTML lado a lado, conteúdo duplicado.
   Por isso o par .carreira.so-mobile (0,2,0) precisa ser explícito nos
   dois estados. Qualquer bloco novo que use .so-mobile e tenha display
   próprio precisa da mesma dobradinha. */
.so-mobile  { display: none; }
.carreira.so-mobile { display: none; }
@media (max-width: 760px) {
  .so-desktop { display: none; }
  .so-mobile  { display: block; }
  .carreira.so-mobile { display: grid; }
}

/* --- Credibilidade ABF + imprensa, em HTML --- */
.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 46px;
}
.cred__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 880px;
}
.cred__item {
  font-family: var(--f-sub);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.07);
  border: 1.5px solid rgba(0,0,0,.2);
}
.cred__item strong { font-weight: 700; }
.cred__abf { width: min(230px, 60vw); }

/* --- Oferta em HTML para o mobile --- */
.oferta { margin-top: 40px; }
.oferta__box {
  background: var(--ink-900);
  border-radius: 20px;
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.oferta__label {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1rem, 4.6vw, 1.28rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}
.oferta__price {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 15vw, 4.4rem);
  color: var(--amber);
  line-height: 1;
  margin: 6px 0 2px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.oferta__price .cifrao { font-size: .34em; }
.oferta__price .cents  { font-size: .3em; align-self: flex-start; margin-top: .35em; }
.oferta__note {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.86rem, 3.6vw, 1rem);
  text-transform: uppercase;
  color: var(--white);
  opacity: .95;
}
.oferta__foto {
  width: 100%;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: var(--shadow-md);
}

/* ========================== COMO FUNCIONA ========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 52px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(253,179,1,.34);
  border-radius: var(--radius);
  padding: 46px 18px 24px;
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink-900);
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.step h3 {
  font-family: var(--f-sub);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 9px;
  text-transform: uppercase;
}
.step p { font-family: var(--f-body); font-size: .88rem; opacity: .9; }

/* =========================== SPLIT / TAGS ========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  margin-top: 46px;
}
.split--rev .split__media { order: 2; }

.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

.arg { margin-bottom: 26px; }
.arg h3 {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: 8px;
}
/* Em fundo claro o âmbar reprovaria: título vai preto. */
.bg-cream .arg h3, .bg-white .arg h3, .bg-amber .arg h3 { color: var(--ink-900); }
.arg p { font-family: var(--f-body); font-size: 1rem; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}
.tag {
  font-family: var(--f-tag);
  font-weight: 800;
  font-size: clamp(.84rem, 1.5vw, 1.02rem);
  letter-spacing: .2em;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--ink-900);
  color: var(--ink-900);
}
.bg-dark .tag, .bg-dark-mid .tag, .bg-black .tag {
  border-color: var(--amber);
  color: var(--amber);
}

/* ============================= FAIXA ============================== */
.faixa { padding: 46px 0; }
.faixa-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}
.faixa h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--amber);
  text-transform: uppercase;
}
.faixa p { font-family: var(--f-body); font-size: 1rem; margin-top: 10px; opacity: .93; }
.faixa strong { color: var(--amber-soft); }

.faixa-icon {
  width: 86px; height: 86px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(253,179,1,.16);
  border: 2px solid var(--amber);
  font-size: 2.3rem;
}

/* ============================ APP EXCLUSIVO =======================
   Bloco que não existe no modelo: é um diferencial real da Crepefy
   (app próprio, que tira a operação das taxas de marketplace). */
.app-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
  margin-top: 44px;
}
.app-selo {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--amber);
  margin-bottom: 18px;
}
.app-grid img { border-radius: var(--radius); }

/* ========================= PLANO DE CARREIRA ======================= */
.carreira {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: end;
}
.carreira-card {
  background: var(--white);
  border-radius: 22px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.carreira-card:nth-child(1) { margin-bottom: 0; }
.carreira-card:nth-child(2) { margin-bottom: 26px; }
.carreira-card:nth-child(3) { margin-bottom: 52px; }

.carreira-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.carreira-card h3 {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.carreira-card h3 .papel { color: var(--amber-dark); display: block; }
.carreira-card .valor {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink-900);
}
.carreira-card .valor small {
  display: block;
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink);
  opacity: .78;
  margin-top: 2px;
}
.carreira-card .prazo {
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 700;
  color: #5C544E;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1.5px solid #E7DFD6;
}

/* ============================= NÚMEROS ============================= */
.numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.numero-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(253,179,1,.32);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.numero-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.numero-card .n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: var(--amber);
  line-height: 1;
}
.numero-card .l {
  font-family: var(--f-sub);
  font-size: .95rem;
  margin-top: 10px;
  opacity: .95;
}

/* =========================== FRANQUEADOS ========================== */
.franq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.franq-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-800);
}
.franq-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.franq-card figcaption {
  font-family: var(--f-sub);
  font-size: .95rem;
  padding: 16px 18px;
  color: var(--off-white);
  text-align: center;
}

/* ============================ IMPRENSA =============================
   Cards são <div>, nunca <a>: prova social não pode virar porta de
   saída para o site de um veículo. */
.imprensa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.imprensa-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.imprensa-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.imprensa-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; }
.imprensa-card span {
  display: block;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  text-align: center;
  padding: 16px 12px;
}

/* ============================ CARROSSEL =========================== */
.carousel { position: relative; margin-top: 46px; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.carousel__track::-webkit-scrollbar { height: 7px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 99px; }
.carousel__track img {
  scroll-snap-align: start;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.carousel__btn {
  position: absolute;
  top: calc(50% - 26px);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--amber);
  color: var(--ink-900);
  font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow-md);
  transition: background .18s ease;
}
.carousel__btn:hover { background: var(--amber-dark); }
.carousel__btn--prev { left: -14px; }
.carousel__btn--next { right: -14px; }

/* =========================== DEPOIMENTOS ========================== */
.video-main {
  max-width: 880px;
  margin: 46px auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 30px auto 0;
}
.video-grid > div {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-900);
}
.video-main iframe, .video-grid iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================== FOOTER ============================
   Rodapé propositalmente sem nenhum link: a página é fechada e o único
   caminho de saída é o envio do formulário. */
.footer {
  background: var(--ink-900);
  color: var(--off-white);
  padding: 40px 0 18px;
  border-top: 4px solid var(--amber);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.footer-logo { width: 150px; }
.footer-abf  { width: 132px; opacity: .9; }
.footer-tag {
  font-family: var(--f-sub);
  font-weight: 500;
  font-size: .98rem;
  opacity: .92;
}
.footer-end {
  font-family: var(--f-body);
  font-size: .86rem;
  line-height: 1.6;
  opacity: .8;
  max-width: 66ch;
}
.footer-bottom {
  border-top: 1px solid rgba(250,250,250,.13);
  margin-top: 24px; padding-top: 16px;
  text-align: center;
  font-family: var(--f-body);
  font-size: .78rem;
  opacity: .72;
}

/* ========================= PÁGINA DE OBRIGADO ===================== */
.pagina-obrigado { background: var(--cream); }

.obrigado {
  background: var(--cream);
  color: var(--ink);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.obrigado::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/padrao-crepefy.jpg') center bottom/cover no-repeat;
  opacity: .28;
}
.obrigado > .wrap { position: relative; z-index: 2; }

/* Logo PRETO aqui: a versão oficial da marca é branca (negativa) e
   sumiria neste fundo creme. */
.obrigado__logo { width: 190px; margin: 0 auto 30px; }

.obrigado__selo { width: 92px; margin: 0 auto 22px; }
.obrigado__selo svg { width: 100%; height: auto; }
.selo-anel  { fill: none; stroke: var(--ink-900); stroke-width: 3; opacity: .3; }
.selo-check {
  fill: none; stroke: var(--ink-900); stroke-width: 5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 44; stroke-dashoffset: 44;
  animation: risca .55s .2s ease forwards;
}
@keyframes risca { to { stroke-dashoffset: 0; } }

.obrigado__titulo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 5.6vw, 3.1rem);
  color: var(--ink-900);
  text-transform: uppercase;
}
.obrigado__lead {
  font-family: var(--f-sub);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 54ch;
  margin: 16px auto 0;
  opacity: .95;
}

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
  text-align: left;
}
.passo {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.passo__n {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink-900);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.passo h2 {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.passo p { font-family: var(--f-body); font-size: .93rem; opacity: .88; }

.obrigado__aviso {
  margin-top: 34px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--amber);
  border: 1.5px solid var(--amber-dark);
}
.obrigado__aviso p { font-family: var(--f-body); font-size: .96rem; color: var(--ink-900); }
.obrigado__aviso strong { font-weight: 700; }

.obrigado__numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.obrigado__numeros > div {
  padding: 22px 16px;
  border-radius: var(--radius);
  background: var(--ink-900);
}
.obrigado__numeros .n {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  color: var(--amber);
  line-height: 1.1;
}
.obrigado__numeros .l {
  display: block;
  font-family: var(--f-body);
  font-size: .86rem;
  color: var(--off-white);
  opacity: .9;
  margin-top: 6px;
}

.obrigado__disclaimer {
  font-family: var(--f-body);
  font-size: .76rem;
  opacity: .7;
  margin-top: 24px;
  max-width: 70ch;
  margin-inline: auto;
}

@media (max-width: 760px) {
  .passos, .obrigado__numeros { grid-template-columns: 1fr; }
  .obrigado { padding: 44px 0 52px; }
  .obrigado__logo { width: 150px; margin-bottom: 22px; }
}

/* ============================ ANIMAÇÃO ===========================
   O estado inicial invisível só é aplicado quando o JS está rodando
   (classe .js no <html>). Sem JS, todo o conteúdo aparece normalmente
   — uma LP de conversão nunca pode depender de script para ser lida. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================ RESPONSIVO ========================== */
@media (max-width: 1000px) {
  .section { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 56px; }
  .hero-logo { width: 200px; }
  .mapa-grid, .split, .app-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .numeros { grid-template-columns: repeat(2, 1fr); }
  .carreira { grid-template-columns: 1fr; }
  .carreira-card:nth-child(n) { margin-bottom: 0; }
  .imprensa { grid-template-columns: 1fr; }
  .franq-grid { grid-template-columns: 1fr; }
  .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .carousel__btn--prev { left: 4px; }
  .carousel__btn--next { right: 4px; }
}

@media (max-width: 760px) {
  /* Abaixo de 760px os selos não cabem numa linha: deixa quebrar
     centralizado, o que lê melhor do que encolher a fonte. */
  .hero-bar { flex-wrap: wrap; gap: 9px; padding-top: 20px; }
  .hero-badge { font-size: .8rem; padding: 8px 14px; }

  /* ---------------------------------------------------------------
     CENTRALIZAÇÃO NO MOBILE
     Numa coluna estreita, texto encostado à esquerda com o logo solto
     num canto fica desequilibrado. Tudo que é título, destaque ou
     parágrafo curto passa a ser centralizado.
     --------------------------------------------------------------- */
  .hero-copy { text-align: center; }
  .hero-logo { margin-inline: auto; }
  .hero-text, .hero-note { margin-inline: auto; }

  .section-title--esq { text-align: center; }
  .section-texto { text-align: center; }

  .big-stat { text-align: center; }
  .arg { text-align: center; }
  .app-texto { text-align: center; }

  /* A lista mantém o texto à esquerda — centralizar desalinharia os
     ícones de check e viraria uma escada. Em vez disso, o bloco
     inteiro é que fica centralizado na tela. */
  .check-list {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .field label { font-size: .85rem; }
  .cred__grid { grid-template-columns: 1fr; }
  .cred__item { font-size: .95rem; padding: 16px 16px; }
  .disclaimer { font-size: .82rem; }
  .hero-note  { font-size: .78rem; }
  .form-privacy { font-size: .78rem; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  .section { padding: 48px 0; }
  .lojas-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 38px; }
  .numeros { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .faixa-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .faixa-icon { margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; }
  .carousel__track { grid-auto-columns: 78%; }
  .btn { padding: 15px 26px; width: 100%; }
  .btn-row { margin-top: 34px; }
  .form-card { padding: 24px 20px 22px; }
}
