/* ============================================================
   PÉ DE CHUMBO — Design System
   Associação Atlética Beneficente
   Tema: Futebol & Comunidade
   Cor principal: #132b83
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
  --primary: #132b83;
  --primary-light: #2e52b5;
  --primary-dark: #0a1747;
  --primary-50: #eef2fc;
  --primary-100: #d5def7;
  --primary-200: #aebfef;
  --primary-300: #7a98e0;
  --primary-400: #4d70c9;
  --primary-500: #132b83;
  --primary-600: #0f226a;
  --primary-700: #0b1a50;
  --primary-800: #081134;

  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #A8882E;
  --gold-50: #FDF8ED;
  --gold-100: #F5EBD0;

  --cream: #F5F0E8;
  --cream-dark: #EDE5D8;

  --dark: #0D1B2A;
  --dark-50: #f8f9fa;
  --dark-100: #e9eaed;
  --dark-200: #cfd4da;
  --dark-300: #a4aab5;
  --dark-400: #6b7485;
  --dark-500: #4a5363;
  --dark-600: #2d3646;
  --dark-700: #1a2332;
  --dark-800: #0f1b33;
  --dark-900: #0D1B2A;

  --success: #1a7a3a;
  --error: #b91c1c;
  --warning: #b8860b;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(10,21,40,0.06), 0 1px 2px rgba(10,21,40,0.04);
  --shadow-md: 0 4px 12px rgba(10,21,40,0.08), 0 2px 4px rgba(10,21,40,0.04);
  --shadow-lg: 0 12px 36px rgba(10,21,40,0.10), 0 4px 12px rgba(10,21,40,0.06);
  --shadow-xl: 0 24px 60px rgba(10,21,40,0.14);

  --nav-height: 72px;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ----- Utilities ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--primary-800); color: white; }
.section-cream { background: var(--cream); }
.section-white { background: white; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,43,131,0.08);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--primary-800);
  margin-bottom: 12px;
}
.section-dark .section-title { color: white; }

.section-sub {
  font-size: 1rem;
  color: var(--dark-400);
  max-width: 600px;
  line-height: 1.6;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.gold-accent {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary-800);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo-img {
  display: block;
  flex-shrink: 0;
}
.site-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-800);
  line-height: 1;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.2;
}
.site-logo-text span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold) !important;
  color: var(--primary-800) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  font-size: 0.75rem !important;
  transition: all 0.3s ease !important;
}
.nav-donate:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.3rem;
  padding: 0;
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--primary-800);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.12); }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255,255,255,0.06);
  color: var(--gold);
}
.mobile-nav .nav-donate {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-800);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
  pointer-events: none;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-shape-2 {
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,82,152,0.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .section-label {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: heroPulse 6s ease-in-out infinite;
}
.hero-circle-inner {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hero-circle-inner .year {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-circle-inner .sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-rings {
  position: absolute;
  inset: 0;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  animation: heroRing 8s linear infinite;
}
.hero-ring:nth-child(1) { inset: -30px; }
.hero-ring:nth-child(2) { inset: 30px; border-style: dashed; animation-duration: 12s; }

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.8; }
}
@keyframes heroRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.hero-stat {
  padding: 28px 20px;
  text-align: center;
  background: rgba(0,0,0,0.2);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================================
   MISSION BANNER
   ============================================================ */
.mission-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
}
.mission-banner-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.mission-banner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.mission-banner p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-preview-text h2 { margin-bottom: 16px; }
.about-preview-text p {
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-preview-image {
  position: relative;
}
.about-preview-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-preview-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
}

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.news-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.news-card-image {
  height: 200px;
  background: var(--primary-100);
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.08); }
.news-card-body { padding: 24px; }
.news-card-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.news-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-700);
}
.news-card p {
  color: var(--dark-400);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PARTNERS CAROUSEL
   ============================================================ */
.partners-section {
  background: white;
  padding: 60px 0;
  overflow: hidden;
}
.partners-track {
  display: flex;
  gap: 40px;
  animation: partnerScroll 30s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.partner-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRESIDENT QUOTE
   ============================================================ */
.president-section {
  background: var(--primary-800);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.president-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.president-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.president-content .quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.president-content blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: white;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}
.president-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid rgba(201,168,76,0.2);
}
.president-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.president-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2px;
}
.president-role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   TEAM GRID (Sobre)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-card-photo {
  height: 220px;
  background: var(--primary-100);
  overflow: hidden;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.06); }
.team-card-info { padding: 20px; }
.team-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-700);
  margin-bottom: 2px;
}
.team-card-position {
  font-size: 0.78rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--primary-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(transparent, rgba(10,21,40,0.85));
  color: white;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.gallery-overlay p {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Album Card */
.album-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.album-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.album-card-cover {
  height: 200px;
  background: var(--primary-100);
  overflow: hidden;
  position: relative;
}
.album-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.album-card:hover .album-card-cover img { transform: scale(1.08); }
.album-card-cover .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,21,40,0.7), transparent);
}
.album-card-cover .info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.album-card-cover .info h3 {
  color: white;
  font-size: 1.1rem;
}
.album-card-cover .info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* Video Card */
.video-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.video-card-info { padding: 16px 20px; }
.video-card-title {
  font-size: 0.95rem;
  color: var(--primary-700);
}

/* ============================================================
   TRANSPARÊNCIA (DOCS)
   ============================================================ */
.doc-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.doc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.doc-icon.ata { background: rgba(19,43,131,0.08); color: var(--primary); }
.doc-icon.edital { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.doc-icon.oficio { background: rgba(185,28,28,0.08); color: var(--error); }
.doc-icon.contas { background: rgba(26,122,58,0.08); color: var(--success); }
.doc-icon.reuniao { background: rgba(128,90,213,0.08); color: #7c3aed; }

.doc-info { flex: 1; min-width: 0; }
.doc-title {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--dark-700);
  margin-bottom: 2px;
}
.doc-date {
  font-size: 0.78rem;
  color: var(--dark-400);
}
.doc-download {
  color: var(--primary);
  font-size: 1.15rem;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}
.doc-download:hover { background: rgba(19,43,131,0.06); }

/* Search in transparencia */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.search-bar input {
  flex: 1;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--dark-200);
  border-radius: 12px;
  font-size: 0.9rem;
  background: white;
  outline: none;
  transition: all 0.25s;
}
.search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19,43,131,0.1);
}
.search-bar-wrap { position: relative; flex: 1; }
.search-bar-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-300);
  font-size: 0.9rem;
}

/* Year filter pills */
.year-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.year-pill {
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: white;
  border: 1px solid var(--dark-200);
  color: var(--dark-500);
  transition: all 0.2s;
  cursor: pointer;
}
.year-pill:hover { border-color: var(--primary); color: var(--primary); }
.year-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================================
   EVENTS
   ============================================================ */
.event-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.event-card-image {
  height: 200px;
  background: var(--primary-100);
  overflow: hidden;
  position: relative;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.06); }
.event-card-body { padding: 24px; }
.event-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--font-heading);
}
.event-badge-upcoming { background: var(--gold); color: var(--primary-900); }
.event-badge-ongoing { background: #3b82f6; color: #fff; }
.event-badge-completed { background: #22c55e; color: #fff; }
.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gold-50);
  border-radius: 12px;
  flex-shrink: 0;
}
.event-date-badge .day {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.event-date-badge .mon {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  font-weight: 600;
}
.event-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}
.event-status.upcoming { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.event-status.ongoing { background: rgba(42,82,152,0.1); color: var(--primary); }
.event-status.completed { background: rgba(26,122,58,0.1); color: var(--success); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(19,43,131,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-600);
  display: block;
  margin-bottom: 6px;
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--dark-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s;
  background: white;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19,43,131,0.08);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid var(--dark-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19,43,131,0.08);
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: transparent;
}
.search-box button {
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: var(--dark-400);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}
.search-box button:hover {
  color: var(--primary);
}

/* ============================================================
   TABS
   ============================================================ */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--dark-200);
  color: var(--dark-500);
  transition: all 0.25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================================
   BLOG / NEWS ARTICLE
   ============================================================ */
.article {
  max-width: 720px;
  margin: 0 auto;
}
.article-header { margin-bottom: 32px; }
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary-800);
  margin-bottom: 12px;
}
.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--dark-400);
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.article-image img { width: 100%; }
.article-body {
  line-height: 1.8;
  font-size: 1rem;
  color: var(--dark-600);
}

/* ============================================================
   TIMELINE (Sobre)
   ============================================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dark-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: white;
  border: 1px solid var(--dark-200);
  color: var(--dark-500);
  transition: all 0.2s;
}
.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 16px 0 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-800);
}
.footer h4 {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer ul a:hover { color: var(--gold); }
.footer ul a i { font-size: 0.55rem; color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-contact li i {
  margin-top: 3px;
  color: var(--gold);
  width: 14px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 60px;
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin: 0;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.scroll-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in-down { animation: fadeInDown 0.6s ease-out forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-circle { width: 300px; height: 300px; }
  .hero-circle-inner { width: 220px; height: 220px; }
  .hero-circle-inner .year { font-size: 3.5rem; }
  .hero-stats { max-width: 400px; margin: 40px auto 0; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 20px 12px; }
  .hero-stat-number { font-size: 1.5rem; }

  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .mission-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .tab-buttons { gap: 6px; }
  .tab-btn { font-size: 0.7rem; padding: 8px 16px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stat-number { font-size: 1.2rem; }
}
