/* =========================================================
   SIT — Sindicato dos Inspectores do Trabalho
   Design: Institucional · Confiável · Clássico Atualizado (v2)
   ========================================================= */

:root {
  --navy: #14213D;
  --navy-dark: #0B1A33;
  --navy-light: #1E3055;
  --navy-50: rgba(20, 33, 61, 0.04);
  --gold: #C9A961;
  --gold-dark: #A8893F;
  --gold-light: #E5C98A;
  --gold-50: rgba(201, 169, 97, 0.08);
  --cream: #F8F5EF;
  --off-white: #FAFAF7;
  --gray-50: #F7F7F5;
  --gray-100: #EDECE7;
  --gray-200: #D8D6CE;
  --gray-300: #B8B6AC;
  --gray-400: #8A887E;
  --gray-600: #4A4944;
  --gray-800: #22211E;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --success: #2D7A5F;
  --shadow-xs: 0 1px 3px rgba(20, 33, 61, 0.04);
  --shadow-sm: 0 2px 8px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 33, 61, 0.08);
  --shadow-lg: 0 16px 48px rgba(20, 33, 61, 0.12);
  --shadow-xl: 0 24px 64px rgba(20, 33, 61, 0.16);
  --radius: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --max-w: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy-dark); }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--navy); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-100);
  font-size: 13px;
  padding: 9px 0;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 101;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a { color: var(--gold-light); transition: color .25s ease; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left svg { width: 12px; height: 12px; opacity: 0.7; }

.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social { display: inline-flex; gap: 10px; }
.topbar-social a { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; }
.topbar-social svg { width: 13px; height: 13px; }

.btn-reserved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .25s ease;
}
.btn-reserved:hover { background: var(--gold-light); color: var(--navy-dark) !important; }
.btn-reserved svg { width: 11px; height: 11px; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(20, 33, 61, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 30px;
  transition: padding .3s ease;
}

.site-header.scrolled .header-inner { padding: 12px 0; }

.logo img { height: 62px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 52px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}

.main-nav a {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.2px;
  position: relative;
  transition: all .25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: calc(100% - 32px); }

.main-nav a.active { color: var(--gold-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 130px 0 150px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 680px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 14px 6px 0;
  margin-bottom: 26px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(201, 169, 97, 0); }
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 8px;
  background: rgba(201, 169, 97, 0.18);
  z-index: -1;
}

.hero-sub {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-meta-item { color: #fff; }
.hero-meta-item .num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-item .lbl {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Emblem */
.hero-emblem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emblem-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}

.hero-emblem-wrap svg.big-emblem {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}
.emblem-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
}
.emblem-ring.outer { inset: -30px; }
.emblem-ring.middle { inset: 15px; animation-duration: 60s; animation-direction: reverse; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  animation: floatY 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  display: block;
  margin: 8px auto 0;
  width: 14px;
  height: 14px;
}

@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 16px; height: 16px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.35);
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ===== SECTIONS ===== */
section { padding: 90px 0; position: relative; }
section.compact { padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-header h2 { margin-bottom: 16px; }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.section-divider::before { left: -14px; }
.section-divider::after { right: -14px; }

.lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.pillar {
  text-align: left;
  padding: 36px 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transition: height .3s ease;
}

.pillar:hover::before { height: 6px; }

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--navy);
  padding: 10px;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  transition: all .3s ease;
}

.pillar:hover .pillar-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.05);
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.pillar p { font-size: .95rem; line-height: 1.65; margin-bottom: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat:last-child::after { display: none; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text p { font-size: 1.02rem; margin-bottom: 1.1rem; color: var(--gray-600); }

.about-image .img-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  aspect-ratio: 4/5;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image .img-wrap::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}

.about-image .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.1), transparent 50%);
}

.about-image svg.emblem { width: 65%; height: auto; opacity: 0.95; position: relative; z-index: 2; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  font-family: 'Playfair Display', Georgia, serif;
}

.about-badge .big { font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge .sml { font-size: 10px; letter-spacing: 2px; font-weight: 700; font-family: 'Inter', sans-serif; text-transform: uppercase; margin-top: 4px; }

/* ===== MISSÃO / VISÃO / VALORES ===== */
.mvv { background: #fff; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-100);
}

.mvv-card {
  padding: 50px 40px;
  border-right: 1px solid var(--gray-100);
  position: relative;
  transition: background .3s ease;
  background: #fff;
}

.mvv-card:last-child { border-right: none; }
.mvv-card:hover { background: var(--cream); }

.mvv-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.9;
}

.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--navy);
}

.mvv-card p { font-size: 0.98rem; line-height: 1.7; }

/* ===== NEWS / NOTÍCIAS ===== */
.news-section { background: var(--off-white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.news-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.15), transparent 50%);
}

.news-thumb svg { width: 56px; height: 56px; color: var(--gold); opacity: 0.7; position: relative; z-index: 1; }

.news-thumb.variant-1 { background: linear-gradient(135deg, #1E3055, #14213D); }
.news-thumb.variant-2 { background: linear-gradient(135deg, #2A3F66, #14213D); }
.news-thumb.variant-3 { background: linear-gradient(135deg, #0B1A33, #1E3055); }

.news-body {
  padding: 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.news-cat {
  background: var(--gold-50);
  color: var(--gold-dark);
  padding: 4px 10px;
}

.news-date { color: var(--gray-400); }

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--navy);
}

.news-card:hover h3 { color: var(--gold-dark); }

.news-body p {
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.news-link:hover { color: var(--gold-dark); }
.news-link svg { width: 14px; height: 14px; transition: transform .3s ease; }
.news-card:hover .news-link svg { transform: translateX(4px); }

.news-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: -20px 0 40px;
}

.news-filter {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all .25s ease;
}
.news-filter:hover { border-color: var(--navy); color: var(--navy); }
.news-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* ===== TESTIMONIALS / VOZ DOS ASSOCIADOS ===== */
.voices-section { background: #fff; }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.voice-card {
  padding: 44px 40px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  position: relative;
  transition: all .3s ease;
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.voice-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.voice-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.voice-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.02rem;
}

.voice-role {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1), transparent 45%);
  z-index: -1;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 70%);
}

.cta-banner .kicker {
  display: inline-block;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.06rem;
}

.cta-banner .btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 90px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.1), transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(201, 169, 97, 0.06), transparent 50%);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
}

.page-header-inner { position: relative; z-index: 2; }
.page-header .kicker { font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; display: block; }
.page-header h1 { color: #fff; margin-bottom: 18px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; font-size: 1.08rem; }

.breadcrumbs {
  padding: 18px 0;
  background: var(--cream);
  font-size: 13px;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumbs a { color: var(--navy); font-weight: 500; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs .sep { margin: 0 10px; color: var(--gray-200); }

/* ===== TEXT PAGE ===== */
.text-page { padding: 80px 0; background: #fff; }
.text-page h2 { margin-top: 42px; }
.text-page h2:first-child { margin-top: 0; }
.text-page h3 { margin-top: 30px; color: var(--navy); font-size: 1.2rem; }
.text-page p { font-size: 1.02rem; color: var(--gray-600); line-height: 1.8; }
.text-page strong { color: var(--navy); font-weight: 600; }
.text-page ul, .text-page ol { margin: 1rem 0 1.4rem 1.4rem; color: var(--gray-600); line-height: 1.8; }
.text-page li { margin-bottom: 8px; }

.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 26px 30px;
  margin: 32px 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--gray-800);
  font-family: 'Playfair Display', Georgia, serif;
  position: relative;
}

/* Sidebar Layout (Estatutos) */
.with-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.sidebar-toc {
  position: sticky;
  top: 110px;
  padding: 22px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-toc .toc-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding: 0 4px;
}

.sidebar-toc ul { list-style: none; }
.sidebar-toc li { margin: 0; border-bottom: 1px solid var(--gray-50); }
.sidebar-toc li:last-child { border-bottom: none; }

.sidebar-toc a {
  display: block;
  padding: 10px 4px;
  font-size: 13.5px;
  color: var(--gray-600);
  font-weight: 500;
  transition: all .25s ease;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
}

.sidebar-toc a:hover { color: var(--navy); background: var(--cream); }
.sidebar-toc a.active { color: var(--navy); border-left-color: var(--gold); background: var(--cream); font-weight: 600; }

.toc-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

/* ===== TIMELINE ===== */
.timeline-section { background: var(--cream); }

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 130px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gray-200);
}

.tl-item {
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  gap: 20px;
  padding: 24px 0;
  align-items: start;
}

.tl-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-align: right;
  line-height: 1;
  padding-top: 6px;
}

.tl-dot {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin: 10px auto 0;
  box-shadow: 0 0 0 6px var(--cream);
}

.tl-content {
  background: #fff;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-xs);
}

.tl-content h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

/* ===== PRINCIPLES CARDS ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 30px 0;
}

.principle {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
}

.principle:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.principle-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.principle h4 { margin-bottom: 6px; color: var(--navy); font-size: 1.05rem; }
.principle p { font-size: 0.92rem; margin-bottom: 0; color: var(--gray-600); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.member-card {
  text-align: center;
  background: #fff;
  padding: 38px 24px 28px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--cream);
  z-index: 0;
}

.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.member-avatar {
  width: 104px;
  height: 104px;
  margin: 20px auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.member-role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.member-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.member-note { font-size: .85rem; color: var(--gray-400); position: relative; z-index: 1; }

.org-section { margin-bottom: 60px; }
.org-section > h2 { text-align: center; margin-bottom: 10px; }
.org-label { text-align: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 28px; }

/* ===== PROTOCOLOS ===== */
.protocolos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.protocolo-card {
  background: #fff;
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.protocolo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

.protocolo-card:hover::before { width: 100%; }

.protocolo-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.protocolo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
}
.protocolo-icon svg { width: 20px; height: 20px; }

.protocolo-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 8px;
  background: var(--gold-50);
}

.protocolo-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.protocolo-card p { font-size: .93rem; margin-bottom: 0; line-height: 1.65; }

/* Filter bar (protocolos / noticias) */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== CONTACTOS ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }

.contact-info {
  background: var(--cream);
  padding: 44px 38px;
  border-left: 3px solid var(--gold);
}

.contact-info h3 { color: var(--navy); margin-bottom: 20px; }

.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.contact-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value { color: var(--navy); font-weight: 500; line-height: 1.5; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--gold-dark); }

form.contact-form { background: #fff; padding: 44px 38px; border: 1px solid var(--gray-100); }
form.contact-form h3 { margin-bottom: 24px; }

.form-row { margin-bottom: 20px; position: relative; }

.floating-label {
  position: relative;
}

.floating-label input,
.floating-label textarea {
  width: 100%;
  padding: 22px 14px 10px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 15px;
  background: var(--off-white);
  transition: border-color .25s ease, background .25s ease;
  border-radius: var(--radius);
  color: var(--navy);
}

.floating-label label {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 14px;
  color: var(--gray-400);
  letter-spacing: 0.2px;
  pointer-events: none;
  transition: all .2s ease;
  background: transparent;
}

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.floating-label input:focus,
.floating-label textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.floating-label textarea { min-height: 130px; resize: vertical; padding-top: 26px; }

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: var(--gray-100);
  padding: 72px 0 0;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-col p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: all .25s ease; display: inline-block; }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-logo { height: 58px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.95; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7) !important;
  border-radius: 50%;
  padding: 0 !important;
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark) !important; padding-left: 0 !important; }
.footer-social svg { width: 15px; height: 15px; }

.newsletter-form {
  margin-top: 14px;
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .25s ease;
  font-family: inherit;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold-light); }

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-col.newsletter-col { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .logo img { height: 52px; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    padding: 90px 30px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right .35s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 14px 0; display: block; border-bottom: 1px solid var(--gray-100); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; z-index: 101; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 80px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .hero-emblem { display: none; }
  .hero-meta { gap: 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat::after { display: none; }
  .stat:nth-child(odd)::after { display: block; }

  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { width: 110px; height: 110px; }
  .about-badge .big { font-size: 1.8rem; }

  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .mvv-card:last-child { border-bottom: none; }

  .news-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }

  .with-sidebar { grid-template-columns: 1fr; gap: 30px; }
  .sidebar-toc { position: relative; top: 0; }

  .timeline::before { left: 30px; }
  .tl-item { grid-template-columns: 50px 30px 1fr; gap: 10px; }
  .tl-year { font-size: 1.2rem; text-align: left; padding-top: 4px; }
  .tl-content { padding: 18px 20px; }

  .principles-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-col.newsletter-col { grid-column: 1 / -1; }
  .footer-col.brand-col { grid-column: 1 / -1; }

  section { padding: 66px 0; }
}

@media (max-width: 600px) {
  .logo img { height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .topbar { display: none; }
  .topbar-left, .topbar-right { justify-content: center; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  h1 { font-size: 2rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat::after { display: none !important; }
  .stat:nth-child(odd)::after { display: none !important; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .menu-toggle, .scroll-progress, .cta-banner { display: none; }
  body { background: #fff; color: #000; }
  section { padding: 20px 0; }
}
