/* ============================================================
   ASSOCIAÇÃO LELECO — Design System "Rede de Cuidado"
   Fundo branco • Manrope • acentos codificados por cor da marca
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
img, svg, picture { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Scrollbar personalizada (trilho branco, barrinha azul fina) ---------- */
html { scrollbar-width: thin; scrollbar-color: var(--blue) #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #fff; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: var(--r-pill); border: 2px solid #fff; }
::-webkit-scrollbar-thumb:hover { background: #1E6FE0; }

/* ---------- Barra de progresso de rolagem ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width .1s linear; pointer-events: none;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:   #19385A;
  --green:  #24C480;
  --orange: #F99E1F;
  --pink:   #E33558;
  --teal:   #1B8F8F;
  --purple: #8C50B3;
  --blue:   #237FF6;
  --white:  #FFFFFF;
  --ink:    #030303;

  /* Neutrals derived for calm editorial feel */
  --paper:      #FFFFFF;
  --paper-2:    #F4F4F2;   /* neutral light gray */
  --paper-warm: #FAFAF8;   /* off-white */
  --line:       #E6E6E2;
  --line-strong:#D2D2CC;
  --muted:      #5E5E58;
  --muted-2:    #8A8A82;

  /* Semantic text */
  --text:       #14293F;
  --text-soft:  #42566B;

  /* Accent (overridden per section via [data-accent]) */
  --accent:      var(--green);
  --accent-ink:  #0E6b45;
  --accent-tint: #EAF9F1;

  /* Typography */
  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radii — cantos retos (sóbrio); pill reservado para botões e chips */
  --r-sm: 0;
  --r-md: 0;
  --r-lg: 0;
  --r-xl: 0;
  --r-pill: 999px;

  /* Shadows (flat / quase inexistentes) */
  --sh-1: none;
  --sh-2: 0 6px 20px rgba(15,20,25,.06);
  --sh-lift: 0 10px 30px rgba(15,20,25,.08);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 128px);
  --header-h: 76px;
}

/* Per-accent palettes */
[data-accent="green"]  { --accent:#24C480; --accent-ink:#0C6E44; --accent-tint:#EAF9F1; }
[data-accent="orange"] { --accent:#F99E1F; --accent-ink:#9A5D00; --accent-tint:#FEF3E1; }
[data-accent="pink"]   { --accent:#E33558; --accent-ink:#A21437; --accent-tint:#FDEBEF; }
[data-accent="teal"]   { --accent:#1B8F8F; --accent-ink:#0C5D5D; --accent-tint:#E5F4F4; }
[data-accent="purple"] { --accent:#8C50B3; --accent-ink:#5E2C81; --accent-tint:#F3EBF9; }
[data-accent="blue"]   { --accent:#237FF6; --accent-ink:#0B54AD; --accent-tint:#E7F1FE; }
[data-accent="navy"]   { --accent:#19385A; --accent-ink:#0E2540; --accent-tint:#EAF0F7; }

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1360px; }
.container-narrow { max-width: 780px; }

section { position: relative; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--warm { background: var(--paper-warm); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--navy); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.display {
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -.035em;
}
h2.title, .h2, .title { font-size: clamp(1.85rem, 4vw, 2.9rem); letter-spacing: -.03em; font-weight: 300; }
h3.title, .h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--text-soft); font-weight: 500; line-height: 1.55; }
.balance { text-wrap: balance; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6ch;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--accent);
}
.eyebrow--center { justify-content: center; }

.text-accent { color: var(--accent); }
.text-navy { color: var(--navy); }

/* Highlighted word with organic underline */
.mark {
  position: relative; white-space: nowrap; color: var(--navy);
}
.mark { box-shadow: inset 0 -.12em 0 var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7ch;
  padding: .95em 1.7em; border-radius: var(--r-pill);
  font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--navy); color: #fff;
  border: 1.5px solid var(--navy); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-1); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* Acento único e sóbrio — usa o navy por padrão; a cor da marca aparece só na borda */
.btn--accent { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn--accent:hover { background: var(--ink); border-color: var(--ink); }
.btn--ink { background: var(--ink); border-color: var(--ink); }
/* Verde institucional (Doe agora / CTAs verdes) */
.btn--green { background: #0C6E44; border-color: #0C6E44; color: #fff; }
.btn--green:hover { background: #0A5A38; border-color: #0A5A38; color: #fff; }
/* Contorno (estilo referência Alana) */
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn--soft { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--soft:hover { background: var(--navy); color: #fff; }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.05em 2em; font-size: .84rem; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5ch; font-weight: 700; color: var(--accent-ink);
  border-bottom: 2px solid transparent; padding-bottom: 2px; transition: gap .2s, border-color .2s;
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .25s; }
.link-arrow:hover { border-color: var(--accent); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-top {
  background: var(--navy); color: #fff;
  font-size: .86rem; font-weight: 600;
}
.site-top .container { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; padding-block: .55rem; text-align: center; }
.site-top p { color: #EAF0F7; margin: 0; }
.site-top strong { color: #fff; }
.site-top .btn { padding: .5em 1.2em; font-size: .72rem; background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.site-top .btn:hover { background: #fff; color: var(--navy); border-color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(20,41,63,.06); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 38px; width: auto; transition: height .3s; }
.site-header.is-stuck .brand img { height: 34px; }
.brand span { font-weight: 800; color: var(--navy); letter-spacing: -.02em; font-size: 1.05rem; }

.nav-main { display: flex; align-items: center; gap: .3rem; }
.nav-main a {
  position: relative; padding: .55em .9em; border-radius: var(--r-pill);
  font-weight: 600; color: var(--text-soft); transition: color .2s, background .2s;
}
.nav-main a:hover { color: var(--navy); background: var(--paper-2); }
.nav-main a.is-active { color: var(--navy); }
.nav-main a.is-active::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: .18em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.header-actions { display: flex; align-items: center; gap: .6rem; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 14px;
  background: var(--paper-2); border: 1px solid var(--line); place-items: center; cursor: pointer;
}
.hamburger svg { width: 22px; height: 22px; color: var(--navy); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(15,30,50,.45);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 100; height: 100dvh; width: min(88vw, 400px);
  background: #fff; box-shadow: -20px 0 60px rgba(20,41,63,.18);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,.9,.3,1);
  display: flex; flex-direction: column; padding: 1.4rem; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.drawer-head h3 { font-size: 1.05rem; color: var(--navy); }
.drawer-close { width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; }
.drawer-close svg { width: 22px; height: 22px; color: var(--navy); }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1em .3em; font-size: 1.2rem; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.drawer-nav a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.drawer-nav a.is-active .dot { background: var(--green); }
.drawer .btn { margin-top: 1.4rem; }
.drawer-social { margin-top: auto; padding-top: 1.6rem; }
.drawer-social p { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.social-row { display: flex; gap: .6rem; }
.social-row a {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--paper-2); color: var(--navy); border: 1px solid var(--line); transition: transform .2s, background .2s, color .2s;
}
.social-row a:hover { transform: translateY(-3px); background: var(--navy); color: #fff; }
.social-row svg { width: 20px; height: 20px; }

/* ---------- Atmosphere removida (visual sóbrio e plano) ---------- */
.blob, .atmosphere { display: none !important; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 80px); padding-bottom: var(--section-y); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.hero-copy { position: relative; z-index: 2; }
.hero .display { margin: .5rem 0 1.1rem; color: var(--navy); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-support { margin-top: 1.3rem; font-size: .95rem; color: var(--muted); display: inline-flex; align-items: center; gap: .5ch; }
.hero-support svg { width: 1.1em; height: 1.1em; color: var(--accent); }

/* Media / image placeholder */
.media {
  position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--paper-2);
}
.hero-media { aspect-ratio: 4 / 4.4; border-radius: var(--r-xl); box-shadow: var(--sh-2); }

.ph {
  position: relative; display: grid; place-items: center; text-align: center;
  background: var(--paper-2); border: 1px solid var(--line);
  color: var(--muted); overflow: hidden; min-height: 220px;
}
.ph-inner { position: relative; z-index: 2; padding: 1.6rem; max-width: 90%; }
.ph-icon {
  width: 58px; height: 58px; border-radius: 0; display: grid; place-items: center; margin: 0 auto .9rem;
  background: #fff; color: var(--navy); border: 1px solid var(--line);
}
.ph-icon svg { width: 28px; height: 28px; }
.ph-tag { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.ph-text { font-size: .92rem; font-weight: 600; margin-top: .3rem; line-height: 1.4; }

/* Floating badge on hero media */
.hero-badge {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: var(--r-md); padding: .9rem 1.1rem; box-shadow: var(--sh-lift);
  display: flex; align-items: center; gap: .8rem; max-width: 240px;
}
.hero-badge .yr { font-size: 1.8rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.hero-badge small { color: var(--muted); font-weight: 600; font-size: .82rem; }

/* ---------- Section headers ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .title { margin-top: .8rem; }
.sec-head p { margin-top: 1rem; }
.sec-head--split { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1.5rem; max-width: none; }
.sec-head--split .head-left { max-width: 640px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.2vw, 2rem); transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); border-color: transparent; }
.card .card-ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--accent-tint); color: var(--accent-ink);
  transition: transform .3s;
}
.card:hover .card-ico { transform: scale(1.08) rotate(-4deg); }
.card .card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { font-size: .96rem; }
.card .idx {
  position: absolute; top: 1.1rem; right: 1.3rem; font-size: .8rem; font-weight: 800; color: var(--line-strong);
}

/* action card with button */
.card--action { display: flex; flex-direction: column; }
.card--action .btn, .card--action .link-arrow { margin-top: auto; align-self: flex-start; }
.card--action p { margin-bottom: 1.3rem; }

/* ---------- Manifesto ---------- */
.manifesto .container { max-width: 960px; }
.manifesto .big {
  font-size: clamp(1.6rem, 3.4vw, 2.7rem); font-weight: 300; color: var(--navy); letter-spacing: -.03em;
  line-height: 1.15; text-wrap: balance;
}
.manifesto .big em { font-style: normal; color: var(--green); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding-block: clamp(1.2rem, 2vw, 1.8rem); border-block: 1px solid var(--line); }
.marquee-track { display: inline-flex; gap: 2.5rem; white-space: nowrap; animation: marquee 32s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 2.5rem; font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.marquee-item .dot { width: 12px; height: 12px; border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats / indicators ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.stat { padding: 1.6rem 0; border-top: 3px solid var(--accent); }
.stat .num { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 300; color: var(--navy); letter-spacing: -.02em; line-height: 1.05; }
.stat .num small { font-size: .5em; font-weight: 700; }
.stat h4 { font-size: 1.02rem; margin: .7rem 0 .3rem; color: var(--navy); }
.stat p { font-size: .9rem; }
.stat:nth-child(1) { border-color: var(--green); }
.stat:nth-child(2) { border-color: var(--blue); }
.stat:nth-child(3) { border-color: var(--orange); }
.stat:nth-child(4) { border-color: var(--purple); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--rev .split-media { order: -1; }
.split-media .media { aspect-ratio: 5/4.4; border-radius: var(--r-xl); box-shadow: var(--sh-2); }
.split-copy .lead { margin-top: 1rem; }
.split-copy .btn, .split-copy .link-arrow { margin-top: 1.6rem; }

/* ---------- Feature list (acolhimento) ---------- */
.flist { display: grid; gap: 1rem; margin-top: 1.5rem; }
.flist li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .2s, box-shadow .2s; }
.flist li:hover { border-color: var(--accent); box-shadow: var(--sh-1); }
.flist .fl-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-ink); }
.flist .fl-ico svg { width: 22px; height: 22px; }
.flist h4 { font-size: 1.05rem; margin-bottom: .15rem; color: var(--navy); }
.flist p { font-size: .93rem; }

/* ---------- Callout / highlighted quote ---------- */
.callout {
  position: relative; background: var(--navy); color: #fff; border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.4rem); overflow: hidden;
}
.callout .quote { font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; text-wrap: balance; position: relative; z-index: 2; }
.callout p { color: #C9D6E6; }
.callout .blob { opacity: .35; }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.plan {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); border-color: var(--accent); }
.plan .amt { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.plan .amt span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.plan p { font-size: .92rem; margin-top: .6rem; }
.plan--feat { background: var(--accent-tint); border-color: var(--accent); }
.plan .tag { position: absolute; top: -12px; left: 1.5rem; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .35em .8em; border-radius: var(--r-pill); }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; gap: 1.2rem; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: var(--line-strong); }
.tl-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; align-items: start; }
.tl-node { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--accent); color: var(--accent-ink); font-weight: 800; font-size: .82rem; z-index: 2; box-shadow: 0 0 0 6px #fff; }
.tl-body { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem 1.5rem; }
.tl-body h4 { font-size: 1.15rem; margin-bottom: .3rem; }
.tl-body p { font-size: .95rem; }
.tl-item:nth-child(1) .tl-node { border-color: var(--green); color: var(--green); }
.tl-item:nth-child(2) .tl-node { border-color: var(--blue); color: var(--blue); }
.tl-item:nth-child(3) .tl-node { border-color: var(--orange); color: var(--orange); }
.tl-item:nth-child(4) .tl-node { border-color: var(--purple); color: var(--purple); }
.tl-item:nth-child(5) .tl-node { border-color: var(--pink); color: var(--pink); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value { padding: 1.5rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.value .v-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem; }
.value:nth-child(6n+1) .v-ico { background: var(--accent-tint); color: var(--accent-ink); }
.value h4 { font-size: 1.1rem; margin-bottom: .35rem; }
.value p { font-size: .93rem; }

/* mission/vision */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.mv .card { border-left: 4px solid var(--accent); }

/* ---------- Pix box ---------- */
.pix-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.data-list { display: grid; gap: .2rem; margin: 1.2rem 0; }
.data-row { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px dashed var(--line-strong); }
.data-row dt { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.data-row dd { font-weight: 700; color: var(--navy); text-align: right; }
.pix-key { display: flex; align-items: center; gap: .8rem; background: var(--paper-2); border: 1px dashed var(--line-strong); border-radius: var(--r-md); padding: 1rem 1.2rem; margin-bottom: 1rem; }
.pix-key code { font-weight: 700; color: var(--navy); font-size: 1rem; overflow-wrap: anywhere; }
.qr-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; box-shadow: var(--sh-1); }
.qr-ph { width: 200px; height: 200px; margin: 0 auto 1rem; border-radius: var(--r-md); }
.alert {
  display: flex; gap: .8rem; padding: 1rem 1.2rem; border-radius: var(--r-md);
  background: var(--accent-tint); color: var(--accent-ink); font-size: .92rem; font-weight: 600; align-items: flex-start;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--accent); box-shadow: var(--sh-1); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; font-weight: 700; color: var(--navy); font-size: 1.05rem; cursor: pointer; background: none; border: none; }
.faq-q .chev { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; transition: transform .3s, background .2s, color .2s; color: var(--navy); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.4rem 1.3rem; font-size: .97rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .88rem; font-weight: 700; color: var(--navy); }
.field .req { color: var(--pink); }
.field input, .field select, .field textarea {
  padding: .9em 1.1em; border-radius: var(--r-md); border: 1.5px solid var(--line-strong);
  background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--text-soft); font-weight: 500; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-note { font-size: .86rem; color: var(--muted); }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--r-md); font-weight: 600; font-size: .95rem; }
.form-status.show { display: flex; gap: .7rem; align-items: flex-start; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-status.ok { background: #EAF9F1; color: #0C6E44; }
.form-status.err { background: #FDEBEF; color: #A21437; }

.checkgroup { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.checkgroup label { display: flex; align-items: center; gap: .6rem; padding: .7em .9em; border: 1.5px solid var(--line-strong); border-radius: var(--r-md); font-size: .92rem; font-weight: 600; color: var(--text-soft); cursor: pointer; transition: border-color .2s, background .2s; }
.checkgroup label:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-ink); }
.checkgroup input { accent-color: var(--accent); width: 18px; height: 18px; }

/* Embedded form / iframe */
.embed-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--sh-1); }
.embed-wrap iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.embed-fallback { padding: 1.2rem 1.4rem; background: var(--paper-2); border-top: 1px solid var(--line); font-size: .92rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }

/* ---------- Channels (contato) ---------- */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.channel { display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.channel:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.channel .ch-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-ink); }
.channel .ch-ico svg { width: 24px; height: 24px; }
.channel h4 { font-size: 1.05rem; }
.channel .val { font-weight: 600; color: var(--text-soft); font-size: .95rem; overflow-wrap: anywhere; }
.channel .link-arrow { margin-top: auto; }
.channel:nth-child(1) { --accent:#E33558; --accent-ink:#A21437; --accent-tint:#FDEBEF; }
.channel:nth-child(2) { --accent:#24C480; --accent-ink:#0C6E44; --accent-tint:#EAF9F1; }
.channel:nth-child(3) { --accent:#8C50B3; --accent-ink:#5E2C81; --accent-tint:#F3EBF9; }
.channel:nth-child(4) { --accent:#237FF6; --accent-ink:#0B54AD; --accent-tint:#E7F1FE; }
.channel:nth-child(5) { --accent:#E33558; --accent-ink:#A21437; --accent-tint:#FDEBEF; }
.channel:nth-child(6) { --accent:#1B8F8F; --accent-ink:#0C5D5D; --accent-tint:#E5F4F4; }

/* ---------- Documents list ---------- */
.docs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.doc { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .2s, box-shadow .2s, transform .2s; }
.doc:hover { border-color: var(--accent); box-shadow: var(--sh-1); transform: translateY(-3px); }
.doc .doc-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-ink); display: grid; place-items: center; }
.doc .doc-ico svg { width: 22px; height: 22px; }
.doc .doc-main { flex: 1; }
.doc h4 { font-size: 1rem; margin-bottom: .1rem; }
.doc p { font-size: .85rem; color: var(--muted); }
.doc .link-arrow { font-size: .9rem; }

/* ---------- Transparency ---------- */
.finance-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.fin-card { flex: 1 1 210px; max-width: 280px; min-width: 0; padding: 1.5rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.fin-card .fc-label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.fin-card .fc-val { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-top: .5rem; overflow-wrap: anywhere; }
.fin-card:nth-child(1) { border-top: 3px solid var(--green); }
.fin-card:nth-child(2) { border-top: 3px solid var(--pink); }
.fin-card:nth-child(3) { border-top: 3px solid var(--blue); }
.fin-card:nth-child(4) { border-top: 3px solid var(--orange); }
.fin-card:nth-child(5) { border-top: 3px solid var(--purple); }

.bars { display: grid; gap: .9rem; }
.bar-row { display: grid; grid-template-columns: 190px 1fr auto; gap: 1rem; align-items: center; }
.bar-row .bar-label { font-weight: 600; color: var(--text); font-size: .95rem; }
.bar-track { height: 12px; border-radius: var(--r-pill); background: var(--paper-2); overflow: hidden; }
.bar-fill { height: 100%; border-radius: var(--r-pill); width: 0; transition: width 1s cubic-bezier(.2,.7,.3,1); }
.bar-row .bar-val { font-weight: 700; color: var(--navy); font-size: .92rem; min-width: 48px; text-align: right; }

/* transparency table */
.table-toolbar { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .8rem; margin-bottom: 1.2rem; }
.table-toolbar .search { position: relative; }
.table-toolbar .search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.table-toolbar .search input { padding-left: 2.6rem; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
table.mov { width: 100%; border-collapse: collapse; min-width: 720px; }
table.mov th { text-align: left; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 1rem 1.1rem; background: var(--paper-2); border-bottom: 1px solid var(--line); }
table.mov td { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); font-size: .93rem; }
table.mov tr:last-child td { border-bottom: 0; }
table.mov tbody tr:hover { background: var(--paper-2); }
.pill { display: inline-flex; align-items: center; gap: .4ch; padding: .25em .7em; border-radius: var(--r-pill); font-size: .78rem; font-weight: 700; }
.pill--in { background: #EAF9F1; color: #0C6E44; }
.pill--out { background: #FDEBEF; color: #A21437; }
.val-in { color: #0C6E44; font-weight: 700; }
.val-out { color: #A21437; font-weight: 700; }
.empty-state { padding: 3rem 1.5rem; text-align: center; color: var(--muted); }
.empty-state svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--line-strong); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C9D6E6; padding-top: clamp(3.5rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.site-footer .blob { opacity: .25; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; position: relative; z-index: 2; }
.footer-brand img { height: 54px; margin-bottom: 1rem; }
.footer-brand p { color: #A9BBD0; font-size: .95rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: #C9D6E6; font-weight: 500; transition: color .2s, padding .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #C9D6E6; transition: background .2s, transform .2s, color .2s; }
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; display: block; }
.footer-info { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-block: 2rem; display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; position: relative; z-index: 2; }
.footer-info p { color: #A9BBD0; font-size: .9rem; line-height: 1.9; }
.footer-info strong { color: #fff; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.footer-legal a { font-size: .88rem; color: #A9BBD0; }
.footer-legal a:hover { color: #fff; }
.footer-protect { background: rgba(36,196,128,.12); border: 1px solid rgba(36,196,128,.25); border-radius: var(--r-md); padding: 1.2rem 1.3rem; font-size: .88rem; color: #D6EFE1; display: flex; gap: .7rem; }
.footer-protect svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.footer-bottom p { font-size: .86rem; color: #8FA3BC; }
.to-top { display: inline-flex; align-items: center; gap: .5ch; font-weight: 700; color: #fff; font-size: .9rem; }
.to-top .ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.to-top:hover .ic { background: var(--green); transform: translateY(-3px); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Floating WhatsApp (só o ícone) ---------- */
.fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 70;
  display: grid; place-items: center; width: 60px; height: 60px;
  background: #25D366; color: #fff; border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .25s, box-shadow .25s;
}
.fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(37,211,102,.5); }
.fab svg { width: 30px; height: 30px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 40px); z-index: 200;
  background: var(--navy); color: #fff; padding: .9rem 1.3rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; box-shadow: var(--sh-lift); display: flex; align-items: center; gap: .6rem;
  opacity: 0; visibility: hidden; transition: transform .35s cubic-bezier(.2,.9,.3,1), opacity .35s, visibility .35s;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.toast svg { width: 20px; height: 20px; color: var(--green); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-top: clamp(40px, 5vw, 70px); padding-bottom: var(--section-y); }
.page-hero .display { font-size: clamp(2.2rem, 5.2vw, 4rem); margin: .6rem 0 1.1rem; }

/* ---------- Reveal animation ----------
   Estado oculto só quando o JS está ativo (html.js). Sem JS ou se o
   IntersectionObserver falhar, o conteúdo permanece totalmente visível. */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
html.js .reveal.in { opacity: 1; transform: none; }
/* Variações direcionais/zoom de entrada (usar junto de .reveal) */
html.js .reveal.reveal-l { transform: translateX(-32px); }
html.js .reveal.reveal-r { transform: translateX(32px); }
html.js .reveal.reveal-zoom { transform: scale(.94); }
html.js .reveal.reveal-l.in, html.js .reveal.reveal-r.in, html.js .reveal.reveal-zoom.in { transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal, html.js .reveal.reveal-l, html.js .reveal.reveal-r, html.js .reveal.reveal-zoom { opacity: 1; transform: none; } }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Hover extra: zoom em imagens e lift em cartões ---------- */
.section-media-top, .split-media { overflow: hidden; }
.section-media-top img, .split-media img, .media img { transition: transform .6s cubic-bezier(.2,.7,.3,1); will-change: transform; }
.section-media-top:hover img, .split-media:hover img, .media:hover img { transform: scale(1.045); }
.stat { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.stat:hover { transform: translateY(-5px); }
.fin-card { transition: transform .3s, box-shadow .3s, border-color .3s; }
.fin-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; }
.summary-card { transition: transform .3s, box-shadow .3s; }
.summary-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
a.chip { transition: border-color .2s, transform .2s, background .2s, color .2s; }
a.chip:hover { transform: translateY(-2px); }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--navy); color: #fff; padding: .7em 1.2em; border-radius: 0 0 12px 0; font-weight: 700; }
.skip:focus { left: 0; }

/* prose helper */
.prose p + p { margin-top: 1rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2rem; }
.center { text-align: center; }
.stack { display: grid; gap: .8rem; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .5ch; padding: .5em 1em; border-radius: var(--r-pill); background: var(--accent-tint); color: var(--accent-ink); font-weight: 700; font-size: .9rem; }

/* need list */
.needs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.need { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); font-weight: 600; color: var(--navy); }
.need .n-ico { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.need .n-ico svg { width: 18px; height: 18px; }

/* partners */
.partners { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.partner-ph { aspect-ratio: 3/2; border-radius: var(--r-md); border: 1.5px dashed var(--line-strong); display: grid; place-items: center; color: var(--muted-2); font-size: .82rem; font-weight: 700; background: var(--paper-2); }

/* social CTA cards — sóbrios, brancos com borda */
.socials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card { padding: 1.8rem; border: 1px solid var(--line); background: #fff; color: var(--text); position: relative; display: flex; flex-direction: column; gap: .5rem; transition: border-color .2s, box-shadow .2s; }
.social-card:hover { border-color: var(--navy); box-shadow: var(--sh-2); }
.social-card .s-ico { width: 50px; height: 50px; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: .6rem; color: var(--navy); }
.social-card .s-ico svg { width: 26px; height: 26px; }
.social-card h4 { color: var(--navy); font-size: 1.2rem; }
.social-card .handle { font-weight: 600; color: var(--muted); font-size: .95rem; }
.social-card .btn { margin-top: auto; align-self: flex-start; background: transparent; color: var(--navy); border-color: var(--navy); }
.social-card .btn:hover { background: var(--navy); color: #fff; }
.social-card.ig .s-ico { color: #E33558; }
.social-card.fb .s-ico { color: #237FF6; }
.social-card.yt .s-ico { color: #E33558; }

/* embedded sheet states */
.state-box { padding: 3rem 1.5rem; text-align: center; color: var(--muted); }
.state-box svg { width: 36px; height: 36px; margin: 0 auto 1rem; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* two-column intro text */
.two-col { columns: 2; column-gap: 3rem; }
.two-col p { break-inside: avoid; }

/* ---------- Ajustes sóbrios: cantos retos nos blocos ---------- */
.pix-key, .chip, .pill, .bar-track, .bar-fill, .qr-ph, .hero-badge,
.alert, .form-status, .checkgroup label,
.field input, .field select, .field textarea {
  border-radius: 0;
}
/* Ícones seguem arredondados (16px), conforme o Figma */
.card-ico { border-radius: 16px; }
.bar-track { height: 10px; }
.chip { background: transparent; color: var(--navy); border: 1px solid var(--line-strong); }
a.chip:hover { border-color: var(--navy); }

/* ---------- Home (fiel ao Figma) ---------- */
/* Hero ocupa a tela (100vh menos a faixa superior + header) + imagem de fundo + overlay */
.hero-home {
  position: relative; overflow: hidden; text-align: center;
  min-height: calc(100vh - var(--hero-offset, 128px));
  min-height: calc(100svh - var(--hero-offset, 128px));
  display: flex; align-items: center;
  padding-block: clamp(48px, 6vh, 88px);
}
.hero-media-bg { position: absolute; inset: 0; z-index: 0; }
.hero-media-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Vídeo de fundo (injetado por JS) cobrindo a hero, acima da imagem de fallback */
.hero-video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  border: 0; pointer-events: none; z-index: 1;
}
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
/* Overlay branco 70% (acima de todo o .hero-media-bg, inclusive do vídeo) */
.hero-home::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(255,255,255,.70); }
.hero-home-inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.hero-home .display { color: var(--navy); margin: 1.1rem 0 1.4rem; }
.hero-home .lead { margin-inline: auto; max-width: 850px; }
.hero-home .hero-cta { justify-content: center; margin-top: 2rem; }
.hero-home .hero-support { justify-content: center; margin-top: 1.6rem; }
.hero-note { margin-top: 1.4rem; font-size: .78rem; color: var(--muted); margin-inline: auto; white-space: nowrap; }

/* Indicador de rolagem "Role para ver mais" (centralizado, base do hero) */
.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: clamp(16px, 3vh, 34px); z-index: 4;
  display: inline-flex; flex-direction: column; align-items: center; gap: .55rem; color: var(--navy);
}
.scroll-cue .scroll-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid var(--navy); border-radius: 12px;
  position: relative; flex-shrink: 0;
}
.scroll-wheel {
  position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; border-radius: 2px;
  background: var(--navy); transform: translateX(-50%);
  animation: scrollWheel 1.6s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  60% { opacity: 1; transform: translate(-50%, 9px); }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-wheel { animation: none; } }
/* Aviso de IA: uma linha no desktop; quebra no mobile para não cortar */
@media (max-width: 760px) { .hero-note { white-space: normal; max-width: 620px; } }

/* Notebooks/telas baixas: reduz headline e respiro para o hero caber na 1ª dobra */
@media (max-height: 860px) {
  .hero-home { padding-block: clamp(20px, 3vh, 48px); }
  .hero-home .display { font-size: clamp(2rem, 4.4vw, 3.3rem); margin: .6rem 0 1rem; }
  .hero-home .lead { font-size: 1.05rem; }
  .hero-home .hero-cta { margin-top: 1.4rem; }
  .hero-home .hero-support { margin-top: 1rem; }
  .hero-home .hero-note { margin-top: .9rem; }
}
@media (max-height: 700px) {
  .hero-home { padding-block: clamp(14px, 2vh, 32px); }
  .hero-home .display { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .hero-home .lead { font-size: .98rem; }
}

/* Seções centralizadas com logo/imagem no topo */
.stack-center { text-align: center; max-width: 860px; margin-inline: auto; }
.stack-center .lead { margin-inline: auto; }
.stack-center .hero-cta { justify-content: center; }
.manifesto-logo { width: 251px; max-width: 60%; height: auto; margin: 0 auto 1.8rem; display: block; }
.section-media-top { max-width: 692px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-media-top img { width: 100%; height: auto; display: block; }

/* Callout verde (chamada final) */
.callout--green { background: #0C6E44; }
.callout--green p { color: #D6E8DF; }

/* Cards com conteúdo centralizado (Como ajudar) */
.card--center { text-align: center; align-items: center; }
.card--center .card-ico { margin-left: auto; margin-right: auto; }
.card--center .btn { align-self: center; }

/* Card de resumo financeiro centralizado (Transparência) */
.summary-card { max-width: 508px; margin-inline: auto; padding: 2rem clamp(1.5rem,3vw,2.2rem); }
.summary-card .eyebrow { margin-bottom: 1.2rem; }

/* Indicadores centralizados (Credibilidade) */
.stats--center .stat { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .finance-cards { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .socials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-info { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-main, .header-actions .btn { display: none; }
  .hamburger { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .pix-wrap { grid-template-columns: 1fr; }
  .sec-head--split { grid-template-columns: 1fr; }
  .two-col { columns: 1; }
}
@media (max-width: 680px) {
  :root { --section-y: clamp(48px, 12vw, 72px); }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .channels { grid-template-columns: 1fr; }
  .finance-cards { grid-template-columns: 1fr 1fr; }
  .docs { grid-template-columns: 1fr; }
  .needs { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .checkgroup { grid-template-columns: 1fr; }
  .table-toolbar { grid-template-columns: 1fr; }
  .mv { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; gap: .3rem; }
  .bar-row .bar-val { text-align: left; }
  .fab .fab-text { display: none; }
  .fab { padding: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-top .container { flex-direction: column; gap: .5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .stats, .plans, .finance-cards, .partners { grid-template-columns: 1fr; }
}
