/*
Theme Name: Instituto Meio do Mundo
Author: 3BrasilTech
Version: 1.0
Description: Tema oficial do Instituto Meio do Mundo — Sustentabilidade, Turismo, Cultura, Esporte e Social.
Text Domain: instituto-meio-do-mundo
*/

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1a3d24;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── DESIGN TOKENS ───────────────────────────────────────────────────── */
:root {
  --verde:        #1e4d2b;
  --verde-dark:   #122d19;
  --verde-mid:    #2a6638;
  --verde-light:  #3a7d4a;
  --amarelo:      #f0b429;
  --amarelo-brt:  #ffd04d;
  --branco:       #ffffff;
  --off-white:    #f7f5f0;
  --cinza-light:  #eeebe4;
  --texto-dark:   #0e2515;
  --texto-muted:  #5a7a62;
  --radius:       4px;
}

/* ─── SCROLLBAR ───────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--verde-dark); }
::-webkit-scrollbar-thumb { background: var(--amarelo); }

/* ─── KEYFRAMES ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes waveFlow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.04); opacity: 0.85; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeDrift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, -22px, 0) scale(1.06); }
}
@keyframes driftVertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sceneScale {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

/* ─── UTILITY ──────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--amarelo); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--amarelo); flex-shrink: 0;
}
.eyebrow.dark { color: var(--verde); }
.eyebrow.dark::before { background: var(--verde); }

/* ─── NAVBAR ───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(18, 45, 25, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  height: 72px; display: flex; align-items: center;
}
#navbar.scrolled {
  background: rgba(14, 37, 21, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 48px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.nav-brand-media {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: min(42vw, 230px);
  height: 48px;
}
.nav-brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
  transition: filter 0.28s ease;
}
#navbar.scrolled .nav-brand-logo {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-text .inst {
  font-size: 8px; letter-spacing: 2.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 400;
}
.nav-brand-text .name {
  font-size: 13px; font-weight: 700; color: var(--amarelo); letter-spacing: 0.2px;
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a, .nav-links a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-menu a::after, .nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--amarelo); transform: scaleX(0);
  transition: transform 0.25s ease; transform-origin: left;
}
.nav-menu a:hover, .nav-links a:hover { color: var(--amarelo); }
.nav-menu a:hover::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: var(--amarelo); color: var(--verde-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 11px 24px;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.nav-btn:hover { background: var(--amarelo-brt); transform: translateY(-1px); }

/* WordPress nav menu override */
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }

/* ─── HERO ─────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--verde-dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-scene-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: -4%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.4s ease;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,23,15,0.92) 0%, rgba(7,23,15,0.76) 38%, rgba(7,23,15,0.45) 100%),
    linear-gradient(180deg, rgba(7,23,15,0.10) 0%, rgba(7,23,15,0.58) 100%);
}

.hero-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.18;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: none;
  background-image: none !important;
}

.hero-scene.active {
  opacity: 1;
  transform: scale(1);
  animation: sceneScale 7s linear forwards;
}

.scene-one {
  background-image:
    linear-gradient(135deg, rgba(8,23,16,0.18), rgba(29,76,43,0.12)),
    url('images/IMG_9805-scaled.jpg');
  background-position: center, center;
}

.scene-one::after {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 30%);
}

.scene-two {
  background-image:
    linear-gradient(135deg, rgba(7,21,14,0.22), rgba(18,50,33,0.14)),
    url('images/Fortaleza-de-Sao-Jose-de-Macapa-Foto-Secom-GEA.webp');
  background-position: center, center 42%;
}

.scene-two::after {
  background-image: linear-gradient(90deg, rgba(255,255,255,0.05), transparent 45%);
}

.scene-three {
  background-image:
    linear-gradient(135deg, rgba(6,19,13,0.24), rgba(16,44,28,0.14)),
    url('images/img-9806.jpg');
  background-position: center, center 38%;
}

.scene-three::after {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%);
}

.hero-light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-light-orb.orb-one {
  width: 360px;
  height: 360px;
  top: 10%;
  right: 7%;
  background: radial-gradient(circle, rgba(240,180,41,0.28) 0%, rgba(240,180,41,0.06) 45%, transparent 72%);
}

.hero-light-orb.orb-two {
  width: 280px;
  height: 280px;
  left: -40px;
  bottom: 18%;
  background: radial-gradient(circle, rgba(73,151,95,0.28) 0%, rgba(73,151,95,0.05) 52%, transparent 76%);
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(42, 102, 56, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(240, 180, 41, 0.08) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,180,41,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-equator {
  position: absolute; left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 1px; background: linear-gradient(90deg, transparent, rgba(240,180,41,0.3), transparent);
  animation: fadeIn 2s ease 0.5s both;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px 48px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-layout { display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center; }
.hero-left { animation: fadeUp 0.9s ease 0.2s both; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(240,180,41,0.35);
  background: rgba(240,180,41,0.08);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amarelo); animation: pulse 2s ease-in-out infinite;
}
.hero-chip span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--amarelo); font-weight: 500;
}

.hero-kicker-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-kicker-wall span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#hero h1 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05; color: #fff; font-weight: 600; margin-bottom: 24px;
}
#hero h1 .highlight { color: var(--amarelo); font-style: italic; }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 460px; margin-bottom: 40px; font-weight: 300;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.hero-tag {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: 100px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }
.btn-primary,
.btnprimary {
  background: var(--amarelo); color: var(--verde-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 32px;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover,
.btnprimary:hover { background: var(--amarelo-brt); transform: translateY(-2px); }
.btn-ghost,
.btnghost {
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  border-radius: var(--radius); transition: border-color 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover,
.btnghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-right {
  animation: fadeUp 0.9s ease 0.45s both;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.marco-container { position: relative; width: 340px; height: 400px; }
.marco-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.marco-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(240,180,41,0.12);
}
.marco-ring:nth-child(1) { width: 200px; height: 200px; animation: spinSlow 40s linear infinite; }
.marco-ring:nth-child(2) { width: 300px; height: 300px; animation: spinSlow 60s linear infinite reverse; }
.marco-ring:nth-child(3) { width: 380px; height: 380px; animation: spinSlow 80s linear infinite; }
.marco-svg-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-stat-cards { position: absolute; left: -40px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.hero-stat {
  background: rgba(14,37,21,0.9); border: 1px solid rgba(240,180,41,0.2);
  backdrop-filter: blur(10px); padding: 12px 18px; border-radius: var(--radius);
}
.hero-stat-val { font-family: 'Crimson Pro', serif; font-size: 26px; color: var(--amarelo); font-weight: 700; line-height: 1; }
.hero-stat-lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 3px; }
.wave-divider { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ─── SOBRE / MISSÃO ──────────────────────────────────────────────────── */
#sobre { background: var(--off-white); padding: 100px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-main-card {
  background: var(--verde); padding: 48px;
  border-radius: var(--radius); color: #fff; position: relative; overflow: hidden;
}
.sobre-main-card::before {
  content: '0°';
  font-family: 'Crimson Pro', serif; font-size: 140px; font-weight: 700;
  color: rgba(255,255,255,0.04); position: absolute;
  right: -10px; bottom: -20px; line-height: 1;
}
.sobre-card-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.sobre-card-quote { font-family: 'Crimson Pro', serif; font-size: 26px; line-height: 1.5; color: #fff; font-style: italic; margin-bottom: 24px; }
.sobre-card-sub { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.sobre-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.mini-card {
  background: #fff; border: 1px solid var(--cinza-light);
  padding: 20px; border-radius: var(--radius);
  border-top: 3px solid var(--amarelo);
}
.mini-card-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.mini-card-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--verde); margin-bottom: 6px; }
.mini-card-text { font-size: 12px; color: var(--texto-muted); line-height: 1.6; }
.sobre-text h2 {
  font-family: 'Crimson Pro', serif; font-size: clamp(32px, 4vw, 48px);
  color: var(--verde-dark); line-height: 1.2; margin-bottom: 20px; font-weight: 600;
}
.sobre-text p { font-size: 15px; color: #4a6b52; line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.sobre-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.value-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: var(--radius);
  border-left: 3px solid var(--amarelo); background: rgba(240,180,41,0.06);
}
.value-num { font-family: 'Crimson Pro', serif; font-size: 20px; color: var(--amarelo); font-weight: 700; flex-shrink: 0; width: 24px; }
.value-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--verde); margin-bottom: 4px; }
.value-text { font-size: 13px; color: var(--texto-muted); line-height: 1.6; }

/* ─── PILARES ──────────────────────────────────────────────────────────── */
#pilares { background: var(--verde-dark); padding: 100px 0; position: relative; overflow: hidden; }
#pilares::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(42,102,56,0.4) 0%, transparent 50%);
}
.pilares-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.pilares-header h2 { font-family: 'Crimson Pro', serif; font-size: clamp(36px, 5vw, 58px); color: #fff; font-weight: 600; margin-bottom: 14px; }
.pilares-header p { font-size: 15px; color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300; }
.pilares-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; position: relative; z-index: 2; }
.pilar {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px; text-align: center; cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.pilar::before {
  content: attr(data-num);
  font-family: 'Crimson Pro', serif; font-size: 80px; font-weight: 700;
  color: rgba(255,255,255,0.03); position: absolute;
  top: -10px; right: 8px; line-height: 1;
}
.pilar:hover { background: rgba(240,180,41,0.08); border-color: rgba(240,180,41,0.25); transform: translateY(-6px); }
.pilar-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px;
  transition: background 0.3s, border-color 0.3s;
}
.pilar:hover .pilar-icon-wrap { background: rgba(240,180,41,0.2); border-color: rgba(240,180,41,0.45); }
.pilar-name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amarelo); margin-bottom: 12px; }
.pilar-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }
.pilar-arrow { display: block; margin-top: 20px; font-size: 18px; color: rgba(240,180,41,0.3); transition: color 0.3s, transform 0.3s; }
.pilar:hover .pilar-arrow { color: var(--amarelo); transform: translateX(4px); }

/* ─── IMPACTO ────────────────────────────────────────────────────────── */
#impacto { background: var(--amarelo); padding: 80px 0; position: relative; overflow: hidden; }
#impacto::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14,37,21,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(14,37,21,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.impacto-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; position: relative; z-index: 2; }
.impacto-item { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(14,37,21,0.12); animation: counterUp 0.8s ease both; }
.impacto-item:last-child { border-right: none; }
.impacto-val { font-family: 'Crimson Pro', serif; font-size: clamp(44px, 6vw, 64px); font-weight: 700; color: var(--verde-dark); line-height: 1; }
.impacto-suffix { font-size: 28px; color: var(--verde-mid); margin-left: 2px; }
.impacto-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(14,37,21,0.55); margin-top: 8px; }
.impacto-sub { font-size: 12px; color: rgba(14,37,21,0.4); margin-top: 4px; font-weight: 300; }

/* ─── PROGRAMAS ────────────────────────────────────────────────────────── */
#programas { background: #fff; padding: 100px 0; }
.programas-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.programas-header h2 { font-family: 'Crimson Pro', serif; font-size: clamp(32px, 4vw, 48px); color: var(--verde-dark); font-weight: 600; line-height: 1.2; }
.link-arrow,
.linkarrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--amarelo); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.link-arrow:hover,
.linkarrow:hover { gap: 12px; }
.programas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.prog-featured { grid-row: span 2; }
.prog-card { position: relative; overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.prog-bg {
  width: 100%; height: 100%; min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; position: relative; transition: transform 0.5s ease;
}
.prog-featured .prog-bg { min-height: 494px; }
.prog-card:hover .prog-bg { transform: scale(1.03); }
.prog-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,25,15,0.9) 0%, rgba(10,25,15,0.2) 60%, transparent 100%);
  pointer-events: none;
}
.prog-bg.eco   { background: linear-gradient(145deg, #1a4a28, #2a6638); }
.prog-bg.rota  { background: linear-gradient(145deg, #0f2e1a, #1e4d2b); }
.prog-bg.campe { background: linear-gradient(145deg, #102015, #1a3d22); }
.prog-bg.cult  { background: linear-gradient(145deg, #0a1e10, #163820); }
.prog-photo-equador {
  background-image:
    linear-gradient(145deg, rgba(26,74,40,0.45), rgba(42,102,56,0.55)),
    url('images/IMG_9805-scaled.jpg');
  background-size: cover;
  background-position: center;
}

.prog-photo-fortaleza {
  background-image:
    linear-gradient(145deg, rgba(15,46,26,0.48), rgba(30,77,43,0.58)),
    url('images/Fortaleza-de-Sao-Jose-de-Macapa-Foto-Secom-GEA.webp');
  background-size: cover;
  background-position: center;
}

.prog-photo-parque {
  background-image:
    linear-gradient(145deg, rgba(16,32,21,0.42), rgba(26,61,34,0.56)),
    url('images/img-9806.jpg');
  background-size: cover;
  background-position: center;
}

.prog-photo-fortaleza-close {
  background-image:
    linear-gradient(145deg, rgba(10,30,16,0.44), rgba(22,56,32,0.58)),
    url('images/OIP.webp');
  background-size: cover;
  background-position: center;
}
.prog-content { position: relative; z-index: 2; }
.prog-eixo { display: inline-block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--amarelo); margin-bottom: 8px; font-weight: 600; }
.prog-title { font-family: 'Crimson Pro', serif; font-size: 24px; color: #fff; font-weight: 600; line-height: 1.2; }
.prog-featured .prog-title { font-size: 34px; }
.prog-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.6; }
.prog-icon {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(240,180,41,0.15); border: 1px solid rgba(240,180,41,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: background 0.3s;
}
.prog-card:hover .prog-icon { background: rgba(240,180,41,0.3); }

/* ─── DEPOIMENTO ───────────────────────────────────────────────────────── */
#depoimento { background: var(--cinza-light); padding: 100px 0; text-align: center; }
.dep-wrap { max-width: 760px; margin: 0 auto; }
.dep-mark { font-family: 'Crimson Pro', serif; font-size: 120px; color: rgba(30,77,43,0.1); line-height: 0.6; margin-bottom: 28px; display: block; font-style: italic; }
.dep-quote { font-family: 'Crimson Pro', serif; font-size: clamp(20px, 3vw, 28px); color: var(--verde-dark); line-height: 1.65; font-style: italic; font-weight: 400; margin-bottom: 36px; }
.dep-divider { width: 40px; height: 2px; background: var(--amarelo); margin: 0 auto 20px; }
.dep-author { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); }
.dep-role   { font-size: 12px; color: var(--texto-muted); margin-top: 4px; }
.dep-dots   { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.dep-dot    { width: 8px; height: 8px; border-radius: 50%; background: rgba(30,77,43,0.15); }
.dep-dot.active { background: var(--amarelo); }

/* ─── PARCEIROS ──────────────────────────────────────────────────────── */
#parceiros { background: #fff; padding: 72px 0; border-top: 1px solid var(--cinza-light); }
.parceiros-label { text-align: center; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(30,77,43,0.3); margin-bottom: 40px; }
.parceiros-row { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.parceiro-placeholder { height: 40px; display: flex; align-items: center; background: var(--cinza-light); border-radius: 4px; padding: 0 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(30,77,43,0.3); font-weight: 600; }

/* ─── CTA FINAL ──────────────────────────────────────────────────────── */
#cta-final { background: var(--verde); padding: 100px 0; position: relative; overflow: hidden; }
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(240,180,41,0.1) 0%, transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(42,102,56,0.5) 0%, transparent 45%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Crimson Pro', serif; font-size: clamp(36px, 5vw, 60px); color: #fff; font-weight: 600; line-height: 1.1; margin-bottom: 18px; }
.cta-inner h2 em { color: var(--amarelo); font-style: italic; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 44px; line-height: 1.7; font-weight: 300; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white,
.btnwhite { background: #fff; color: var(--verde-dark); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border: none; cursor: pointer; border-radius: var(--radius); transition: background 0.2s, transform 0.15s; text-decoration: none; display: inline-block; }
.btn-white:hover,
.btnwhite:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white,
.btnoutlinewhite { background: transparent; color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; border-radius: var(--radius); transition: border-color 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.btn-outline-white:hover,
.btnoutlinewhite:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.pix-card {
  margin: 28px auto 0;
  max-width: 560px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}
.pix-kicker {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.pix-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.pix-key,
.pixkey {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--verde-dark);
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}
.pix-qr-wrap {
  margin: 18px auto 16px;
  width: min(100%, 220px);
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.pix-qr-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.pix-note,
.pixnote {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}
.pix-code-label {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.pix-code-value {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
  word-break: break-all;
}
.pix-copy-btn,
.pixcopybtn {
  margin-top: 16px;
  background: var(--amarelo);
  color: var(--verde-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
.pix-copy-btn:hover,
.pixcopybtn:hover {
  background: var(--amarelo-brt);
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--verde-dark); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-copy {
  min-width: 0;
}
.footer-inst-txt { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.footer-name-txt { font-size: 16px; font-weight: 700; color: var(--amarelo); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; text-decoration: none; color: rgba(240,180,41,0.92); transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; }
.social-btn svg { width: 16px; height: 16px; display: block; }
.social-btn:hover { background: rgba(240,180,41,0.15); border-color: rgba(240,180,41,0.3); color: var(--amarelo-brt); transform: translateY(-1px); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--amarelo); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links span { font-size: 11px; color: rgba(255,255,255,0.35); }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ─── BACK TO TOP ──────────────────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amarelo); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--amarelo-brt); }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .pilares-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-menu, .nav-links { display: none; }
  .nav-brand {
    gap: 10px;
  }
  .nav-brand-text .inst {
    font-size: 7px;
    letter-spacing: 2px;
  }
  .nav-brand-text .name {
    font-size: 11px;
  }
  .hero-content { padding: 120px 24px 60px; }
  .hero-light-orb.orb-one {
    width: 220px;
    height: 220px;
    top: 4%;
    right: -30px;
  }
  .hero-light-orb.orb-two {
    width: 180px;
    height: 180px;
    left: -50px;
    bottom: 28%;
  }
  .pilares-grid { grid-template-columns: 1fr 1fr; }
  .impacto-grid { grid-template-columns: 1fr 1fr; }
  .programas-grid { grid-template-columns: 1fr; }
  .prog-featured { grid-row: span 1; }
  .cta-inner { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Modern interactive refresh */
body {
  background:
    radial-gradient(circle at top, rgba(240, 180, 41, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-btn-mobile { display: none; }

.hero-scroll-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,180,41,0.95), transparent);
}

[data-reveal],
.prog-card,
.impacto-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s ease var(--reveal-delay, 0ms);
}

[data-reveal].is-visible,
.prog-card.is-visible,
.impacto-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pilar {
  outline: none;
  border-radius: 20px;
}

.pilar.active {
  background: linear-gradient(180deg, rgba(240,180,41,0.12), rgba(255,255,255,0.04));
  border-color: rgba(240,180,41,0.38);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

.pilar.active .pilar-icon-wrap {
  background: rgba(240,180,41,0.24);
  border-color: rgba(240,180,41,0.5);
}

.pilar.active .pilar-arrow {
  color: var(--amarelo);
  transform: translateX(4px);
}

.pilar-spotlight {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.pilar-panel {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-deep);
}

.pilar-panel.active { display: grid; }

.pilar-panel-copy h3 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin-bottom: 12px;
}

.pilar-panel-copy p {
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  font-size: 15px;
}

.pilar-panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.panel-stat {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(14,37,21,0.55);
  border: 1px solid rgba(240,180,41,0.14);
}

.panel-stat strong {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 34px;
  color: var(--amarelo);
  line-height: 1;
}

.panel-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}

#jornada {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240,180,41,0.12), transparent 35%),
    linear-gradient(180deg, #fbf8f2 0%, #ffffff 100%);
}

.jornada-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.jornada-copy h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--verde-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.jornada-copy p {
  color: #4a6b52;
  font-size: 15px;
  line-height: 1.8;
}

.jornada-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jornada-step {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(30,77,43,0.08);
  box-shadow: 0 18px 36px rgba(18,45,25,0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.jornada-step.active {
  transform: translateY(-6px);
  border-color: rgba(240,180,41,0.46);
  box-shadow: 0 22px 42px rgba(18,45,25,0.1);
}

.jornada-step span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amarelo);
}

.jornada-step strong {
  display: block;
  color: var(--verde-dark);
  margin-bottom: 8px;
  font-size: 17px;
}

.jornada-step p {
  color: var(--texto-muted);
  font-size: 13px;
  line-height: 1.7;
}

#depoimento {
  background:
    linear-gradient(180deg, #eef1eb 0%, #f7f4ed 100%);
}

.dep-slider {
  position: relative;
  min-height: 250px;
}

.dep-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.dep-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dep-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dep-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(30,77,43,0.16);
  background: rgba(255,255,255,0.65);
  color: var(--verde-dark);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dep-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(240,180,41,0.55);
}

.dep-dot {
  border: 0;
  cursor: pointer;
}

.parceiro-placeholder {
  min-width: 120px;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.parceiro-placeholder:hover {
  transform: translateY(-3px);
  background: rgba(240,180,41,0.12);
  color: var(--verde);
}

@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pilar-panel { grid-template-columns: 1fr; }
  .jornada-shell { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-btn { display: none; }
  .nav-btn-mobile { display: inline-flex; justify-content: center; width: 100%; }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(14,37,21,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  body.menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-scroll-note { margin-top: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .sobre-mini-cards { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .impacto-grid { grid-template-columns: 1fr 1fr; }
  .jornada-steps { grid-template-columns: 1fr; }
  .dep-slider { min-height: 320px; }
}

@media (max-width: 560px) {
  .impacto-grid { grid-template-columns: 1fr; }
  .pilar-panel,
  .jornada-step {
    border-radius: 18px;
  }
  .dep-controls { gap: 10px; }
}

/* Editorial refinement */
:root {
  --shadow-soft: 0 24px 60px rgba(9, 27, 15, 0.10);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.22);
}

body {
  font-family: 'Manrope', sans-serif;
  color: #17321f;
}

#hero h1,
.sobre-text h2,
.pilares-header h2,
.pilar-panel-copy h3,
.jornada-copy h2,
.programas-header h2,
.dep-quote,
.cta-inner h2,
.hero-stat-val,
.impacto-val,
.prog-title {
  font-family: 'Cormorant Garamond', serif;
}

#hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(240,180,41,0.22), transparent 22%),
    linear-gradient(135deg, #07170f 0%, #102d1b 38%, #1d4c2b 100%);
}

.hero-content {
  max-width: 1260px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 100px;
  align-items: start;
}

#hero h1 {
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 700px;
}

.hero-desc {
  max-width: 560px;
  font-size: 17px;
  color: rgba(255,255,255,0.68);
}

.hero-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
}

.hero-editorial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.editorial-cell {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.editorial-cell strong,
.editorial-cell span {
  display: block;
}

.editorial-cell strong {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 8px;
}

.editorial-cell span {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.hero-scene-meta {
  margin-top: 24px;
  min-height: 108px;
  max-width: 540px;
  position: relative;
}

.hero-scene-copy {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.hero-scene-copy.active {
  opacity: 1;
  transform: translateY(0);
}

.scene-copy-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,180,41,0.92);
}

.hero-scene-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
}

.hero-scene-copy p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.64);
}

.btn-primary,
.btn-ghost,
.btn-white,
.btn-outline-white,
.nav-btn {
  border-radius: 999px;
}

.btn-primary,
.nav-btn {
  box-shadow: 0 14px 30px rgba(240,180,41,0.22);
}

.marco-container {
  width: 390px;
  height: 470px;
}

.marco-watermark {
  display: none;
}

.marco-watermark::after {
  display: none;
}

.hero-stat-cards {
  left: -18px;
  bottom: 36px;
  gap: 12px;
}

.hero-stat {
  min-width: 168px;
  border-radius: 18px;
  background: rgba(8, 22, 13, 0.78);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.hero-stat-kicker {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
}

.hero-stat-lbl {
  color: rgba(255,255,255,0.55);
}

.hero-card-float {
  position: absolute;
  right: -18px;
  top: 48px;
  width: 210px;
  padding: 18px 18px 16px;
  background: rgba(247,245,240,0.96);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-6deg);
}

.hero-card-float::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(18,45,25,0.08);
  border-radius: 16px;
}

.float-label {
  position: relative;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(18,45,25,0.5);
}

.hero-card-float strong,
.hero-card-float span {
  position: relative;
  display: block;
}

.hero-card-float strong {
  margin: 10px 0 6px;
  font-size: 20px;
  color: var(--verde-dark);
}

.hero-card-float span {
  font-size: 12px;
  line-height: 1.6;
  color: #5b6c61;
}

.hero-cinematic-nav {
  position: absolute;
  right: 48px;
  bottom: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.hero-dot.active {
  width: 68px;
  background: var(--amarelo);
}

.hero-dot:hover {
  transform: translateY(-1px);
}

.hero-visual-stamp {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.stamp-one {
  top: 18px;
  left: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.88);
  animation: driftVertical 6s ease-in-out infinite;
}

.stamp-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(18,45,25,0.48);
}

.stamp-one strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 0.95;
  color: var(--verde-dark);
}

.stamp-two {
  right: 22px;
  bottom: 118px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(240,180,41,0.92);
  animation: driftVertical 7.5s ease-in-out infinite reverse;
}

.stamp-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1;
  color: #0d2215;
}

.stamp-text {
  font-size: 11px;
  letter-spacing: 1.7px;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(13,34,21,0.8);
}

#sobre {
  position: relative;
}

#sobre::before {
  display: none;
}

#sobre::after {
  content: 'MEIO DO MUNDO';
  position: absolute;
  left: 48px;
  bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 10vw, 140px);
  letter-spacing: 0.08em;
  color: rgba(18,45,25,0.04);
  pointer-events: none;
}

#eventos {
  background: linear-gradient(180deg, rgba(247,245,240,0.96) 0%, rgba(233,226,215,1) 100%);
}

.eventos-header {
  max-width: 710px;
  margin: 0 auto 46px;
  text-align: center;
}

.eventos-header h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.04;
  margin: 18px 0 0;
}

.eventos-header p {
  margin: 20px auto 0;
  max-width: 620px;
  color: rgba(18,45,25,0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.eventos-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 80px;
}

.eventos-gallery {
  display: grid;
  gap: 16px;
}

.eventos-gallery-hero,
.eventos-gallery-item,
.eventosgalleryhero,
.eventosgalleryitem {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.eventos-gallery-hero,
.eventosgalleryhero {
  min-height: 520px;
}

.eventos-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.eventos-gallery-item,
.eventosgalleryitem {
  min-height: 240px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.eventos-gallery-item:hover,
.eventos-gallery-hero:hover,
.eventosgalleryitem:hover,
.eventosgalleryhero:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(10,20,10,0.14);
}

.eventos-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,10,0.06), rgba(10,20,10,0.38));
}

.eventos-item-label,
.eventositemlabel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 16px 32px rgba(0,0,0,0.26);
  z-index: 1;
}

.eventos-gallery > p {
  display: none;
}

.eventos-gallery-hidden {
  display: none;
}

.eventos-info-card {
  display: grid;
  gap: 18px;
  padding: 24px 0 10px;
}

.eventos-info-card p {
  color: rgba(18,45,25,0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.eventos-stat-row {
  display: grid;
  gap: 16px;
}

.eventos-stat {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.eventos-stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--verde-dark);
  margin-bottom: 8px;
}

.eventos-stat span {
  color: rgba(18,45,25,0.75);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .eventos-shell {
    grid-template-columns: 1fr;
  }

  .eventos-gallery-hero {
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .eventos-gallery-grid {
    grid-template-columns: 1fr;
  }

  .eventos-header h2 {
    font-size: 2rem;
  }
}

.sobre-main-card,
.mini-card,
.value-row,
.jornada-step,
.dep-wrap {
  border-radius: 24px;
}

.sobre-main-card {
  box-shadow: var(--shadow-soft);
}

.sobre-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 12px;
  margin-top: 14px;
}

.sobre-photo {
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
  position: relative;
}

.sobre-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,45,25,0.04), rgba(18,45,25,0.18));
}

.sobre-photo-large {
  min-height: 240px;
  background-image: url('images/5e5c99bdc4ac3f1ea69117c3f73d1392.jpg');
  background-position: center;
}

.sobre-photo-small {
  min-height: 240px;
  background-image: url('images/OIP.webp');
  background-position: center;
}

.mini-card {
  border-top-width: 1px;
  box-shadow: 0 18px 40px rgba(18,45,25,0.06);
}

.mini-card-accent {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.sobre-floating-note {
  width: 240px;
  margin: -20px 0 0 auto;
  padding: 18px 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(18,45,25,0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.floating-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(18,45,25,0.45);
  margin-bottom: 8px;
}

.sobre-floating-note strong {
  font-size: 16px;
  line-height: 1.45;
  color: var(--verde-dark);
}

.sobre-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 12px;
  margin-top: 14px;
}

.sobre-photo {
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
  position: relative;
}

.sobre-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,45,25,0.04), rgba(18,45,25,0.18));
}

.sobre-photo-large {
  min-height: 240px;
  background-image: url('images/5e5c99bdc4ac3f1ea69117c3f73d1392.jpg');
}

.sobre-photo-small {
  min-height: 240px;
  background-image: url('images/OIP.webp');
}

.mini-card-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,180,41,0.14);
  color: var(--verde-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pilares-header p,
.pilar-desc,
.pilar-panel-copy p,
.jornada-copy p,
.impacto-sub,
.dep-role,
.cta-inner p {
  font-weight: 400;
}

.pilar-icon-wrap,
.prog-icon {
  position: relative;
  overflow: hidden;
}

.pilar-glyph,
.prog-glyph {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.glyph-terra::before,
.glyph-rota::before,
.glyph-palco::before,
.glyph-pulso::before,
.glyph-rede::before,
.glyph-terra::after,
.glyph-rota::after,
.glyph-palco::after,
.glyph-pulso::after,
.glyph-rede::after {
  content: '';
  position: absolute;
}

.glyph-terra::before {
  inset: 3px 4px 8px;
  border-radius: 50% 50% 55% 55%;
  border: 2px solid var(--amarelo);
}

.glyph-terra::after {
  left: 9px;
  top: 2px;
  width: 2px;
  height: 18px;
  background: var(--amarelo);
  box-shadow: -5px 5px 0 -1px rgba(240,180,41,0.85), 5px 5px 0 -1px rgba(240,180,41,0.85);
}

.glyph-rota::before {
  left: 3px;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--amarelo);
  transform: rotate(-28deg);
}

.glyph-rota::after {
  right: 1px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--amarelo);
  border-right: 2px solid var(--amarelo);
  transform: rotate(18deg);
}

.glyph-palco::before {
  left: 3px;
  right: 3px;
  bottom: 4px;
  height: 12px;
  border: 2px solid var(--amarelo);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0;
}

.glyph-palco::after {
  left: 9px;
  top: 2px;
  width: 4px;
  height: 8px;
  background: var(--amarelo);
  border-radius: 999px;
}

.glyph-pulso::before {
  left: 2px;
  right: 2px;
  top: 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0 8%, var(--amarelo) 8% 28%, transparent 28% 32%, var(--amarelo) 32% 52%, transparent 52% 56%, var(--amarelo) 56% 84%, transparent 84% 100%);
}

.glyph-pulso::after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 14px;
  border-left: 2px solid var(--amarelo);
  border-right: 2px solid var(--amarelo);
  transform: skewX(-20deg);
}

.glyph-rede::before {
  inset: 2px;
  border: 2px solid var(--amarelo);
  border-radius: 50%;
}

.glyph-rede::after {
  left: 10px;
  top: 3px;
  width: 2px;
  height: 16px;
  background: var(--amarelo);
  box-shadow: -6px 6px 0 -1px rgba(240,180,41,0.95), 6px 6px 0 -1px rgba(240,180,41,0.95);
}

#impacto {
  background:
    linear-gradient(180deg, #f1c24b 0%, #e8b33f 100%);
}

.impacto-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.impacto-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  color: var(--verde-dark);
  max-width: 560px;
}

.impacto-item {
  border-radius: 20px;
  border-right: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  margin: 0 6px;
}

.programas-grid {
  gap: 16px;
}

.prog-card {
  border-radius: 28px;
}

.prog-bg {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}

.prog-bg::before {
  display: none;
}

.prog-featured .prog-bg::before {
  display: none;
}

.prog-photo-equador {
  background-image:
    linear-gradient(145deg, rgba(26,74,40,0.45), rgba(42,102,56,0.55)),
    url('images/IMG_9805-scaled.jpg');
  background-size: cover;
  background-position: center;
}

.prog-photo-fortaleza {
  background-image:
    linear-gradient(145deg, rgba(15,46,26,0.48), rgba(30,77,43,0.58)),
    url('images/Fortaleza-de-Sao-Jose-de-Macapa-Foto-Secom-GEA.webp');
  background-size: cover;
  background-position: center;
}

.prog-photo-parque {
  background-image:
    linear-gradient(145deg, rgba(16,32,21,0.42), rgba(26,61,34,0.56)),
    url('images/img-9806.jpg');
  background-size: cover;
  background-position: center;
}

.prog-photo-fortaleza-close {
  background-image:
    linear-gradient(145deg, rgba(10,30,16,0.44), rgba(22,56,32,0.58)),
    url('images/OIP.webp');
  background-size: cover;
  background-position: center;
}

.prog-card:nth-child(2) {
  margin-top: 28px;
}

.prog-card:nth-child(4) {
  margin-top: -20px;
}

.programas-caption {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.programas-caption span {
  max-width: 320px;
  text-align: right;
  font-size: 13px;
  line-height: 1.7;
  color: #5d7267;
}

.programas-marquee {
  margin-top: 26px;
  display: flex;
  gap: 40px;
  width: max-content;
  min-width: 100%;
  padding: 14px 0 0;
  border-top: 1px solid rgba(18,45,25,0.08);
  overflow: hidden;
}

.programas-marquee span {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18,45,25,0.36);
}

.prog-icon {
  border-radius: 16px;
}

.dep-wrap {
  background: rgba(255,255,255,0.68);
  padding: 46px 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(18,45,25,0.08);
}

.dep-mark {
  margin-bottom: 8px;
}

#parceiros {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.parceiro-placeholder {
  border: 1px solid rgba(18,45,25,0.08);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 30px rgba(18,45,25,0.04);
}

#cta-final {
  background:
    radial-gradient(circle at 50% 20%, rgba(240,180,41,0.18), transparent 24%),
    linear-gradient(135deg, #153723 0%, #0e2515 100%);
}

.cta-inner {
  max-width: 760px;
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .marco-container {
    width: 100%;
    max-width: 420px;
    height: 420px;
  }

  .hero-card-float {
    right: 10px;
  }

  .impacto-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero-editorial-strip {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .sobre-floating-note {
    margin: 18px 0 0;
  }

  .sobre-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual-stamp {
    transform: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-kicker-wall {
    gap: 8px;
  }

  .hero-kicker-wall span {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hero-scene-meta {
    min-height: 132px;
  }

  .hero-scene-copy strong {
    font-size: 18px;
  }

  .hero-cinematic-nav {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 22px;
    justify-content: flex-start;
  }

  .hero-dot {
    width: 28px;
  }

  .hero-dot.active {
    width: 46px;
  }

  .sobre-photo-grid {
    grid-template-columns: 1fr;
  }

  #sobre::after {
    left: 22px;
    bottom: 18px;
  }

  .programas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .programas-header > div {
    min-width: 0;
  }

  .hero-card-float {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 16px 24px 0;
  }

  .hero-stat-cards {
    left: 16px;
    bottom: 16px;
  }

  .dep-controls {
    flex-wrap: wrap;
  }

  .stamp-one {
    top: 10px;
    left: 10px;
    padding: 14px 16px;
  }

  .stamp-one strong {
    font-size: 22px;
  }

  .stamp-two {
    right: 10px;
    bottom: 92px;
    padding: 12px 14px;
  }

  .marco-watermark {
    inset: 0;
  }

  .prog-card:nth-child(2),
  .prog-card:nth-child(4) {
    margin-top: 0;
  }

  .programas-caption {
    justify-content: flex-start;
  }

  .programas-caption span {
    text-align: left;
  }

  .dep-wrap {
    padding: 34px 24px;
  }
}
