/* =====================================================================
   LP MR. CHENEY — SEJA FRANQUEADO
   Identidade visual extraída de mrcheneyoficial.com.br/sejafranqueado
   Arquitetura de conversão baseada em expansao.premiapao.com.br
   ===================================================================== */

/* ------------------------------- FONTES ---------------------------- */
@font-face {
  font-family: 'Cheney Display';
  src: url('../fonts/brand-display.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Cheney Title';
  src: url('../fonts/brand-title.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Cheney Sub';
  src: url('../fonts/brand-sub.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Cheney Body';
  src: url('../fonts/brand-body.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}

/* ------------------------------- TOKENS ---------------------------- */
:root {
  /* Marrons — escala derivada do #4E260C da marca */
  --brown-900: #2B1406;
  --brown-800: #3A1C08;
  --brown-700: #4E260C;
  --brown-600: #6B3410;
  --brown-500: #8A4415;

  /* Acentos */
  --coral:      #FA5C3C;
  --coral-dark: #DD2803;
  --gold:       #E8C9A0;

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

  /* Tipografia */
  --f-display: 'Cheney Display', 'Barlow', 'Arial Narrow', sans-serif;
  --f-title:   'Cheney Title', 'Barlow', sans-serif;
  --f-sub:     'Cheney Sub', 'Barlow', sans-serif;
  --f-body:    'Cheney Body', 'Barlow', system-ui, sans-serif;
  --f-tag:     'Montserrat', 'Barlow', sans-serif;

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

  --shadow-sm: 0 4px 14px rgba(43, 20, 6, .14);
  --shadow-md: 0 14px 38px rgba(43, 20, 6, .22);
  --shadow-lg: 0 26px 64px rgba(43, 20, 6, .34);
}

/* ------------------------------- 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(--brown-700);
  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.06; font-family: var(--f-display); font-weight: 700; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--coral);
  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 — espelha a alternância da LP de referência */
.bg-brown     { background: var(--brown-700); color: var(--off-white); }
.bg-brown-mid { background: var(--brown-600); color: var(--off-white); }
.bg-brown-dk  { background: var(--brown-800); color: var(--off-white); }
.bg-cream     { background: var(--cream);     color: var(--ink); }
.bg-white     { background: var(--white);     color: var(--ink); }
/* No fundo coral o texto corrido vai em marrom escuro: branco sobre coral
   dá 3,15:1, que só passa em texto grande. Marrom-900 dá 5,5:1. */
.bg-coral     { background: var(--coral);     color: var(--brown-900); }

/* ---------------------------- TÍTULOS ------------------------------ */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  letter-spacing: -.01em;
  text-align: center;
  color: var(--coral);
  text-transform: uppercase;
}
.bg-cream .section-title,
.bg-white .section-title { color: var(--brown-700); }
.bg-coral .section-title { color: var(--white); }

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

/* Variante com a segunda fonte de display da marca — é a que o site
   oficial usa em "Loja Mr. Cheney 3 em 1" e "Plano de carreira". */
.section-title--alt {
  font-family: var(--f-title);
  text-transform: none;
  font-size: clamp(2.3rem, 5.6vw, 3.9rem);
}

.section-lead {
  font-family: var(--f-sub);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  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 ----------------------------- */
.btn {
  --btn-bg: var(--coral);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 17px 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(--coral-dark); }
.btn:active { transform: translateY(0); }

.btn--dark  { --btn-bg: var(--brown-700); }
.btn--dark:hover { background: var(--brown-800); }

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

/* ================================ HERO ============================= */
.hero {
  position: relative;
  background: var(--brown-700);
  padding: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: .2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--brown-700) 8%, rgba(78,38,12,.9) 46%, rgba(58,28,8,.78) 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: 232px; margin-bottom: 34px; }

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.1vw, 3.28rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.015em;
}
.hero h1 .hl { color: var(--coral); display: block; }

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

/* Condição de pagamento — anda junto do valor para os dois nunca
   serem lidos como números concorrentes. */
.hero-terms {
  font-family: var(--f-sub);
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: var(--gold);
  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-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-badge {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(250,92,60,.55);
  background: rgba(250,92,60,.12);
  color: var(--white);
}

.hero-abf { margin-top: 32px; width: 190px; opacity: .95; }

.hero-note {
  font-family: var(--f-body);
  font-size: .74rem;
  line-height: 1.5;
  color: var(--off-white);
  opacity: .68;
  margin-top: 22px;
  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);
}
.form-card__title {
  font-family: var(--f-display);
  font-size: 1.42rem;
  text-align: center;
  color: var(--brown-700);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-card__sub {
  font-family: var(--f-body);
  font-size: .86rem;
  text-align: center;
  color: #6A5B52;
  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 campos com fonte abaixo de 16px. */
.field input,
.field select {
  width: 100%;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 14px;
  border: 1.5px solid #D8CCC2;
  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='%234E260C' 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(--coral);
  box-shadow: 0 0 0 3px rgba(250,92,60,.16);
}
.field.is-invalid input,
.field.is-invalid select { border-color: var(--coral-dark); background: #FFF6F4; }

.field__error {
  display: none;
  font-family: var(--f-body);
  font-size: .74rem;
  font-weight: 700;
  color: var(--coral-dark);
  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: #FDECE8; color: var(--coral-dark); }

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

/* ========================= A MAIOR — MAPA ========================== */
.mapa-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
  margin-top: 46px;
}
.mapa-grid img { filter: drop-shadow(0 18px 40px rgba(0,0,0,.32)); }

.big-stat {
  font-family: var(--f-display);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  color: var(--coral);
  line-height: .92;
}
.big-stat small {
  display: block;
  font-family: var(--f-sub);
  font-size: clamp(1rem, 2vw, 1.32rem);
  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(--coral) 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='%23fff' 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 LOJAS =========================== */
.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(--brown-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(--off-white);
  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. */
.so-mobile  { display: none; }
@media (max-width: 760px) {
  .so-desktop { display: none; }
  .so-mobile  { display: block; }
}

/* --- Credibilidade Bradesco + ABF, em HTML (era imagem única) --- */
.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 46px;
}
.cred__logo { width: min(300px, 72vw); }

.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(255,255,255,.07);
  border: 1.5px solid rgba(250,92,60,.32);
}
.cred__abf { width: min(230px, 60vw); opacity: .95; }

/* --- Oferta em HTML para o mobile --- */
.oferta { margin-top: 40px; }
.oferta__box {
  background: #CC6E3C;
  border-radius: 20px;
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.oferta__label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1rem, 4.6vw, 1.3rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}
.oferta__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 15vw, 4.4rem);
  color: var(--white);
  line-height: 1;
  margin: 6px 0 2px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.oferta__price .cifrao { font-size: .34em; color: var(--gold); }
.oferta__price .cents  { font-size: .3em; align-self: flex-start; margin-top: .35em; }
.oferta__note {
  font-family: var(--f-display);
  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,.07);
  border: 1.5px solid rgba(250,92,60,.32);
  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(--coral);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 1.32rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
/* 1.18rem (18,9px) em negrito conta como "texto grande" na WCAG, faixa em
   que o coral sobre marrom (3,1:1) passa em AA. Abaixo disso, reprovaria. */
.step h3 {
  font-family: var(--f-sub);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 9px;
  text-transform: uppercase;
}
.step p { font-family: var(--f-body); font-size: .88rem; opacity: .9; }

/* ========================== 3 EM 1 / 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-size: 1.2rem;
  color: var(--coral);
  margin-bottom: 8px;
}
.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: 700;
  font-size: clamp(.86rem, 1.5vw, 1.05rem);
  letter-spacing: .22em;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--brown-700);
  color: var(--brown-700);
}
.bg-brown .tag, .bg-brown-mid .tag, .bg-brown-dk .tag {
  border-color: var(--coral);
  color: var(--white);
}

/* ============================= 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-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--coral);
  text-transform: uppercase;
}
.faixa p { font-family: var(--f-body); font-size: 1rem; margin-top: 10px; opacity: .93; }
.faixa strong { color: var(--gold); }

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

/* ========================= 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-size: 1.1rem;
  color: var(--brown-700);
  margin-bottom: 14px;
}
.carreira-card .valor {
  font-family: var(--f-display);
  font-size: 1.85rem;
  color: var(--coral-dark);
}
.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: var(--brown-600);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1.5px solid #E7DCD2;
}

/* ============================= NÚMEROS ============================= */
.numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.numero-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(250,92,60,.3);
  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(--coral); }
.numero-card .n {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  color: var(--coral);
  line-height: 1;
}
.numero-card .l {
  font-family: var(--f-sub);
  font-size: .96rem;
  margin-top: 10px;
  opacity: .95;
}

/* ============================ IMPRENSA ============================= */
.imprensa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.imprensa-card {
  display: block;
  text-decoration: none;
  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(--brown-700);
  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(--coral); 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(--coral);
  color: var(--white);
  font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow-md);
  transition: background .18s ease;
}
.carousel__btn:hover { background: var(--coral-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(--brown-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(--brown-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(--brown-900); color: var(--off-white); padding: 40px 0 18px; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
/* Logo da marca e selo ABF lado a lado, para o rodapé não virar uma
   coluna comprida de imagens empilhadas. */
.footer-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.footer-logo { width: 104px; }
.footer-abf  { width: 132px; opacity: .9; }
.footer-tag {
  font-family: var(--f-sub);
  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;
}

/* ============================ 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: 190px; }
  .mapa-grid, .split { 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; }
  .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .carousel__btn--prev { left: 4px; }
  .carousel__btn--next { right: 4px; }
}

@media (max-width: 760px) {
  .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; }
}
