:root {
  --ink: #17120d;
  --ink-soft: #2a2119;
  --sand: #d7a96f;
  --sand-light: #f1dfc4;
  --cream: #f5f0e7;
  --paper: #fffaf1;
  --green: #687b45;
  --green-dark: #34432b;
  --green-bright: #99ad66;
  --clay: #a7603a;
  --rust: #7b3d24;
  --line: rgba(23, 18, 13, .14);
  --white: #fff;
  --shadow: 0 30px 80px rgba(31, 22, 14, .16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: min(1200px, calc(100vw - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
body.high-contrast {
  --cream: #fff;
  --paper: #fff;
  --ink: #000;
  --ink-soft: #000;
  --green: #385c1b;
  --green-dark: #183009;
  --sand: #b56c17;
  --line: rgba(0,0,0,.35);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--green-dark); color: white; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.section-dark { background: #151711; color: var(--cream); }
.section-earth { background: #2b1c14; color: var(--cream); }
.section-light { background: #ebe2d2; }

.scroll-progress {
  position: fixed; inset: 0 auto auto 0; width: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--green-bright), var(--sand));
}
.cursor-glow {
  position: fixed; width: 360px; height: 360px; border-radius: 50%; z-index: 2;
  pointer-events: none; opacity: .12; filter: blur(60px); transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--sand), transparent 70%);
  transition: opacity .2s ease;
}

.preloader {
  position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center;
  align-content: center; gap: 18px; background: #110e0a; color: var(--sand-light);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-mark { width: 130px; height: 130px; position: relative; }
.preloader-mark img { width: 100%; height: 100%; object-fit: contain; animation: loaderFloat 2.2s ease-in-out infinite; }
.preloader-mark span { position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(215,169,111,.4); border-top-color: var(--sand); animation: spin 2s linear infinite; }
.preloader p { margin: 0; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderFloat { 50% { transform: translateY(-7px) scale(1.03); } }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; color: white;
  transition: background .35s ease, box-shadow .35s ease, color .35s ease, transform .35s ease;
}
.site-header.scrolled { background: rgba(245,240,231,.94); color: var(--ink); backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(20,14,9,.08); }
.header-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 280px; }
.brand img { width: 62px; height: 62px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 16px; letter-spacing: .02em; }
.brand-copy small { font-size: 10px; opacity: .68; margin-top: 5px; max-width: 180px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; }
.desktop-nav a { position: relative; opacity: .82; transition: .25s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .3s ease; }
.desktop-nav a:hover, .desktop-nav a.active { opacity: 1; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.accessibility-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: inherit; cursor: pointer; }
.scrolled .accessibility-btn { border-color: var(--line); background: transparent; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 100%; margin: 5px 0; background: currentColor; transition: .3s ease; }
.mobile-menu { max-height: 0; overflow: hidden; background: rgba(245,240,231,.98); color: var(--ink); transition: max-height .35s ease; }
.mobile-menu.open { max-height: 520px; box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.mobile-menu-inner { padding: 16px 0 28px; display: grid; }
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }

.btn {
  appearance: none; border: 0; cursor: pointer; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  padding: 0 24px; border-radius: 999px; font-weight: 700; font-size: 13px; letter-spacing: .01em; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sand); color: #20150d; box-shadow: 0 14px 34px rgba(215,169,111,.2); }
.btn-primary:hover { background: #e1b57d; box-shadow: 0 18px 44px rgba(215,169,111,.27); }
.btn-outline { border: 1px solid rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.btn-outline:hover { background: white; color: var(--ink); }
.btn-outline-dark { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-dark { background: var(--ink); color: white; }
.btn-small { min-height: 40px; padding-inline: 18px; font-size: 12px; }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: inherit; background: transparent; }
.scrolled .btn-ghost { border-color: var(--line); }
.btn-full { width: 100%; }

.hero { min-height: 100svh; background: #1b160f; color: white; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hero-background, .hero-image, .hero-grain, .hero-vignette { position: absolute; inset: 0; }
.hero-image { background-size: cover; background-position: center; transform: scale(1.05); }
.hero-image-a { background-image: linear-gradient(90deg, rgba(17,13,9,.86) 0%, rgba(17,13,9,.62) 45%, rgba(17,13,9,.18) 100%), url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg'); opacity: .95; }
.hero-image-b { background: radial-gradient(circle at 76% 44%, rgba(126,159,83,.22), transparent 27%), linear-gradient(180deg, transparent 55%, rgba(17,13,9,.8)); }
.hero-grain { opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-vignette { box-shadow: inset 0 -220px 170px rgba(0,0,0,.42), inset 0 0 180px rgba(0,0,0,.28); }
.sun-orbit { position: absolute; right: 5vw; top: 13vh; width: 42vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: slowSpin 30s linear infinite; }
.sun-orbit::before, .sun-orbit::after { content: ""; position: absolute; border-radius: inherit; border: 1px solid rgba(255,255,255,.08); }
.sun-orbit::before { inset: 10%; }
.sun-orbit::after { inset: 27%; border-style: dashed; }
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-shell { position: relative; z-index: 3; flex: 1; display: grid; grid-template-columns: minmax(0,1.18fr) minmax(350px,.82fr); align-items: center; gap: 50px; padding-top: 120px; padding-bottom: 70px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--rust); }
.eyebrow { color: var(--sand-light); margin-bottom: 24px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.section-kicker.light { color: var(--sand); }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 6.1vw, 104px); line-height: .91; letter-spacing: -.055em; margin: 0; max-width: 900px; font-weight: 500; text-wrap: balance; }
.hero h1 em { display: block; color: var(--sand); font-weight: 400; }
.hero-copy > p { max-width: 680px; margin: 28px 0 0; font-size: clamp(16px,1.35vw,20px); color: rgba(255,255,255,.75); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-signals { margin-top: 48px; display: grid; grid-template-columns: repeat(4,1fr); max-width: 730px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-signals div { padding: 18px 16px 0 0; display: flex; flex-direction: column; gap: 2px; }
.hero-signals span { font-size: 9px; opacity: .5; letter-spacing: .16em; }
.hero-signals strong { font-size: 12px; font-weight: 600; }
.hero-emblem { position: relative; width: min(38vw, 510px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.hero-emblem img { width: 68%; position: relative; z-index: 3; filter: drop-shadow(0 28px 32px rgba(0,0,0,.32)); animation: emblemFloat 6s ease-in-out infinite; }
@keyframes emblemFloat { 50% { transform: translateY(-12px) rotate(1.5deg); } }
.emblem-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.ring-one { inset: 0; }
.ring-two { inset: 10%; border-style: dashed; animation: reverseSpin 40s linear infinite; }
.ring-three { inset: 26%; background: radial-gradient(circle, rgba(215,169,111,.12), transparent 67%); }
@keyframes reverseSpin { to { transform: rotate(-360deg); } }
.emblem-tag { position: absolute; z-index: 4; padding: 9px 13px; border-radius: 999px; background: rgba(19,15,10,.48); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.82); display: flex; align-items: center; gap: 8px; }
.emblem-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(153,173,102,.12); }
.tag-one { left: 2%; top: 24%; }
.tag-two { right: -3%; bottom: 23%; }
.hero-foot { z-index: 3; position: relative; min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.13); }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; opacity: .75; }
.scroll-cue span { width: 26px; height: 40px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; position: relative; }
.scroll-cue span::after { content: ""; width: 3px; height: 7px; border-radius: 999px; background: white; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 70% { transform: translate(-50%, 16px); opacity: 0; } }
.location-chip { font-size: 11px; color: rgba(255,255,255,.56); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; margin-bottom: 58px; }
.section-head > div { max-width: 780px; }
.section-head h2, .manifesto-copy h2, .services-intro h2, .experience-copy h2, .transparency-copy h2, .contact-info h2, .participate-copy h2 {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(43px,4.2vw,72px); letter-spacing: -.045em; line-height: .98; font-weight: 500; margin: 13px 0 0;
}
.section-head > p { width: min(360px,100%); margin: 0; color: currentColor; opacity: .68; }
.manifesto-grid { display: grid; grid-template-columns: .62fr 1.55fr .78fr; gap: 54px; align-items: start; }
.manifesto-copy h2 { margin-top: 0; }
.manifesto-copy .lead { font-size: 18px; color: rgba(23,18,13,.68); max-width: 800px; }
.manifesto-note { border-left: 1px solid var(--line); padding-left: 28px; }
.quote-mark { font-family: Georgia, serif; font-size: 90px; line-height: .6; color: var(--sand); }
.manifesto-note p { font-family: Georgia, serif; font-size: 23px; line-height: 1.25; margin: 12px 0 20px; }
.manifesto-note strong { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }

.orbit-board { width: min(760px, 90vw); aspect-ratio: 1; margin: 54px auto 30px; position: relative; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; background: radial-gradient(circle, rgba(125,150,83,.11) 0 22%, transparent 22% 100%); }
.orbit-board::before, .orbit-board::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.09); }
.orbit-board::before { inset: 14%; }
.orbit-board::after { inset: 31%; }
.orbit-core { position: relative; z-index: 3; width: 210px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; align-content: center; text-align: center; background: #201e16; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 100px rgba(106,132,67,.13); }
.orbit-core img { width: 92px; margin-bottom: 4px; }
.orbit-core strong { font-family: Georgia, serif; font-size: 24px; }
.orbit-core span { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; opacity: .55; }
.orbit-item { position: absolute; min-width: 150px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; padding: 12px 16px; background: rgba(255,255,255,.035); backdrop-filter: blur(10px); color: rgba(255,255,255,.72); cursor: pointer; z-index: 5; transition: .3s ease; }
.orbit-item span { font-size: 9px; opacity: .45; margin-right: 7px; }
.orbit-item:hover, .orbit-item.active { background: var(--sand); color: #17120d; border-color: var(--sand); transform: scale(1.05); }
.orbit-1 { top: 4%; left: 50%; transform: translateX(-50%); }
.orbit-1:hover, .orbit-1.active { transform: translateX(-50%) scale(1.05); }
.orbit-2 { top: 27%; right: -4%; }
.orbit-3 { bottom: 12%; right: 4%; }
.orbit-4 { bottom: 12%; left: 4%; }
.orbit-5 { top: 27%; left: -4%; }
.orbit-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(215,169,111,.18), transparent); height: 1px; width: 100%; }
.orbit-line-a { transform: rotate(36deg); }
.orbit-line-b { transform: rotate(-36deg); }
.orbit-info { margin-top: 42px; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 38px; align-items: end; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
.orbit-index { color: var(--sand); font-size: 10px; letter-spacing: .18em; }
.orbit-info h3 { margin: 7px 0 0; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.orbit-info p { margin: 0; color: rgba(255,255,255,.63); }
.orbit-info a { font-size: 12px; color: var(--sand-light); white-space: nowrap; }

.project-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 9px 15px; font-size: 11px; cursor: pointer; transition: .25s ease; }
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: white; }
.project-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-auto-rows: minmax(330px, auto); gap: 18px; }
.project-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 430px; background: #4f3a2b; color: white; transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease; box-shadow: var(--shadow); }
.project-card.is-hidden { display: none; }
.project-card:hover { transform: translateY(-6px); }
.project-card-featured { grid-row: span 2; min-height: 680px; }
.project-card-minimal { background: var(--sand-light); color: var(--ink); box-shadow: none; min-height: 330px; }
.project-card-minimal::before { content: ""; position: absolute; width: 290px; height: 290px; border: 1px solid rgba(23,18,13,.11); border-radius: 50%; right: -80px; top: -90px; }
.project-photo, .project-overlay { position: absolute; inset: 0; }
.project-photo { background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-photo { transform: scale(1.05); }
.monkey-photo { background-image: url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/73d8731e-09dd-4edf-8a52-a7426e83da61.jpg'), linear-gradient(135deg,#3b2d1d,#6a7c45); }
.tower-photo { background-image: url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg'), linear-gradient(135deg,#6b5b4c,#a26d43); }
.project-overlay { background: linear-gradient(180deg, transparent 25%, rgba(12,9,6,.86) 100%); }
.project-content { position: absolute; inset: auto 0 0; z-index: 3; padding: 34px; }
.project-card-minimal .project-content { position: relative; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.project-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.project-meta span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; border: 1px solid rgba(255,255,255,.25); padding: 5px 8px; border-radius: 999px; }
.project-card-minimal .project-meta span { border-color: rgba(23,18,13,.18); }
.project-content h3 { font-family: Georgia, serif; font-size: clamp(34px,3.3vw,55px); font-weight: 500; letter-spacing: -.035em; line-height: 1; margin: 0 0 15px; }
.project-content p { max-width: 680px; margin: 0 0 22px; color: rgba(255,255,255,.74); }
.project-card-minimal .project-content p { color: rgba(23,18,13,.65); }
.project-number { position: absolute; left: 34px; top: 28px; font-family: Georgia, serif; font-size: 80px; line-height: 1; opacity: .12; }
.text-link { border: 0; background: transparent; color: white; padding: 0; font-weight: 700; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 12px; }
.text-link.dark { color: var(--ink); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.impact-strip { overflow: hidden; background: var(--sand); color: #20150d; padding: 18px 0; transform: rotate(-1.2deg) scale(1.02); position: relative; z-index: 3; }
.impact-marquee { display: flex; width: max-content; gap: 22px; align-items: center; white-space: nowrap; animation: marquee 28s linear infinite; font-weight: 900; letter-spacing: .12em; font-size: 13px; }
.impact-marquee i { font-style: normal; font-size: 11px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.services-intro { position: sticky; top: 135px; }
.services-intro p, .experience-copy > p, .transparency-copy > p, .contact-info > p, .participate-copy > p { color: rgba(23,18,13,.65); max-width: 600px; margin: 24px 0 30px; }
.service-list { border-top: 1px solid var(--line); }
.service-row { width: 100%; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; text-align: left; padding: 25px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; }
.service-num { font-size: 10px; opacity: .45; }
.service-name { font-family: Georgia, serif; font-size: clamp(28px,3vw,42px); letter-spacing: -.03em; }
.service-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .3s ease; }
.service-row.active .service-arrow, .service-row:hover .service-arrow { background: var(--green-dark); color: white; transform: rotate(45deg); }
.service-detail { max-height: 0; overflow: hidden; opacity: 0; transition: .4s ease; border-bottom: 0 solid transparent; }
.service-detail.active { max-height: 160px; opacity: 1; border-bottom-width: 1px; border-bottom-color: var(--line); }
.service-detail p { margin: 0; padding: 20px 60px 28px 54px; color: rgba(23,18,13,.62); }

.history .section-head > p { color: rgba(255,255,255,.6); }
.timeline-wrap { margin-top: 65px; }
.timeline-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.timeline-controls button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: transparent; color: white; cursor: pointer; }
.timeline-progress { height: 2px; flex: 1; background: rgba(255,255,255,.12); overflow: hidden; }
.timeline-progress span { display: block; width: 16.66%; height: 100%; background: var(--sand); transition: width .35s ease; }
.timeline { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 31%); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 10px; }
.timeline::-webkit-scrollbar { display: none; }
.timeline-card { scroll-snap-align: start; min-height: 320px; border-radius: var(--radius-md); padding: 28px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); display: flex; flex-direction: column; transition: .35s ease; }
.timeline-card.active { background: var(--sand); color: #20150d; transform: translateY(-4px); }
.timeline-year { font-family: Georgia, serif; font-size: 54px; line-height: 1; margin-bottom: auto; opacity: .92; }
.timeline-card h3 { font-size: 22px; margin: 24px 0 8px; }
.timeline-card p { margin: 0; opacity: .68; }

.experience-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 650px; gap: 70px; align-items: center; }
.experience-photo { min-height: 650px; border-radius: var(--radius-lg); background-image: linear-gradient(180deg, transparent 52%, rgba(19,13,9,.72)), url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/post_imagem_de_capa.png'); background-size: cover; background-position: center; position: relative; box-shadow: var(--shadow); }
.photo-caption { position: absolute; left: 28px; bottom: 26px; color: white; display: flex; flex-direction: column; }
.photo-caption span { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; opacity: .7; }
.photo-caption strong { font-family: Georgia, serif; font-size: 28px; }
.event-stack { margin: 28px 0; }
.event-mini { padding: 18px 0; display: grid; grid-template-columns: 100px 1fr; border-top: 1px solid var(--line); }
.event-mini:last-child { border-bottom: 1px solid var(--line); }
.event-mini span { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--rust); }
.event-mini strong { font-size: 15px; }

.transparency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.report-stack { position: relative; padding: 45px 0; }
.report-card { min-height: 130px; margin-top: -14px; border-radius: var(--radius-md); background: var(--paper); border: 1px solid rgba(23,18,13,.08); box-shadow: 0 18px 35px rgba(56,40,24,.07); padding: 24px 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; transform-origin: center; transition: .3s ease; }
.report-card:nth-child(1) { transform: rotate(-3deg); }
.report-card:nth-child(2) { transform: rotate(2deg); }
.report-card:nth-child(3) { transform: rotate(-1deg); }
.report-card:nth-child(4) { transform: rotate(3deg); }
.report-card:hover { transform: translateY(-8px) rotate(0); z-index: 5; }
.report-card span { grid-column: 1/-1; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; opacity: .48; }
.report-card strong { font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.report-card i { font-style: normal; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card { min-height: 420px; border-radius: var(--radius-md); border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; background: rgba(255,255,255,.18); transition: .35s ease; }
.news-card.featured { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(32,23,15,.1); }
.news-index { font-family: Georgia, serif; font-size: 58px; line-height: 1; opacity: .13; }
.news-meta { display: flex; justify-content: space-between; gap: 20px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; margin: auto 0 20px; opacity: .7; }
.news-card h3 { font-family: Georgia, serif; font-size: 28px; line-height: 1.08; font-weight: 500; margin: 0 0 15px; }
.news-card p { margin: 0 0 22px; opacity: .63; font-size: 14px; }
.news-card a { font-size: 11px; font-weight: 800; }

.participate { overflow: hidden; }
.participate-bg { position: absolute; inset: 0; opacity: .11; background: radial-gradient(circle at 20% 20%, var(--sand) 0 2px, transparent 2px) 0 0 / 34px 34px, linear-gradient(130deg, transparent, rgba(154,173,104,.22)); }
.participate-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.participate-copy > p { color: rgba(255,255,255,.62); }
.participate-actions { display: grid; }
.participate-card { display: grid; grid-template-columns: 42px 1fr auto; gap: 16px 20px; text-align: left; padding: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.14); background: transparent; color: white; cursor: pointer; }
.participate-card:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.participate-card > span { font-size: 9px; opacity: .45; padding-top: 8px; }
.participate-card strong { font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.participate-card p { grid-column: 2; margin: -8px 0 0; color: rgba(255,255,255,.55); }
.participate-card i { font-style: normal; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .3s ease; }
.participate-card:hover i { background: var(--sand); color: var(--ink); transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.contact-list { display: grid; margin-top: 50px; }
.contact-list a { display: flex; flex-direction: column; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list a:last-child { border-bottom: 1px solid var(--line); }
.contact-list span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: var(--rust); }
.contact-list strong { font-size: 14px; margin-top: 3px; }
.contact-form { padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(43,31,20,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: rgba(23,18,13,.65); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; background: rgba(255,255,255,.5); color: var(--ink); outline: 0; text-transform: none; letter-spacing: 0; transition: .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(104,123,69,.1); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form small { display: block; text-align: center; margin-top: 12px; font-size: 10px; font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .5; }

.site-footer { background: #0e0c09; color: white; padding: 80px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 86px; height: 86px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.footer-brand span { font-size: 11px; opacity: .48; }
.footer-cta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-cta > span { font-family: Georgia, serif; font-size: 26px; color: var(--sand-light); }
.light-link { color: var(--sand); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; padding: 52px 0; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links strong { font-size: 10px; text-transform: uppercase; letter-spacing: .17em; color: var(--sand); margin-bottom: 8px; }
.footer-links a, .footer-links p { font-size: 12px; color: rgba(255,255,255,.53); margin: 0; transition: .2s ease; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 23px; display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.36); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: white; box-shadow: 0 12px 35px rgba(37,211,102,.3); transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.04); }
.whatsapp-float svg { width: 26px; fill: currentColor; }

.modal { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; visibility: hidden; opacity: 0; transition: .3s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,8,6,.72); backdrop-filter: blur(8px); }
.modal-panel { position: relative; z-index: 2; width: min(680px, calc(100vw - 32px)); border-radius: 30px; background: var(--cream); padding: 42px; box-shadow: 0 35px 100px rgba(0,0,0,.35); transform: translateY(20px) scale(.97); transition: .35s cubic-bezier(.2,.8,.2,1); }
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 25px; line-height: 1; }
.modal-eyebrow { color: var(--rust); text-transform: uppercase; letter-spacing: .17em; font-size: 9px; font-weight: 800; }
.modal-panel h2 { font-family: Georgia, serif; font-size: clamp(38px,5vw,58px); line-height: .98; letter-spacing: -.04em; font-weight: 500; margin: 10px 0 20px; padding-right: 50px; }
.modal-panel > p { color: rgba(23,18,13,.65); font-size: 16px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.participate-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }
.participate-modal-grid a { min-height: 130px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; display: grid; grid-template-columns: 1fr auto; align-content: end; background: rgba(255,255,255,.35); transition: .25s ease; }
.participate-modal-grid a:hover { transform: translateY(-3px); background: white; }
.participate-modal-grid span { grid-column: 1/-1; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; opacity: .5; }
.participate-modal-grid strong { font-family: Georgia, serif; font-size: 22px; margin-top: 8px; }
.participate-modal-grid i { font-style: normal; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-shell { grid-template-columns: 1fr .7fr; }
  .hero h1 { font-size: clamp(54px,8vw,86px); }
  .hero-emblem { width: min(42vw,430px); }
  .manifesto-grid { grid-template-columns: .5fr 1.4fr; }
  .manifesto-note { grid-column: 2; }
  .services-grid, .contact-grid, .transparency-grid { gap: 55px; }
  .participate-grid { gap: 45px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 720px); --radius-lg: 26px; }
  .section { padding: 90px 0; }
  .header-shell { min-height: 78px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 54px; }
  .brand-copy small, .header-actions .btn { display: none; }
  .hero { min-height: 900px; }
  .hero-shell { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 120px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(51px,13.7vw,78px); max-width: 700px; }
  .hero-emblem { position: absolute; width: 330px; opacity: .37; right: -90px; top: 115px; z-index: -1; }
  .tag-one, .tag-two { display: none; }
  .hero-signals { grid-template-columns: repeat(2,1fr); }
  .hero-foot { min-height: 66px; }
  .location-chip { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-note { grid-column: auto; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 44px; }
  .section-head > p { width: 100%; }
  .orbit-board { transform: scale(.9); margin-block: 0; }
  .orbit-info { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-featured { grid-row: auto; min-height: 560px; }
  .services-grid, .experience-grid, .transparency-grid, .participate-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-intro { position: static; }
  .experience-photo { min-height: 520px; order: 2; }
  .experience-copy { order: 1; }
  .timeline { grid-auto-columns: minmax(300px, 75%); }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 330px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-cta { text-align: left; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .brand-copy strong { font-size: 14px; }
  .accessibility-btn { display: none; }
  .hero { min-height: 860px; }
  .hero-shell { padding-top: 95px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(46px,14vw,66px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-signals { margin-top: 34px; }
  .hero-emblem { width: 260px; right: -95px; top: 130px; }
  .scroll-cue { font-size: 9px; }
  .section-head h2, .manifesto-copy h2, .services-intro h2, .experience-copy h2, .transparency-copy h2, .contact-info h2, .participate-copy h2 { font-size: 43px; }
  .manifesto-note p { font-size: 20px; }
  .orbit-board { width: 100%; aspect-ratio: 1 / 1.12; transform: none; border-radius: 40px; margin-top: 20px; }
  .orbit-board::before, .orbit-board::after, .orbit-line { display: none; }
  .orbit-core { width: 155px; }
  .orbit-core img { width: 70px; }
  .orbit-item { min-width: 120px; font-size: 11px; }
  .orbit-1 { top: 5%; }
  .orbit-2 { top: 30%; right: 2%; }
  .orbit-3 { bottom: 8%; right: 4%; }
  .orbit-4 { bottom: 8%; left: 4%; }
  .orbit-5 { top: 30%; left: 2%; }
  .project-card, .project-card-featured { min-height: 520px; }
  .project-card-minimal { min-height: 360px; }
  .project-content { padding: 25px; }
  .service-row { grid-template-columns: 34px 1fr auto; }
  .service-name { font-size: 26px; }
  .service-detail p { padding-left: 34px; padding-right: 20px; }
  .timeline { grid-auto-columns: 88%; }
  .experience-photo { min-height: 450px; }
  .event-mini { grid-template-columns: 78px 1fr; }
  .participate-card { grid-template-columns: 30px 1fr auto; }
  .participate-card strong { font-size: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-brand img { width: 72px; height: 72px; }
  .footer-cta > span { font-size: 22px; }
  .modal-panel { padding: 30px 24px; }
  .participate-modal-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

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

/* =========================================================
   SOS CAATINGA V2 — IMMERSIVE EXPERIENCE LAYER
   Evolução da V1: storytelling, impacto, biodiversidade,
   território, comparação educativa e experiência editorial.
   ========================================================= */

.v2-chip {
  display: inline-flex; align-items: center; padding: 6px 9px; margin-left: 8px;
  border: 1px solid rgba(255,255,255,.26); border-radius: 999px; font-size: 8px;
  letter-spacing: .14em; color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
}
.hero-branch { position: absolute; z-index: 1; width: 340px; height: 460px; opacity: .22; pointer-events: none; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.hero-branch::before, .hero-branch::after { content: ""; position: absolute; background: linear-gradient(180deg, rgba(215,169,111,.7), rgba(101,73,43,.2)); border-radius: 999px; transform-origin: bottom center; }
.hero-branch::before { width: 14px; height: 420px; left: 150px; bottom: -40px; transform: rotate(18deg); }
.hero-branch::after { width: 8px; height: 260px; left: 190px; bottom: 120px; transform: rotate(58deg); }
.branch-a { left: -100px; bottom: -190px; transform: rotate(-17deg); }
.branch-b { right: -120px; bottom: -230px; transform: scaleX(-1) rotate(-8deg); opacity: .14; }
.hero-dust { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.dust-particle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: rgba(241,223,196,.58); box-shadow: 0 0 12px rgba(241,223,196,.35); animation: dustDrift linear infinite; }
@keyframes dustDrift { from { transform: translate3d(0, 15vh, 0) scale(.7); opacity: 0; } 18% { opacity: .85; } to { transform: translate3d(70px, -115vh, 0) scale(1.6); opacity: 0; } }
.hero-watermark { position: absolute; z-index: 2; right: -1.5vw; bottom: 2vh; font: 800 clamp(100px, 18vw, 300px)/.8 Inter, sans-serif; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.075); user-select: none; pointer-events: none; }
.magnetic { will-change: transform; }

/* Storytelling scrollytelling — V5 editorial experience */
.storyscape {
  position: relative;
  height: 530vh;
  background: #11150f;
  color: var(--cream);
}
.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #172018;
}
.story-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #192118;
}
.story-photo {
  position: absolute;
  inset: -5%;
  background-image:
    linear-gradient(90deg, rgba(8,12,8,.84) 0%, rgba(8,12,8,.65) 38%, rgba(8,12,8,.24) 70%, rgba(8,12,8,.34) 100%),
    linear-gradient(180deg, rgba(10,12,8,.10), rgba(8,11,7,.62)),
    url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg');
  background-size: cover;
  background-position: 54% 50%;
  filter: saturate(.82) contrast(1.04) brightness(.76);
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.2,.75,.2,1), background-position 1.5s cubic-bezier(.2,.75,.2,1), filter 1.2s ease;
  will-change: transform, background-position, filter;
}
.story-colorwash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(225,165,85,.28), transparent 32%),
    linear-gradient(110deg, rgba(116,68,31,.28), transparent 50%);
  mix-blend-mode: screen;
  opacity: .78;
  transition: background 1s ease, opacity 1s ease;
}
.story-light {
  position: absolute;
  width: 58vw;
  height: 58vw;
  min-width: 620px;
  min-height: 620px;
  right: -22vw;
  top: -34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,219,147,.38) 0, rgba(244,178,92,.12) 38%, transparent 68%);
  filter: blur(4px);
  opacity: .72;
  transform: translate3d(0,0,0);
  transition: transform 1.4s ease, opacity 1s ease;
}
.story-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -140px 140px rgba(5,8,5,.48), inset 0 90px 100px rgba(5,8,5,.26);
  pointer-events: none;
}
.story-wordmark {
  position: absolute;
  right: -1.5vw;
  bottom: -1.4vh;
  font: 800 clamp(110px, 17vw, 280px)/.78 Inter, sans-serif;
  letter-spacing: -.085em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  opacity: .55;
  user-select: none;
  transform: translateY(12%);
  transition: transform 1.2s ease, opacity 1s ease;
}
.story-location-card,
.story-eco-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,20,14,.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.story-location-card {
  top: 12vh;
  right: 5vw;
  min-width: 220px;
  padding: 15px 18px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.story-location-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #e5a04c;
  box-shadow: 0 0 0 7px rgba(229,160,76,.12), 0 0 22px rgba(229,160,76,.58);
}
.story-location-card strong,
.story-location-card small { display: block; }
.story-location-card strong { font-size: 12px; letter-spacing: .04em; }
.story-location-card small { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 10px; }
.story-eco-card {
  right: 5vw;
  bottom: 13vh;
  width: 205px;
  padding: 18px 20px 17px;
  border-radius: 20px;
}
.story-eco-card span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
}
.story-eco-card strong {
  display: block;
  margin-top: 8px;
  font: 500 28px/1 Georgia, serif;
  color: #f4e8d1;
}
.story-copy-shell {
  position: relative;
  z-index: 5;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px,.55fr) minmax(0,1.45fr);
  gap: clamp(42px,6vw,100px);
  align-items: center;
  padding-right: clamp(90px,10vw,150px);
}
.story-intro {
  align-self: start;
  padding-top: 13vh;
  max-width: 250px;
}
.story-intro .section-kicker { color: #e7aa61; }
.story-intro p {
  margin-top: 16px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.65;
}
.story-scroll-hint {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.story-scroll-hint i {
  position: relative;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.story-scroll-hint i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -70%;
  width: 1px;
  height: 55%;
  background: #e7aa61;
  animation: storyScrollLine 2s ease-in-out infinite;
}
@keyframes storyScrollLine { to { top: 120%; } }
.story-chapters {
  position: relative;
  height: 62vh;
  display: grid;
  align-items: center;
}
.story-chapter {
  position: absolute;
  width: min(100%, 820px);
  opacity: 0;
  transform: translateY(44px);
  pointer-events: none;
  transition: opacity .62s ease, transform .72s cubic-bezier(.22,.8,.22,1);
}
.story-chapter.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.story-chapter > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(231,170,97,.36);
  border-radius: 999px;
  background: rgba(24,29,20,.3);
  color: #efbd7d;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 24px;
}
.story-chapter h2 {
  margin: 0;
  max-width: 790px;
  font: 500 clamp(52px, 5.4vw, 88px)/.94 Georgia, serif;
  letter-spacing: -.052em;
  text-wrap: balance;
  text-shadow: 0 10px 45px rgba(0,0,0,.26);
}
.story-chapter h2 em {
  font-style: italic;
  font-weight: 400;
  color: #e8c28f;
}
.story-chapter p {
  max-width: 600px;
  color: rgba(255,255,255,.74);
  font-size: clamp(14px,1.2vw,18px);
  line-height: 1.7;
  margin: 26px 0 0;
  text-shadow: 0 4px 18px rgba(0,0,0,.32);
}
.story-chapter .btn { margin-top: 28px; }
.story-keyline {
  margin-top: 28px;
  width: min(100%, 560px);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.story-keyline b {
  color: #e7aa61;
  font: 700 10px/1 Inter,sans-serif;
  letter-spacing: .12em;
}
.story-keyline span {
  max-width: 420px;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  line-height: 1.5;
}
.story-rail {
  position: absolute;
  z-index: 7;
  right: 2.2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.story-rail button {
  width: 108px;
  min-height: 38px;
  padding: 0;
  display: grid;
  grid-template-columns: 24px 22px 1fr;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.34);
  text-align: left;
  cursor: pointer;
  transition: color .3s ease, transform .3s ease;
}
.story-rail button span,
.story-rail button b {
  font-size: 8px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.story-rail button b { font-weight: 700; opacity: 0; transform: translateX(-5px); transition: .3s ease; }
.story-rail button i {
  position: relative;
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,.22);
  transition: width .3s ease, background .3s ease;
}
.story-rail button i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%) scale(.55);
  transition: transform .3s ease;
}
.story-rail button:hover,
.story-rail button.active { color: #f0b86f; }
.story-rail button:hover b,
.story-rail button.active b { opacity: 1; transform: none; }
.story-rail button.active i { width: 26px; background: #f0b86f; }
.story-rail button.active i::after { transform: translateY(-50%) scale(1); }
.story-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 8;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.08);
}
.story-progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg,#d88e42,#efbf7a);
  box-shadow: 0 0 20px rgba(239,191,122,.35);
  transition: width .65s cubic-bezier(.22,.8,.22,1);
}
.story-progress-ring {
  position: absolute;
  z-index: 7;
  left: 3.2vw;
  bottom: 5vh;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: white;
  background: rgba(14,20,13,.22);
  backdrop-filter: blur(10px);
}
.story-progress-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: inherit;
  animation: slowSpin 20s linear infinite;
}
.story-progress-ring span { font: 500 24px Georgia,serif; }
.story-progress-ring small { position: absolute; right: 13px; bottom: 14px; font-size: 7px; opacity: .5; }

/* Story state — a gradual shift from warm/dry to living green */
.storyscape[data-step="1"] .story-photo { transform: scale(1.09) translate3d(-1.5%,0,0); background-position: 59% 47%; filter: saturate(.9) contrast(1.04) brightness(.75); }
.storyscape[data-step="2"] .story-photo { transform: scale(1.12) translate3d(-2.5%,-.5%,0); background-position: 62% 44%; filter: saturate(1) contrast(1.05) brightness(.72); }
.storyscape[data-step="3"] .story-photo { transform: scale(1.1) translate3d(-1.2%,-1%,0); background-position: 58% 46%; filter: saturate(1.08) contrast(1.04) brightness(.74); }
.storyscape[data-step="4"] .story-photo { transform: scale(1.07) translate3d(0,-1%,0); background-position: 54% 48%; filter: saturate(1.16) contrast(1.03) brightness(.77); }
.storyscape[data-step="1"] .story-colorwash { background: radial-gradient(circle at 78% 24%, rgba(214,154,77,.22), transparent 33%), linear-gradient(110deg,rgba(101,72,36,.18),rgba(55,88,49,.07)); }
.storyscape[data-step="2"] .story-colorwash { background: radial-gradient(circle at 76% 24%, rgba(214,161,87,.16), transparent 33%), linear-gradient(110deg,rgba(78,77,38,.11),rgba(50,101,58,.16)); }
.storyscape[data-step="3"] .story-colorwash { background: radial-gradient(circle at 74% 23%, rgba(225,178,96,.15), transparent 34%), linear-gradient(110deg,rgba(59,83,42,.08),rgba(37,109,63,.2)); }
.storyscape[data-step="4"] .story-colorwash { background: radial-gradient(circle at 72% 22%, rgba(238,196,112,.14), transparent 34%), linear-gradient(110deg,rgba(54,86,42,.06),rgba(31,119,66,.24)); }
.storyscape[data-step="1"] .story-light { transform: translate3d(-5vw,4vh,0) scale(.95); opacity: .62; }
.storyscape[data-step="2"] .story-light { transform: translate3d(-9vw,8vh,0) scale(.9); opacity: .52; }
.storyscape[data-step="3"] .story-light { transform: translate3d(-12vw,7vh,0) scale(.84); opacity: .46; }
.storyscape[data-step="4"] .story-light { transform: translate3d(-15vw,4vh,0) scale(.8); opacity: .42; }
.storyscape[data-step="2"] .story-wordmark,
.storyscape[data-step="3"] .story-wordmark,
.storyscape[data-step="4"] .story-wordmark { transform: translateY(7%); opacity: .68; }

/* V2 impact */
.impact-v2 { background: #f3eadc; overflow: hidden; }
.impact-v2::before { content: "SOS"; position: absolute; right: -4vw; top: 30px; font: 800 28vw/.8 Inter,sans-serif; color: rgba(57,47,34,.025); letter-spacing: -.09em; }
.impact-v2-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; position: relative; }
.impact-v2-card { min-height: 360px; padding: 30px; border: 1px solid rgba(23,18,13,.12); border-radius: 28px; background: rgba(255,250,241,.68); display: flex; flex-direction: column; align-items: flex-start; transition: transform .35s ease, box-shadow .35s ease, background .35s ease; }
.impact-v2-card:hover { transform: translateY(-8px); background: var(--paper); box-shadow: 0 28px 70px rgba(45,34,24,.12); }
.impact-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--rust); }
.impact-number { margin-top: auto; font: 500 clamp(64px,7vw,104px)/.88 Georgia,serif; letter-spacing: -.07em; color: var(--green-dark); }
.impact-v2-card p { margin: 20px 0 4px; font-weight: 800; font-size: 15px; }
.impact-v2-card small { color: rgba(23,18,13,.56); max-width: 200px; }
.impact-note { margin-top: 22px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 26px; border-radius: 20px; background: #e4d7c4; align-items: center; }
.impact-note > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--green-dark); color: white; font-size: 24px; }
.impact-note p { margin: 0; font-size: 13px; color: rgba(23,18,13,.67); }

/* Biodiversity selector */
.caatinga-viva { overflow: hidden; }
.species-stage { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); min-height: 650px; border: 1px solid rgba(255,255,255,.12); border-radius: 34px; overflow: hidden; background: #0f110d; }
.species-feature { position: relative; min-height: 650px; overflow: hidden; isolation: isolate; }
.species-photo, .species-feature-overlay { position: absolute; inset: 0; }
.species-photo { background-size: cover; background-position: center; transition: background-image .45s ease, transform .9s ease, filter .5s ease; transform: scale(1.04); }
.species-feature:hover .species-photo { transform: scale(1.08); }
.species-monkey { background-image: url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/73d8731e-09dd-4edf-8a52-a7426e83da61.jpg'); }
.species-mandacaru { background-image: linear-gradient(115deg,rgba(10,15,8,.25),rgba(10,15,8,.05)), url('https://img.dhost.cloud/nm5UD2iPcuZrnZaMUJ8MxfgDUtI%3D/840x520/smart/revistaturismoenegocios.nyc3.digitaloceanspaces.com/uploads/imagens/image-8-1.jpg'); }
.species-umbu { background-image: linear-gradient(115deg,rgba(10,15,8,.15),rgba(10,15,8,.12)), url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg'); filter: hue-rotate(12deg) saturate(1.15); }
.species-asabranca { background-image: linear-gradient(115deg,rgba(10,15,8,.25),rgba(10,15,8,.15)), url('https://img.jaenoticia.com.br/eFcOb4pHrsS8lAPia3hGpFW0gq8%3D/1110x650/smart/s3.jaenoticia.com.br/uploads/imagens/no-dia-da-caatinga-ima-alerta-para-a-importancia-da-preservacao-do-bioma.jpg'); filter: saturate(.92); }
.species-feature-overlay { background: linear-gradient(180deg, transparent 30%, rgba(7,9,7,.82) 100%), linear-gradient(90deg, rgba(7,9,7,.1), transparent); z-index: 1; }
.species-feature-copy { position: absolute; z-index: 2; left: 42px; right: 42px; bottom: 38px; }
.species-feature-copy > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.11); backdrop-filter: blur(8px); text-transform: uppercase; font-size: 9px; letter-spacing: .16em; }
.species-feature-copy h3 { margin: 14px 0 0; font: 500 clamp(48px,5vw,78px)/.9 Georgia,serif; letter-spacing: -.05em; }
.species-feature-copy em { display: block; margin-top: 8px; color: var(--sand); }
.species-feature-copy p { max-width: 620px; color: rgba(255,255,255,.7); }
.species-selector { display: grid; align-content: stretch; }
.species-option { border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: #151811; color: white; display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; text-align: left; padding: 24px; cursor: pointer; transition: .3s ease; }
.species-option:last-child { border-bottom: 0; }
.species-option span { color: var(--sand); font-size: 10px; letter-spacing: .14em; }
.species-option strong { font-size: 18px; }
.species-option i { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; opacity: .5; font-style: normal; }
.species-option:hover, .species-option.active { background: #28301e; padding-left: 31px; }

/* Territory conceptual map */
.territory { background: #f7f2e9; overflow: hidden; }
.territory-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.territory-copy h2 { margin: 18px 0 24px; font: 500 clamp(50px,5vw,78px)/.96 Georgia,serif; letter-spacing: -.05em; }
.territory-copy > p { color: rgba(23,18,13,.62); max-width: 520px; }
.territory-points { display: grid; gap: 8px; margin: 32px 0; }
.territory-point { background: transparent; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; text-align: left; cursor: pointer; transition: .25s ease; }
.territory-point:hover, .territory-point.active { background: var(--ink); color: white; transform: translateX(7px); }
.territory-point > span { font-size: 9px; letter-spacing: .16em; color: var(--sand); }
.territory-point div { display: flex; flex-direction: column; }
.territory-point strong { font-size: 14px; }
.territory-point small { opacity: .6; }
.territory-map { min-height: 680px; position: relative; border-radius: 36px; overflow: hidden; background: radial-gradient(circle at 45% 42%, #71845a 0 6%, transparent 7%), radial-gradient(circle at 63% 62%, #8d9b6c 0 4%, transparent 5%), linear-gradient(145deg,#c5b586,#887b58 62%,#5f684c); box-shadow: var(--shadow); isolation: isolate; }
.territory-map::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: repeating-radial-gradient(ellipse at 44% 46%, transparent 0 26px, rgba(255,255,255,.35) 27px 28px); transform: scale(1.35) rotate(-9deg); }
.territory-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(18,22,14,.04),rgba(18,22,14,.48)); z-index: -1; }
.topo { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 48% 52% 44% 56%; transform: rotate(-12deg); }
.topo-1 { inset: 12% 16% 22% 9%; }
.topo-2 { inset: 20% 25% 31% 19%; }
.topo-3 { inset: 28% 36% 42% 27%; }
.topo-4 { inset: 36% 45% 50% 38%; }
.map-pin { position: absolute; z-index: 4; border: 0; background: transparent; color: white; cursor: pointer; display: grid; place-items: center; gap: 7px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.map-pin i { width: 20px; height: 20px; border-radius: 50%; display: block; background: var(--sand); border: 5px solid rgba(255,255,255,.88); box-shadow: 0 0 0 0 rgba(255,255,255,.3); animation: pinPulse 2.2s infinite; transition: transform .25s ease, background .25s ease; }
.map-pin:hover i, .map-pin.active i { transform: scale(1.35); background: var(--green-bright); }
@keyframes pinPulse { 70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); } }
.pin-caboclo { left: 35%; top: 58%; }.pin-rppn { left: 62%; top: 34%; }.pin-science { left: 70%; top: 68%; }
.map-card { position: absolute; z-index: 4; left: 28px; bottom: 28px; width: min(300px,calc(100% - 56px)); border-radius: 20px; background: rgba(17,20,13,.82); backdrop-filter: blur(16px); color: white; padding: 22px; border: 1px solid rgba(255,255,255,.12); }
.map-card span { color: var(--sand); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.map-card strong { display: block; font: 500 27px/1 Georgia,serif; margin-top: 7px; }
.map-card p { margin: 8px 0 0; font-size: 12px; opacity: .68; }
.map-compass { position: absolute; right: 28px; top: 28px; z-index: 4; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; }
.map-compass span { width: 1px; height: 28px; background: linear-gradient(var(--sand) 0 50%, white 50%); position: absolute; transform: rotate(12deg); }
.map-compass b { position: absolute; top: -22px; font-size: 9px; letter-spacing: .15em; }
.map-watermark { position: absolute; right: -10px; bottom: 30px; font: 800 82px/.72 Inter,sans-serif; letter-spacing: -.07em; color: rgba(255,255,255,.055); text-align: right; }

/* Educational compare */
.transformation { background: #d8c8aa; }
.compare-shell { height: min(68vw,690px); min-height: 500px; max-height: 690px; border-radius: 34px; overflow: hidden; position: relative; box-shadow: var(--shadow); background: #5f704b; }
.compare-layer { position: absolute; inset: 0; background-image: linear-gradient(180deg,rgba(17,16,10,.05),rgba(17,16,10,.45)), url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg'); background-size: cover; background-position: center; }
.compare-layer span { position: absolute; top: 28px; padding: 8px 12px; border-radius: 999px; background: rgba(18,15,10,.64); backdrop-filter: blur(10px); color: white; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.compare-after { filter: saturate(1.28) hue-rotate(14deg) brightness(1.03); }
.compare-after span { right: 28px; }
.compare-before { width: 52%; overflow: hidden; filter: grayscale(.22) sepia(.35) saturate(.65) brightness(.82); border-right: 1px solid rgba(255,255,255,.8); }
.compare-before span { left: 28px; width: max-content; }
.compare-divider { position: absolute; top: 0; bottom: 0; left: 52%; width: 1px; background: rgba(255,255,255,.85); pointer-events: none; }
.compare-divider i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--ink); font-style: normal; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.compare-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-disclaimer { max-width: 850px; margin: 18px 0 0; font-size: 12px; color: rgba(23,18,13,.62); }

/* Documentary */
.documentary { overflow: hidden; }
.documentary-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.documentary-visual { min-height: 640px; position: relative; display: grid; place-items: center; }
.documentary-frame { width: min(100%,760px); aspect-ratio: 16/10; border-radius: 32px; overflow: hidden; padding: 38px; color: white; background: linear-gradient(180deg,rgba(18,13,9,.05),rgba(18,13,9,.8)), url('https://institutososcaatinga.com.br/2025/wp-content/uploads/2025/02/terreno2.jpg') center/cover; box-shadow: 0 35px 85px rgba(0,0,0,.28); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; transform: rotate(-2deg); }
.documentary-frame::before { content: ""; position: absolute; width: 80%; height: 80%; border: 1px solid rgba(255,255,255,.11); border-radius: 40px; transform: rotate(8deg); z-index: -1; }
.doc-label { position: absolute; top: 28px; left: 30px; font-size: 9px; letter-spacing: .18em; padding: 8px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; }
.doc-play { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); margin-bottom: auto; }
.documentary-frame strong { font: 500 clamp(40px,4vw,66px)/.94 Georgia,serif; letter-spacing: -.045em; }
.documentary-frame small { margin-top: 12px; opacity: .65; }
.doc-logo { position: absolute; width: 180px; right: 0; bottom: 20px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); transform: rotate(5deg); }
.documentary-copy h2 { margin: 18px 0 24px; font: 500 clamp(52px,5vw,78px)/.94 Georgia,serif; letter-spacing: -.05em; }
.documentary-copy p { color: rgba(255,255,255,.66); }
.documentary-copy .btn { margin-top: 20px; }

/* FAQ */
.faq { background: #eee4d5; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { margin: 18px 0 22px; font: 500 clamp(48px,5vw,74px)/.95 Georgia,serif; letter-spacing: -.05em; }
.faq-intro p { color: rgba(23,18,13,.62); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; font: 700 19px/1.3 Inter,sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; flex: 0 0 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: transform .3s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 60px 26px 0; color: rgba(23,18,13,.62); }
.footer-admin-link { opacity: .42 !important; font-size: 10px !important; margin-top: 8px; }

/* Data-admin state */
body[data-admin-preview="1"]::before { content: "Pré-visualização de conteúdo administrável"; position: fixed; left: 50%; top: 110px; transform: translateX(-50%); z-index: 999; padding: 8px 14px; background: var(--green-dark); color: white; border-radius: 999px; font-size: 10px; letter-spacing: .1em; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; font-size: 11px; }
  .story-copy-shell { grid-template-columns: 1fr; align-items: center; padding-right: 125px; }
  .story-intro { position: absolute; top: 11vh; left: 0; padding-top: 0; max-width: 270px; }
  .story-chapters { width: min(100%, 760px); height: 64vh; align-items: center; }
  .story-chapter h2 { font-size: clamp(52px,7.2vw,78px); }
  .story-eco-card { display: none; }
  .story-location-card { top: 8vh; right: 4vw; }
  .impact-v2-grid { grid-template-columns: repeat(2,1fr); }
  .species-stage, .territory-grid, .documentary-grid { grid-template-columns: 1fr; }
  .territory-map { min-height: 620px; }
  .documentary-copy { max-width: 700px; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .storyscape { height: 500vh; }
  .story-sticky { min-height: 600px; }
  .story-photo { inset: -3%; background-position: 63% center; }
  .story-copy-shell { grid-template-columns: 1fr; gap: 0; align-items: end; padding-right: 74px; padding-bottom: 9vh; }
  .story-intro { align-self: auto; padding: 0; position: absolute; left: 0; top: 9vh; max-width: 235px; }
  .story-intro p { display: none; }
  .story-scroll-hint { margin-top: 16px; }
  .story-scroll-hint i { height: 34px; }
  .story-chapters { width: 100%; height: 61vh; align-items: end; }
  .story-chapter h2 { font-size: clamp(44px,10.5vw,68px); }
  .story-chapter p { max-width: 540px; }
  .story-location-card { top: 7vh; right: 22px; min-width: 0; padding: 12px 14px; }
  .story-location-card small { display: none; }
  .story-wordmark { font-size: 25vw; right: -3vw; bottom: 2vh; opacity: .34; }
  .story-rail { right: 12px; }
  .story-rail button { width: 50px; grid-template-columns: 18px 28px; }
  .story-rail button b { display: none; }
  .story-progress-ring { display: none; }
  .impact-v2-card { min-height: 300px; }
  .species-feature { min-height: 560px; }
  .species-stage { min-height: 0; }
  .species-selector { grid-template-columns: repeat(2,1fr); }
  .species-option { min-height: 112px; grid-template-columns: 30px 1fr; }
  .species-option i { display: none; }
  .territory-copy { max-width: 720px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
}

@media (max-width: 560px) {
  .v2-chip { display: none; }
  .hero-watermark { bottom: 10vh; font-size: 34vw; }
  .story-sticky { min-height: 620px; }
  .story-photo { background-position: 68% center; }
  .story-copy-shell { padding-left: 22px; padding-right: 48px; padding-bottom: 8vh; }
  .story-intro { top: 8vh; left: 22px; max-width: 200px; }
  .story-scroll-hint { display: none; }
  .story-location-card { top: 24px; right: 18px; padding: 10px 12px; }
  .story-location-card strong { font-size: 9px; }
  .story-location-dot { width: 7px; height: 7px; flex-basis: 7px; }
  .story-chapters { height: 68vh; }
  .story-chapter > span { margin-bottom: 16px; min-height: 27px; font-size: 8px; }
  .story-chapter h2 { font-size: clamp(38px,11.5vw,54px); line-height: .98; }
  .story-chapter p { font-size: 13px; line-height: 1.6; margin-top: 18px; }
  .story-keyline { display: none; }
  .story-rail { right: 4px; gap: 1px; }
  .story-rail button { width: 42px; min-height: 34px; grid-template-columns: 16px 22px; }
  .story-wordmark { font-size: 31vw; bottom: 3vh; }
  .impact-v2-grid { grid-template-columns: 1fr; }
  .impact-v2-card { min-height: 260px; }
  .impact-number { font-size: 76px; }
  .impact-note { grid-template-columns: 1fr; }
  .species-feature { min-height: 520px; }
  .species-feature-copy { left: 24px; right: 24px; bottom: 24px; }
  .species-feature-copy h3 { font-size: 45px; }
  .species-selector { grid-template-columns: 1fr; }
  .species-option { min-height: 76px; }
  .territory-map { min-height: 520px; border-radius: 26px; }
  .map-card { left: 18px; bottom: 18px; width: calc(100% - 36px); }
  .pin-caboclo { left: 29%; }.pin-rppn { left: 62%; }.pin-science { left: 67%; }
  .compare-shell { min-height: 470px; height: 118vw; border-radius: 24px; }
  .compare-layer span { top: 18px; font-size: 8px; }
  .compare-before span { left: 16px; }.compare-after span { right: 16px; }
  .documentary-visual { min-height: 470px; }
  .documentary-frame { padding: 24px; aspect-ratio: 4/5; transform: rotate(-1deg); }
  .doc-logo { width: 115px; right: -8px; }
  .faq-list summary { font-size: 16px; }
}
.admin-mobile-link { opacity: .58; font-size: 12px !important; }

/* =========================================================
   V5 — CMS, agenda, campanhas e rede de parceiros
   ========================================================= */
.cms-status{display:inline-flex;align-items:center;gap:.42rem;padding:.42rem .62rem;border:1px solid rgba(255,255,255,.16);border-radius:999px;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:#efe8d8;background:rgba(16,14,10,.42);backdrop-filter:blur(12px)}
.cms-status i{width:7px;height:7px;border-radius:50%;background:#d49b45;box-shadow:0 0 0 4px rgba(212,155,69,.12)}
.cms-status.live i{background:#7fbd72;box-shadow:0 0 0 4px rgba(127,189,114,.13)}
.cms-status b{font-weight:800}.cms-number{font-variant-numeric:tabular-nums}
.v3-live{background:linear-gradient(180deg,#f4eddf 0%,#eee3cf 100%);overflow:hidden}
.v3-live-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,4rem);margin-top:2.5rem}
.v3-live-title{display:flex;align-items:end;justify-content:space-between;border-bottom:1px solid rgba(49,37,23,.18);padding-bottom:1rem;margin-bottom:1rem}
.v3-live-title span{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#8a6741}.v3-live-title strong{font-size:1.15rem;color:#2d251b}
.v3-cards{display:grid;gap:.9rem}.v3-live-card{position:relative;padding:1.35rem;border:1px solid rgba(55,42,27,.12);border-radius:1.2rem;background:rgba(255,255,255,.64);box-shadow:0 18px 40px rgba(45,35,20,.06);transition:transform .3s ease,border-color .3s ease}
.v3-live-card:hover{transform:translateY(-4px);border-color:rgba(105,134,69,.38)}.v3-live-card>span{display:inline-block;font-size:.66rem;text-transform:uppercase;letter-spacing:.14em;color:#6f7f47;margin-bottom:.55rem}.v3-live-card h3{font-size:1.2rem;line-height:1.1;color:#2d251b;margin:0 0 .55rem}.v3-live-card p{color:#6a5c4b;line-height:1.65;margin:0 0 1rem}.v3-live-card>div:not(.campaign-progress){display:flex;flex-wrap:wrap;gap:.7rem 1.1rem;color:#877761;margin-bottom:.9rem}.v3-live-card a{font-weight:800;color:#654c2d;text-decoration:none}.campaign-progress{height:5px;background:rgba(54,42,27,.1);border-radius:999px;overflow:hidden;margin:1rem 0}.campaign-progress i{display:block;height:100%;background:linear-gradient(90deg,#697f42,#b67a36);border-radius:inherit}
.v3-partners{border-top:1px solid rgba(48,37,23,.08)}.v3-partner-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.8rem;margin-top:2.4rem}.v3-partner-card{min-height:104px;padding:1rem;border:1px solid rgba(51,39,24,.1);border-radius:1rem;display:flex;align-items:center;gap:.9rem;text-decoration:none;color:#30271d;background:#fffdf8;transition:.25s ease}.v3-partner-card:hover{transform:translateY(-3px);border-color:rgba(104,129,68,.35);box-shadow:0 14px 30px rgba(43,34,21,.07)}.v3-partner-card>span{display:grid;place-items:center;width:48px;height:48px;border-radius:50%;background:#efe6d4;color:#6a7842;font-weight:900;letter-spacing:.08em}.v3-partner-card img{width:54px;height:54px;object-fit:contain}.v3-partner-card strong,.v3-partner-card small{display:block}.v3-partner-card small{margin-top:.25rem;color:#857762}.v3-empty{padding:1.4rem;border:1px dashed rgba(53,42,27,.2);border-radius:1rem;color:#786b5a}
.cms-project-photo{background:radial-gradient(circle at 30% 30%,rgba(174,133,71,.42),transparent 34%),linear-gradient(145deg,#28341c,#8d6940)}.cms-species-photo{background:radial-gradient(circle at 40% 35%,rgba(206,157,80,.38),transparent 30%),linear-gradient(145deg,#2e3b24,#8d7049);background-size:cover;background-position:center}
@media(max-width:980px){.v3-live-grid{grid-template-columns:1fr}.v3-partner-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cms-status{display:none}}
@media(max-width:620px){.v3-partner-grid{grid-template-columns:1fr}.v3-live-card{padding:1.1rem}.v3-live-title{align-items:center}.v3-live-title strong{font-size:1rem}}

/* =========================================================
   V6 — dados verificáveis, ciência, governança e comunidade
   ========================================================= */
.cms-status[hidden]{display:none!important}
.verified-data{border-top:1px solid rgba(23,18,13,.06)}
.verified-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:42px}
.verified-card{min-height:300px;padding:30px;border:1px solid rgba(23,18,13,.12);border-radius:26px;background:rgba(255,250,241,.76);display:flex;flex-direction:column;align-items:flex-start;box-shadow:0 18px 45px rgba(40,28,15,.05)}
.verified-card>span,.protected-card>span,.science-card>span,.governance-card>span,.team-card>span{font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:800;color:var(--rust)}
.verified-card>strong{font-family:Georgia,"Times New Roman",serif;font-size:clamp(31px,4vw,54px);line-height:1;margin:22px 0 12px;overflow-wrap:anywhere}
.verified-card h3,.protected-card h3,.science-card h3,.governance-card h3,.team-card h3{font-family:Georgia,"Times New Roman",serif;font-size:clamp(24px,2.6vw,34px);line-height:1.04;margin:10px 0 14px}
.verified-card p,.protected-card p,.science-card p,.governance-card p,.team-card p{margin:0;color:rgba(23,18,13,.66)}
.verified-card a,.protected-card a,.science-card a,.governance-card a,.team-card a{margin-top:auto;padding-top:22px;font-size:12px;font-weight:800;color:var(--rust)}

.protected-areas{background:linear-gradient(180deg,var(--cream),#ded1bb);overflow:hidden}
.protected-areas::before{content:"RPPN";position:absolute;right:-2vw;bottom:-7vw;font:900 20vw/1 Georgia,serif;color:rgba(52,67,43,.045);pointer-events:none}
.protected-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:18px;margin-top:44px}
.protected-card{position:relative;min-height:430px;border-radius:32px;padding:34px;overflow:hidden;background:#28351f;color:var(--cream);display:flex;flex-direction:column;align-items:flex-start;box-shadow:var(--shadow)}
.protected-card:nth-child(2){background:#65462f}
.protected-card::after{content:"";position:absolute;width:340px;height:340px;border:1px solid rgba(255,255,255,.08);border-radius:50%;right:-140px;top:-160px}
.protected-card>span{color:var(--sand-light)}
.protected-card h3{font-size:clamp(38px,5vw,66px);max-width:620px;color:white}
.protected-card p,.protected-card>small{color:rgba(255,255,255,.67);max-width:600px}
.protected-card a{color:var(--sand-light);position:relative;z-index:2}
.protected-area-number{font:700 clamp(58px,8vw,104px)/.9 Georgia,serif;margin:30px 0 18px;color:#fff}
.protected-area-number small{font:700 16px/1 Inter,sans-serif;letter-spacing:.12em;text-transform:uppercase}

.science-evidence{overflow:hidden}
.science-evidence::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(153,173,102,.12),transparent 35%),radial-gradient(circle at 15% 80%,rgba(215,169,111,.1),transparent 30%);pointer-events:none}
.science-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:42px;position:relative}
.science-card{min-height:390px;padding:34px;border:1px solid rgba(255,255,255,.12);border-radius:30px;background:rgba(255,255,255,.035);display:flex;flex-direction:column;align-items:flex-start}
.science-card>span{color:var(--green-bright)}
.science-card h3{color:#fff;font-size:clamp(30px,3.7vw,50px)}
.science-card p,.science-card>small{color:rgba(245,240,231,.68)}
.science-card>small{display:block;margin-top:15px;font-size:11px;line-height:1.6}
.science-card a{color:var(--sand-light)}
.science-note{margin-top:18px;padding:14px 16px;border-left:2px solid var(--green-bright);background:rgba(255,255,255,.04);font-size:12px;color:rgba(245,240,231,.78)}

.governance{background:#f3ecdf}
.governance-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin-top:42px}
.governance-card{min-height:350px;padding:30px;border:1px solid rgba(23,18,13,.11);border-radius:25px;background:#fffaf1;display:flex;flex-direction:column;align-items:flex-start}
.governance-card>span{color:var(--green-dark)}
.governance-card p{margin-bottom:16px}
.governance-card>small{display:block;color:rgba(23,18,13,.58);margin-top:12px}
.governance-people{margin:14px 0;padding-top:14px;border-top:1px solid var(--line);width:100%}
.governance-people strong,.governance-people small{display:block}.governance-people small{margin-top:4px;color:rgba(23,18,13,.55)}

.team-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:42px}
.team-card{min-height:400px;padding:34px;border-radius:30px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11);display:flex;flex-direction:column;align-items:flex-start;color:var(--cream)}
.team-card>span{color:var(--sand-light)}.team-card h3{color:white;font-size:clamp(34px,4vw,52px)}.team-card p{color:rgba(245,240,231,.7)}.team-card a{color:var(--sand-light)}
.team-card img{width:96px;height:96px;border-radius:50%;object-fit:cover;margin-bottom:24px;border:1px solid rgba(255,255,255,.18)}
.team-monogram{width:78px;height:78px;border-radius:50%;display:grid;place-items:center;margin-bottom:25px;border:1px solid rgba(215,169,111,.32);background:rgba(215,169,111,.08);font:700 24px Georgia,serif;color:var(--sand-light)}

.source-dossier{background:#e9dfcd}
.source-list{display:grid;gap:8px;margin-top:38px}
.source-row{display:grid;grid-template-columns:52px 1fr 28px;gap:18px;align-items:center;padding:20px 24px;border:1px solid rgba(23,18,13,.1);border-radius:18px;background:rgba(255,250,241,.65);transition:.25s ease}
.source-row:hover{transform:translateX(5px);background:#fffaf1;border-color:rgba(104,123,69,.36)}
.source-row>span{font-size:10px;letter-spacing:.16em;color:var(--rust)}.source-row strong,.source-row small{display:block}.source-row strong{font-size:14px}.source-row small{margin-top:4px;color:rgba(23,18,13,.55);font-size:11px}.source-row i{font-style:normal;font-size:18px}
.source-disclaimer{margin-top:24px;display:grid;grid-template-columns:180px 1fr;gap:26px;padding:24px;border-top:1px solid rgba(23,18,13,.16)}.source-disclaimer strong{font-size:12px;text-transform:uppercase;letter-spacing:.14em}.source-disclaimer p{margin:0;color:rgba(23,18,13,.62)}
.source-inline{display:inline-flex!important;margin-top:12px!important;padding-top:0!important;font-size:10px!important;letter-spacing:.08em;text-transform:uppercase;opacity:.8}.source-inline.light{color:var(--sand-light)!important}
.project-links{display:flex;flex-direction:column;align-items:flex-start}

.community-forms{overflow:hidden}
.community-forms-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:20px;align-items:start}
.community-form-card,.newsletter-card{padding:38px;border-radius:30px;background:#fffaf1;border:1px solid rgba(23,18,13,.11);box-shadow:0 20px 55px rgba(40,28,15,.06)}
.community-form-card>h2,.newsletter-card>h2{font:700 clamp(34px,4vw,54px)/1 Georgia,serif;margin:14px 0 16px}.community-form-card>p,.newsletter-card>p{color:rgba(23,18,13,.62)}
.newsletter-card{position:sticky;top:110px;background:#24301e;color:var(--cream);border-color:rgba(255,255,255,.08)}.newsletter-card>span{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--sand-light)}.newsletter-card>h2{color:white}.newsletter-card>p{color:rgba(245,240,231,.67)}
.v6-form,.newsletter-form{display:grid;gap:14px;margin-top:28px}.v6-form label,.newsletter-form label{display:grid;gap:7px;font-size:11px;font-weight:800;letter-spacing:.02em}.v6-form input,.v6-form textarea,.newsletter-form input{width:100%;border:1px solid rgba(23,18,13,.15);border-radius:14px;padding:13px 14px;background:#fff;color:var(--ink);outline:none}.v6-form input:focus,.v6-form textarea:focus,.newsletter-form input:focus{border-color:var(--green);box-shadow:0 0 0 3px rgba(104,123,69,.11)}
.newsletter-form input{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.14);color:white}.newsletter-form input::placeholder{color:rgba(255,255,255,.4)}
.privacy-check{display:grid!important;grid-template-columns:18px 1fr!important;align-items:start;gap:10px!important;font-weight:500!important;line-height:1.45!important}.privacy-check input{width:16px!important;height:16px!important;padding:0!important;margin-top:2px}.privacy-check a{text-decoration:underline}.newsletter-card .privacy-check{color:rgba(245,240,231,.68)}
.form-status{min-height:22px;margin:0;font-size:11px;line-height:1.5}.privacy-mini{margin-top:28px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1)}.privacy-mini strong{font-size:11px;text-transform:uppercase;letter-spacing:.12em}.privacy-mini p{font-size:12px;color:rgba(245,240,231,.6)}

.privacy-page{min-height:100vh;background:var(--cream);padding:120px 0}.privacy-shell{max-width:860px;margin:auto;padding:0 24px}.privacy-shell header{margin-bottom:50px}.privacy-shell h1{font:700 clamp(48px,7vw,86px)/.94 Georgia,serif;margin:12px 0}.privacy-shell h2{font:700 28px/1.1 Georgia,serif;margin:42px 0 10px}.privacy-shell p,.privacy-shell li{color:rgba(23,18,13,.7)}.privacy-shell a{text-decoration:underline;color:var(--rust)}.privacy-back{display:inline-flex;margin-bottom:28px;font-weight:800}
.offline-page{min-height:100vh;display:grid;place-items:center;padding:30px;background:#151711;color:var(--cream)}.offline-card{max-width:620px;text-align:center}.offline-card img{width:120px;margin:0 auto 28px}.offline-card h1{font:700 clamp(44px,8vw,74px)/.96 Georgia,serif}.offline-card p{color:rgba(245,240,231,.67)}
.error-page{min-height:100vh;display:grid;place-items:center;background:var(--cream);padding:30px}.error-card{max-width:720px;text-align:center}.error-code{font:800 clamp(110px,25vw,250px)/.7 Georgia,serif;color:rgba(52,67,43,.12)}.error-card h1{font:700 clamp(42px,7vw,72px)/1 Georgia,serif}

@media(max-width:980px){.verified-grid,.governance-grid{grid-template-columns:1fr 1fr}.protected-grid,.science-grid,.community-forms-grid{grid-template-columns:1fr}.newsletter-card{position:static}.team-grid{grid-template-columns:1fr}.protected-card{min-height:360px}.source-disclaimer{grid-template-columns:1fr}.governance-card{min-height:300px}}
@media(max-width:650px){.verified-grid,.governance-grid{grid-template-columns:1fr}.verified-card,.protected-card,.science-card,.governance-card,.team-card,.community-form-card,.newsletter-card{padding:24px;border-radius:22px}.protected-card h3,.science-card h3,.team-card h3{font-size:36px}.protected-area-number{font-size:62px}.source-row{grid-template-columns:34px 1fr 18px;padding:16px}.source-row small{font-size:10px}.field-row{grid-template-columns:1fr}.community-forms .section{padding:80px 0}}
