/* =============================================================================
 * Correio Imobiliário — Landing Bônus Moradia MS
 * styles.css — mobile-first, tokens da marca, animações leves
 * -----------------------------------------------------------------------------
 * Sumário:
 *   1. Tokens / :root
 *   2. Reset e base
 *   3. Utilitários (container, reveal, badges)
 *   4. Botões
 *   5. Header + sticky CTA
 *   6. Hero
 *   7. Seções genéricas (heads)
 *   8. Curiosidade (equação)
 *   9. Vídeo
 *  10. Escudo "não é casa grátis"
 *  11. Timeline
 *  12. Quiz / anamnese
 *  13. Resultado + sucesso
 *  14. Prova social
 *  15. Moto elétrica
 *  16. FAQ
 *  17. CTA final + rodapé
 *  18. Responsivo (tablet / desktop)
 *  19. prefers-reduced-motion
 * ===========================================================================*/

/* ------------------------------ 1. TOKENS ------------------------------ */
:root {
  /* Cores da marca (extraídas da logo oficial) */
  --roxo:            #5A2A82;   /* roxo principal / textos de destaque  */
  --roxo-forte:      #7A1FA2;   /* botões / gradientes                  */
  --magenta:         #B02FC7;   /* acento vibrante                      */
  --dourado:         #F4B41A;   /* amarelo/dourado da marca             */
  --dourado-suave:   #FCE7A6;   /* destaques claros                     */

  /* Neutros */
  --ink:             #241C33;   /* texto principal (grafite arroxeado)  */
  --ink-soft:        #5B5470;   /* texto secundário                     */
  --branco:          #FFFFFF;
  --roxo-050:        #F7F2FC;   /* fundo roxo muito claro               */
  --roxo-100:        #EFE6F8;
  --amarelo-050:     #FFF9EC;   /* fundo amarelo muito claro            */
  --line:            #E7DEF2;   /* bordas suaves                        */

  /* Gradientes */
  --grad-roxo: linear-gradient(135deg, var(--roxo-forte), var(--magenta));
  --grad-gold: linear-gradient(135deg, #F6C33F, var(--dourado));

  /* Tipografia */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-head: 'Sora', var(--font-body);

  /* Layout */
  --max: 1160px;
  --max-narrow: 760px;
  --gutter: 20px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 4px 14px rgba(90, 42, 130, .08);
  --shadow-md: 0 14px 40px rgba(90, 42, 130, .14);
  --shadow-lg: 0 30px 70px rgba(90, 42, 130, .22);

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .55s;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--branco);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden; /* trava rolagem horizontal acidental */
}

img, video { max-width: 100%; display: block; height: auto; }

/* garante que o atributo [hidden] vença displays de flex/inline-flex */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--ink);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 3.5vw, 1.6rem); font-weight: 700; }

p { margin: 0 0 1rem; }
a { color: var(--roxo-forte); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-140%);
  top: 8px; z-index: 200; background: var(--roxo-forte); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-pill); transition: transform .2s;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* honeypot invisível */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------ 3. UTILITÁRIOS ------------------------------ */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--max-narrow); }
.center { text-align: center; }

.section { padding: clamp(48px, 9vw, 96px) 0; }

.section__head { max-width: 720px; margin: 0 auto clamp(28px, 5vw, 52px); text-align: center; }
.section__head h2 { margin-bottom: .35em; }

.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--roxo-forte); margin: 0 0 .8rem;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dourado); box-shadow: 0 0 0 4px var(--dourado-suave); }

.kicker { color: var(--magenta); }

.lead { font-size: clamp(1.02rem, 2.4vw, 1.18rem); color: var(--ink-soft); }
.fineprint { font-size: .82rem; color: var(--ink-soft); }
.hl { color: var(--dourado); }
strong { color: inherit; font-weight: 700; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill);
}
.badge--city { color: var(--roxo-forte); background: var(--roxo-100); }

/* reveal (IntersectionObserver adiciona .is-visible) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------ 4. BOTÕES ------------------------------ */
.btn {
  --btn-bg: var(--roxo-forte);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border: none; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), filter .2s;
  will-change: transform;
}
.btn:hover { text-decoration: none; }
.btn svg { flex: none; }

.btn--primary { background: var(--grad-roxo); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--gold { background: var(--grad-gold); color: var(--roxo); box-shadow: var(--shadow-md); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: #fff; color: var(--roxo-forte); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--roxo-forte); transform: translateY(-2px); }

.btn--text { background: transparent; color: var(--roxo-forte); padding: 12px 8px; }
.btn--text:hover { color: var(--magenta); }

.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* spinner do submit */
.btn__spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------ 5. HEADER + STICKY ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 12px; min-height: 64px; }
.brand img { width: auto; height: 40px; }
.header-inner .badge--city { margin-left: auto; }
.header-cta { display: none; padding: 10px 18px; font-size: .9rem; }

.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-roxo); color: #fff; font-family: var(--font-head); font-weight: 700;
  padding: 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform .35s var(--ease); text-align: center;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { text-decoration: none; }

/* ------------------------------ 6. HERO ------------------------------ */
.hero { position: relative; padding: clamp(36px, 8vw, 72px) 0 clamp(48px, 9vw, 90px); background: linear-gradient(180deg, var(--roxo-050), #fff); overflow: hidden; }
.hero__glow { position: absolute; inset: auto -20% 30% auto; width: 60vw; height: 60vw; max-width: 620px; max-height: 620px; background: radial-gradient(circle, rgba(176,47,199,.20), transparent 65%); filter: blur(10px); z-index: 0; pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 36px; }

.hero__title { margin-bottom: .5em; }
.hero__subtitle { font-size: clamp(1.02rem, 2.6vw, 1.2rem); color: var(--ink-soft); max-width: 34ch; }
.hero__lead { font-weight: 700; color: var(--roxo-forte); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 14px; }
.hero__microcopy { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.hero__microcopy svg { color: var(--dourado); }

.hero__media { position: relative; }
.hero__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.hero__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.card-float { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: .82rem; line-height: 1.25; }
.hero__stat { left: -6px; bottom: 26px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero__stat strong { color: var(--roxo-forte); font-family: var(--font-head); font-size: 1rem; }
.hero__stat span { color: var(--ink-soft); }
.hero__seal { right: -6px; top: 22px; max-width: 190px; color: var(--ink-soft); }
.hero__seal svg { color: var(--dourado); flex: none; }

/* ------------------------------ 8. CURIOSIDADE / EQUAÇÃO ------------------------------ */
.curiosidade { background: #fff; }
.equation { display: grid; gap: 14px; align-items: stretch; margin-bottom: 14px; }
.equation__item { background: var(--roxo-050); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.equation__item strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--roxo); }
.equation__item--result { background: var(--grad-roxo); border: none; color: #fff; }
.equation__item--result strong { color: #fff; }
.equation__tag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--magenta); margin-bottom: 8px; }
.equation__item--result .equation__tag { color: var(--dourado-suave); }
.equation__op { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--dourado); text-align: center; }

/* ------------------------------ 9. VÍDEO ------------------------------ */
.video-section { background: var(--roxo-050); }
.video { position: relative; max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border: none; border-radius: 50%;
  background: var(--grad-gold); color: var(--roxo); cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .2s var(--ease);
}
.video__play::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 3px solid rgba(255,255,255,.7); animation: pulse 2.4s var(--ease) infinite; }
.video__play:hover { transform: scale(1.06); }
.video.is-playing .video__play { display: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }

/* ------------------------------ 10. ESCUDO ------------------------------ */
.shield-card { display: grid; gap: 18px; background: var(--amarelo-050); border: 1px solid var(--dourado-suave); border-radius: var(--radius-lg); padding: clamp(24px, 5vw, 40px); box-shadow: var(--shadow-sm); }
.shield-card__icon { width: 68px; height: 68px; border-radius: 20px; background: var(--grad-roxo); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.shield-card h2 { margin-bottom: .2em; }
.shield-card__text .lead { color: var(--roxo-forte); font-weight: 700; }

/* ------------------------------ 11. TIMELINE ------------------------------ */
/* Linha do tempo — reta. Vertical no mobile, horizontal no desktop. */
.timeline-section { background: #fff; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 24px; }
.timeline__item { position: relative; display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 16px; }
.timeline__num {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #fff;
  background: var(--grad-roxo); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex: none;
  box-shadow: 0 0 0 5px #fff, var(--shadow-sm);
}
.timeline__item p { margin: 9px 0 0; font-weight: 600; }
/* conector vertical (mobile) ligando um número ao próximo */
.timeline__item:not(:last-child)::before {
  content: ""; position: absolute; z-index: 0; left: 23px; top: 46px; bottom: -24px;
  width: 3px; transform: translateX(-50%); background: var(--line);
}

/* ------------------------------ 12. QUIZ ------------------------------ */
.quiz-section { background: linear-gradient(180deg, #fff, var(--roxo-050)); }
.quiz-container { max-width: 720px; }
.quiz-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(22px, 5vw, 40px); }

.quiz-progress { margin-bottom: 26px; }
.quiz-progress__bar { height: 8px; background: var(--roxo-100); border-radius: var(--radius-pill); overflow: hidden; }
.quiz-progress__bar span { display: block; height: 100%; width: 14%; background: var(--grad-gold); border-radius: inherit; transition: width .45s var(--ease); }
.quiz-progress__label { display: inline-block; margin-top: 8px; font-size: .8rem; font-weight: 700; color: var(--ink-soft); }

.quiz-step { display: none; animation: stepIn .4s var(--ease); }
.quiz-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.quiz-q { margin-bottom: 18px; }

.field {
  width: 100%; font-family: var(--font-body); font-size: 1.1rem; color: var(--ink);
  padding: 15px 18px; border: 2px solid var(--line); border-radius: 14px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field::placeholder { color: #A79FBB; }
.field:focus { outline: none; border-color: var(--roxo-forte); box-shadow: 0 0 0 4px var(--roxo-100); }
.field--money { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; }
.field.is-invalid { border-color: #D64545; box-shadow: 0 0 0 4px #fbe3e3; }

.quiz-help { font-size: .85rem; color: var(--ink-soft); margin: 10px 2px 0; }
.quiz-error { color: #C33636; font-size: .85rem; font-weight: 600; margin: 10px 2px 0; min-height: 1.1em; }
.quiz-note { background: var(--roxo-050); border-left: 4px solid var(--magenta); border-radius: 10px; padding: 12px 14px; margin-top: 14px; font-size: .9rem; color: var(--roxo); }

/* cards de escolha */
.choice-grid { display: grid; gap: 12px; }
.choice-grid--2 { grid-template-columns: 1fr 1fr; }
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__body {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center;
  min-height: 108px; padding: 16px; border: 2px solid var(--line); border-radius: 16px; background: #fff;
  transition: border-color .18s, background .18s, transform .18s, box-shadow .18s; height: 100%;
}
.choice--compact .choice__body { min-height: 62px; flex-direction: row; }
.choice__icon { color: var(--roxo-forte); }
.choice__body strong { font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.choice:hover .choice__body { border-color: var(--roxo-forte); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.choice input:focus-visible + .choice__body { outline: 3px solid var(--magenta); outline-offset: 2px; }
.choice input:checked + .choice__body { border-color: var(--roxo-forte); background: var(--roxo-050); box-shadow: inset 0 0 0 1px var(--roxo-forte); }
.choice input:checked + .choice__body .choice__icon { color: var(--magenta); }

.quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 26px; }
.quiz-nav #btnNext { margin-left: auto; }

/* ------------------------------ 13. RESULTADO + SUCESSO ------------------------------ */
.result-card, .success-card {
  position: relative; margin-top: 22px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 5vw, 44px); overflow: hidden;
}
.result-card__glow { position: absolute; inset: -40% 20% auto 20%; height: 60%; background: radial-gradient(circle, rgba(244,180,26,.35), transparent 70%); filter: blur(6px); pointer-events: none; }
.result-card > * { position: relative; }

.result-card__check, .success-card__check {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--grad-roxo); color: #fff; display: flex; align-items: center; justify-content: center;
}
.check-path { stroke-dasharray: 40; stroke-dashoffset: 40; }
.is-checked .check-path, .success-card__check .check-path { animation: draw .6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.result-card__title { color: var(--roxo); }
.result-card__msg { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.result-card__amount { display: flex; flex-direction: column; align-items: center; gap: 2px; margin: 14px 0; }
.result-card__prefix { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 700; color: var(--magenta); }
.result-card__value { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 12vw, 4rem); line-height: 1; color: var(--roxo-forte); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.result-card__after { font-weight: 600; }

.result-usar { margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--line); text-align: left; }
.result-usar h4 { color: var(--roxo); }

.lgpd { display: flex; gap: 12px; align-items: flex-start; margin: 18px 0 6px; font-size: .9rem; color: var(--ink-soft); cursor: pointer; }
.lgpd input { width: 22px; height: 22px; margin-top: 2px; flex: none; accent-color: var(--roxo-forte); cursor: pointer; }
.link-sm { font-size: inherit; font-weight: 700; background: none; border: none; padding: 0; cursor: pointer; color: var(--roxo-forte); }

.submit-error { color: #C33636; font-weight: 600; margin-top: 12px; }

.success-card { text-align: center; }
.success-card__pref { display: inline-block; background: var(--roxo-050); color: var(--roxo); font-weight: 700; padding: 8px 16px; border-radius: var(--radius-pill); }
.success-card__ping { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }
.success-card__actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 8px; }

/* confete (gerado via JS) */
.confetti { position: fixed; top: -10px; width: 9px; height: 14px; z-index: 120; pointer-events: none; opacity: .9; border-radius: 2px; animation: confFall linear forwards; }
@keyframes confFall { to { transform: translateY(105vh) rotate(540deg); opacity: 0; } }

/* ------------------------------ 14. PROVA SOCIAL ------------------------------ */
.proof-section { background: #fff; }
.proof-collage { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.proof-tags { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0; margin: 22px 0 0; }
.proof-tags li { background: var(--roxo-050); color: var(--roxo); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 16px; font-weight: 700; font-size: .85rem; }

/* ------------------------------ QUEM SOMOS ------------------------------ */
.about-section { background: var(--roxo-050); }
.about-values { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.about-value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.about-value__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 15px; background: var(--grad-roxo); color: #fff; margin-bottom: 12px; }
.about-value h3 { font-size: 1.12rem; margin-bottom: .3em; }
.about-value p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.about-creci { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0; }

@media (min-width: 640px) { .about-values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .about-values { grid-template-columns: repeat(4, 1fr); } }

/* ------------------------------ 15. MOTO ------------------------------ */
.scooter-section { background: linear-gradient(160deg, var(--roxo-050), var(--amarelo-050)); }
.scooter-grid { display: grid; gap: 26px; align-items: center; }
.scooter-highlight { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.05rem, 3.5vw, 1.35rem); color: var(--roxo); background: var(--dourado-suave); padding: 10px 16px; border-radius: 14px; margin: 6px 0 10px; }
.scooter-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 10px; }
.scooter-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ------------------------------ 16. FAQ ------------------------------ */
.faq-section { background: #fff; }
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--roxo-050); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative;
  font-family: var(--font-head); font-weight: 700; color: var(--roxo); font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: #fff; color: var(--roxo-forte);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; line-height: 1; transition: transform .25s;
}
.faq__item[open] summary::after { content: "\2013"; transform: translateY(-50%) rotate(180deg); }
.faq__answer { padding: 0 20px 18px; color: var(--ink-soft); }
.faq__answer p { margin: 0; }

/* ------------------------------ 17. CTA FINAL + RODAPÉ ------------------------------ */
.cta-final { background: var(--roxo-050); }
.cta-final__box { background: var(--grad-roxo); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 6vw, 60px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-final__box h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-final__box p { color: rgba(255,255,255,.9); max-width: 48ch; margin-inline: auto 1.4rem; }
.cta-final__box .btn { margin-bottom: 14px; }
.cta-final__box .hero__microcopy { color: rgba(255,255,255,.85); }
.cta-final__box .hero__microcopy svg { color: var(--dourado); }

.site-footer { background: var(--ink); color: #cfc7dd; padding: clamp(40px, 7vw, 64px) 0 24px; }
.footer-inner { display: grid; gap: 28px; }
.footer-brand img { height: 46px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin: 8px 0 0; font-size: .9rem; }
.footer-disclaimer p { font-size: .9rem; margin: 0 0 10px; }
.footer-disclaimer .fineprint { color: #9a91ad; }
.footer-links a { color: var(--dourado); font-weight: 600; }
.footer-copy { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9a91ad; }

/* ------------------------------ 18. RESPONSIVO ------------------------------ */
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1fr 1.4fr; align-items: start; }
  .equation { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
  .equation__op { font-size: 2.2rem; }
  .shield-card { grid-template-columns: auto 1fr; align-items: center; }

  /* Timeline horizontal reta: números numa única linha, rótulo abaixo */
  .timeline { grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; align-items: start; }
  .timeline__item { display: block; text-align: center; padding: 0 6px; }
  .timeline__num { margin: 0 auto; }
  .timeline__item p { margin-top: 14px; font-size: .9rem; }
  /* reseta o conector vertical do mobile e desenha o horizontal */
  .timeline__item::before { display: none; }
  .timeline__item:not(:first-child)::before {
    display: block; content: ""; position: absolute; z-index: 0;
    top: 23px; left: -50%; right: 50%; width: auto; height: 3px; bottom: auto;
    transform: none; background: var(--line);
  }
}

@media (min-width: 960px) {
  .header-cta { display: inline-flex; }
  .header-inner .badge--city { margin-left: 0; }
  .header-inner .brand { margin-right: 4px; }
  .header-cta { margin-left: auto; }
  .sticky-cta { display: none; } /* CTA sticky é exclusivo do mobile */

  .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
  .hero__actions { flex-wrap: nowrap; }

  .scooter-grid { grid-template-columns: 1fr 1.1fr; }
  .scooter-section .section__head { text-align: left; }
}

/* ------------------------------ 19. REDUCED MOTION ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .video__play::after { display: none; }
}
