/* ============================================================
   Colo sobre rodas — v2 cinematográfico escuro
   ============================================================ */

:root {
  --night:   #0F1311;
  --night-2: #171C19;
  --card:    #1C221E;
  --paper:   #F4F0E8;
  --muted:   #A9B0A6;
  --amber:   #F4A63C;
  --amber-2: #FF8A4B;
  --line:    rgba(244,240,232,.12);

  --maxw: 1180px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--night);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(64px, 10vw, 120px) 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }
.eyebrow.light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.section-title.light { color: #fff; }
.section-intro { color: var(--muted); font-size: 1.1rem; max-width: 54ch; margin: 20px 0 0; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-primary { background: var(--amber); color: #241703; box-shadow: 0 8px 30px rgba(244,166,60,.3); }
.btn-primary:hover { background: var(--amber-2); box-shadow: 0 12px 36px rgba(255,138,75,.4); }
.btn-ghost { background: rgba(244,240,232,.06); color: var(--paper); border-color: rgba(244,240,232,.28); }
.btn-ghost:hover { background: rgba(244,240,232,.12); border-color: var(--paper); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- live dot ---------- */
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #46d17a; position: relative; flex: none; box-shadow: 0 0 0 0 rgba(70,209,122,.6); }
.live-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(70,209,122,.45); animation: pulse 1.9s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  padding: 16px 26px;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(15,19,17,.82); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--amber); color: #241703; }
.brand-mark svg { width: 27px; height: 27px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; color: #fff; letter-spacing: -.01em; }

.nav { display: flex; gap: 28px; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--paper); opacity: .82; transition: opacity .15s, color .15s; }
.nav a:hover { opacity: 1; color: var(--amber); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--paper); border-radius: 2px; }

.mobile-menu[hidden] { display: none; }
.mobile-menu { position: fixed; top: 72px; left: 0; right: 0; z-index: 49; display: flex; flex-direction: column; gap: 4px; padding: 16px 26px 24px; background: rgba(15,19,17,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 13px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: 1.5px solid transparent; margin-top: 10px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,19,17,.62) 0%, rgba(15,19,17,0) 30%),
    linear-gradient(0deg, rgba(15,19,17,.98) 8%, rgba(15,19,17,.72) 42%, rgba(15,19,17,.28) 72%),
    rgba(15,19,17,.20);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px clamp(56px, 9vw, 104px); }
.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(15,19,17,.55); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-weight: 600; font-size: .86rem; color: var(--paper);
  padding: 9px 16px; border-radius: 999px; margin: 0 0 22px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .98; letter-spacing: -.03em;
  margin: 0 0 22px; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
  text-wrap: balance;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--paper); opacity: .92; max-width: 52ch; margin: 0 0 32px; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions.center { justify-content: center; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(244,240,232,.5); border-radius: 14px; display: grid; justify-items: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--paper); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .3; } }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--night); text-align: left; }
.manifesto-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.25; letter-spacing: -.015em;
  color: var(--paper); margin: 0; text-wrap: pretty;
}
.manifesto-text .hl { color: var(--amber); }

/* ============================================================
   CASOS (faixas de foto alternadas)
   ============================================================ */
.casos { background: var(--night); padding-bottom: clamp(40px, 6vw, 72px); }
.casos-head { margin-bottom: clamp(36px, 5vw, 60px); }
.band {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
  max-width: var(--maxw); margin: 0 auto; gap: 0;
  border-top: 1px solid var(--line);
}
.band-rev { direction: rtl; }
.band-rev > * { direction: ltr; }
.band-media { overflow: hidden; min-height: 340px; }
.band-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.band:hover .band-media img { transform: scale(1.05); }
.band-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 64px); }
.band-index { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--amber); letter-spacing: .1em; margin-bottom: 14px; }
.band-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.08; margin: 0 0 14px; color: #fff; }
.band-copy p { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 46ch; }

/* ============================================================
   A VIAGEM — trilha de luz
   ============================================================ */
.viagem { background: var(--night-2); position: relative; }
.viagem-head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.viagem-head .eyebrow { justify-content: center; }
.viagem-head .section-intro { margin-left: auto; margin-right: auto; }

.trail { list-style: none; padding: 0; margin: 0 auto; max-width: 940px; position: relative; }
.trail::before {
  content: ""; position: absolute; left: 11px; top: 6px; bottom: 40px; width: 2px;
  background: linear-gradient(var(--amber), var(--amber-2));
  box-shadow: 0 0 18px 2px rgba(244,166,60,.5);
}
.node { position: relative; display: grid; grid-template-columns: 40px 1fr auto; gap: 26px; align-items: center; padding: 0 0 clamp(40px, 6vw, 68px); }
.node:last-child { padding-bottom: 0; }
.node-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--night-2); border: 3px solid var(--amber); box-shadow: 0 0 16px 2px rgba(244,166,60,.55); position: relative; z-index: 2; align-self: start; margin-top: 6px; }
.node-body { align-self: center; }
.node-time { font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }
.node-body h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.12; margin: 8px 0 10px; color: #fff; }
.node-body p { margin: 0; color: var(--muted); max-width: 44ch; }

.update { margin: 0; width: 210px; flex: none; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 10px; box-shadow: 0 24px 50px rgba(0,0,0,.4); transform: rotate(1.5deg); }
.update:nth-child(4) { transform: rotate(-1.5deg); }
.update img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; }
.update figcaption { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--muted); padding: 11px 6px 6px; }

/* ============================================================
   CONFIANÇA (split foto + lista)
   ============================================================ */
.confianca { display: grid; grid-template-columns: 1fr 1fr; background: var(--night); }
.confianca-media { position: relative; min-height: 420px; }
.confianca-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.confianca-copy { padding: clamp(48px, 7vw, 100px) clamp(26px, 5vw, 72px); }
.confianca-copy .section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 30px; }
.fear-list { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 22px; }
.fear-list li { padding-left: 22px; border-left: 2px solid var(--amber); }
.fear-list h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 0 0 6px; color: #fff; }
.fear-list p { margin: 0; color: var(--muted); font-size: 1rem; }
.proof { display: flex; flex-wrap: wrap; gap: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--amber); line-height: 1; }
.proof-label { font-size: .92rem; color: var(--muted); margin-top: 8px; max-width: 22ch; }

/* ============================================================
   ÁREA DE ATUAÇÃO (full-bleed)
   ============================================================ */
.area { position: relative; min-height: 78svh; display: flex; align-items: center; overflow: hidden; }
.area-media { position: absolute; inset: 0; z-index: 0; }
.area-media img { width: 100%; height: 100%; object-fit: cover; }
.area-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,19,17,.97) 0%, rgba(15,19,17,.82) 42%, rgba(15,19,17,.5) 75%, rgba(15,19,17,.35) 100%); }
.area-content { position: relative; z-index: 2; }
.area-text { font-size: 1.14rem; color: var(--paper); opacity: .92; max-width: 48ch; margin: 22px 0 30px; text-wrap: pretty; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--night-2); }
.faq-section .section-title { margin-bottom: 8px; }
.faq { margin-top: 36px; display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.28rem); cursor: pointer; padding: 22px 44px 22px 0; position: relative; list-style: none; color: var(--paper); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-weight: 400; font-size: 1.7rem; color: var(--amber); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 24px; color: var(--muted); max-width: 62ch; }

/* ============================================================
   CTA FINAL (full-bleed)
   ============================================================ */
.final { position: relative; min-height: 82svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.final-media { position: absolute; inset: 0; z-index: 0; }
.final-media img { width: 100%; height: 100%; object-fit: cover; }
.final-scrim { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 50%, rgba(15,19,17,.72), rgba(15,19,17,.95)); }
.final-content { position: relative; z-index: 2; padding: 40px 26px; }
.final-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: .98; letter-spacing: -.03em; margin: 0 0 18px; color: #fff; text-wrap: balance; }
.final-sub { font-size: 1.16rem; color: var(--paper); opacity: .92; max-width: 46ch; margin: 0 auto 32px; text-wrap: pretty; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0A0D0B; color: var(--paper); padding: 60px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand .brand-name { display: block; margin-bottom: 10px; }
.footer-brand p { color: var(--muted); max-width: 42ch; margin: 0; font-size: .96rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contact a { color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .15s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-legal { text-align: center; color: rgba(244,240,232,.42); font-size: .85rem; margin: 44px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- WhatsApp float ---------- */
.whats-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 28px rgba(37,211,102,.5); transition: transform .18s ease; }
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 32px; height: 32px; }
.whats-float:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; }

/* ============================================================
   TRUST ROW (sob os CTAs do hero)
   ============================================================ */
.trust-row {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 22px; padding: 0; margin: 26px 0 0;
  font-size: .95rem; font-weight: 600; color: var(--paper);
}
.trust-row li { position: relative; opacity: .92; }
.trust-row li + li::before {
  content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
}
.trust-row strong { color: var(--amber); font-family: var(--font-display); font-weight: 700; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--night-2); }
.depo .eyebrow.center, .depo .section-title.center { justify-content: center; }
.depo-note {
  max-width: 60ch; margin: 16px auto 0; text-align: center;
  font-size: .95rem; color: var(--muted);
  background: rgba(244,166,60,.08); border: 1px solid rgba(244,166,60,.28);
  border-radius: 12px; padding: 12px 18px;
}
.depo-note strong { color: var(--paper); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.depo-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.depo-card.is-placeholder { border-style: dashed; border-color: rgba(244,166,60,.45); background: rgba(28,34,30,.6); }
.depo-stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }
.depo-card blockquote { margin: 0; color: var(--paper); font-size: 1.02rem; line-height: 1.5; flex: 1; }
.depo-card.is-placeholder blockquote { color: var(--muted); font-style: italic; }
.depo-card figcaption { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--muted); }
.depo-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #241703; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.depo-card figcaption strong { color: var(--paper); font-weight: 700; }
.depo-real { text-align: center; margin: 26px 0 0; color: var(--muted); font-size: .95rem; }
.depo-real a { color: var(--amber); font-weight: 600; }

/* ============================================================
   RESERVE EM 3 PASSOS
   ============================================================ */
.passos { background: var(--night); }
.passos .eyebrow.center, .passos .section-title.center { justify-content: center; }
.passos-grid { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: none; }
.passos-grid li { position: relative; padding: 30px 26px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; }
.passo-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(244,166,60,.14); color: var(--amber);
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 16px;
}
.passos-grid h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 0 0 8px; color: #fff; }
.passos-grid p { margin: 0; color: var(--muted); }
.passos-cta { text-align: center; margin-top: 36px; }
.reassure, .final-reassure { color: var(--muted); font-size: .92rem; margin: 14px 0 0; }
.final-reassure { text-align: center; }

/* ============================================================
   BANNER DE COOKIES
   ============================================================ */
.cookie-banner{ position:fixed; left:16px; right:16px; bottom:16px; z-index:70; display:flex; justify-content:center; }
.cookie-banner[hidden]{ display:none; }
.cookie-inner{
  width:100%; max-width:720px;
  background:rgba(23,28,25,.97); backdrop-filter:blur(10px);
  border:1px solid var(--line); border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
  padding:18px 20px; display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
.cookie-text{ flex:1 1 320px; margin:0; font-size:.9rem; color:var(--paper); line-height:1.5; }
.cookie-text a{ color:var(--amber); font-weight:700; }
.cookie-actions{ display:flex; gap:10px; flex:0 0 auto; }
body.cookie-open .whats-float{ bottom:104px; }
@media (max-width:540px){
  .cookie-banner{ left:10px; right:10px; bottom:10px; }
  .cookie-inner{ padding:16px; gap:12px; }
  .cookie-actions{ width:100%; }
  .cookie-actions .btn{ flex:1 1 0; }
  body.cookie-open .whats-float{ bottom:150px; }
}
@media (prefers-reduced-motion: no-preference){
  .cookie-inner{ animation:cookieUp .4s ease both; }
}
@keyframes cookieUp{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }

/* ============================================================
   REVEAL (JS-driven)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  /* reserva espaço para o cabeçalho fixo e sobe o conteúdo para não encostar no ícone de scroll */
  .hero-content { padding-top: 84px; padding-bottom: 92px; }
  .band, .band-rev { grid-template-columns: 1fr; direction: ltr; }
  .band-media { min-height: 260px; }
  .node { grid-template-columns: 40px 1fr; }
  .update { grid-column: 1 / -1; width: 190px; margin-left: 66px; margin-top: 4px; }
  .confianca { grid-template-columns: 1fr; }
  .confianca-media { min-height: 300px; }
  .depo-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .passos-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* quebras de linha decorativas só no desktop/tablet largo */
@media (max-width: 767px) {
  .brk { display: none; }
}

@media (max-width: 540px) {
  .header-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .node { gap: 18px; }
  .update { margin-left: 58px; }
  .proof { gap: 22px; }
  /* CTAs ocupam a largura no telefone (alvo de toque maior) */
  .hero-actions:not(.center) { width: 100%; }
  .hero-actions:not(.center) .btn { flex: 1 1 100%; }
  /* enxuga a altura do hero para caber sem embolar no topo */
  .hero-content { padding-top: 80px; }
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.7rem); line-height: 1.04; margin-bottom: 16px; }
  .live-pill { margin-bottom: 14px; font-size: .82rem; padding: 8px 14px; }
  .hero-sub { font-size: 1rem; margin-bottom: 22px; }
  .hero-actions .btn.btn-lg { padding: 14px 26px; font-size: 1rem; }
  .trust-row { margin-top: 18px; gap: 8px 18px; }
}

/* telas baixas: garante que o hero role em vez de sobrepor o cabeçalho */
@media (max-height: 720px) and (max-width: 900px) {
  .hero { min-height: auto; padding: 100px 0 44px; }
  .hero-content { padding-top: 0; padding-bottom: 0; }
  .scroll-cue { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
