:root {
  --parchment: #FBF3E7;
  --parchment-deep: #F1E4D0;
  --ink: #23302B;
  --ink-soft: #4B564E;
  --teal: #0E7C74;
  --teal-deep: #0A5C56;
  --coral: #D95B44;
  --gold: #DE9F35;
  --moss: #6B8F5C;
  --rule: rgba(35,48,43,0.14);
  --display: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
  --body-font: 'Segoe UI', Calibri, system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--parchment); color: var(--ink);
  font-family: var(--body-font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-wrap: balance; margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--body-font); text-transform: uppercase; letter-spacing: .14em;
  font-size: 12.5px; font-weight: 600; color: var(--teal-deep);
}

/* ---------- NAV ---------- */
.topnav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 32px; max-width: 1120px; margin: 0 auto; flex-wrap: wrap;
}
.topnav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.topnav .brand img { width: 42px; height: 42px; object-fit: contain; }
.topnav .brand .name { font-family: var(--display); font-size: 19px; color: var(--teal-deep); }
.topnav nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.topnav nav a {
  font-size: 13.5px; font-weight: 600; text-decoration: none; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 999px;
}
.topnav nav a:hover { background: var(--parchment-deep); }
.topnav nav a.active { background: var(--teal-deep); color: var(--parchment); }

/* ---------- HERO ---------- */
.hero { padding: 26px 32px 70px 32px; max-width: 1120px; margin: 0 auto; }
.hero-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 56px; line-height: 1.03; margin: 14px 0 20px 0; color: var(--teal-deep); }
.hero p.lede { font-size: 18px; max-width: 48ch; color: var(--ink-soft); margin-bottom: 24px; }
.hero-photo, .hero-blob { border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px -16px rgba(35,48,43,.4); }
.hero-photo img, .hero-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo img { aspect-ratio: 5/4; }
.hero-blob { border-radius: 62% 38% 55% 45% / 48% 55% 45% 52%; aspect-ratio: 4/4.4; }
.hero-caption { font-size: 12.5px; color: var(--ink-soft); font-style: italic; margin-top: 10px; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; font-weight: 600;
  padding: 7px 14px; border: 1px solid var(--rule); border-radius: 999px; color: var(--ink-soft);
}

/* ---------- SECTION SHELL ---------- */
section { padding: 74px 0; }
section h2 { font-size: 36px; color: var(--teal-deep); margin-bottom: 20px; }
.band-teal { background: linear-gradient(180deg, var(--parchment-deep), var(--parchment)); }

/* ---------- TWO COLUMN TEXT+PHOTO ---------- */
.split-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: start; }
.split-grid.reverse { grid-template-columns: .9fr 1.3fr; }
.split-grid.reverse .split-photo { order: -1; }
.split-grid p { font-size: 16.5px; color: var(--ink-soft); max-width: 62ch; margin: 0 0 16px 0; }
.split-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 34px -18px rgba(35,48,43,.4); }
.split-photo img { width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-photo figcaption { font-size: 12.5px; color: var(--ink-soft); font-style: italic; padding: 10px 4px 0 4px; }

/* ---------- STATS ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; }
.stat { background: var(--parchment); padding: 26px 20px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 38px; color: var(--coral); font-variant-numeric: tabular-nums; line-height: 1; }
.stat .l { font-size: 12px; color: var(--ink-soft); margin-top: 8px; line-height: 1.4; }
.stat-note { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 14px; font-style: italic; }

/* ---------- PROGRAM / GENERIC CARDS ---------- */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prog-card { background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 28px; }
.prog-card .tag2 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: block; }
.prog-card h3 { font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.prog-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- CNV / VERSES / STEPS ---------- */
.verse { font-style: italic; color: var(--teal-deep); border-left: 3px solid var(--gold); padding-left: 14px; margin: 18px 0; }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { padding: 14px 0; border-top: 1px solid var(--rule); font-size: 15px; }
.steps li:first-child { border-top: none; }
.steps b { color: var(--teal); }
.fable-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.fable-col { padding: 32px 36px; }
.fable-col.chacal { border-right: 1px solid var(--rule); color: #8B7E70; }
.fable-col.girafa { color: var(--teal-deep); }
.fable-label { font-family: var(--display); font-size: 26px; margin-bottom: 6px; }
.fable-col.chacal .fable-label::before { content: "○ "; }
.fable-col.girafa .fable-label::before { content: "◆ "; color: var(--gold); }
.fable-sub { font-size: 13px; color: inherit; opacity: .8; margin-bottom: 20px; }
.fable-col ul { list-style: none; margin: 0; padding: 0; }
.fable-col li { font-size: 15px; padding: 10px 0; border-top: 1px solid var(--rule); }
.fable-col.chacal li { text-decoration: line-through; opacity: .75; }
.fable-col li:first-child { border-top: none; }
.fable-col.girafa li b { color: var(--teal); font-weight: 600; text-decoration: none; }

/* ---------- CROSS-LINK CARD (para outra pagina) ---------- */
.cross-link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-deep); color: var(--parchment); text-decoration: none;
  padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
}
.cross-link img { width: 26px; height: 26px; object-fit: contain; }

/* ---------- PILLS / PROJETOS ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.pill {
  font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--rule); color: var(--ink);
}
.ganhos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ganho { text-align: center; }
.ganho .w { font-family: var(--display); font-size: 20px; color: var(--teal-deep); margin-bottom: 4px; }
.ganho .d { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- PHOTO STRIP / GRID ---------- */
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.photo-strip figure { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 14px 34px -18px rgba(35,48,43,.4); }
.photo-strip img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-strip figcaption { font-size: 12.5px; color: var(--parchment); font-style: italic; background: rgba(14,92,86,.82); padding: 10px 14px; }

.photo-band { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin-bottom: 28px; }
.photo-band .big { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 34px -18px rgba(35,48,43,.4); }
.photo-band .big img { width: 100%; height: 100%; aspect-ratio: 16/11; object-fit: cover; }
.photo-band .side { display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center; }
.photo-band .side .circle {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 14px 30px -14px rgba(35,48,43,.45); border: 6px solid var(--parchment);
  outline: 2px solid var(--rule);
}
.photo-band .side .circle img { width: 100%; height: 100%; object-fit: cover; }
.photo-band .side p { font-size: 12.5px; text-align: center; color: var(--ink-soft); font-style: italic; max-width: 22ch; }

.emo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 6mm 0; }
.emo-grid figure { margin: 0; text-align: center; }
.emo-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.emo-grid figcaption { font-size: 12px; font-weight: 700; margin-top: 5px; color: var(--ink); }

/* ---------- BUTTONS / CTA ---------- */
.cta { background: var(--teal-deep); color: var(--parchment); border-radius: 26px; padding: 54px; }
.cta-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta h2 { color: var(--parchment); font-size: 30px; }
.cta p { font-size: 15.5px; color: #CFE4E1; max-width: 50ch; margin: 0 0 8px 0; }
.cta .note { font-size: 13px; color: #AFC9C6; margin-top: 18px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; }
.btn { display: inline-block; background: var(--coral); color: #fff; font-weight: 700; font-size: 15px; padding: 16px 26px; border-radius: 999px; text-decoration: none; text-align: center; box-shadow: 0 10px 24px -10px rgba(217,91,68,.7); }
.btn.secondary { background: var(--teal-deep); box-shadow: 0 10px 24px -10px rgba(10,92,86,.5); }

/* ---------- CONTATO PAGE SPECIFICS ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 30px; }
.contact-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--teal-deep); }
.contact-card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 8px 0; }
.contact-card a.phone { color: var(--coral); font-weight: 600; text-decoration: none; }
.steps-numbered { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps-numbered li { position: relative; padding: 10px 0 10px 34px; font-size: 15px; color: var(--ink-soft); border-top: 1px solid var(--rule); }
.steps-numbered li:first-child { border-top: none; }
.steps-numbered li::before {
  counter-increment: step; content: counter(step); position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: #fff;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}

/* ---------- FOOTER ---------- */
footer { padding: 54px 0 70px 0; border-top: 1px solid var(--rule); }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-grid img { width: 50px; height: 50px; object-fit: contain; }
.foot-line { font-size: 13px; color: var(--ink-soft); }
.foot-nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.foot-nav a { text-decoration: none; color: var(--ink-soft); }
.foot-nav a:hover { color: var(--teal-deep); }

@media (max-width: 860px) {
  .topnav { flex-direction: column; align-items: flex-start; }
  .hero-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
  .split-grid.reverse .split-photo { order: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .fable-grid { grid-template-columns: 1fr; }
  .fable-col.chacal { border-right: none; border-bottom: 1px solid var(--rule); }
  .ganhos-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip, .photo-band { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .emo-grid { grid-template-columns: repeat(2, 1fr); }
}
