/* ============================================================
   CF Consultoria — style.css  (v2 — redesign)
   Editorial financeiro: navy + dourado sobre creme.
   Mobile-first. Sem framework. Custom properties.
   Fontes: Fraunces (display) + Archivo (texto) via <link> no HTML.
   ============================================================ */

:root {
  color-scheme: light only;

  /* Marca */
  --navy:       #0F2743;
  --navy-800:   #0B1D33;
  --navy-700:   #12314F;
  --navy-600:   #1C3F63;
  --gold:       #C8892A;
  --gold-600:   #A8721F;
  --gold-200:   #E9CF9E;
  --gold-100:   #F4E7CF;

  /* Superfícies / texto */
  --cream:      #F6F2EA;   /* fundo quente */
  --cream-2:    #FBF8F2;
  --surface:    #FFFFFF;
  --ink:        #16202E;
  --muted:      #5C6674;
  --muted-2:    #8A93A0;
  --line:       #E7E0D2;   /* borda quente */
  --line-strong:#D7CFBD;
  --danger:     #B23A3A;
  --success:    #1E7F52;

  /* Tipografia */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans:    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaço */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 6.5rem;

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,39,67,.05), 0 2px 8px rgba(15,39,67,.05);
  --shadow-md: 0 6px 18px rgba(15,39,67,.08), 0 2px 6px rgba(15,39,67,.05);
  --shadow-lg: 0 24px 60px -20px rgba(11,29,51,.35);
  --shadow-gold: 0 10px 30px -8px rgba(200,137,42,.45);

  --container: 1160px;
  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "tnum" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,h2,h3,h4,p,ul,ol,figure,blockquote { margin: 0; }
ul,ol { padding-left: 0; list-style: none; }
img,svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
input,select,textarea { font: inherit; color: inherit; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }
::selection { background: var(--gold-200); color: var(--navy-800); }

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-6); } }

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

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

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block;
}
.hero .eyebrow { color: var(--gold-200); }
.hero .eyebrow::before { background: var(--gold-200); }

.section-head { max-width: 60ch; margin-bottom: var(--sp-6); }
.section-head h2 { margin-top: var(--sp-3); }
.lead { color: var(--muted); font-size: 1.075rem; margin-top: var(--sp-3); max-width: 62ch; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--navy); font-weight: 600; }
h1 {
  font-size: clamp(2.1rem, 5.2vw + .6rem, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  font-weight: 600;
}
h2 {
  font-size: clamp(1.7rem, 2.4vw + .9rem, 2.7rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
h3 { font-size: 1.28rem; line-height: 1.25; }
strong { font-weight: 600; }

/* Seções */
section { padding-block: var(--sp-8); }
@media (min-width: 768px) { section { padding-block: var(--sp-9); } }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  text-align: center; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.995); }

.btn-primary { background: var(--gold); color: #1c1204; border-color: var(--gold); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-2px); }

.btn-secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--navy); background: rgba(15,39,67,.04); transform: translateY(-2px); }

/* Variante para superfícies escuras */
.on-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,.35); }
.on-dark .btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--navy);
}
.arrow-link svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,234,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
header.scrolled {
  background: rgba(251,248,242,.92);
  box-shadow: 0 8px 30px -18px rgba(11,29,51,.4);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: var(--sp-4);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; color: var(--navy);
  line-height: 1; white-space: nowrap;
}
.brand-word b { font-weight: 600; }
.brand-word .thin { font-weight: 400; color: var(--muted); }

/* Nav */
.nav-toggle {
  background: transparent; border: 1.5px solid var(--line-strong);
  border-radius: 11px; width: 46px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

#nav-menu {
  display: none;
  position: absolute; top: calc(var(--header-h) - 2px); left: 0; right: 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
}
#nav-menu.is-open { display: block; animation: menuIn .22s var(--ease); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
#nav-menu ul { display: flex; flex-direction: column; gap: 2px; }
#nav-menu a {
  display: block; padding: .8rem .9rem; color: var(--navy-700);
  border-radius: 10px; font-weight: 500; letter-spacing: .005em;
}
#nav-menu a:hover { background: rgba(15,39,67,.05); color: var(--navy); }
#nav-menu .menu-cta { margin-top: var(--sp-3); }
#nav-menu .menu-cta .btn { width: 100%; }

.header-cta { display: none; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  #nav-menu {
    display: block; position: static; background: transparent;
    border: 0; box-shadow: none; padding: 0; animation: none;
  }
  #nav-menu ul { flex-direction: row; align-items: center; gap: 2px; }
  #nav-menu a { padding: .55rem .8rem; font-size: .93rem; border-radius: 8px; }
  #nav-menu .menu-cta { display: none; }
  .header-cta { display: inline-flex; }
  .header-cta.btn { min-height: 44px; padding: .55rem 1.15rem; font-size: .92rem; }
}

/* ============================================================
   HERO (painel navy)
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(200,137,42,.22), transparent 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(28,63,99,.55), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #EAF0F7;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.hero::after { /* textura sutil de grão */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-mark {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 480px); opacity: .06; z-index: 0; pointer-events: none;
  filter: brightness(0) invert(1);
}
.hero h1 { color: #fff; max-width: 16ch; margin-top: var(--sp-4); }
.hero h1 em { font-style: italic; color: var(--gold-200); }
.hero-sub {
  margin-top: var(--sp-5); max-width: 52ch;
  color: #B9C6D6; font-size: 1.14rem; line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero-ctas .btn { flex: 1 1 auto; }
@media (min-width: 560px) { .hero-ctas .btn { flex: 0 0 auto; } }

.hero-partners {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-partners .hp-label {
  flex-basis: 100%; color: #8FA0B5; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-1);
}
.hero-partners img {
  height: 34px; width: auto; border-radius: 6px;
  background: rgba(255,255,255,.92); padding: 5px 9px;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.5);
}

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.solucoes { background: var(--cream); }
.solucoes-grid {
  display: grid; gap: var(--sp-5); grid-template-columns: 1fr;
}
@media (min-width: 640px) { .solucoes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .solucoes-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--sp-3);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-200));
  transition: width .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card:hover::before { width: 100%; }
.card .icon {
  width: 54px; height: 54px; color: var(--navy);
  background: var(--gold-100); border: 1px solid var(--gold-200);
  border-radius: 15px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
}
.card .icon svg { width: 27px; height: 27px; }
.card p { color: var(--muted); }
.card .card-link { margin-top: auto; padding-top: var(--sp-3); }

/* ============================================================
   FOMENTO
   ============================================================ */
.fomento {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fomento-list {
  display: grid; gap: var(--sp-6) var(--sp-5); grid-template-columns: 1fr;
  margin-block: var(--sp-6);
}
@media (min-width: 820px) { .fomento-list { grid-template-columns: repeat(3, 1fr); } }
.fomento-item { display: flex; flex-direction: column; gap: var(--sp-2); }
.fomento-item .icon {
  width: 48px; height: 48px; color: var(--gold-600);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; background: #fff; border: 1px solid var(--line);
  margin-bottom: var(--sp-2);
}
.fomento-item .icon svg { width: 26px; height: 26px; }
.fomento-item p { color: var(--muted); }
.fomento-cta { text-align: center; margin-top: var(--sp-6); }

/* ============================================================
   SIMULADOR
   ============================================================ */
.simulador { position: relative; background: var(--navy-800); color: #E7EEF6; }
.simulador::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 90% 0%, rgba(200,137,42,.16), transparent 60%);
}
.simulador .container { position: relative; }
.simulador .eyebrow { color: var(--gold-200); }
.simulador .eyebrow::before { background: var(--gold-200); }
.simulador h2 { color: #fff; }
.simulador .lead { color: #A9BACb; }

.wizard-progress {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin: var(--sp-6) 0 var(--sp-5);
}
.wizard-progress li {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #8FA0B5; font-weight: 500; font-size: .9rem;
  padding: .45rem .9rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
}
.wizard-progress li[aria-current="step"] {
  color: var(--navy-800); background: var(--gold);
  border-color: var(--gold); font-weight: 600;
}

form#sim-form {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  max-width: 760px;
}
@media (min-width: 768px) { form#sim-form { padding: var(--sp-7); } }

.wizard-step legend {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: var(--navy);
  margin-bottom: var(--sp-5); letter-spacing: -.01em;
}
.wizard-step > label {
  display: block; font-weight: 600; font-size: .92rem; color: var(--navy-700);
  margin-top: var(--sp-5); margin-bottom: var(--sp-2);
}
.wizard-step input[type="text"],
.wizard-step input[type="tel"],
.wizard-step select {
  width: 100%; min-height: 52px; padding: .7rem .95rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--cream-2); color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.wizard-step input:focus, .wizard-step select:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(200,137,42,.15);
}
.wizard-step input[type="range"] {
  width: 100%; margin-top: var(--sp-3); accent-color: var(--gold);
}

.radio-cards { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 680px) { .radio-cards { grid-template-columns: repeat(3, 1fr); } }
.radio-cards label {
  display: flex; align-items: center; gap: .65rem;
  padding: var(--sp-4); border: 1.5px solid var(--line-strong);
  border-radius: var(--radius); cursor: pointer; margin: 0; font-weight: 500;
  background: var(--cream-2);
  transition: border-color .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.radio-cards label:hover { border-color: var(--navy-600); }
.radio-cards input[type="radio"] { accent-color: var(--gold); width: 20px; height: 20px; flex: 0 0 auto; }
.radio-cards label:has(input:checked) {
  border-color: var(--gold); background: var(--gold-100);
  box-shadow: 0 0 0 3px rgba(200,137,42,.18);
}

.perfil-group { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-5); }
.perfil-group legend { font-size: .92rem; font-weight: 600; color: var(--navy-700); margin-bottom: var(--sp-2); }
.perfil-group label { display: inline-flex; align-items: center; gap: .5rem; margin: 0; font-weight: 500; }
.perfil-group input[type="radio"] { accent-color: var(--gold); width: 19px; height: 19px; }

.checkbox { display: flex; gap: .7rem; align-items: flex-start; margin-top: var(--sp-5); cursor: pointer; font-size: .92rem; color: var(--muted); }
.checkbox input { margin-top: .2rem; accent-color: var(--gold); width: 20px; height: 20px; flex: 0 0 auto; }
.checkbox a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.wizard-actions { display: flex; gap: var(--sp-3); justify-content: flex-end; margin-top: var(--sp-6); flex-wrap: wrap; }
.wizard-actions .btn {
  flex: 1 1 100%;       
  min-width: 0;          
  white-space: normal;   
  text-align: center;
  line-height: 1.25;
}
@media (min-width: 560px) {
  .wizard-actions .btn { flex: 1 1 0; }  
}

.field-error { color: var(--danger); font-size: .9rem; font-weight: 500; margin-top: var(--sp-3); }

.resultado {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff; padding: var(--sp-6) var(--sp-5); border-radius: var(--radius);
  margin-bottom: var(--sp-4); box-shadow: var(--shadow-md);
}
.resultado > p:first-child { color: rgba(255,255,255,.72); font-size: .9rem; letter-spacing: .02em; text-transform: uppercase; }
.resultado-valor {
  margin-top: var(--sp-2); font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw + 1rem, 3.2rem); font-weight: 600; letter-spacing: -.02em; line-height: 1;
  color: var(--gold-200);
}
.resultado-valor .mes { font-family: var(--font-sans); font-size: 1rem; font-weight: 500; opacity: .8; margin-left: .3rem; color: #fff; }

.aviso-legal {
  background: var(--gold-100); border: 1px solid var(--gold-200); border-left: 4px solid var(--gold);
  padding: var(--sp-4); border-radius: var(--radius-sm);
  font-size: .85rem; color: var(--navy-700); margin-bottom: var(--sp-2);
}

/* ============================================================
   PARCEIROS
   ============================================================ */
.parceiros { background: var(--cream); }
.parceiros-scroll {
  display: flex; gap: var(--sp-4); overflow-x: auto;
  scroll-snap-type: x mandatory; padding: var(--sp-2) 0 var(--sp-4);
  margin-top: var(--sp-6);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.parceiros-scroll img {
  flex: 0 0 auto; width: 172px; height: 72px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 6px 10px;
  filter: grayscale(1); opacity: .8;
  scroll-snap-align: start;
  transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.parceiros-scroll img:hover {
  filter: grayscale(0); opacity: 1; transform: translateY(-3px); box-shadow: var(--shadow-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-800); color: rgba(233,240,247,.72);
  padding-block: var(--sp-8) var(--sp-6);
  position: relative;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-200), transparent);
}
footer a { color: #fff; }
footer a:hover { color: var(--gold-200); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.6fr; } }
.footer-brand-row { display: flex; align-items: center; gap: .6rem; margin-bottom: var(--sp-3); }
.footer-brand-row .brand-mark { width: 40px; height: 40px; background: var(--cream); border-radius: 10px; padding: 5px; }
.footer-brand { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.15rem; }
.footer-brand span { display: block; font-family: var(--font-sans); font-weight: 400; font-size: .8rem; color: rgba(233,240,247,.55); margin-top: .15rem; letter-spacing: .01em; }
footer p { margin-top: var(--sp-1); }
.footer-col-title { color: #fff; font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-3); color: var(--gold-200); }
.footer-legal { font-size: .8rem; color: rgba(233,240,247,.55); line-height: 1.55; }
.footer-legal .copyright { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,.1); }

/* ============================================================
   404 + Política (doc)
   ============================================================ */
.page-error { background: var(--navy-800); }
.page-error main {
  min-height: 78vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-4);
  text-align: center; padding-block: var(--sp-8); color: #E7EEF6;
}
.page-error h1 { color: #fff; font-size: clamp(4rem, 16vw, 8rem); }
.page-error p { color: #A9BACb; }

.doc-page { padding-block: var(--sp-8); background: var(--cream); }
.doc-page h1 { margin-bottom: var(--sp-2); }
.doc-page h2 { font-size: 1.4rem; margin-top: var(--sp-7); }
.doc-page p, .doc-page li { color: var(--navy-700); margin-top: var(--sp-3); max-width: 74ch; }
.doc-page ul { list-style: disc; padding-left: 1.25rem; margin-top: var(--sp-2); }
.doc-page li { margin-top: var(--sp-2); }
.doc-page a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Motion — reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Stagger dos cards / itens dentro de um grid revelado */
.solucoes-grid > *:nth-child(2) { transition-delay: .08s; }
.solucoes-grid > *:nth-child(3) { transition-delay: .16s; }
.fomento-item:nth-child(2) { transition-delay: .08s; }
.fomento-item:nth-child(3) { transition-delay: .16s; }

/* Entrada do hero (CSS-only, roda no load) */
.hero .eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-partners {
  animation: heroIn .85s var(--ease) both;
}
.hero h1 { animation-delay: .07s; }
.hero-sub { animation-delay: .15s; }
.hero-ctas { animation-delay: .23s; }
.hero-partners { animation-delay: .31s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-partners { animation: none; }
}
