/*
 * CMV VETERANOS — Design System Premium v2.0
 * Clube Militar dos Veteranos do Estado do Amazonas
 * Tipografia: Montserrat + Inter
 * Paleta: Navy · Gold · Grafite · Verde Militar discreto
 */

/* ============================================================
   1. TOKENS / VARIÁVEIS
============================================================ */
:root {
  --navy-900:  #05090F;
  --navy-800:  #0A1628;
  --navy-700:  #0F1F38;
  --navy-600:  #162843;
  --navy-500:  #1B3A6B;
  --navy-400:  #2952A3;
  --gold:      #C9A84C;
  --gold-400:  #D4B96A;
  --gold-300:  #E4CC8A;
  --gold-100:  #FDF6E3;
  --gold-700:  #8A6800;
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-300:  #D1D5DB;
  --gray-400:  #9CA3AF;
  --gray-500:  #6B7280;
  --gray-600:  #4B5563;
  --gray-700:  #374151;
  --gray-800:  #1F2937;
  --graphite:  #111827;
  --mil-green: #1F3A1A;
  --mil-green-light: #2D5020;
  --red:       #7F1D1D;
  --red-light: #FEE2E2;
  --font-title: 'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --section-py: 96px;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(10,22,40,.08);
  --shadow:     0 4px 24px rgba(10,22,40,.12);
  --shadow-lg:  0 12px 48px rgba(10,22,40,.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.22);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all .3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   2. RESET E BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   3. TIPOGRAFIA
============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-800);
}
p { line-height: 1.8; color: var(--gray-600); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.gold       { color: var(--gold); }

/* ============================================================
   4. UTILITÁRIOS
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-py); }

.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.15;
}
.section-title .gold { color: var(--gold); }

.section-subtitle {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ============================================================
   5. BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-800);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-800);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
}
.btn-sm  { padding: 9px 20px; font-size: .875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   6. NAVEGAÇÃO
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: .04em;
}
.nav-brand-sub {
  font-size: .625rem;
  font-weight: 400;
  color: var(--gold-300);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  display: block;
  padding: 8px 13px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-assoc-btn {
  font-family: var(--font-title);
  font-size: .8125rem;
  font-weight: 600;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy-800);
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-assoc-btn:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  padding: 8px;
}
#hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, #102040 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  background: rgba(201,168,76,.06);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child  { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:nth-child(3) { padding-inline: 24px; }
.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
}
/* visual side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.hero-seal-outer {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-seal-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  animation: ring-pulse 4s ease-in-out infinite;
}
.hero-seal-outer::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
}
@keyframes ring-pulse {
  0%,100% { transform: scale(1);    opacity: .5; }
  50%      { transform: scale(1.04); opacity: 1;  }
}
.hero-logo {
  width: 248px;
  height: 248px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 14px rgba(201,168,76,.07), var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.8), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  50%  { opacity:1; }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}

/* ============================================================
   8. SOBRE
============================================================ */
.sobre { background: var(--white); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.sobre-img-frame img { width:100%; height:100%; object-fit:cover; }
.sobre-credencial {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy-800);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.sobre-credencial-num {
  display: block;
  font-family: var(--font-title);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.sobre-credencial-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.emblem { text-align:center; color:rgba(255,255,255,.4); }
.emblem-ring {
  width:90px; height:90px; border-radius:50%;
  border:2px solid rgba(201,168,76,.35);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 10px;
}
.emblem-icon { font-size:2.25rem; }
.sobre-text .section-title { margin-bottom: 20px; }
.sobre-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.pillar-icon { font-size:1.125rem; flex-shrink:0; }
.pillar-text {
  font-family: var(--font-title);
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* ============================================================
   9. FINALIDADES
============================================================ */
.finalidades { background: var(--gray-50); }
.fins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-fin {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-fin::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.card-fin:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-fin:hover::after { transform: scaleX(1); }
.fin-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.fin-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.fin-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   10. COMITÊS
============================================================ */
.comites {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.comites::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.comites .section-title { color: var(--white); }
.comites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.comite-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.comite-card:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-3px);
}
.comite-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201,168,76,.18);
  line-height: 1;
  margin-bottom: 12px;
}
.comite-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.comite-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.comite-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
}

/* ============================================================
   11. PROJETOS
============================================================ */
.projetos { background: var(--white); }
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.projeto-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.projeto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.projeto-accent {
  width: 5px;
  flex-shrink: 0;
  background: var(--gold);
}
.projeto-body { padding: 24px 20px; flex: 1; }
.projeto-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--mil-green-light);
  background: #ECFDF5;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.projeto-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.projeto-title {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.projeto-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   12. NOTÍCIAS
============================================================ */
.noticias { background: var(--gray-50); }
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.noticia-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.noticia-destaque {
  grid-column: span 3;
  flex-direction: row;
}
.noticia-destaque .noticia-img { width: 44%; flex-shrink: 0; }
.noticia-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-700);
  min-height: 200px;
}
.noticia-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .5s var(--ease);
}
.noticia-card:hover .noticia-img img { transform: scale(1.04); }
.ni-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  font-size: 3rem;
  opacity: .25;
  color: var(--white);
}
.noticia-categoria {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy-800);
  font-family: var(--font-title);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.noticia-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.noticia-data {
  font-size: .8125rem;
  color: var(--gray-400);
  font-weight: 500;
}
.noticia-body h3 {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.35;
}
.noticia-body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}
.link-more {
  font-family: var(--font-title);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  margin-top: 4px;
}
.link-more:hover { gap: 8px; color: var(--gold); }
.noticias-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   13. TRANSPARÊNCIA
============================================================ */
.transparencia { background: var(--white); }
.transp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.transp-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
}
.transp-card:hover {
  border-color: var(--gold);
  background: var(--gold-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.transp-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.transp-title {
  font-family: var(--font-title);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy-800);
}
.transp-desc {
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.transp-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold-700);
  margin-top: auto;
}

/* ============================================================
   14. GALERIA
============================================================ */
.galeria {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.galeria .section-title { color: var(--white); }
.galeria-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gtab {
  padding: 8px 20px;
  font-family: var(--font-title);
  font-size: .8125rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,.25);
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}
.gtab.active,.gtab:hover {
  background: var(--gold);
  color: var(--navy-800);
  border-color: var(--gold);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.galeria-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-600);
  position: relative;
  cursor: pointer;
}
.galeria-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .5s var(--ease);
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.75rem;
  color: var(--white);
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }

/* ============================================================
   15. VETERANOS
============================================================ */
.veteranos { background: var(--gray-50); }
.vet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.vet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.vet-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.15);
  position: relative;
}
.vet-photo img { width:100%; height:100%; object-fit:cover; }
.vet-rank-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-800);
  font-family: var(--font-title);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.vet-body { padding: 20px 16px; }
.vet-card-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.vet-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.vet-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 14px;
}
/* CTA Veteranos */
.veteranos-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.vet-cta-text h3 {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.vet-cta-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

/* ============================================================
   16. ASSOCIE-SE
============================================================ */
.associe {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.associe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.associe .section-title { color: var(--white); }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.plano {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.plano:hover,
.plano.destaque {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.plano-icon { font-size: 2.25rem; margin-bottom: 12px; }
.plano-nome {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.plano-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ============================================================
   17. CONTATO
============================================================ */
.contato {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contato-info .section-title { margin-bottom: 24px; }
.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.info-label {
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.info-value {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.5;
}
.valor { font-size: .9375rem; font-weight: 500; color: var(--gray-700); }
.contato-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.contato-form-wrap h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: var(--font-title);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea,
.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea,
.contato-form textarea { resize: vertical; min-height: 120px; }
.contato-form .btn-gold { width:100%; justify-content:center; margin-top:8px; }
#cmv-form-msg {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
  min-height: 20px;
}

/* ============================================================
   18. RODAPÉ
============================================================ */
footer.footer {
  background: var(--graphite);
  color: rgba(255,255,255,.6);
}
.footer-inner {
  padding: 64px 0 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text { display:flex; flex-direction:column; }
.logo-abbr {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: .65rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 4px;
}
.footer-col-title {
  font-family: var(--font-title);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-icon { color: var(--gold); flex-shrink:0; font-size:.95rem; }
.footer-contact-text {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   19. REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   20. PAGINAÇÃO WP
============================================================ */
.navigation.pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-title);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-800);
}

/* ============================================================
   21. RESPONSIVIDADE
============================================================ */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .fins-grid         { grid-template-columns: 1fr 1fr; }
  .comites-grid      { grid-template-columns: 1fr 1fr; }
  .projetos-grid     { grid-template-columns: 1fr; }
  .noticias-grid     { grid-template-columns: 1fr 1fr; }
  .noticia-destaque  { grid-column: span 2; flex-direction: column; }
  .noticia-destaque .noticia-img { width:100%; }
  .transp-grid       { grid-template-columns: 1fr 1fr; }
  .galeria-grid      { grid-template-columns: repeat(3,1fr); }
  .vet-grid          { grid-template-columns: 1fr 1fr; }
  .planos-grid       { grid-template-columns: 1fr 1fr; }
  .contato-grid      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0; top: 76px;
    background: var(--navy-900);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.125rem; padding: 14px 28px; }
  .nav-assoc-btn { display: none; }
  #hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .hero-stat  {
    flex-direction: row; align-items: center;
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 0 0 12px;
  }
  .hero-stat:last-child { border-bottom: none; padding: 0; }
  .stat-num { font-size: 1.5rem; margin-right: 10px; }
  .fins-grid         { grid-template-columns: 1fr; }
  .comites-grid      { grid-template-columns: 1fr; }
  .noticias-grid     { grid-template-columns: 1fr; }
  .noticia-destaque  { grid-column: span 1; }
  .transp-grid       { grid-template-columns: 1fr 1fr; }
  .galeria-grid      { grid-template-columns: 1fr 1fr; }
  .vet-grid          { grid-template-columns: 1fr; }
  .sobre-pillars     { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 32px; }
  .contato-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .planos-grid   { grid-template-columns: 1fr; }
  .transp-grid   { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .galeria-grid  { grid-template-columns: 1fr 1fr; }
}
