/*
Theme Name: Instituto Meio do Mundo
Author: 3BrasilTech
Version: 2.0
Description: Tema oficial do Instituto Meio do Mundo — Editável via Customizer (logos, botões, textos, cores, redes sociais).
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); }
}

/* ─── 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: flex; align-items: center; text-decoration: none; }
.nav-brand-logo { height: 48px; width: auto; object-fit: contain; transition: opacity 0.2s; }
.nav-brand-logo:hover { opacity: 0.9; }
.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-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 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 {
  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 { background: var(--amarelo-brt); transform: translateY(-2px); }
.btn-ghost {
  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 { 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: 2px; position: relative; z-index: 2; }
.pilar {
  background: rgba(255,255,255,0.03); 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(4, 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 { 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 { 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-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 { 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 { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white { 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 { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─── 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 { margin-bottom: 16px; }
.footer-logo-img { height: 56px; width: auto; object-fit: contain; }
.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: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.social-btn:hover { background: rgba(240,180,41,0.15); border-color: rgba(240,180,41,0.3); }
.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 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 ───────────────────────────────────────────────────────── */

/* ─── HAMBURGER MENU ──────────────────────────────────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
  flex-direction: column; justify-content: space-between; padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(14,37,21,0.98); backdrop-filter: blur(20px);
  padding: 32px 24px 40px; z-index: 999;
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile-links { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 0; }
.nav-mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-links a {
  display: block; padding: 16px 0; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
}
.nav-mobile-links a:hover { color: var(--amarelo); }
.nav-mobile-btn { width: 100%; text-align: center; }

/* ─── HERO OVERLAY (para imagem de fundo) ─────────────────────────────── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(18,45,25,0.92) 0%, rgba(18,45,25,0.7) 100%);
}

/* ─── PARCEIROS COM LOGO ──────────────────────────────────────────────── */
.parceiro-item {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}
.parceiro-item:hover { opacity: 0.8; transform: translateY(-2px); }
.parceiro-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: filter 0.3s; }
.parceiro-item:hover .parceiro-logo { filter: grayscale(0%) opacity(1); }

/* ─── DEPOIMENTO — FOTO ──────────────────────────────────────────────── */
.dep-photo {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--amarelo); margin: 0 auto 12px; display: block;
}

@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, .nav-btn:not(.nav-mobile-btn) { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .hero-content { padding: 120px 24px 60px; }
  .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; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a { text-align: center; width: 100%; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  .cta-buttons a { text-align: center; }
}
