/* ───────────────────────────────────────────────
   RESET & VARIABLES
─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --azul:    #325d8a;
  --ciano:   #47c1d9;
  --ouro:    #f1c751;
  --azul-esc:#1e3d5c;
  --branco:  #ffffff;
  --cinza:   #f5f7fa;
  --texto:   #2c3e50;
  --sombra:  0 8px 40px rgba(50,93,138,.15);
  --r:       14px;
  --font-h:  'Playfair Display', serif;
  --font-b:  'Nunito', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--texto); background: var(--branco); overflow-x: hidden; }

/* ───────────────────────────────────────────────
   SCROLLBAR
─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cinza); }
::-webkit-scrollbar-thumb { background: var(--ciano); border-radius: 3px; }

/* ───────────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(50,93,138,.1);
  transition: all .3s;
}
.nav-inner {
  max-width: 1280px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--ciano));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; font-weight: 900;
  box-shadow: 0 4px 16px rgba(71,193,217,.4);
  /* Substitua pelo: <img src="logo.png" alt="Logo"> */
}
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-family: var(--font-h); font-size: 1.1rem; color: var(--azul); }
.logo-text span { font-size: .75rem; color: var(--ciano); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--texto); font-weight: 600; font-size: .85rem;
  padding: 8px 14px; border-radius: 8px; transition: all .25s;
}
.nav-links a:not(.nav-cta):hover { background: var(--cinza); color: var(--azul); }
.nav-cta {
  background: linear-gradient(135deg, var(--azul), var(--ciano));
  color: #fff !important; border-radius: 50px !important;
  padding: 10px 22px !important; box-shadow: 0 4px 16px rgba(71,193,217,.4);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--ouro), #e8b84a) !important;
  color: var(--azul-esc) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241,199,81,.55) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--azul); border-radius: 2px; transition: .3s; }

/* ───────────────────────────────────────────────
   HERO SLIDER (full-bleed: sem padding de section; altura = tela − nav)
─────────────────────────────────────────────── */
.hero {
  --nav-h: 80px;
  position: relative;
  margin-top: var(--nav-h);
  width: 100%;
  overflow: hidden;
  /* Uma “tela” útil abaixo do menu fixo — evita barra branca embaixo do 100vh+margin */
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
}
@supports (height: 100svh) {
  .hero { height: calc(100svh - var(--nav-h)); }
}
.slider-track {
  display: flex; height: 100%;
  transition: transform .9s cubic-bezier(.77,0,.175,1);
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--azul-esc);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,61,92,.88) 0%, rgba(50,93,138,.55) 55%, transparent 100%);
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw; max-width: 750px;
  animation: fadeSlide .9s ease;
}
@keyframes fadeSlide { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
.slide-tag {
  display: inline-block; background: var(--ouro); color: var(--azul-esc);
  font-weight: 800; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; width: fit-content;
}
.slide-content h1 {
  font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.slide-content p { color: rgba(255,255,255,.88); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ouro); color: var(--azul-esc);
  font-weight: 800; padding: 15px 34px; border-radius: 50px;
  text-decoration: none; font-size: .95rem; transition: all .3s;
  box-shadow: 0 6px 24px rgba(241,199,81,.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(241,199,81,.6); }
.btn-outline {
  border: 2px solid #fff; color: #fff;
  font-weight: 700; padding: 13px 30px; border-radius: 50px;
  text-decoration: none; font-size: .95rem; transition: all .3s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; transition: all .3s;
}
.dot.active { background: var(--ouro); border-color: var(--ouro); transform: scale(1.3); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: none; color: #fff; width: 50px; height: 50px;
  border-radius: 50%; cursor: pointer; font-size: 1.2rem;
  transition: all .3s; z-index: 10;
}
.slider-arrow:hover { background: var(--ouro); color: var(--azul-esc); }
.arrow-prev { left: 24px; }
.arrow-next { right: 24px; }

/* ───────────────────────────────────────────────
   IMPACT STRIP
─────────────────────────────────────────────── */
.impact-strip {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-esc) 100%);
  padding: 40px 32px;
}
.impact-grid {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.impact-item { text-align: center; padding: 16px; }
.impact-num {
  font-family: var(--font-h); font-size: clamp(2.2rem, 4vw, 2.8rem); color: var(--ouro);
  font-weight: 900; line-height: 1;
}
.impact-label { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 8px; font-weight: 700; }

/* ───────────────────────────────────────────────
   SECTIONS COMUNS
─────────────────────────────────────────────── */
section:not(.hero) { padding: 90px 32px; }
.section-inner { max-width: 1200px; margin: auto; }
.section-tag {
  display: inline-block; background: rgba(71,193,217,.12); color: var(--ciano);
  font-weight: 800; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--azul-esc); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { color: #667; font-size: 1.05rem; line-height: 1.75; max-width: 640px; }
.divider {
  width: 60px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ouro), var(--ciano));
  margin: 18px 0 30px;
}

/* ───────────────────────────────────────────────
   QUEM SOMOS
─────────────────────────────────────────────── */
#quem-somos { background: var(--cinza); }
.quem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-top: 48px;
}
.quem-img {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 480px;
}
.quem-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--ciano) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; text-align: center; gap: 12px;
}
.quem-img-placeholder svg { opacity: .5; }
.quem-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--ouro); color: var(--azul-esc); border-radius: 16px;
  padding: 18px 24px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.quem-badge strong { display: block; font-size: 2.2rem; font-family: var(--font-h); line-height: 1; }
.quem-badge span { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.quem-text p { margin-bottom: 18px; line-height: 1.8; color: #555; }
.ctas-wrap { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-blue {
  background: linear-gradient(135deg, var(--azul), var(--ciano));
  color: #fff; font-weight: 700; padding: 14px 30px; border-radius: 50px;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 6px 20px rgba(50,93,138,.35);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(50,93,138,.45); }
.btn-gold {
  background: var(--ouro); color: var(--azul-esc); font-weight: 800;
  padding: 14px 30px; border-radius: 50px; text-decoration: none; transition: all .3s;
  box-shadow: 0 6px 20px rgba(241,199,81,.4);
}
.btn-gold:hover { transform: translateY(-2px); }

/* ───────────────────────────────────────────────
   SOBRE NÓS / MISSÃO
─────────────────────────────────────────────── */
#sobre { background: var(--branco); }
.mvv-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 48px; align-items: start;
}
.mvv-card {
  border-radius: var(--r); padding: 36px 30px;
  background: var(--cinza); border-top: 4px solid var(--ciano);
  transition: all .3s;
}
.mvv-card:nth-child(2) { border-top-color: var(--azul); }
.mvv-card:nth-child(3) { grid-column: 1 / -1; border-top-color: var(--ouro); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--sombra); }
.mvv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mvv-card h3 { font-family: var(--font-h); color: var(--azul-esc); font-size: 1.3rem; margin-bottom: 12px; }
.mvv-card p { color: #667; line-height: 1.75; font-size: .95rem; }
.mvv-values { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.mvv-values p { line-height: 1.65; padding-left: 18px; border-left: 3px solid rgba(244, 192, 44, .55); }
.mvv-values strong { color: var(--azul-esc); font-weight: 800; }

.idealizador {
  display: flex; align-items: center; gap: 36px; margin-top: 64px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-esc) 100%);
  border-radius: 20px; padding: 48px; color: #fff;
}
.idealizador-foto {
  width: 160px; height: 160px; border-radius: 50%; flex-shrink: 0;
  border: 5px solid var(--ouro);
  background: linear-gradient(135deg, var(--ciano), var(--azul));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.6);
  overflow: hidden;
}
.idealizador-foto img { width: 100%; height: 100%; object-fit: cover; }
.idealizador-text h3 { font-family: var(--font-h); font-size: 1.8rem; margin-bottom: 6px; color: var(--ouro); }
.idealizador-text span { font-size: .85rem; opacity: .75; text-transform: uppercase; letter-spacing: 1.5px; }
.idealizador-text p { margin-top: 16px; line-height: 1.8; opacity: .9; }

/* ───────────────────────────────────────────────
   PROJETOS
─────────────────────────────────────────────── */
#projetos { background: var(--cinza); }
.projetos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.projeto-card {
  background: var(--branco); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(50,93,138,.08); transition: all .35s;
  cursor: pointer;
}
.projeto-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(50,93,138,.18); }
.projeto-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.projeto-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: inherit; opacity: .15;
}
.t1 { background: linear-gradient(135deg, #325d8a, #47c1d9); }
.t2 { background: linear-gradient(135deg, #47c1d9, #1e3d5c); }
.t3 { background: linear-gradient(135deg, #f1c751, #e8882a); }
.t4 { background: linear-gradient(135deg, #47c1d9, #325d8a); }
.t5 { background: linear-gradient(135deg, #2e7d32, #66bb6a); }
.t6 { background: linear-gradient(135deg, #7b1fa2, #ba68c8); }
.projeto-body { padding: 26px; }
.projeto-body h3 { font-family: var(--font-h); color: var(--azul-esc); font-size: 1.15rem; margin-bottom: 8px; }
.projeto-body p { color: #667; font-size: .9rem; line-height: 1.65; }
.projeto-tag-chip {
  display: inline-block; background: rgba(71,193,217,.12);
  color: var(--ciano); font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}

/* ───────────────────────────────────────────────
   IMPACTO E RESULTADOS
─────────────────────────────────────────────── */
#impacto { background: linear-gradient(135deg, var(--azul-esc) 0%, var(--azul) 100%); color: #fff; }
#impacto .section-tag { background: rgba(241,199,81,.15); color: var(--ouro); }
#impacto .section-title { color: #fff; }
#impacto .section-subtitle { color: rgba(255,255,255,.75); max-width: 900px; white-space: nowrap; }
.impacto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.resultados-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 30px 24px; text-align: center;
  backdrop-filter: blur(10px); transition: all .3s;
}
.resultados-grid .stat-card {
  min-height: 170px;
  display: flex; flex-direction: column; justify-content: center;
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stat-num { font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 3.35rem); color: var(--ouro); font-weight: 900; line-height: 1; }
.stat-desc { color: rgba(255,255,255,.78); font-size: .92rem; margin-top: 10px; font-weight: 700; line-height: 1.45; }
.historias { display: flex; flex-direction: column; gap: 20px; }
.historia-card {
  background: rgba(255,255,255,.07); border-left: 4px solid var(--ouro);
  border-radius: 0 var(--r) var(--r) 0; padding: 24px 28px;
}
.historia-card blockquote { font-style: italic; color: rgba(255,255,255,.88); line-height: 1.7; font-size: .95rem; }
.historia-card cite { display: block; margin-top: 10px; color: var(--ouro); font-size: .82rem; font-weight: 700; }

/* ───────────────────────────────────────────────
   COMO AJUDAR
─────────────────────────────────────────────── */
#ajudar { background: var(--branco); }
.ajudar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.ajudar-card {
  border-radius: 20px; padding: 40px 30px; text-align: center;
  background: var(--cinza); transition: all .3s; position: relative; overflow: hidden;
}
.ajudar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--ciano));
}
.ajudar-card:nth-child(2)::before { background: linear-gradient(90deg, var(--ciano), var(--ouro)); }
.ajudar-card:nth-child(3)::before { background: linear-gradient(90deg, var(--ouro), var(--azul)); }
.ajudar-card:nth-child(4)::before { background: linear-gradient(90deg, var(--azul), var(--ciano)); }
.ajudar-card:nth-child(5)::before { background: linear-gradient(90deg, var(--ciano), var(--ouro)); }
.ajudar-card:hover { transform: translateY(-6px); box-shadow: var(--sombra); background: var(--branco); }
.ajudar-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.ajudar-card h3 { font-family: var(--font-h); color: var(--azul-esc); font-size: 1.2rem; margin-bottom: 10px; }
.ajudar-card p { color: #667; font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.btn-ajudar {
  display: inline-block; background: linear-gradient(135deg, var(--azul), var(--ciano));
  color: #fff; font-weight: 700; padding: 11px 26px;
  border-radius: 50px; text-decoration: none; font-size: .85rem; transition: all .3s;
}
.btn-ajudar:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(50,93,138,.35); }
.doe-destaque {
  grid-column: 1 / -1; margin-top: 12px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--ciano) 100%);
  border-radius: 20px; padding: 40px 44px; display: flex;
  align-items: center; justify-content: space-between; gap: 28px;
}
.doe-destaque h3 {
  font-family: var(--font-h); color: #fff; line-height: 1.18;
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 700;
  flex: 1 1 58%;
  min-width: 0;
  max-width: none;
  margin: 0;
}
.doe-destaque h3 .doe-line1,
.doe-destaque h3 .doe-line2 { display: block; }
.doe-destaque h3 .doe-line2 { margin-top: 0.2em; }
.doe-destaque .btn-doe { flex: 0 0 auto; align-self: center; }
.btn-doe {
  background: var(--ouro); color: var(--azul-esc); font-weight: 800;
  padding: 18px 40px; border-radius: 50px; text-decoration: none; font-size: 1.1rem;
  white-space: nowrap; transition: all .3s; box-shadow: 0 8px 28px rgba(241,199,81,.5);
}
.btn-doe:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(241,199,81,.6); }

/* ───────────────────────────────────────────────
   GALERIA
─────────────────────────────────────────────── */
#galeria { background: var(--cinza); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px; margin-top: 48px;
}
.gal-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gal-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.gal-item:nth-child(6) { grid-column: 3/5; }
.gal-thumb {
  width: 100%; height: 100%; min-height: 180px;
  background-size: cover; background-position: center;
  transition: transform .4s; display: flex;
  align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,.6);
}
.gal-item:nth-child(1) .gal-thumb { min-height: 380px; font-size: 4rem; }
/* Galeria — assets/fotos (pastas da ONG) */
.gal-item:nth-child(1) .gal-thumb { background-image: url('../fotos/Atividades/026cc6ed-a4ac-46eb-af3c-98a6cc2fc1a4.jpg'); background-size:cover; background-position:center; }
.gal-item:nth-child(2) .gal-thumb { background-image: url('../fotos/Natação/DSC00090.jpg'); background-size:cover; background-position:center; }
.gal-item:nth-child(3) .gal-thumb { background-image: url('../fotos/Teatro/BBF89E3A-DC61-4D4E-98E8-156B8CC5C208.jpg'); background-size:cover; background-position:center top; }
.gal-item:nth-child(4) .gal-thumb { background-image: url('../fotos/Intervenções/IMG_1114.JPG'); background-size:cover; background-position:center; }
.gal-item:nth-child(5) .gal-thumb { background-image: url('../fotos/Atividades/2a770989-ccd8-419d-a6a7-e165a205fbfb.jpg'); background-size:cover; background-position:center; }
.gal-item:nth-child(6) .gal-thumb { background-image: url('../fotos/Arraiá da ONG/8107419B-2945-4C14-B1F6-1FA73E1E8867.jpg'); background-size:cover; background-position:center; }
.gal-item:hover .gal-thumb { transform: scale(1.04); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,61,92,.7) 0%, transparent 50%);
  opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 18px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; font-weight: 700; font-size: .9rem; }
.galeria-placeholder-note {
  text-align: center; color: #999; font-size: .85rem; margin-top: 16px;
  background: rgba(71,193,217,.07); border: 1px dashed var(--ciano);
  padding: 14px; border-radius: 10px;
}

/* Modal/slider da galeria */
.gallery-modal {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,20,34,.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 28px;
}
.gallery-modal.open { display: flex; }
.gallery-stage {
  width: min(92vw, 1200px);
  height: min(84vh, 760px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.gallery-stage img {
  max-width: 100%; max-height: calc(100% - 44px);
  border-radius: 14px;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  object-fit: contain;
}
.gallery-caption {
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  text-align: center;
}
.gallery-close,
.gallery-nav {
  position: absolute;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  transition: .2s;
}
.gallery-close {
  top: 14px; right: 16px;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.gallery-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-close:hover,
.gallery-nav:hover { background: var(--ouro); color: var(--azul-esc); }

/* ───────────────────────────────────────────────
   TRANSPARÊNCIA
─────────────────────────────────────────────── */
#transparencia { background: var(--branco); }
.transp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.cert-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cert-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--cinza); border-radius: 12px; padding: 20px 24px; transition: .3s;
}
.cert-item:hover { box-shadow: var(--sombra); transform: translateX(6px); }
.cert-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--azul), var(--ciano));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.cert-info strong { display: block; color: var(--azul-esc); font-weight: 700; }
.cert-info span { color: #888; font-size: .85rem; }
.parceiros h3 { font-family: var(--font-h); color: var(--azul-esc); font-size: 1.4rem; margin-bottom: 24px; }
.parceiros-logos {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.parceiro-box {
  background: var(--cinza); border-radius: 10px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: #aaa; font-weight: 700; text-align: center; padding: 8px;
  border: 1px dashed #ddd; transition: .3s;
}
.parceiro-box:hover { border-color: var(--ciano); color: var(--azul); }

/* ───────────────────────────────────────────────
   VÍDEO
─────────────────────────────────────────────── */
#video-section { background: var(--azul-esc); padding: 80px 32px; text-align: center; }
.video-wrap {
  max-width: 800px; margin: 40px auto 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  aspect-ratio: 16/9; background: #111;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: rgba(255,255,255,.5);
}
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ciano), var(--azul));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; cursor: pointer; transition: .3s;
  box-shadow: 0 8px 32px rgba(71,193,217,.5);
}
.play-btn:hover { transform: scale(1.1); }
/* Para embed YouTube: <iframe src="https://www.youtube.com/embed/SEU_ID" ... /> */
#video-section .section-title { color: #fff; }
#video-section .section-tag { background: rgba(241,199,81,.15); color: var(--ouro); }

/* ───────────────────────────────────────────────
   CONTATO
─────────────────────────────────────────────── */
#contato { background: var(--cinza); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contato-info { display: flex; flex-direction: column; gap: 20px; }
.contato-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--branco); border-radius: 14px; padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(50,93,138,.08); transition: .3s;
}
.contato-card:hover { transform: translateX(6px); box-shadow: var(--sombra); }
.contato-ico {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.ico-wpp { background: linear-gradient(135deg, #25d366, #128c7e); }
.ico-mail { background: linear-gradient(135deg, var(--azul), var(--ciano)); }
.ico-end  { background: linear-gradient(135deg, var(--ouro), #e8882a); }
.contato-card strong { display: block; color: var(--azul-esc); font-weight: 700; }
.contato-card span { color: #888; font-size: .9rem; }
.contato-card a { color: var(--azul); text-decoration: none; font-size: .9rem; }
.redes { margin-top: 8px; }
.redes h4 { color: var(--azul-esc); font-weight: 700; margin-bottom: 14px; }
.redes-links { display: flex; gap: 12px; }
.rede-btn {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; text-decoration: none; transition: .3s;
  border: 2px solid #e8edf2;
}
.rede-btn svg { width: 22px; height: 22px; display: block; }
.rede-btn.rede-insta { color: #fff; border: none; background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.rede-btn.rede-insta:hover { color: #fff; box-shadow: 0 8px 24px rgba(221,42,123,.35); }
.rede-btn.rede-wpp { color: #fff; border: none; background: linear-gradient(135deg, #25d366, #128c7e); }
.rede-btn.rede-wpp:hover { color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.rede-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(50,93,138,.2); }
.contato-form { background: var(--branco); border-radius: 20px; padding: 40px; box-shadow: var(--sombra); }
.contato-form h3 { font-family: var(--font-h); color: var(--azul-esc); margin-bottom: 24px; font-size: 1.4rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; color: var(--azul-esc); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border: 2px solid #e8edf2; border-radius: 10px;
  padding: 13px 16px; font-family: var(--font-b); font-size: .95rem;
  color: var(--texto); background: var(--cinza); outline: none; transition: .25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--ciano); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--azul), var(--ciano));
  color: #fff; font-weight: 800; font-size: 1rem; padding: 16px;
  border: none; border-radius: 50px; cursor: pointer; transition: all .3s;
  box-shadow: 0 6px 24px rgba(50,93,138,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(50,93,138,.45); }

/* ───────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────── */
footer {
  background: var(--azul-esc); color: rgba(255,255,255,.75);
  padding: 60px 32px 30px;
}
.footer-inner { max-width: 1200px; margin: auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.65); line-height: 1.75; font-size: .9rem; margin-top: 14px; }
.footer-col h4 { color: #fff; font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; transition: .2s; }
.footer-col a:hover { color: var(--ouro); }
.footer-bottom {
  padding-top: 28px; display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--ouro); text-decoration: none; }

/* ───────────────────────────────────────────────
   FLOATING WhatsApp
─────────────────────────────────────────────── */
.float-wpp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  animation: pulse 2.5s infinite;
}
.float-wpp svg { width: 32px; height: 32px; display: block; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}
.float-wpp:hover { transform: scale(1.1); color: #fff; }

/* ───────────────────────────────────────────────
   ANIMATE ON SCROLL
─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ───────────────────────────────────────────────
   RESPONSIVO
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projetos-grid { grid-template-columns: repeat(2,1fr); }
  .mvv-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resultados-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .quem-grid, .mvv-grid, .impacto-grid, .contato-grid, .transp-grid { grid-template-columns: 1fr; }
  .mvv-values { grid-template-columns: 1fr; }
  .projetos-grid, .ajudar-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item:nth-child(1) { grid-column: 1/-1; grid-row: auto; }
  .gal-item:nth-child(6) { grid-column: auto; }
  .doe-destaque { flex-direction: column; text-align: center; }
  .idealizador { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  section:not(.hero) { padding: 64px 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero { min-height: 480px; }
  #impacto .section-subtitle { white-space: normal; }
  .gallery-modal { padding: 16px; }
  .gallery-nav { width: 44px; height: 44px; font-size: 1.1rem; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}
@media (max-width: 520px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-strip { padding: 28px 20px; }
  .resultados-grid { grid-template-columns: 1fr; }
}
