/* ═══════════════════════════════════════════════════════════
   STYLE.CSS — Landing Page Consultor Ademicon — Premium v3
   ═══════════════════════════════════════════════════════════ */

/* ─── Barra de progresso de leitura ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-deep), var(--red), #FF6B6B);
  z-index: 9999;
  transition: width .1s linear;
  transform-origin: left;
}

/* ─── 0. TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --red:        #E8251E;
  --red-sat:    #D01C15;
  --red-deep:   #A3100C;
  --red-alpha:  rgba(232,37,30,.12);
  --red-alpha2: rgba(232,37,30,.06);

  /* Neutros */
  --ink:        #0D0F12;
  --ink-2:      #1C1F26;
  --ink-muted:  #5A6172;
  --surface:    #FFFFFF;
  --surface-2:  #F7F8FA;
  --surface-3:  #EFF1F5;
  --border:     #E4E7ED;
  --border-2:   rgba(0,0,0,.06);

  /* Sombras */
  --sh-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  --sh-md: 0 8px 24px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --sh-lg: 0 20px 60px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --sh-xl: 0 32px 80px rgba(0,0,0,.16), 0 8px 20px rgba(0,0,0,.08);

  /* Tipografia */
  --ff: 'Inter', system-ui, -apple-system, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-black:  800;

  /* Raios */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Espaçamento de seção */
  --sec: 112px;

  /* Transições */
  --t: .22s cubic-bezier(.4,0,.2,1);
  --t-spring: .35s cubic-bezier(.34,1.56,.64,1);
  --ease-reveal: cubic-bezier(.16,1,.3,1);
}

/* ─── 1. RESET & BASE ────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* overflow-x NÃO pode ficar no body — quebra IntersectionObserver do AOS */
}
html {
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font:inherit; }
ul,ol { list-style:none; }
cite { font-style:normal; }
strong { font-weight:var(--fw-bold); }
p,
h1,
h2,
h3,
h4,
li,
blockquote {
  overflow-wrap: break-word;
}

/* ─── 2. LAYOUT ──────────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero__layout > *,
.split > *,
.jrs-layout > *,
.sim-grid > *,
.cns-layout > *,
.sec--cta__inner > *,
.ftr__inner > * {
  min-width: 0;
}

.sec {
  padding: var(--sec) 0;
}
.sec--tinted  { background: var(--surface-2); }
.sec--dark    { background: var(--ink); }

/* ─── 3. TIPOGRAFIA UTILITÁRIA ───────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.55); }
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.sec__head {
  text-align: center;
  margin-bottom: 64px;
}
.sec__head--white .eyebrow { color: rgba(255,255,255,.55); }

.sec__title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: var(--fw-black);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
}
.sec__title--left  { text-align: left; }
.sec__title--white { color: #fff; }
.sec__title em     { font-style:normal; color: var(--red); }

.sec__sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sec__sub--white { color: rgba(255,255,255,.65); }

/* ─── 4. BOTÕES ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 14px 26px;
  font-size: .93rem;
  font-weight: var(--fw-semi);
  border-radius: 100px;
  transition: all var(--t);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-sat);
  border-color: var(--red-sat);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,37,30,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-white {
  background: #fff;
  color: var(--red);
}
.btn-white:hover {
  background: var(--surface-3);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-red-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-red-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-sm  { padding: 11px 22px; font-size: .86rem; }
.btn-lg  { padding: 17px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ─── 5. HEADER ──────────────────────────────────────────── */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.hdr.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.07); }

.hdr__inner {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 0;
}

/* Brand */
.hdr__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 40px;
}
.hdr__brand:hover { opacity: .82; }
.hdr__brand-icon {
  width: 128px;
  height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hdr__brand-icon svg { width: 100%; height: 100%; }
.hdr__brand-logo {
  width: 128px;
  height: 128px;
  display: block;
  max-width: none;
  object-fit: contain;
}
.hdr__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.hdr__brand-label {
  font-size: .65rem;
  font-weight: var(--fw-medium);
  color: var(--ink-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hdr__brand-name {
  font-size: .97rem;
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing: 0;
}

/* Nav */
.hdr__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.hdr__link {
  font-size: .86rem;
  font-weight: var(--fw-medium);
  color: var(--ink-muted);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  position: relative;
}
.hdr__link:hover { color: var(--ink); background: var(--surface-3); }
.hdr__link.is-active {
  color: var(--red);
  font-weight: var(--fw-semi);
  background: var(--red-alpha2);
}

/* Actions */
.hdr__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Burger */
.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.hdr__burger:hover { background: var(--surface-3); }
.hdr__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hdr__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 6. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: var(--ink);
  overflow: hidden;
  contain: paint;
}

/* Blobs com animação flutuante */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.hero__blob--1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(232,37,30,.45) 0%, transparent 70%);
  top: -200px; right: -140px;
  animation: float1 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(163,16,12,.3) 0%, transparent 70%);
  bottom: -180px; left: -120px;
  animation: float2 18s ease-in-out infinite;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,37,30,.15) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation: float3 10s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-28px,18px) scale(1.04); }
  66%      { transform: translate(20px,-22px) scale(.97); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(22px,-16px) scale(1.06); }
  70%      { transform: translate(-18px,12px) scale(.96); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(14px,-20px); }
}

/* Subtle dot grid */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Pill */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: var(--fw-black);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 20px;
}
.hero__title em { font-style:normal; color: var(--red); }

.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-item strong {
  font-size: .9rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.2;
}
.hero__trust-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.hero__trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Hero card (glass) */
.glass {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}
.hero__card {
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero__card-eyebrow {
  font-size: .72rem;
  font-weight: var(--fw-semi);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}
.hero__card-title {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0;
}
.hero__card-header { margin-bottom: 20px; }

/* ─── 7. CAMPOS DE FORMULÁRIO ────────────────────────────── */
.field { margin-bottom: 14px; }
.field__label {
  display: block;
  font-size: .8rem;
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
/* Label claro (fora do hero) */
.sim-form .field__label,
.ftr .field__label {
  color: var(--ink);
}
.field__req { color: var(--red); }

.field__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff);
  font-size: .93rem;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.field__input::placeholder { color: rgba(255,255,255,.3); }
.field__input:focus {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 3px rgba(255,255,255,.07);
}
/* Select dentro do hero: cor do texto das options */
.hero__card select option { color: var(--ink); background: #fff; }

/* Input claro (simulador) */
.sim-form .field__input {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}
.sim-form .field__input::placeholder { color: #B0B7C3; }
.sim-form .field__input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-alpha);
  background: var(--surface);
}

/* Select wrapper */
.select-wrap { position: relative; }
.select-wrap .field__input {
  padding-right: 40px;
  cursor: pointer;
}
.select-wrap__icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: rgba(255,255,255,.4);
  pointer-events: none;
  transition: transform var(--t);
}
.sim-form .select-wrap__icon { color: var(--ink-muted); }
.select-wrap:focus-within .select-wrap__icon { transform: translateY(-50%) rotate(180deg); }

/* Simulador com modo Parcela/Crédito */
.sim-control {
  margin-bottom: 14px;
}
.sim-grid__wide {
  grid-column: 1 / -1;
}
.sim-control .field {
  margin-bottom: 12px;
}
.sim-control .field:last-child {
  margin-bottom: 0;
}
.sim-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
}
.sim-mode__btn {
  min-height: 36px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: var(--fw-bold);
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.sim-mode__btn:hover {
  color: #fff;
}
.sim-mode__btn.is-active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(232,37,30,.32);
}
.field--range .field__input {
  margin-bottom: 8px;
}
.sim-range__input {
  --range-progress: 50%;
  width: 100%;
  height: 18px;
  display: block;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.sim-range__input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red) 0 var(--range-progress), rgba(255,255,255,.14) var(--range-progress) 100%);
}
.sim-range__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,.26);
}
.sim-range__input::-moz-range-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
}
.sim-range__input::-moz-range-progress {
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}
.sim-range__input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,.26);
}
.sim-range__input:focus-visible {
  outline: 2.5px solid rgba(255,255,255,.75);
  outline-offset: 4px;
}
.sim-range__bounds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
}
.sim-form .sim-mode {
  background: var(--surface-2);
  border-color: var(--border);
}
.sim-form .sim-mode__btn {
  color: var(--ink-2);
}
.sim-form .sim-mode__btn:hover {
  color: var(--red);
}
.sim-form .sim-mode__btn.is-active {
  color: #fff;
}
.sim-form .sim-range__input::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, var(--red) 0 var(--range-progress), var(--surface-3) var(--range-progress) 100%);
}
.sim-form .sim-range__input::-moz-range-track {
  background: var(--surface-3);
}
.sim-form .sim-range__bounds {
  color: var(--ink-muted);
}
.sim-form .sim-range__input:focus-visible {
  outline-color: var(--red);
}
.quick-form .field {
  margin-bottom: 10px;
}
.quick-form .field__input {
  padding: 10px 14px;
}
.quick-form .sim-mode__btn {
  min-height: 32px;
}
.quick-form .field--range .field__input {
  margin-bottom: 6px;
}

/* Form quick note */
.quick-form__note {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 10px;
}

/* Form error */
.form-msg {
  font-size: .85rem;
  font-weight: var(--fw-medium);
  color: var(--red);
  background: var(--red-alpha);
  border: 1px solid rgba(232,37,30,.2);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}

/* ─── 8. SEGMENTOS ───────────────────────────────────────── */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seg-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--sh-xs);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
}
.seg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}

.seg-card__icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-alpha2);
  border: 1px solid var(--red-alpha);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
  color: var(--red);
  flex-shrink: 0;
}
.seg-card:hover .seg-card__icon-box { background: var(--red-alpha); }
.seg-card__icon-box svg { width: 26px; height: 26px; }

.seg-card__body { flex: 1; }
.seg-card__title {
  font-size: 1.02rem;
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.seg-card__text {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.seg-card__cta {
  align-self: flex-start;
  font-size: .85rem;
  font-weight: var(--fw-semi);
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: letter-spacing var(--t), opacity var(--t);
}
.seg-card__cta:hover { letter-spacing: .02em; opacity: .8; }

/* ─── 9. COMO FUNCIONA / SPLIT ───────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split__text {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.check-list__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* How-to steps */
.how-visual { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.how-step__num {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: var(--fw-black);
  color: var(--red);
  letter-spacing: .04em;
  box-shadow: var(--sh-xs);
  flex-shrink: 0;
  position: relative;
}
.how-step__line {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 32px;
  background: var(--border);
}
.how-step:last-child .how-step__line { display: none; }
.how-step__body {
  padding-top: 10px;
  padding-bottom: 32px;
  flex: 1;
  min-width: 0;
}
.how-step__body strong {
  display: block;
  font-size: .97rem;
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin-bottom: 4px;
}
.how-step__body p {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ─── 10. BENEFÍCIOS ─────────────────────────────────────── */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--border);
  box-shadow: var(--sh-sm);
}
.ben-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background var(--t);
}
.ben-card:hover { background: var(--surface-2); }
.ben-card__num {
  font-size: .72rem;
  font-weight: var(--fw-black);
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 14px;
  opacity: .6;
}
.ben-card__title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.ben-card__text {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ─── 11. COMPARATIVO ────────────────────────────────────── */
.cmp-wrap { max-width: 900px; margin: 0 auto; }

.cmp-table {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-bottom: 20px;
}
.cmp-table__head {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  background: var(--surface-2);
  border-bottom: 1.5px solid var(--border);
}
.cmp-table__row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background var(--t);
}
.cmp-table__row:last-child { border-bottom: none; }
.cmp-table__row:hover { background: var(--surface-2); }
.cmp-table__cell {
  padding: 18px 24px;
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmp-table__cell--feature {
  font-weight: var(--fw-semi);
  color: var(--ink);
  font-size: .82rem;
  border-right: 1px solid var(--border);
  background: var(--surface-2);
}
.cmp-table__cell--good {
  color: #166534;
  border-right: 1px solid var(--border);
}
.cmp-table__cell--neutral { color: var(--ink-muted); }

.cmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: var(--fw-bold);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: .02em;
}
.cmp-badge--green { background: #dcfce7; color: #166534; }
.cmp-badge--gray  { background: var(--surface-3); color: var(--ink-muted); }

.cmp-ico {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: var(--fw-black);
  flex-shrink: 0;
}
.cmp-ico--yes { background: #dcfce7; color: #166534; }
.cmp-ico--no  { background: var(--surface-3); color: var(--ink-muted); }

.cmp-disclaimer {
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 24px;
}
.cmp-cta { text-align: center; }

/* ─── 12. REDUÇÃO DE JUROS ───────────────────────────────── */
.jrs-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.jrs-text {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 32px;
}
.jrs-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.jrs-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: .93rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.jrs-step__num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: var(--fw-black);
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}

/* Rate card */
.rate-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 32px 28px 24px;
  backdrop-filter: blur(12px);
}
.rate-card__label {
  font-size: .74rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
  text-align: center;
}
.rate-bars {
  display: flex;
  justify-content: center;
  gap: 56px;
  align-items: flex-end;
  height: 180px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.rate-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rate-col {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 160px;
}
.rate-bar {
  width: 38px;
  height: 0;
  border-radius: 6px 6px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 6px;
  align-items: center;
  transition: height .8s cubic-bezier(.4,0,.2,1), opacity var(--t);
  max-height: 160px;
  overflow: hidden;
}
.rate-bar.is-animated {
  height: calc(var(--h, 50%) * 1.6);
}
.rate-bar:hover { opacity: .8; }
.rate-bar__val {
  font-size: .72rem;
  font-weight: var(--fw-black);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  letter-spacing: 0;
}
.rate-bar--cons { background: var(--red); }
.rate-bar--cons .rate-bar__val { color: rgba(255,255,255,.9); }
.rate-bar--fin  { background: rgba(255,255,255,.18); }
.rate-bar--fin .rate-bar__val { color: rgba(255,255,255,.7); }
.rate-col__label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.rate-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.rate-legend__item {
  font-size: .75rem;
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55);
}
.rate-legend__item::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 3px;
  display: block;
}
.rate-legend__item--cons { color: rgba(255,255,255,.75); }
.rate-legend__item--cons::before { background: var(--red); }
.rate-legend__item--fin::before  { background: rgba(255,255,255,.18); }
.rate-card__note {
  font-size: .68rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  line-height: 1.5;
}

/* ─── 13. SIMULADOR ──────────────────────────────────────── */
.sim-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 52px;
  box-shadow: var(--sh-xl);
}
.sim-form .field__label { color: var(--ink); }
.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 20px;
}

/* ─── 14. CONSULTOR ──────────────────────────────────────── */
.cns-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.cns-photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.cns-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  display: block;
}
/* Placeholder quando foto não disponível */
.cns-photo-frame--placeholder .cns-photo { display: none; }
.cns-photo-frame--placeholder::after {
  content: 'Foto do Gerson em breve';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-3);
  border: 2px dashed var(--border);
  border-radius: var(--r-xl);
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}

.cns-photo-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: var(--fw-semi);
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--sh-md);
  white-space: nowrap;
}

.cns-desc {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cns-diffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.cns-diff {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem;
  font-weight: var(--fw-medium);
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 11px 14px;
  border-radius: var(--r-md);
}
.cns-diff svg { flex-shrink: 0; }

/* ─── 15. ADEMICON — STATS ───────────────────────────────── */
.sec--red-strip {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.sec--red-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232,37,30,.25) 0%, transparent 70%);
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0 repeat(0, 1fr);
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0;
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  transition: background var(--t);
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item__num {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: var(--fw-black);
  color: #fff;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-item__lbl {
  font-size: .72rem;
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.stats-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  font-style: italic;
}

/* ─── 16. DEPOIMENTOS ────────────────────────────────────── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 26px 24px;
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-spring), box-shadow var(--t);
}
.dep-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.dep-card__stars {
  font-size: .85rem;
  color: #FBBF24;
  letter-spacing: .06em;
}
.dep-card__quote {
  font-size: .93rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.dep-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.dep-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.dep-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.98);
}
.dep-card__name { display: block; font-size: .88rem; font-weight: var(--fw-bold); color: var(--ink); }
.dep-card__tag  { font-size: .75rem; color: var(--ink-muted); }

/* ─── 17. PARA QUEM É ────────────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: .93rem;
  color: var(--ink-muted);
  line-height: 1.6;
  box-shadow: var(--sh-xs);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t-spring);
}
.fit-item:hover { border-color: var(--red); box-shadow: var(--sh-md); transform: translateY(-2px); }
.fit-item > span:last-child { flex: 1; }
.fit-item strong { color: var(--ink); font-weight: var(--fw-bold); }
.fit-item__check {
  font-size: .9rem;
  color: var(--red);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── 18. FAQ ─────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px 0;
  font-size: .97rem;
  font-weight: var(--fw-semi);
  color: var(--ink);
  transition: color var(--t);
}
.faq__q:hover { color: var(--red); }
.faq__q[aria-expanded="true"] { color: var(--red); }
.faq__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform var(--t), color var(--t);
}
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); color: var(--red); }

.faq__a {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s cubic-bezier(.4,0,.2,1);
}
.faq__a.is-open {
  grid-template-rows: 1fr;
}
.faq__a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__a p {
  padding-bottom: 20px;
  font-size: .93rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ─── 19. CTA FINAL ──────────────────────────────────────── */
.sec--cta {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, #F05050 100%);
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
}
.sec--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sec--cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}
.cta__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── 20. FOOTER ─────────────────────────────────────────── */
.ftr {
  background: #0A0C10;
  color: #fff;
  padding: 72px 0 0;
}
.ftr__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ftr__brand { display: flex; flex-direction: column; gap: 14px; }
.ftr__brand-label { color: rgba(255,255,255,.4); }
.ftr__brand-name  { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: var(--fw-medium); }

.ftr__city {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.ftr__social { display: flex; gap: 8px; }
.ftr__social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  color: rgba(255,255,255,.6);
}
.ftr__social-btn svg { width: 17px; height: 17px; }
.ftr__social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.ftr__nav { display: flex; flex-direction: column; gap: 10px; }
.ftr__nav-title {
  font-size: .7rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.25);
  margin-bottom: 8px;
}
.ftr__link {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.ftr__link:hover { color: #fff; }

.ftr__contact { display: flex; flex-direction: column; gap: 12px; }
.ftr__contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.ftr__contact-item:hover { color: #fff; }

.ftr__bottom { padding: 24px 0; }
.ftr__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr__legal {
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  line-height: 1.65;
  max-width: 760px;
}
.ftr__copy {
  font-size: .76rem;
  color: rgba(255,255,255,.2);
}

/* ─── 21. WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform var(--t-spring), box-shadow var(--t);
  color: #fff;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,.55);
}
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: ring 2.8s ease-out infinite;
}
@keyframes ring { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2);opacity:0} }

/* ─── 22. AOS — ANIMAÇÕES SCROLL ─────────────────────────── */
body[data-aos-easing="consorcio-smooth"] [data-aos] {
  transition-timing-function: var(--ease-reveal);
}

[data-aos] {
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* ─── HEADER RESPONSIVO — TABLET ─────────────────────────── */
@media (max-width: 1100px) {
  .hdr__brand { margin-right: 0; }

  .hdr__nav {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    z-index: 899;
    box-shadow: var(--sh-lg);
  }
  .hdr__nav.open { display: flex; }
  .hdr__link { padding: 13px 16px; font-size: .95rem; }
  .hdr__burger { display: flex; }

  .hero__blob--1 {
    width: 560px;
    height: 560px;
    right: 0;
  }
  .hero__blob--2 {
    width: 420px;
    height: 420px;
    left: 0;
  }
}

/* ─── 23. RESPONSIVO — TABLET ────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sec: 80px; }

  .hero__layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 110px 0 72px; }
  .hero__title { font-size: clamp(2rem, 5.5vw, 3rem); }
  .hero__sub   { max-width: 100%; }
  .hero__card  { width: 100%; max-width: 520px; }

  .seg-grid     { grid-template-columns: repeat(2, 1fr); }
  .ben-grid     { grid-template-columns: repeat(2, 1fr); }
  .split        { grid-template-columns: 1fr; gap: 48px; }
  .jrs-layout   { grid-template-columns: 1fr; gap: 48px; }
  .cns-layout   { grid-template-columns: 1fr; gap: 48px; }
  .cns-photo    { aspect-ratio: 4/3; object-position: center 24%; }
  .dep-grid     { grid-template-columns: 1fr 1fr; }
  .cmp-table__head,
  .cmp-table__row { grid-template-columns: 120px 1fr 1fr; }
  .sec--cta__inner { flex-direction: column; text-align: center; }
  .cta__btns { justify-content: center; }
  /* Stats no tablet: 2x2 */
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row .stat-item { min-width: 0; }
  .stats-row .stat-item:nth-child(1),
  .stats-row .stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stats-row .stat-item:nth-child(1),
  .stats-row .stat-item:nth-child(5) {
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .stats-row .stat-divider { display: none; }
}

/* ─── 24. RESPONSIVO — MOBILE ────────────────────────────── */
@media (max-width: 768px) {
  :root { --sec: 64px; }
  .wrap { padding: 0 20px; }
  .field__input { font-size: 1rem; }

  /* Header */
  .hdr__nav {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    z-index: 899;
    box-shadow: var(--sh-lg);
  }
  .hdr__nav.open { display: flex; }
  .hdr__link { padding: 13px 16px; font-size: .95rem; }

  .hdr__actions .btn-sm { display: none; }
  .hdr__burger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero__title  { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }
  .hero__btns   { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .hero__trust  { gap: 16px; }
  .hero__trust-item strong { font-size: .82rem; }
  .hero__card   { padding: 28px 22px; max-width: none; }

  /* Grids */
  .seg-grid  { grid-template-columns: 1fr; }
  .ben-grid  { grid-template-columns: 1fr; gap: 1px; }
  .dep-grid  { grid-template-columns: 1fr; }
  .fit-grid  { grid-template-columns: 1fr; }
  .cns-diffs { grid-template-columns: 1fr; }
  .sim-grid  { grid-template-columns: 1fr; }
  .sim-wrap  { padding: 32px 22px; border-radius: var(--r-xl); }
  .ftr__inner { grid-template-columns: 1fr; gap: 36px; }

  /* Comparativo — mobile stack */
  .cmp-table__head,
  .cmp-table__row {
    grid-template-columns: 1fr;
  }
  .cmp-table__cell--feature { border-right: none; border-bottom: 1px solid var(--border); }
  .cmp-table__cell--good    { border-right: none; border-bottom: 1px solid var(--border); }

  /* Stats mobile: 2x2 simples */
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--r-lg);
  }
  .stats-row .stat-item {
    min-width: 0;
    padding: 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stats-row .stat-item:nth-child(1),
  .stats-row .stat-item:nth-child(5) {
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .stats-row .stat-divider { display: none; }
  .stat-item__num { font-size: 1.5rem; }

  /* CTA */
  .cta__btns { flex-direction: column; }
  .cta__btns .btn { width: 100%; }

  /* WhatsApp float */
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .sec__head { margin-bottom: 42px; }
  .btn {
    white-space: normal;
    line-height: 1.2;
    min-height: 48px;
  }
  .hero__pill {
    max-width: 100%;
    white-space: normal;
  }
  .hero__trust {
    justify-content: space-between;
    gap: 10px;
  }
  .hero__trust-sep { display: none; }
  .cmp-table__cell { padding: 15px 16px; }
  .rate-card { padding: 28px 18px 22px; }
  .rate-bars { gap: 26px; }
  .sim-wrap { padding: 28px 18px; }
  .cns-photo {
    object-position: center 20%;
  }
  .cns-photo-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
  }
  .ftr__contact-item,
  .ftr__copy,
  .ftr__city {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 400px) {
  .hero__trust { display: none; }
  .hero__pill  { font-size: .7rem; }
}

/* ─── 25. ENTRADA DA PÁGINA ────────────────────────────── */
body {
  animation: page-in .45s ease both;
}
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── 26. ANIMAÇÃO DAS BARRAS DE TAXA ───────────────────── */
/* As barras crescem de 0 até --h quando a classe is-animated é adicionada pelo JS */
/* Ver .rate-bar e .rate-bar.is-animated na seção 12 acima */

/* ─── 27. SELEÇÃO DE TEXTO ───────────────────────────────── */
::selection {
  background: var(--red);
  color: #fff;
}

/* ─── 28. SCROLLBAR PERSONALIZADA (Chrome/Edge) ─────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }

/* ─── 29. FOCUS VISIBLE ACESSÍVEL ───────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 30. PREFERS-REDUCED-MOTION ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  html { scroll-behavior: auto; }
  body { animation: none; }
  .hero__blob { animation: none; }
  .wa-float__ring { animation: none; }
  .hero__pill-dot { animation: none; }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .rate-bar {
    height: calc(var(--h, 50%) * 1.6);
  }
}

/* ─── 31. SISTEMA DE ANIMAÇÕES DE SCROLL (data-aos nativo) ── */

/* Estado inicial — todos os elementos animados começam ocultos */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 850ms;
}

/* Direções de entrada */
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-left"]  { transform: translateX(50px); }
[data-aos="zoom-in"]    { transform: scale(0.85); }
[data-aos="zoom-in-up"] { transform: scale(0.88) translateY(30px); }
[data-aos="zoom-out"]   { transform: scale(1.15); }
[data-aos="fade"]       { transform: none; }

/* Estado REVELADO — quando .revealed é adicionado pelo JS */
[data-aos].revealed {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .hero__blob--3 {
    display: none;
  }
  [data-aos="fade-up"] {
    transform: translateY(24px);
  }
  [data-aos="fade-down"] {
    transform: translateY(-24px);
  }
  [data-aos="fade-right"] {
    transform: translateX(-16px);
  }
  [data-aos="fade-left"] {
    transform: translateX(16px);
  }
  [data-aos="zoom-in-up"] {
    transform: scale(.96) translateY(18px);
  }
}
