/* ============================================================
   AEA – Associação Esportiva Araçatuba
   Mobile-first stylesheet — yellow-dominant theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --yellow: #FFD700;
  --yellow-dark: #e6c200;
  --yellow-light: #fff3b0;
  --blue: #003399;
  --blue-dark: #002277;
  --blue-light: #0044cc;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray: #e8ecf0;
  --text: #111827;
  --text-muted: #6b7280;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(0,51,153,0.10);
  --shadow-lg: 0 8px 40px rgba(0,51,153,0.18);
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin-top: 8px;
  border-radius: 2px;
}
.section-title.light { color: var(--white); }
.section-title.light::after { background: var(--yellow); }
.section-title.on-yellow { color: var(--blue); }
.section-title.on-yellow::after { background: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,51,153,0.3); }
.btn-outline-blue {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow);
  color: var(--blue);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── Top Bar ───────────────────────────────────────────────── */
.topbar {
  background: var(--blue);
  padding: 0.5rem 0;
  display: none;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--yellow); }
@media (min-width: 768px) { .topbar { display: block; } }

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  background: var(--yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,51,153,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue-dark); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 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); }

.mobile-nav {
  display: none;
  background: var(--yellow-dark);
  padding: 0.5rem 0;
  border-top: 2px solid var(--blue);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(0,51,153,0.1);
  transition: all var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--blue-dark);
  padding-left: 2rem;
  background: rgba(0,51,153,0.05);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--yellow);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(0,51,153,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(0,34,119,0.05) 0%, transparent 50%),
    var(--yellow);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,51,153,0.04) 0, rgba(0,51,153,0.04) 1px, transparent 1px, transparent 50%);
  background-size: 30px 30px;
}
.hero-shape-1 {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: clamp(300px, 45vw, 550px);
  height: clamp(300px, 45vw, 550px);
  background: var(--blue);
  opacity: 0.08;
  border-radius: 50px;
}
.hero-shape-2 {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  background: var(--blue);
  opacity: 0.05;
  border-radius: 30px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,51,153,0.12);
  border: 1px solid rgba(0,51,153,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  color: var(--blue);
  line-height: 0.92;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--blue-dark);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(0,51,153,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-logo-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 32vw, 380px);
  opacity: 0.12;
  display: none;
  animation: floatLogo 4s ease-in-out infinite;
  filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(1200%) hue-rotate(220deg);
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(-50%) translateY(0px); }
  50% { transform: translateY(-50%) translateY(-14px); }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0,51,153,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,51,153,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

@media (min-width: 768px) { .hero-logo-float { display: block; } }

/* ── Section spacing ───────────────────────────────────────── */
section { padding: 5rem 0; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--gray-light); }
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue);
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.gallery-placeholder svg { opacity: 0.3; }
.gallery-placeholder span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,215,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .gallery-item:first-child { grid-column: span 2; }
}

/* ── Blog Section ──────────────────────────────────────────── */
.blog-section { background: var(--white); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder svg { opacity: 0.2; }
.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.blog-card-body { padding: 1.25rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.blog-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition), color var(--transition);
}
.blog-card-link:hover { gap: 0.75rem; color: var(--blue-light); }

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Transparency Section (home) ───────────────────────────── */
.transparency-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.transparency-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,215,0,0.06);
}
.transparency-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,215,0,0.04);
}
.transparency-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.transparency-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.transparency-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.transparency-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}
.transparency-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,215,0,0.4);
  transform: translateX(4px);
}
.transparency-card-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.1rem;
}
.transparency-card-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.transparency-card-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

@media (min-width: 640px) { .transparency-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .transparency-inner { grid-template-columns: 1fr 1fr; } }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 3rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 300px; }
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img { height: 50px; width: 50px; object-fit: contain; }
.footer-brand-logo strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 1px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--blue); }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .vexo-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom .vexo-credit a {
  color: var(--yellow);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-bottom .vexo-credit a:hover { opacity: 0.8; }

@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ── Page Banner ───────────────────────────────────────────── */
.page-banner {
  background: var(--yellow);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
}
.page-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,51,153,0.04) 0, rgba(0,51,153,0.04) 1px, transparent 1px, transparent 50%);
  background-size: 30px 30px;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(0,51,153,0.5);
}
.page-banner-breadcrumb a { color: var(--blue); font-weight: 600; }
.page-banner-breadcrumb span { color: rgba(0,51,153,0.3); }
.page-banner h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--blue); }
.page-banner h1 em { color: var(--blue-dark); font-style: normal; }
.page-banner p {
  color: rgba(0,51,153,0.7);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 500px;
  font-weight: 500;
}

.blog-page-grid { padding: 4rem 0; }
.blog-page-grid .blog-grid { gap: 2rem; }

/* ── Transparency Page ─────────────────────────────────────── */
.transp-content { padding: 4rem 0; }
.transp-intro { max-width: 700px; margin-bottom: 3rem; }
.transp-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.transp-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.transp-category {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.transp-category-header {
  background: var(--blue);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.transp-category-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.transp-category-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.transp-category-body { padding: 1.25rem 1.5rem; }
.doc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.doc-item:hover { background: var(--gray); transform: translateX(4px); }
.doc-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.doc-info { flex: 1; min-width: 0; }
.doc-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-info span { font-size: 0.75rem; color: var(--text-muted); }
.doc-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(0,51,153,0.1);
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.doc-badge.new { background: rgba(0,160,0,0.1); color: #007a00; }
.transp-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
}
.transp-empty svg { margin: 0 auto 1rem; opacity: 0.2; }
.transp-empty p { font-size: 0.875rem; }
.transp-notice {
  background: rgba(0,51,153,0.06);
  border: 1px solid rgba(0,51,153,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.transp-notice-icon { color: var(--blue); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.transp-notice p { font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.transp-notice strong { color: var(--blue); }
.transp-cta {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.transp-cta::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,215,0,0.06);
}

@media (min-width: 768px) { .transp-categories { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .transp-categories { grid-template-columns: repeat(3, 1fr); } }

/* ── View All link ─────────────────────────────────────────── */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.view-all:hover { gap: 0.75rem; }
.view-all.light { color: var(--yellow); }
.view-all.light:hover { gap: 0.75rem; }

/* ── Section label ─────────────────────────────────────────── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.section-label.blue { color: var(--blue); opacity: 0.6; }
.section-label.yellow { color: var(--yellow); }

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-content {
  background: var(--blue-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  max-width: 380px;
  width: 100%;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 639px) {
  /* Base */
  section { padding: 2.5rem 0; }

  /* Hero */
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
  }
  .hero-scroll { display: none; }

  /* Gallery */
  .gallery-grid { gap: 0.5rem; }
  .gallery-item:first-child { aspect-ratio: 4/3; }

  /* Blog */
  .blog-card-meta { gap: 0.5rem; font-size: 0.75rem; }
  .blog-card h3 { font-size: 1.25rem; }
  .blog-card-body { padding: 1rem; }

  /* Transparency */
  .transp-intro { margin-bottom: 1.5rem; }
  .transp-notice { padding: 1rem; flex-direction: column; gap: 0.5rem; }
  .transp-category-body { padding: 0.875rem; }
  .doc-item { padding: 0.75rem 0.75rem; gap: 0.6rem; }
  .doc-icon { width: 30px; height: 30px; font-size: 0.75rem; }
  .doc-info strong { font-size: 0.8rem; }
  .doc-info span { font-size: 0.7rem; }
  .transp-cta { padding: 2rem 1.25rem; }

  /* Transparency home section */
  .transparency-section { padding: 3rem 0; }
  .transparency-card { padding: 1rem; gap: 0.75rem; }
  .transparency-card-icon { width: 38px; height: 38px; }

  /* Footer */
  .footer { padding-top: 2rem; }
  .footer-top { gap: 1.75rem; padding-bottom: 2rem; }
  .footer-brand { max-width: 100%; }
  .footer-col h4 { font-size: 1rem; margin-bottom: 0.75rem; }
  .footer-col ul li { margin-bottom: 0.5rem; }
  .footer-bottom { padding: 1rem 0; }

  /* Page banners */
  .page-banner { padding: 2.5rem 0 2rem; }
  .page-banner h1 { font-size: 2.5rem; }
}
