/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --navy: #0B1A2E;
  --navy-mid: #122340;
  --navy-light: #1A3050;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; line-height: 1.2; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.white { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMONS ===== */
.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tag-light {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-desc {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(11,26,46,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,168,76,0.25);
}

.footer-logo-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* hero logo */
.hero-logo-wrap {
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease both;
}
.hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.5);
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
}

.logo-text { display: flex; flex-direction: column; }
.logo-abbr { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1; }
.logo-sub { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.5px; line-height: 1.4; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1580130732478-4e339fb6f4ae?w=1600&q=80') center/cover no-repeat,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,0.92) 0%, rgba(11,26,46,0.75) 60%, rgba(11,26,46,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

/* ===== 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;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.sobre-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem { text-align: center; color: var(--white); }
.emblem-ring {
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: rgba(201,168,76,0.08);
}
.emblem-icon { font-size: 3rem; }
.emblem p { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.85); }

.sobre-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}

.sobre-text { display: flex; flex-direction: column; gap: 16px; }
.sobre-text p { color: var(--gray-600); line-height: 1.8; }

.sobre-valores { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.valor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.valor:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.valor-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.valor strong { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); display: block; }
.valor p { font-size: 0.875rem; color: var(--gray-600); margin: 0; }

/* ===== DIRETORIA ===== */
.diretoria-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 8px;
}
.diretoria-box h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.diretoria-lista { display: flex; flex-direction: column; gap: 10px; }
.dir-item { display: flex; flex-direction: column; }
.dir-cargo { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); }
.dir-nome { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); }

/* ===== FINALIDADES ===== */
.finalidades { background: var(--gray-50); }

.finalidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-fin {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card-fin::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card-fin:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-fin:hover::before { transform: scaleX(1); }
.card-fin.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: var(--gold);
}
.card-fin.featured::before { transform: scaleX(1); }
.card-fin.featured h3 { color: var(--white); }
.card-fin.featured p { color: rgba(255,255,255,0.7); }

.card-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.card-fin h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.card-fin p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== COMITÊS ===== */
.comites { background: var(--white); }

.comites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comite-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
}
.comite-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); background: var(--white); }

.comite-card.comite-destaque {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: var(--gold);
  color: var(--white);
}
.comite-card.comite-destaque h3 { color: var(--white); }
.comite-card.comite-destaque p { color: rgba(255,255,255,0.75); }
.comite-card.comite-destaque .comite-lista li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.comite-card.comite-destaque .comite-num { color: var(--gold); }

.comite-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.comite-icon { font-size: 2rem; }
.comite-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.comite-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.comite-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.comite-lista li {
  font-size: 0.8rem;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-200);
  padding-left: 12px;
  position: relative;
}
.comite-lista li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== PROJETOS ===== */
.projetos { background: var(--gray-50); }

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.projeto-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
}
.projeto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.projeto-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.pj-1 { background: linear-gradient(160deg, #1a5c2a 0%, #0B1A2E 100%); }
.pj-2 { background: linear-gradient(160deg, #1a3a7c 0%, #0B1A2E 100%); }
.pj-3 { background: linear-gradient(160deg, #7c3a1a 0%, #0B1A2E 100%); }

.projeto-tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.projeto-body { padding: 24px; }
.projeto-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.projeto-body p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }

/* ===== TRANSPARÊNCIA ===== */
.transparencia { background: var(--white); }

.transp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.transp-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.transp-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow); }
.transp-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.transp-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.transp-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }

.cnpj-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  flex-wrap: wrap;
}
.cnpj-item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.cnpj-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.cnpj-val { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); }
.cnpj-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== NOTÍCIAS ===== */
.noticias { background: var(--white); }

.noticias-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.noticia-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.noticia-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.noticia-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.noticia-destaque .noticia-img { height: 260px; }

.ni-1 { background: linear-gradient(160deg, #1a4a8c 0%, #0B1A2E 100%); }
.ni-2 { background: linear-gradient(160deg, #2d6a4f 0%, #0B1A2E 100%); }
.ni-3 { background: linear-gradient(160deg, #7B2D2D 0%, #0B1A2E 100%); }

.noticia-categoria {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.noticia-body { padding: 24px; }
.noticia-data { font-size: 0.78rem; color: var(--gray-400); display: block; margin-bottom: 10px; }
.noticia-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.noticia-body p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.link-more { color: var(--gold-dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: color var(--transition); }
.link-more:hover { color: var(--gold); }

.noticias-footer { text-align: center; }

/* ===== GALERIA ===== */
.galeria { background: var(--gray-50); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.galeria-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.galeria-item.g-tall { grid-row: span 2; }
.galeria-item.g-wide { grid-column: span 2; }

.galeria-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: all var(--transition);
  position: relative;
}
.g-tall .galeria-placeholder { height: 100%; min-height: 416px; }
.g-wide .galeria-placeholder { height: 200px; }

.galeria-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.galeria-item:hover .galeria-placeholder { transform: scale(1.03); }

.gp-1 { background: linear-gradient(160deg, #1a3a6c, #0a1a30); }
.gp-2 { background: linear-gradient(160deg, #3a2a0a, #1a1000); }
.gp-3 { background: linear-gradient(160deg, #2a1a0a, #0a0800); }
.gp-4 { background: linear-gradient(160deg, #0a2a1a, #040e08); }
.gp-5 { background: linear-gradient(160deg, #2a0a0a, #0a0000); }

/* ===== ASSOCIE-SE ===== */
.associe {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.associe-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a2a40 100%);
}

.associe-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 80px);
}

.associe-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.associe-inner .section-title { margin-bottom: 16px; color: var(--gold); }
.associe-desc { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 56px; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plano {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: all var(--transition);
}
.plano:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }

.plano-destaque {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: scale(1.04);
}
.plano-destaque:hover { transform: scale(1.04) translateY(-4px); }

.plano-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plano-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.plano-header h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.plano-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.plano-lista { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-top: 4px; }
.plano-lista li { font-size: 0.82rem; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 6px; }

.inscricao-aviso {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.inscricao-aviso p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===== VETERANOS ===== */
.veteranos { background: var(--gray-50); }

.veteranos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.veterano-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.veterano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.veterano-foto {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vf-1 { background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%); }
.vf-2 { background: linear-gradient(135deg, #1a3060 0%, var(--navy-light) 100%); }

.veterano-foto-inner {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.5);
  overflow: hidden;
  box-shadow: 0 0 32px rgba(201,168,76,0.2);
}
.vet-brasao {
  width: 100%; height: 100%;
  object-fit: cover;
}

.veterano-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.veterano-patente {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.veterano-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.veterano-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; align-self: flex-start; }

.veteranos-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vet-cta-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.vet-cta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ===== GALERIA TABS ===== */
.galeria-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gtab {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.gtab:hover, .gtab.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ===== CONTATO ===== */
.contato { background: var(--gray-50); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contato-info { display: flex; flex-direction: column; gap: 24px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.info-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.contato-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--gray-800); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .comites-grid { grid-template-columns: 1fr 1fr; }
  .comite-card.comite-destaque { grid-column: span 2; }
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .finalidades-grid { grid-template-columns: repeat(2, 1fr); }
  .transp-grid { grid-template-columns: repeat(2, 1fr); }
  .projetos-grid { grid-template-columns: 1fr 1fr; }
  .noticias-grid { grid-template-columns: 1fr 1fr; }
  .noticia-destaque { grid-column: span 2; }
  .plano-destaque { transform: none; }
  .plano-destaque:hover { transform: translateY(-4px); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-frame { aspect-ratio: 16/9; }
  .cnpj-box { gap: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11,26,46,0.98); justify-content: center; align-items: center; gap: 8px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 14px 32px; }
  .navbar .btn { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-stats { gap: 20px; }
  .hero-logo { width: 80px; height: 80px; }
  .finalidades-grid { grid-template-columns: 1fr; }
  .comites-grid { grid-template-columns: 1fr; }
  .comite-card.comite-destaque { grid-column: auto; }
  .projetos-grid { grid-template-columns: 1fr; }
  .transp-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .noticias-grid { grid-template-columns: 1fr; }
  .noticia-destaque { grid-column: auto; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .g-tall { grid-row: auto; }
  .g-wide { grid-column: auto; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cnpj-box { flex-direction: column; gap: 20px; padding: 24px; }
  .cnpj-divider { width: 60px; height: 1px; }
  .veteranos-grid { grid-template-columns: 1fr; }
  .veteranos-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .contato-form { padding: 24px 20px; }
  .galeria-tabs { gap: 6px; }
  .gtab { padding: 6px 14px; font-size: 0.78rem; }
}
