/* =====================================================
   CAFÉ DO PONTO · Franquias
   Identidade oficial — Tisa Sans Pro + paleta CDP
   Minimalista, limpa, sem grão ou gradientes berrantes
   ===================================================== */

/* ---------- FONTES OFICIAIS ---------- */
@font-face{ font-family:"Tisa Sans Pro"; font-weight:500; font-style:normal; font-display:swap; src:url("../fonts/Tisa_Sans_Pro_Medium.ttf")    format("truetype"); }
@font-face{ font-family:"Tisa Sans Pro"; font-weight:700; font-style:normal; font-display:swap; src:url("../fonts/Tisa_Sans_Pro_Bold.ttf")      format("truetype"); }
@font-face{ font-family:"Tisa Sans Pro"; font-weight:800; font-style:normal; font-display:swap; src:url("../fonts/Tisa_Sans_Pro_ExtraBold.ttf") format("truetype"); }
@font-face{ font-family:"Tisa Sans Pro"; font-weight:500; font-style:italic; font-display:swap; src:url("../fonts/Tisa_Sans_Pro_Italic.ttf")    format("truetype"); }

:root {
  /* Paleta oficial CDP */
  --bg:        #F7F7F7;   /* fundo geral */
  --body:      #888888;   /* texto corpo */
  --ink:       #231F20;   /* Preto CDP — títulos longos */
  --red:       #ED3E41;   /* Vermelho CDP — capítulos / destaques */
  --red-deep:  #C92E31;   /* variação sutil p/ hover */
  --white:     #FFFFFF;
  --line:      #E3E3E3;
  --ink-2:     #312B2C;   /* superfície escura levemente mais clara */

  --f: "Tisa Sans Pro", -apple-system, system-ui, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --sec-y: clamp(64px, 8vw, 128px);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 22px;
  --shadow-card: 0 1px 0 rgba(35,31,32,.04), 0 18px 40px -24px rgba(35,31,32,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f);
  font-weight: 500;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: var(--white); }

/* ---------- TIPOGRAFIA DE MARCA ---------- */
.container { width: min(var(--maxw), 92vw); margin: 0 auto; }

/* Capítulo curto: CAIXA ALTA, espaçamento, Bold, vermelho */
.chapter, .kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 16px;
}

/* Título longo: Extra Bold, Preto CDP */
.h-display {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 22ch;
}
.h-display em { font-style: normal; color: var(--red); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--xl { padding: 20px 36px; font-size: 1.1rem; }
.btn--block { width: 100%; }

.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  transform: translateY(-2px);
  background: var(--red-deep);
  box-shadow: 0 12px 30px rgba(237,62,65,.36);
}
.btn--red:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

/* Botão branco sobre fundo escuro/vermelho (sim card) */
.btn--onred {
  background: var(--white);
  color: var(--ink);
}
.btn--onred:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.3); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247,247,247,.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  padding: 9px 0;
}
.nav__inner {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { height: 65px; width: auto; border-radius: 5px; }
.nav.is-scrolled .nav__logo { height: 55px; }
.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-size: .88rem; font-weight: 700; white-space: nowrap;
  color: rgba(255,255,255,.88);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--red); }
.nav.is-scrolled .nav__links a:hover { color: var(--red); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--red); transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
@media (max-width: 1024px) { .nav__links { display: none; } }

/* ===== HERO (full-bleed com imagem de fundo) ===== */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 72px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,21,22,.74) 0%, rgba(24,21,22,.82) 55%, rgba(24,21,22,.95) 100%);
}
.hero__inner {
  position: relative;
  width: min(900px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 14px; animation: fadeUp .8s .05s both; }
.chapter--onred { color: var(--red); }
.hero__title {
  font-weight: 800;
  font-size: clamp(46px, 7vw, 104px);
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
  animation: fadeUp .9s .15s both;
}
.hero__title em { font-style: normal; }
.hero__lede {
  max-width: 52ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 22px auto 0;
  animation: fadeUp .9s .3s both;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 30px;
  animation: fadeUp .9s .45s both;
}

/* Botão ghost para fundo escuro */
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* HERO strip (sobre o fundo escuro) */
.hero__strip {
  margin: 44px auto 0;
  padding: 18px 28px;
  display: inline-flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp .9s .6s both;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__strip-item {
  display: flex; flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero__strip-item:last-child { border-right: none; padding-right: 0; }
.hero__strip-item strong { font-weight: 800; font-size: 1.5rem; color: var(--red); line-height: 1; }
.hero__strip-item span { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 7px; }

@keyframes kenBurns {
  0% { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .hero { padding: 120px 0 56px; }
  .hero__strip { width: 100%; gap: 0; row-gap: 16px; padding: 18px; }
  .hero__strip-item { flex: 1 1 33%; padding-right: 12px; align-items: center; text-align: center; }
  .hero__strip-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
}

/* ===== MOMENTO / HISTÓRIA + VÍDEO ===== */
.momento { background: var(--bg); padding: var(--sec-y) 0; }
.momento__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 64px;
  align-items: center;
}
.momento__copy { max-width: 600px; }
.momento__lede { font-size: 1.15rem; color: var(--ink); font-weight: 700; margin: 0 0 18px; }
.momento__close { font-size: 1rem; color: var(--body); margin: 0 0 28px; max-width: 52ch; }

.momento__video {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  justify-self: center; width: 100%; max-width: 340px;
}
.momento__vlabel {
  position: absolute; top: 14px; left: -38px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: .68rem; font-weight: 700; letter-spacing: .24em;
  color: var(--red); text-transform: uppercase;
}
.momento__videoframe {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 60px -24px rgba(35,31,32,.45);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.momento__videoframe:hover { transform: translateY(-4px); }
.momento__videoframe iframe { width: 100%; height: 100%; border: 0; display: block; }
.momento__poster {
  position: relative; display: block;
  width: 100%; height: 100%;
  background: var(--ink); border: none; cursor: pointer; padding: 0; overflow: hidden;
}
.momento__poster img {
  width: 100%; height: 100%; object-fit: cover; opacity: .82;
  transition: transform .8s cubic-bezier(.2,.7,.3,1), opacity .3s;
}
.momento__poster:hover img { transform: scale(1.06); opacity: 1; }
.momento__poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(35,31,32,.82)); pointer-events: none;
}
.momento__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -8px rgba(237,62,65,.55), 0 0 0 8px rgba(237,62,65,.16);
  transition: transform .3s; z-index: 2;
}
.momento__play::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid var(--red); opacity: .5; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { from { transform: scale(.95); opacity: .5; } to { transform: scale(1.4); opacity: 0; } }
.momento__poster:hover .momento__play { transform: translate(-50%, -50%) scale(1.06); }
.momento__poster svg { margin-left: 4px; }
.momento__poster-meta { position: absolute; left: 20px; right: 20px; bottom: 20px; text-align: left; z-index: 2; }
.momento__poster-meta small { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .16em; color: var(--white); opacity: .85; text-transform: uppercase; margin-bottom: 5px; }
.momento__poster-meta strong { display: block; font-weight: 800; font-size: 1.05rem; color: var(--white); line-height: 1.2; }
.momento__videofoot { display: flex; align-items: center; gap: 9px; padding: 0 2px; }
.momento__videofoot small { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--body); }

.dot { display: inline-block; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

@media (max-width: 880px) {
  .momento__grid { grid-template-columns: 1fr; gap: 44px; }
  .momento__video { max-width: 300px; }
  .momento__vlabel { left: auto; right: -34px; }
}

/* ===== TIMELINE ===== */
.heritage { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.heritage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.heritage__intro { font-size: 1rem; color: var(--body); max-width: 44ch; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 88px; top: 12px; bottom: 12px; width: 2px;
  background: var(--line);
}
.timeline li { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 13px 0; position: relative; }
.timeline li::before {
  content: ''; position: absolute; left: 84px; top: 20px;
  width: 9px; height: 9px; background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white);
}
.timeline span { font-weight: 800; font-size: .9rem; color: var(--red); padding-top: 2px; text-align: right; }
.timeline p { margin: 0; padding-left: 26px; color: var(--ink); font-size: .95rem; }
@media (max-width: 880px) { .heritage__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== JDE PEET'S ===== */
.jde { background: var(--bg); padding: var(--sec-y) 0; }
.jde__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.jde__body { font-size: 1.02rem; color: var(--body); max-width: 52ch; }
.jde__chips-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 0 0 12px; }
.jde__chips-label + .chips { margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .82rem; font-weight: 700; color: var(--ink);
  transition: border-color .2s, color .2s, transform .2s;
}
.chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
@media (max-width: 880px) { .jde__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== NÚMEROS / VISÃO GERAL (slide 9 sellbook) ===== */
.numbers { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); }
.numbers__head { max-width: 900px; margin-bottom: clamp(40px, 5vw, 64px); }
.numbers .h-display { color: var(--ink); }
.numbers__sub { font-size: 1.1rem; color: var(--body); max-width: 780px; }
.numbers__sub strong { color: var(--ink); font-weight: 800; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: clamp(24px, 4vw, 48px);
}
.num {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 22px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.num:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.num__fig { display: flex; flex-direction: column; align-items: center; line-height: .92; }
.num__big { font-weight: 800; font-size: clamp(52px, 5.4vw, 74px); color: var(--red); letter-spacing: -0.02em; }
.num__unit { font-weight: 800; font-size: clamp(19px, 2vw, 27px); color: var(--red); margin-top: 4px; line-height: 1.05; }
.num__label { font-weight: 800; font-size: 1rem; color: var(--ink); margin: 0; line-height: 1.3; }
@media (max-width: 900px) { .numbers__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .numbers__grid { grid-template-columns: 1fr; } }

/* ===== OPORTUNIDADE ===== */
.opportunity { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); }
.opportunity__head { max-width: 900px; margin-bottom: 36px; }
.opportunity__head h2 { max-width: none; }
.opportunity__head--mt { margin-top: 32px; }
.opportunity__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ocard {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s;
}
.ocard:hover { transform: translateY(-4px); }
.ocard__num { font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--red); letter-spacing: -0.02em; }
.ocard strong { font-weight: 800; font-size: 1.05rem; color: var(--white); }
.ocard p { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }
.ocard--light { background: var(--white); border: 1px solid var(--line); }
.ocard--light strong { color: var(--ink); }
.ocard--light .ocard__num { color: var(--red); }
.opportunity__src { font-size: .76rem; color: var(--body); margin-top: 16px; }
@media (max-width: 820px) { .opportunity__cards { grid-template-columns: 1fr; } }

/* ===== WHY ===== */
.why { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); }
.why__head { max-width: 640px; margin-bottom: 48px; }
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.card h3 { font-weight: 800; font-size: 1.05rem; color: var(--ink); margin: 0 0 8px; line-height: 1.2; }
.card p { font-size: .86rem; line-height: 1.4; color: var(--body); margin: 0; }
.card--red { background: var(--red); border-color: var(--red); }
.card--red h3 { color: var(--white); }
.card--red p { color: rgba(255,255,255,.88); }
/* Card com a bandeira sobreposta ao topo (badge flutuante, fora do fluxo) */
.card--flag { position: relative; }
.card--flag .card__flag {
  position: absolute;
  left: 20px; right: 20px;
  top: -34px;
  display: block;
  background: var(--red); color: var(--white);
  font-weight: 800; font-size: .84rem; line-height: 1.3;
  padding: 10px 14px; border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px -8px rgba(237,62,65,.5);
}
/* Selo ABF (extraído do Sell Book) + setinha — header em flex */
.why__head { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; max-width: none; margin-bottom: 48px; }
.why__head-text { flex: 1 1 380px; max-width: 690px; margin-top: 24px; }
.why__head-text .kicker { white-space: nowrap; }
@media (max-width: 720px) { .why__head-text .kicker { white-space: normal; } }
.why__seal { position: relative; flex: 0 1 400px; min-width: 210px; align-self: center; pointer-events: none; }
.why__seal img { width: 100%; height: auto; display: block; filter: drop-shadow(0 12px 26px rgba(31,42,68,.30)); }
.why__seal-arrow { display: none; }
@media (min-width: 1283px) { .why__seal-arrow { right: -40px; } }
@media (max-width: 720px) { .why__seal { display: none; } }
@media (max-width: 880px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
  /* Em grade de 2 ou 1 coluna a bandeira flutuante colidiria com o card acima; volta ao fluxo normal */
  .card--flag .card__flag {
    position: static;
    left: auto; right: auto; top: auto;
    margin: 0 0 12px;
  }
}
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

/* ===== SIMULADOR ===== */
.sim { background: var(--bg); padding: var(--sec-y) 0; }
.sim__head { max-width: 760px; margin-bottom: 44px; }
.sim__sub { font-size: 1rem; color: var(--body); max-width: 60ch; }
.sim__layout {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 32px; align-items: start; max-width: 1060px; margin: 0 auto;
}
.sim__controls {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px 28px 18px;
  box-shadow: var(--shadow-card);
}
.sim__tabs { display: flex; gap: 6px; background: var(--bg); border-radius: 999px; padding: 4px; margin-bottom: 24px; }
.sim__tab {
  flex: 1; background: transparent; border: none;
  padding: 9px 12px; border-radius: 999px;
  font-family: var(--f); font-size: .82rem; font-weight: 800; color: var(--body);
  cursor: pointer; transition: background .25s, color .25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
}
.sim__tab.is-active { background: var(--ink); color: var(--white); }
.sim__tab .dot { width: 6px; height: 6px; }
.slider { margin-bottom: 20px; }
.slider__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.slider__head label { font-weight: 800; font-size: .92rem; color: var(--ink); }
.slider__head output { font-weight: 800; font-size: 1.4rem; color: var(--red); letter-spacing: -0.02em; }
.slider small { display: block; font-size: .76rem; color: var(--body); margin-bottom: 10px; }

input[type='range'] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; background: var(--line);
  border-radius: 999px; outline: none; cursor: pointer;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--red);
  cursor: pointer; transition: transform .2s;
  box-shadow: 0 4px 10px -3px rgba(35,31,32,.35);
}
input[type='range']::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type='range']::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--red); cursor: pointer;
}
.slider__scale { display: flex; justify-content: space-between; font-size: .7rem; font-weight: 700; color: var(--body); margin-top: 5px; letter-spacing: .06em; }

.sim__resultCard {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-xl); padding: 30px;
  position: sticky; top: 92px; overflow: hidden;
  box-shadow: 0 28px 56px -22px rgba(35,31,32,.5);
}
.sim__resultCard header .chapter--onred { color: var(--red); }
.sim__resultCard h3 { font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.sim__big { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 10px; }
.sim__big-currency { font-weight: 800; font-size: 1.5rem; color: var(--red); padding-top: 8px; }
.sim__big-num { font-weight: 800; font-size: clamp(44px, 5.2vw, 68px); line-height: .95; color: var(--white); letter-spacing: -0.03em; }
.sim__delta { display: flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; color: var(--red); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; }
.sim__delta .up { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: rgba(237,62,65,.2); border-radius: 50%; }
.sim__breakdown {
  display: grid; gap: 12px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 22px;
}
.sim__breakdown > div { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.sim__breakdown small { font-size: .84rem; color: rgba(255,255,255,.7); flex: 1; }
.sim__breakdown strong { font-weight: 800; font-size: 1.05rem; color: var(--white); }
.sim__breakdown strong.net { color: var(--red); font-size: 1.25rem; }
.sim__disclaimer { font-size: .72rem; color: rgba(255,255,255,.55); margin: 14px 0 0; line-height: 1.5; }
.sim__sources { display: grid; gap: 6px; margin-top: 16px; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); }
.sim__sources span { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--red); }
.sim__sources small { font-size: .8rem; color: var(--body); line-height: 1.5; }
@media (max-width: 960px) { .sim__layout { grid-template-columns: 1fr; gap: 24px; } .sim__resultCard { position: static; } }

/* ===== QUALIDADE (slide 4 sellbook) ===== */
.quality { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); }
.quality__grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: 48px; align-items: start; }
.quality__body { font-size: 1rem; color: var(--body); max-width: 56ch; margin: 0 0 16px; }
.quality__body b { color: var(--ink); font-weight: 800; }
.quality__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.quality__shots img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); display: block; border: 1px solid var(--line); }
.quality__photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.quality__photo img { width: 100%; height: auto; display: block; }
.quality__regional { margin-top: 28px; }
.quality__regional h3 { font-weight: 800; font-size: 1.6rem; color: var(--red); margin: 0 0 12px; }
.quality__regional p { font-size: .9rem; color: var(--body); margin: 0 0 14px; }
.quality__regional p b { color: var(--ink); font-weight: 800; }
.quality__terroirs { font-weight: 800; font-size: 1.12rem; color: var(--ink); margin: 0; letter-spacing: .01em; }
@media (max-width: 880px) { .quality__grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 460px) { .quality__shots { grid-template-columns: 1fr; } }

/* ===== MODELOS ===== */
.models { background: var(--bg); padding: var(--sec-y) 0; }
.models__head { max-width: 640px; margin-bottom: 44px; }
.models__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.model {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.model:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.model header { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.model h3 { font-weight: 800; font-size: 1.5rem; color: var(--ink); margin: 0; }
.model__area { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--body); }
.model__price small { display: block; font-size: .78rem; color: var(--body); margin-bottom: 2px; }
.model__price strong { font-weight: 800; font-size: clamp(32px, 3.4vw, 42px); color: var(--red); letter-spacing: -0.02em; }
.model__list { list-style: none; margin: 0; padding: 0; }
.model__list li { display: flex; justify-content: space-between; font-size: .86rem; padding: 9px 0; border-top: 1px solid var(--line); color: var(--body); }
.model__list li:last-child { border-bottom: 1px solid var(--line); }
.model__list li span:last-child { color: var(--ink); font-weight: 800; }
.model__list li.hi span:last-child { color: var(--red); }
.model--feature { background: var(--ink); border-color: var(--ink); }
.model--feature h3 { color: var(--white); }
.model--feature .model__area { color: rgba(255,255,255,.6); }
.model--feature .model__price small { color: rgba(255,255,255,.6); }
.model--feature .model__list li { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.12); }
.model--feature .model__list li span:last-child { color: var(--white); }
.model--feature .model__list li.hi span:last-child { color: var(--red); }
.model--feature .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.model--feature .btn--ghost:hover { background: var(--white); color: var(--ink); }
.models__foot { margin-top: 24px; font-size: .78rem; color: var(--body); text-align: center; }
@media (max-width: 820px) { .models__grid { grid-template-columns: 1fr; } }

/* ===== PORTFÓLIO (slide sellbook) ===== */
.portfolio { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid var(--line); }
.portfolio__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center; }
.portfolio__list { display: grid; gap: 22px; margin-top: 6px; }
.prodcat h3 { font-weight: 800; font-size: 1.05rem; color: var(--ink); margin: 0 0 4px; }
.prodcat p { font-size: .95rem; color: var(--body); margin: 0; max-width: 42ch; }
.portfolio__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.portfolio__gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-md); display: block; transition: transform .3s; }
.portfolio__gallery img:hover { transform: scale(1.03); }
@media (max-width: 880px) { .portfolio__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 460px) { .portfolio__gallery { grid-template-columns: 1fr 1fr; } }

/* ===== A REDE ===== */
.network { background: var(--bg); padding: var(--sec-y) 0; }
.network__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.network__highlight { font-size: 1.05rem; color: var(--body); white-space: nowrap; }
.network__highlight strong { color: var(--ink); font-weight: 800; }
.network__cities { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 11px; }
.network__cities li { position: relative; padding-left: 20px; font-size: 1rem; color: var(--body); }
.network__cities li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.network__cities strong { color: var(--ink); font-weight: 800; }
.network__lastro {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .95rem; color: var(--body); max-width: 44ch;
}
.network__lastro strong { color: var(--red); font-weight: 800; }
.network__map { margin: 0; text-align: center; }
.network__map img { max-height: 650px; width: auto; max-width: 100%; height: auto; display: inline-block; }
.network__badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.network__badges .badge { background: var(--white); }
@media (max-width: 820px) { .network__grid { grid-template-columns: 1fr; gap: 28px; } .network__map { max-width: 460px; margin: 0 auto; } }
@media (max-width: 600px) { .network__highlight { white-space: normal; } }
@media (max-width: 720px) { .network__badges { grid-template-columns: 1fr 1fr; } }

/* ===== PROVA / SELOS ===== */
.proof { background: var(--white); padding: clamp(48px,6vw,80px) 0; border-top: 1px solid var(--line); }
.proof__badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.badge {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 22px; display: grid; gap: 8px; text-align: center;
  transition: transform .3s, background .3s;
}
.badge:hover { transform: translateY(-3px); background: var(--ink); }
.badge:hover .badge__lbl { color: rgba(255,255,255,.7); }
.badge__num { font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--red); }
.badge__lbl { font-size: .8rem; font-weight: 700; color: var(--body); line-height: 1.3; }
@media (max-width: 720px) { .proof__badges { grid-template-columns: 1fr 1fr; } }

/* ===== PROCESSO / PRÓXIMOS PASSOS (slide 19) ===== */
.process { background: var(--bg); padding: var(--sec-y) 0; }
.process__head { max-width: 700px; margin-bottom: 44px; }
.process__flow { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; }
.step {
  flex: 1 1 0; min-width: 0; position: relative;
  border-radius: 16px; padding: 28px 14px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
}
.step__txt { font-weight: 800; font-size: .82rem; line-height: 1.3; }
/* seta ">" entre os passos */
.step:not(:last-child)::after {
  content: ""; position: absolute; right: -13px; top: 50%; z-index: 2;
  width: 11px; height: 11px;
  border-top: 3px solid #B9B9B9; border-right: 3px solid #B9B9B9;
  transform: translateY(-50%) rotate(45deg);
}
/* gradiente branco → preto (texto escuro nos claros, branco nos escuros) */
.step--1 { background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.step--2 { background: #E4E4E4; color: var(--ink); }
.step--3 { background: #C2C2C2; color: var(--ink); }
.step--4 { background: #949494; color: var(--ink); }
.step--5 { background: #5E5A5B; color: var(--white); }
.step--6 { background: #2E2A2B; color: var(--white); }
.step--7 { background: #111111; color: var(--white); }
@media (max-width: 900px) {
  .process__flow { flex-direction: column; gap: 14px; max-width: 460px; margin: 0 auto; }
  .step { flex-direction: row; align-items: center; text-align: left; gap: 18px; padding: 18px 22px; }
  .step:not(:last-child)::after { right: auto; left: 50%; top: auto; bottom: -12px; transform: translateX(-50%) rotate(135deg); }
}

/* ===== FORMULÁRIO (seção nativa) ===== */
.franquia { background: var(--ink); color: var(--white); padding: var(--sec-y) 0; }
.franquia .chapter { color: var(--red); }
.franquia .h-display { color: var(--white); }
.franquia__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.franquia__lede { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 46ch; margin: 0; }
.franquia__form {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid; gap: 15px;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.6);
}
.franquia__legal { display: block; text-align: center; margin-top: 6px; font-size: .72rem; color: var(--body); }
.franquia__success {
  position: absolute; inset: 0;
  background: var(--bg);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 32px; gap: 6px;
  animation: fadeUp .4s ease both;
}
.franquia__success[hidden] { display: none; }
/* Estados de erro (após tentativa de envio) */
.franquia__form.was-validated .field input:invalid,
.franquia__form.was-validated .field select:invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,62,65,.16);
}
.franquia__form.was-validated .check input:invalid { outline: 2px solid var(--red); outline-offset: 2px; }
.franquia__ok { width: 64px; height: 64px; margin-bottom: 12px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.franquia__success h3 { font-weight: 800; font-size: 26px; color: var(--ink); margin: 0; }
.franquia__success p { color: var(--body); font-size: .95rem; margin: 0; }
.franquia__submit-error {
  margin: 0; padding: 12px 14px; border-radius: var(--r-sm);
  background: rgba(237,62,65,.08); border: 1px solid rgba(237,62,65,.35);
  color: var(--red-deep); font-size: .85rem; text-align: center;
}
.franquia__submit-error[hidden] { display: none; }
.franquia__form button[disabled] { opacity: .6; cursor: not-allowed; }
@media (max-width: 820px) { .franquia__grid { grid-template-columns: 1fr; gap: 32px; } }

/* --- Selo de confiança ao lado do formulário --- */
.franquia__badges { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.franquia__badges li { position: relative; padding-left: 30px; font-weight: 700; font-size: .98rem; color: rgba(255,255,255,.92); }
.franquia__badges li::before {
  content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* --- Formulário multi-etapas (wizard) --- */
.wizard__progress { list-style: none; display: flex; gap: 8px; margin: 0 0 6px; padding: 0; }
.wizard__progress li { flex: 1; display: flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--body); min-width: 0; }
.wizard__progress li span { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--line); color: var(--body); display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: background .25s, color .25s; }
.wizard__progress li.is-active { color: var(--ink); }
.wizard__progress li.is-active span, .wizard__progress li.is-done span { background: var(--red); color: #fff; }

.wstep { border: 0; margin: 0; padding: 0; min-width: 0; }
.wstep:not(.is-active) { display: none; }
.wstep.is-active { display: grid; gap: 15px; animation: fadeUp .35s ease both; }
.wstep__title { font-weight: 800; font-size: 1.15rem; color: var(--ink); margin: 0; }
.req { color: var(--red); }

.wq { font-weight: 800; font-size: .92rem; color: var(--ink); margin: 0; padding: 0; }
.radios { border: 0; margin: 0; padding: 0; display: grid; gap: 8px; min-width: 0; }
.radios .wq { margin-bottom: 2px; }
.radio { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--body); cursor: pointer; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); transition: border-color .2s, background .2s, color .2s; }
.radio input { accent-color: var(--red); margin: 2px 0 0; flex: 0 0 auto; }
.radio:hover { border-color: var(--red); }
.radio:has(input:checked) { border-color: var(--red); background: rgba(237,62,65,.06); color: var(--ink); }

.phone { display: grid; grid-template-columns: 74px 88px 1fr; gap: 8px; min-width: 0; }

.field textarea { font-family: var(--f); font-weight: 500; font-size: 1rem; padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); color: var(--ink); resize: vertical; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237,62,65,.15); }
.field textarea::placeholder { color: var(--body); opacity: .6; }

.wnav { display: flex; justify-content: space-between; gap: 12px; margin-top: 4px; }
.wnav--end { justify-content: flex-end; }

@media (max-width: 480px) {
  .wizard__progress li { font-size: 0; gap: 0; }
  .wizard__progress li span { font-size: .8rem; }
  .phone { grid-template-columns: 66px 74px 1fr; }
  .wnav .btn { flex: 1; }
}

/* ===== FAQ ===== */
.faq { background: var(--bg); padding: var(--sec-y) 0; }
.faq__head { max-width: 640px; margin-bottom: 40px; }
.faq__list { display: grid; max-width: 900px; }
.faq details { border-top: 1px solid var(--line); padding: 24px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-weight: 800; font-size: clamp(17px, 1.6vw, 22px); color: var(--ink);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq summary i { display: inline-block; width: 28px; height: 28px; border: 1.5px solid var(--ink); border-radius: 50%; position: relative; flex-shrink: 0; transition: background .3s, border-color .3s; }
.faq summary i::before, .faq summary i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: var(--ink); transform: translate(-50%,-50%); transition: opacity .3s, background .3s; }
.faq summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq details[open] summary { color: var(--red); }
.faq details[open] summary i { background: var(--red); border-color: var(--red); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: var(--white); }
.faq details[open] summary i::after { opacity: 0; }
.faq details p { font-size: 1rem; color: var(--body); margin: 18px 0 0; line-height: 1.7; max-width: 760px; }
.faq details p strong { color: var(--ink); font-weight: 800; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: var(--white); padding: 72px 0 36px; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { height: 56px; width: auto; border-radius: 6px; margin-bottom: 18px; }
.footer__thanks { font-weight: 800; font-size: 1.6rem; color: var(--white); margin: 0 0 6px; }
.footer__tag { color: var(--red); margin: 0; }
.footer__cols { display: flex; gap: 72px; }
.footer__cols h5 { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin: 0 0 16px; }
.footer__cols a, .footer__cols span { display: block; color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 9px; transition: color .2s; }
.footer__cols a:hover { color: var(--white); }
.footer__legal { padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__legal small { font-size: .72rem; color: rgba(255,255,255,.5); max-width: 600px; line-height: 1.5; }
@media (max-width: 820px) { .footer__top { flex-direction: column; gap: 36px; } .footer__cols { gap: 48px; } }
@media (max-width: 480px) { .footer__cols { flex-direction: column; gap: 28px; } }

/* ===== FLOATING CTA ===== */
.floatcta {
  position: fixed; bottom: 20px; right: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 999px;
  font-family: var(--f); font-weight: 800; font-size: .8rem;
  cursor: pointer;
  box-shadow: 0 10px 26px -8px rgba(237,62,65,.5);
  transform: translateY(140%); opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.3,1.1), opacity .35s, background .25s, box-shadow .25s;
  white-space: nowrap;
}
.floatcta.is-visible { transform: translateY(0); opacity: 1; }
.floatcta:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(237,62,65,.6); }
.floatcta__arrow { display: inline-flex; transition: transform .3s; }
.floatcta:hover .floatcta__arrow { transform: translateX(3px); }
@media (max-width: 600px) {
  .floatcta { bottom: 14px; right: 14px; left: 14px; justify-content: center; font-size: .78rem; }
}

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.modal[aria-hidden='false'] { opacity: 1; pointer-events: auto; }
.modal__overlay { position: absolute; inset: 0; background: rgba(35,31,32,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); cursor: pointer; }
.modal__card { position: relative; background: var(--bg); border-radius: var(--r-xl); padding: 38px 36px 30px; width: min(540px, 100%); max-height: 92vh; overflow-y: auto; box-shadow: 0 40px 90px -20px rgba(0,0,0,.5); transform: translateY(20px) scale(.98); transition: transform .4s cubic-bezier(.2,.7,.3,1.1); }
.modal[aria-hidden='false'] .modal__card { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .2s, color .2s; }
.modal__close:hover { background: var(--ink); color: var(--white); }
.modal__head h3 { font-weight: 800; font-size: clamp(26px, 3vw, 34px); color: var(--ink); margin: 0 0 8px; }
.modal__head p { font-size: .92rem; color: var(--body); margin: 0 0 22px; }
.modal__form { display: grid; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 90px; gap: 12px; }
.field--grow { flex: 1; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--body); }
.field input, .field select { width: 100%; min-width: 0; box-sizing: border-box; font-family: var(--f); font-weight: 500; font-size: 1rem; padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; outline: none; }
.field input:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237,62,65,.15); }
.field input::placeholder { color: var(--body); opacity: .6; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--body); margin-top: 4px; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--red); margin-top: 1px; }
.modal__legal { display: block; text-align: center; margin-top: 8px; font-size: .72rem; color: var(--body); }
.modal__success { text-align: center; padding: 18px 0; }
.modal__ok { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.modal__success h3 { font-weight: 800; font-size: 26px; color: var(--ink); margin: 0 0 8px; }
.modal__success p { color: var(--body); font-size: .95rem; margin: 0 0 20px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
