/* ============================================================
   Orienta Brasil — style.css
   Portal Educativo Independente Sobre Serviços Públicos
   CNPJ: 49.987.834/0001-21
   ============================================================ */

:root {
  --primary: #7f1d1d;
  --accent: #b45309;
  --alert-bg: #6b1010;
  --bg-light: #fef2f2;
  --text: #1c1917;
  --white: #ffffff;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-600: #57534e;
  --gray-800: #292524;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Karla', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
  --container: 1100px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--primary);
}

/* ---- Skip Nav ---- */
.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top var(--transition);
}
.skip-nav:focus { top: 0; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- NOTA CIDADAO TOPO (disclaimer bar) ---- */
.nota-cidadao-topo {
  background: var(--alert-bg);
  color: var(--white);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-family: var(--font-body);
  line-height: 1.5;
  width: 100%;
}
.nota-cidadao-topo strong { font-weight: 700; }

/* ---- HEADER ---- */
header {
  background: var(--primary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.logo-block a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.72rem;
  color: #fca5a5;
  font-family: var(--font-body);
  line-height: 1.3;
  max-width: 240px;
}

.selo-autonomo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 0.72rem;
  color: #fef2f2;
  text-align: center;
  white-space: nowrap;
  gap: 1px;
  flex-shrink: 0;
}
.selo-autonomo span:first-child { font-weight: 700; font-size: 0.78rem; color: #fde68a; }

/* ---- HAMBURGER ---- */
#menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ---- NAV ---- */
#main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
#main-nav a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: block;
}
#main-nav a:hover,
#main-nav a.active {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  text-decoration: none;
}
#main-nav a.active {
  background: var(--accent);
}

/* ---- NOTA FINANCIAMENTO ---- */
.nota-financiamento {
  background: #fff7ed;
  border-bottom: 2px solid var(--accent);
  padding: 8px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-800);
}
.nota-financiamento a { color: var(--accent); font-weight: 600; }
.nota-financiamento a:hover { text-decoration: underline; }

/* ---- MAIN ---- */
main { flex: 1; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #991b1b 60%, #b45309 100%);
  color: var(--white);
  padding: 72px 20px 64px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #fca5a5;
  max-width: 640px;
  margin: 0 auto 32px;
}
.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform var(--transition), background var(--transition);
}
.btn-hero:hover { background: #92400e; transform: translateY(-2px); text-decoration: none; }
.hero-disclaimer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #fca5a5;
  opacity: 0.9;
}

/* ---- SECTION TITLES ---- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 8px;
}
.section-header p { color: var(--gray-600); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---- CARDS SECTION ---- */
.cards-section { padding: 64px 20px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p { font-size: 0.93rem; color: var(--gray-600); margin-bottom: 20px; }
.btn-card {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: background var(--transition);
}
.btn-card:hover { background: var(--accent); text-decoration: none; }

/* ---- FAQ ---- */
.faq-section { padding: 64px 20px; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; background: var(--gray-100); border: none; cursor: pointer;
  padding: 16px 20px; text-align: left; font-family: var(--font-body); font-size: 0.97rem;
  font-weight: 600; color: var(--primary); display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: background var(--transition);
}
.faq-question:hover { background: #fef2f2; }
.faq-question .faq-icon { font-size: 1.1rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question { background: #fef2f2; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 16px 20px; font-size: 0.93rem; color: var(--gray-600); border-top: 1px solid var(--gray-200); }
.faq-item.open .faq-answer { display: block; }

/* ---- GOLPES ---- */
.golpes-section { padding: 64px 20px; background: #fff7ed; }
.golpes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.golpe-card {
  background: var(--white);
  border-left: 4px solid #dc2626;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.golpe-card h4 { font-size: 1rem; margin-bottom: 8px; color: #dc2626; }
.golpe-card p { font-size: 0.88rem; color: var(--gray-600); }

/* ---- CANAIS OFICIAIS ---- */
.canais-section { padding: 64px 20px; background: var(--white); }
.canais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.canal-item {
  background: var(--bg-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.canal-item:hover { border-color: var(--primary); }
.canal-item span { font-size: 2rem; display: block; margin-bottom: 10px; }
.canal-item h4 { font-size: 0.97rem; color: var(--primary); margin-bottom: 6px; }
.canal-item a { font-size: 0.85rem; color: var(--accent); font-weight: 600; word-break: break-all; }
.canal-item a:hover { text-decoration: underline; }

/* ---- REQUISITOS ---- */
.req-section { padding: 64px 20px; }
.req-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.req-item .req-icon { font-size: 1.5rem; flex-shrink: 0; }
.req-item p { font-size: 0.93rem; color: var(--gray-600); margin: 0; }
.req-item strong { color: var(--text); }

/* ---- TRANSPARENCIA ---- */
.transp-section { padding: 64px 20px; background: var(--white); }
.transp-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.transp-box h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 12px; }
.transp-box p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; }
.transp-box ul { padding-left: 20px; list-style: disc; }
.transp-box ul li { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 6px; }
.transp-cnpj {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-600);
}
.transp-cnpj strong { color: var(--text); }

/* ---- NOTA AO CIDADAO (content pages) ---- */
.nota-ao-cidadao {
  background: #fef2f2;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.nota-ao-cidadao h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.nota-ao-cidadao p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* ---- BREADCRUMB ---- */
.navegacao-trilha {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.navegacao-trilha ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.navegacao-trilha ol li { display: flex; align-items: center; gap: 8px; color: var(--gray-600); }
.navegacao-trilha ol li:not(:last-child)::after { content: "›"; color: var(--gray-600); }
.navegacao-trilha ol li a { color: var(--primary); font-weight: 600; }
.navegacao-trilha ol li span[aria-current="page"] { color: var(--gray-800); font-weight: 600; }

/* ---- CONTENT PAGE LAYOUT ---- */
.content-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.content-wrap h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--primary);
}
.content-wrap h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: var(--primary);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gray-200);
}
.content-wrap h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--gray-800); }
.content-wrap p { margin-bottom: 14px; color: var(--text); font-size: 0.95rem; }
.content-wrap ul, .content-wrap ol { padding-left: 22px; margin-bottom: 14px; list-style: disc; }
.content-wrap ol { list-style: decimal; }
.content-wrap li { margin-bottom: 6px; font-size: 0.95rem; color: var(--text); }
.lead-text { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 24px; }

/* ---- INFO BOX ---- */
.info-box {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.92rem;
}
.info-box.danger { background: #fef2f2; border-left: 4px solid #dc2626; color: #7f1d1d; }
.info-box.info { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e3a5f; }
.info-box.warning { background: #fff7ed; border-left: 4px solid var(--accent); color: #7c2d12; }
.info-box h4 { margin-bottom: 8px; font-size: 0.97rem; }
.info-box p, .info-box li { font-size: 0.9rem; }

/* ---- PROCESS STEPS ---- */
.steps-list {
  counter-reset: step;
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}
.steps-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(step);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- TABLE ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-heading);
}
.data-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); }
.data-table tr:nth-child(even) td { background: var(--gray-100); }
.data-table tr:hover td { background: #fef2f2; }

/* ---- REFERENCIAS PUBLICAS ---- */
.referencias-publicas {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.referencias-publicas h3 { color: #15803d; margin-bottom: 14px; font-size: 1.05rem; }
.referencias-publicas ul { padding-left: 20px; list-style: disc; }
.referencias-publicas li { margin-bottom: 8px; font-size: 0.9rem; }
.referencias-publicas a { color: #15803d; font-weight: 600; }
.referencias-publicas a:hover { text-decoration: underline; }

/* ---- CTA BUTTON ---- */
.btn-gov {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d4ed8;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  transition: background var(--transition), transform var(--transition);
}
.btn-gov:hover { background: #1e40af; transform: translateY(-2px); text-decoration: none; }
.btn-cta-wrap { text-align: center; margin: 32px 0; }

/* ---- NENHUM / NÃO FAZEMOS LIST ---- */
.nao-fazemos-list { padding-left: 0; list-style: none; }
.nao-fazemos-list li {
  padding: 10px 14px;
  border-radius: 6px;
  background: #fef2f2;
  margin-bottom: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #7f1d1d;
  border-left: 3px solid #dc2626;
}

/* ---- FORM ---- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-100);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--accent); }

/* ---- CONTACT INFO ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card .cc-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 6px; }
.contact-card a, .contact-card p { font-size: 0.9rem; color: var(--gray-600); }
.contact-card a { color: var(--primary); font-weight: 600; }

/* ---- FOOTER ---- */
footer {
  background: var(--gray-800);
  color: #d6d3d1;
  padding: 48px 20px 0;
  margin-top: auto;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.footer-col p { font-size: 0.86rem; color: #a8a29e; line-height: 1.6; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: #a8a29e;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-contact p { font-size: 0.86rem; color: #a8a29e; line-height: 1.8; }
.footer-contact a { color: #fca5a5; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #44403c;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 0;
  font-size: 0.8rem;
  color: #78716c;
  text-align: center;
  line-height: 1.6;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-800);
  border-top: 3px solid var(--accent);
  padding: 16px 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#cookie-banner p {
  font-size: 0.88rem;
  color: #d6d3d1;
  flex: 1;
  min-width: 220px;
  margin: 0;
}
#cookie-banner a { color: #fca5a5; text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-buttons button {
  border-radius: var(--radius);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
#cookie-dispensar { background: transparent; border-color: #78716c; color: #a8a29e; }
#cookie-dispensar:hover { border-color: #d6d3d1; color: var(--white); }
#cookie-minimos { background: transparent; border-color: var(--accent); color: #fde68a; }
#cookie-minimos:hover { background: var(--accent); color: var(--white); }
#cookie-prosseguir { background: var(--accent); color: var(--white); border-color: var(--accent); }
#cookie-prosseguir:hover { background: #92400e; }

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 200;
  box-shadow: var(--shadow);
  transition: background var(--transition);
}
#back-to-top:hover { background: var(--accent); }

/* ---- FADE IN ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- LEGAL PAGES ---- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 40px 20px 64px; }
.legal-wrap h1 { font-size: 1.8rem; margin-bottom: 8px; }
.legal-wrap .updated { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 32px; }
.legal-wrap h2 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--primary); }
.legal-wrap p { font-size: 0.93rem; line-height: 1.7; margin-bottom: 12px; color: var(--text); }
.legal-wrap ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-wrap li { font-size: 0.93rem; margin-bottom: 6px; color: var(--text); }

/* ---- COOKIES PAGE OPTIONS ---- */
.cookie-option {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.cookie-option h4 { font-size: 0.97rem; color: var(--primary); margin-bottom: 6px; }
.cookie-option p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ---- QUEM SOMOS ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
}
.about-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--primary); }
.about-card p { font-size: 0.9rem; color: var(--gray-600); }
.company-data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.company-data-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); }
.company-data-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }
.company-data-table tr:last-child td { border-bottom: none; }

/* ---- 404 PAGE ---- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.error-page .error-code { font-size: 6rem; font-weight: 700; color: var(--primary); line-height: 1; font-family: var(--font-heading); }
.error-page h1 { font-size: 1.6rem; margin: 12px 0; color: var(--primary); }
.error-page p { color: var(--gray-600); margin-bottom: 24px; max-width: 420px; }

/* ---- NOTAS PAGE ---- */
.nota-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.nota-section h2 { margin-top: 0; border-bottom: 2px solid var(--gray-200); padding-bottom: 10px; font-size: 1.1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  #menu-toggle { display: block; }
  #main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.15);
    display: none;
    padding: 12px 0;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 2px; padding: 0 12px; }
  header { position: relative; }
  .header-inner { flex-wrap: wrap; }
  .selo-autonomo { display: none; }
  .hero { padding: 48px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
