/* ============================================================
   Guia do Cidadão — style.css
   Deep Forest / Civic Trust — Redesign Compliance 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,600;9..144,700;9..144,900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --bg: #0a2016;
  --surface: #122b1e;
  --surface2: #1a3d2b;
  --border: #2a5a3e;
  --text: #c8e0d2;
  --muted: #6b9f82;
  --heading: #edf7f1;
  --accent: #f5c930;
  --accent2: #d4a820;
  --accentTxt: #0a1a0d;
  --link: #5ecc8a;
  --danger: #ff7b6b;
  --success: #5ecc8a;
  --warning: #f5c930;
  --max-w: 1100px;
  --radius: 8px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--bg);
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--accent); }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 1.5em; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Disclaimer Bar ---- */
.disclaimer-bar {
  background: #78350f;
  border-bottom: 2px solid var(--accent);
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  color: #fde68a;
  line-height: 1.5;
  font-weight: 500;
}
.disclaimer-bar strong { color: #fef3c7; font-weight: 700; }
.disclaimer-bar a { color: #fde68a; text-decoration: underline; }
.disclaimer-bar a:hover { color: #fff; }

/* ---- Ad Notice ---- */
.ad-notice {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.ad-notice strong { color: var(--text); }

/* ---- Header ---- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb ol li { display: flex; align-items: center; gap: 8px; }
.breadcrumb ol li:not(:last-child)::after { content: '/'; color: var(--border); }
.breadcrumb ol li a { color: var(--muted); transition: color 0.2s; }
.breadcrumb ol li a:hover { color: var(--link); text-decoration: none; }
.breadcrumb ol li .current { color: var(--text); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, var(--surface2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px 72px;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--accentTxt); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); color: var(--accentTxt); }
.btn-secondary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--accentTxt); }

/* ---- Sections ---- */
.section {
  padding: 64px 0;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}
.section-header { margin-bottom: 36px; }

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 26px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--link);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.card-label {
  display: inline-block;
  background: var(--surface2);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-size: 14px;
  font-weight: 600;
}
.card-link:hover { text-decoration: underline; }

/* ---- Feature Strip ---- */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ---- About Block ---- */
.about-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-block-text h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}
.about-block-text p { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.about-block-meta { font-size: 13px; color: var(--muted); }

/* ---- Article Header ---- */
.article-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 28px;
}
.article-category {
  display: inline-block;
  background: var(--accent);
  color: var(--accentTxt);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.article-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}
.article-subtitle {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ---- Notice Box ---- */
.notice-box {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 0 24px;
}
.notice-box-inner {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--link);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice-icon {
  width: 22px;
  height: 22px;
  background: var(--link);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.notice-text h4 { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.notice-text p { font-size: 13px; color: var(--text); line-height: 1.6; margin: 0; }
.notice-text a { color: var(--link); }

/* ---- Article Content ---- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.content-section { max-width: 800px; margin: 0 auto; padding: 0 24px 48px; }
.article-content p, .content-section p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.8;
}
.article-content h2, .content-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.2px;
}
.article-content h3, .content-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin: 28px 0 10px;
}
.article-content ul, .article-content ol,
.content-section ul, .content-section ol {
  margin: 14px 0;
  padding-left: 22px;
}
.article-content li, .content-section li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-content a, .content-section a { color: var(--link); font-weight: 500; }
.article-content a:hover, .content-section a:hover { color: var(--accent); }

/* ---- Info Box ---- */
.info-box {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
  border: 1px solid;
}
.info-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-box p { font-size: 14px; margin-bottom: 8px; line-height: 1.7; }
.info-box p:last-child { margin-bottom: 0; }
.info-box ul { margin-top: 10px; padding-left: 20px; }
.info-box li { font-size: 14px; margin-bottom: 6px; }

.info-box.danger, .info-box-danger {
  background: rgba(255,123,107,0.08);
  border-color: rgba(255,123,107,0.4);
  border-left: 4px solid var(--danger);
}
.info-box.danger h4, .info-box-danger h4 { color: #ff9f94; }
.info-box.danger p, .info-box.danger li, .info-box-danger p, .info-box-danger li { color: #ffc5bd; }

.info-box.success, .info-box-success {
  background: rgba(94,204,138,0.08);
  border-color: rgba(94,204,138,0.3);
  border-left: 4px solid var(--success);
}
.info-box.success h4, .info-box-success h4 { color: var(--success); }
.info-box.success p, .info-box.success li, .info-box-success p, .info-box-success li { color: var(--text); }

.info-box.info, .info-box-info {
  background: rgba(94,204,138,0.06);
  border-color: var(--border);
  border-left: 4px solid var(--link);
}
.info-box.info h4, .info-box-info h4 { color: var(--link); }
.info-box.info p, .info-box.info li, .info-box-info p, .info-box-info li { color: var(--text); }

/* ---- Steps List ---- */
.steps-list, .steps-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.steps-box h4, .steps-list h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.steps-box ol, .steps-list ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.steps-box li, .steps-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.steps-box li:last-child, .steps-list li:last-child { border-bottom: none; }
.steps-box li::before, .steps-list li::before {
  content: counter(step);
  min-width: 26px;
  height: 26px;
  background: var(--accent);
  color: var(--accentTxt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-section h2, .faq-container h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: -0.3px;
}
.faq-list { }
.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--link);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer p {
  padding: 0 20px 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.faq-answer a { color: var(--link); }

/* ---- Data Table ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th {
  background: var(--surface2);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--heading);
  border-bottom: 2px solid var(--border);
  border-right: 1px solid var(--border);
}
.data-table th:last-child { border-right: none; }
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.data-table td:last-child { border-right: none; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface2); }
.data-table a { color: var(--link); }

/* ---- Official Sites ---- */
.official-sites {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.official-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-weight: 600;
  font-size: 14px;
}
.official-link:hover { color: var(--accent); }

/* ---- Sources Section ---- */
.sources-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.sources-section h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.sources-list { list-style: none; padding: 0; }
.sources-list li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.sources-list li:last-child { border-bottom: none; }
.sources-list a { color: var(--link); }

/* ---- Legal/Inst Section ---- */
.legal-section, .inst-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-section h1, .inst-section h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.legal-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.legal-section h2, .inst-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin: 32px 0 12px;
  padding-top: 10px;
}
.legal-section p, .inst-section p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.8;
}
.legal-section ul, .inst-section ul {
  margin: 12px 0;
  padding-left: 22px;
}
.legal-section li, .inst-section li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-section a, .inst-section a { color: var(--link); }

/* ---- Not List ---- */
.not-list { list-style: none; padding: 0; margin: 16px 0; }
.not-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.not-list li:last-child { border-bottom: none; }
.not-list li::before { content: 'X'; color: var(--danger); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ---- Inst Cards ---- */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 22px 0;
}
.inst-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.inst-card h3 { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.inst-card p { font-size: 14px; color: var(--muted); margin-bottom: 0; line-height: 1.7; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 22px 0;
}
.contact-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.contact-card h3 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 4px; }
.contact-card a { color: var(--link); }

/* ---- Form ---- */
.contact-form { max-width: 600px; margin: 28px 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group select option { background: var(--surface2); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--link);
  box-shadow: 0 0 0 3px rgba(94,204,138,0.15);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid > div > strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer-grid > div > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-grid nav h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-grid nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid nav ul li { margin-bottom: 8px; }
.footer-grid nav ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-grid nav ul li a:hover { color: var(--text); text-decoration: none; }
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}
.footer-disclaimer strong { color: var(--text); }
.footer-disclaimer a { color: var(--link); }
.footer-company {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  padding: 14px 0;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 14px 0 20px;
  border-top: 1px solid var(--border);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface2);
  border-top: 2px solid var(--border);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-inner p { font-size: 13px; color: var(--text); line-height: 1.6; flex: 1; min-width: 240px; margin: 0; }
.cookie-inner a { color: var(--link); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept { background: var(--accent); color: var(--accentTxt); border: none; padding: 9px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cookie-essential { background: transparent; color: var(--text); border: 1px solid var(--border); padding: 9px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cookie-reject { background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 9px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cookie-accept:hover { background: var(--accent2); }
.cookie-essential:hover { color: var(--heading); border-color: var(--text); }
.cookie-reject:hover { color: var(--text); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    align-items: flex-start;
  }
  .nav.show { display: flex; }
  .site-header { position: sticky; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .article-header h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .article-meta { flex-direction: column; gap: 6px; }
  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 8px 10px; }
  .about-block { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }
  .legal-section h1, .inst-section h1 { font-size: 26px; }
  .cookie-inner { flex-direction: column; gap: 14px; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr; }
}
