/* =====================================================================
   Tolerância Zero — Escola de Condução
   Design system + estilos. Mobile-first, sem dependências.
   ===================================================================== */

:root {
  /* Cores */
  --ink: #0B1B2B;
  --ink-2: #16324F;
  --accent: #0FBF73;
  --accent-strong: #0AA260;
  --bg: #F7F9FB;
  --surface: #FFFFFF;
  --line: #E7ECF1;
  --text: #0B1B2B;
  --muted: #5A6B7B;
  --on-dark: #EAF1F6;
  --on-dark-muted: #9DB0BF;

  /* Tipografia */
  --font-display: "Sora", system-ui, sans-serif;
  --font-text: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Raio e sombra */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(11,27,43,.06), 0 4px 12px rgba(11,27,43,.05);
  --shadow-md: 0 10px 30px rgba(11,27,43,.10);
  --shadow-lg: 0 24px 60px rgba(11,27,43,.16);

  /* Layout */
  --container: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 116px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Acessibilidade ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.narrow { max-width: 820px; }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-note { text-align: center; color: var(--muted); margin-top: 32px; }
.section-note a { color: var(--accent-strong); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-text); font-weight: 600; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 14px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(15,191,115,.18); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 11px 18px; font-size: .94rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: #04231a; box-shadow: 0 8px 22px rgba(15,191,115,.34); }
.btn-primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--accent-strong); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent-strong); margin-top: auto; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

.badge { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.badge-go { background: rgba(15,191,115,.14); color: var(--accent-strong); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,249,251,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header[data-scrolled] { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(255,255,255,.92); }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-text strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; letter-spacing: -.02em; line-height: 1; }
.brand-text small { display: block; font-size: .72rem; color: var(--muted); margin-top: 3px; }

.nav { display: none; margin-left: auto; gap: 26px; }
.nav a { font-weight: 500; color: var(--ink); font-size: .98rem; position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width .2s ease; }
.nav a:hover::after, .nav a[aria-current="true"]::after { width: 100%; }

.header-cta { display: none; align-items: center; gap: 10px; }
.header-cta .phone { display: inline-flex; }

.nav-toggle { margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; display: inline-grid; place-items: center; }
.nav-toggle-bars { display: grid; gap: 5px; }
.nav-toggle-bars i { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
@media (max-width: 899px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; display: flex; flex-direction: column; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 20px; transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s; margin: 0;
  }
  .nav[data-open] { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 84px) clamp(48px, 8vw, 96px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(15,191,115,.10), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(22,50,79,.08), transparent 60%);
}
.hero-grid { display: grid; gap: clamp(36px, 6vw, 56px); align-items: center; }
.hero-copy h1 { font-size: clamp(2.1rem, 7vw, 3.7rem); font-weight: 800; margin-bottom: 18px; }
.lead { font-size: clamp(1.05rem, 2.4vw, 1.22rem); color: var(--muted); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 40px); margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust li strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.hero-trust li span { font-size: .86rem; color: var(--muted); }

/* Cartão visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-blob { position: absolute; inset: 6% 8%; background: linear-gradient(150deg, var(--ink), var(--ink-2)); border-radius: 40% 60% 62% 38% / 46% 40% 60% 54%; filter: blur(2px); z-index: 0; opacity: .96; animation: blob 14s ease-in-out infinite; }
@keyframes blob { 0%,100% { border-radius: 40% 60% 62% 38% / 46% 40% 60% 54%; } 50% { border-radius: 58% 42% 38% 62% / 54% 58% 42% 46%; } }
.hero-card {
  position: relative; z-index: 1; width: min(360px, 86%); background: var(--surface);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 22px; border: 1px solid var(--line);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.hero-card-tag { font-size: .78rem; font-weight: 600; color: var(--muted); }
.signal { display: inline-flex; gap: 6px; }
.signal i { width: 11px; height: 11px; border-radius: 50%; background: #E2E8EE; }
.signal i:last-child { background: var(--accent); box-shadow: 0 0 0 4px rgba(15,191,115,.2); }
.hero-wheel { width: 70%; margin: 14px auto; }
.hero-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.hero-card-foot strong { display: block; font-size: .95rem; }
.hero-card-foot span { font-size: .8rem; color: var(--muted); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { border-block: 1px solid var(--line); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; padding-block: clamp(36px, 6vw, 56px); text-align: center; }
.stats-grid strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.3rem); color: var(--ink); }
.stats-grid span { font-size: .9rem; color: var(--muted); }

/* =====================================================================
   CARDS GRID (categorias / novidades)
   ===================================================================== */
.cards-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }

.cat-card, .news-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px; display: flex; flex-direction: column; gap: 10px; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover, .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card h3, .news-card h3 { font-size: 1.25rem; }
.cat-card p, .news-card p { color: var(--muted); font-size: .98rem; }
.cat-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(15,191,115,.12); color: var(--accent-strong); display: grid; place-items: center; }
.cat-icon svg { width: 28px; height: 28px; }
.cat-tags { font-weight: 600; color: var(--ink) !important; font-size: .9rem !important; letter-spacing: .02em; }
.cat-card-feature { border-color: var(--accent); box-shadow: 0 12px 30px rgba(15,191,115,.14); }
.cat-card-feature .badge { position: absolute; top: 18px; right: 18px; }

.news-meta { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-strong); }

/* Tints */
.section-tint { background: var(--surface); border-block: 1px solid var(--line); }

/* =====================================================================
   STEPS
   ===================================================================== */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; position: relative; }
.section-tint .step { background: var(--bg); }
.step-num { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .97rem; }

/* =====================================================================
   SPLIT (diferenciais)
   ===================================================================== */
.split { display: grid; gap: clamp(36px, 6vw, 60px); align-items: center; }
.split-copy h2 { font-size: clamp(1.7rem, 4.6vw, 2.5rem); margin-bottom: 16px; }
.split-copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 24px; }
.feature-list { display: grid; gap: 16px; margin-bottom: 30px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list strong { color: var(--ink); }
.feature-list div { color: var(--muted); }
.feature-ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #04231a; font-weight: 800; display: grid; place-items: center; font-size: .9rem; }

.split-visual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.media-card {
  margin: 0; border-radius: var(--r-md); min-height: 150px; display: flex; align-items: flex-end;
  padding: 16px; color: #fff; font-size: .85rem; font-weight: 600; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-card figcaption { position: relative; z-index: 1; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.media-1 { background: linear-gradient(150deg, #16324F, #0B1B2B); grid-column: 1 / -1; min-height: 200px; }
.media-2 { background: linear-gradient(150deg, #0AA260, #0FBF73); }
.media-3 { background: linear-gradient(150deg, #1E4A6B, #16324F); }

/* =====================================================================
   SECTION DARK (testemunhos)
   ===================================================================== */
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-head-light h2 { color: #fff; }
.section-head-light .eyebrow { color: var(--accent); }
.quotes-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.quote {
  margin: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md); padding: 26px;
}
.quote p { font-size: 1.05rem; line-height: 1.55; margin: 12px 0 18px; }
.stars { color: var(--accent); letter-spacing: 2px; }
.quote footer strong { display: block; color: #fff; }
.quote footer span { font-size: .85rem; color: var(--on-dark-muted); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.06rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent-strong); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 22px; color: var(--muted); }

/* =====================================================================
   CTA / INSCRIÇÃO
   ===================================================================== */
.section-cta { background: linear-gradient(150deg, var(--ink), var(--ink-2)); color: var(--on-dark); }
.cta-grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
.cta-copy h2 { color: #fff; font-size: clamp(1.9rem, 5vw, 2.7rem); margin-bottom: 14px; }
.cta-copy > p { color: var(--on-dark-muted); font-size: 1.08rem; max-width: 46ch; }
.cta-copy .eyebrow { color: var(--accent); }
.cta-bullets { display: grid; gap: 10px; margin: 22px 0 26px; }
.cta-bullets li { display: flex; align-items: center; gap: 10px; }
.cta-bullets li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.cta-direct { display: flex; flex-wrap: wrap; gap: 12px; }

.lead-form { background: var(--surface); color: var(--text); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; gap: 16px; }
.field label { font-size: .9rem; font-weight: 600; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--bg); color: var(--text); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(15,191,115,.16); }
.field textarea { resize: vertical; }
.field [aria-invalid="true"], .field input:invalid:not(:placeholder-shown) { border-color: #E0556B; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent-strong); flex: 0 0 auto; }
.check a { color: var(--accent-strong); text-decoration: underline; }
.form-status { font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status[data-state="ok"] { color: var(--accent-strong); }
.form-status[data-state="err"] { color: #C03A50; }

/* =====================================================================
   CONTACTOS
   ===================================================================== */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 48px); }
.contact-grid h2 { font-size: clamp(1.7rem, 4.6vw, 2.4rem); margin-bottom: 24px; }
.contact-list { display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list a { color: var(--accent-strong); font-weight: 600; }
.contact-ic { font-size: 1.3rem; line-height: 1; }
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); min-height: 300px; }
.map-card iframe { width: 100%; height: 100%; min-height: 300px; border: 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-top: clamp(48px, 7vw, 72px); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 40px; }
.brand-light { color: #fff; }
.brand-light .brand-mark { color: var(--accent); }
.brand-light .brand-text small { color: var(--on-dark-muted); }
.footer-brand p { margin-top: 14px; max-width: 30ch; font-size: .95rem; }
.footer-col h3 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-family: var(--font-text); }
.footer-col a { display: block; padding: 6px 0; color: var(--on-dark-muted); transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-addr { margin-top: 12px; font-size: .92rem; }
.socials { display: flex; gap: 14px; margin-top: 14px; }
.socials a { display: inline; padding: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: .85rem; }
.footer-fine { color: rgba(157,176,191,.7); }

/* =====================================================================
   BARRA MÓVEL FIXA
   ===================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; }
body { padding-bottom: 76px; }

/* =====================================================================
   ANIMAÇÕES (revelar ao scroll)
   ===================================================================== */
/* Sem JS (ou JS desativado) o conteúdo aparece sempre — só escondemos quando há .js */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* =====================================================================
   BREAKPOINTS
   ===================================================================== */
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .nav, .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-visual { min-height: 440px; }
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.05fr .95fr; }
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
}

/* =====================================================================
   PÁGINAS INTERNAS (categorias / sobre / contactos)
   ===================================================================== */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 76px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 90% at 90% -10%, rgba(15,191,115,.10), transparent 60%);
}
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 800; max-width: 16ch; margin-bottom: 16px; }
.page-hero .lead { max-width: 52ch; }
.breadcrumb { display: flex; gap: 8px; font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--accent-strong); font-weight: 600; }
.breadcrumb span { color: var(--line); }

/* Bloco de categoria detalhada */
.detail { display: grid; gap: clamp(28px, 5vw, 48px); align-items: center; padding-block: clamp(40px, 6vw, 64px); }
.detail:not(:last-child) { border-bottom: 1px solid var(--line); }
.detail h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 12px; }
.detail .cat-tags { margin-bottom: 14px; }
.detail p { color: var(--muted); margin-bottom: 18px; }
.detail-visual { display: grid; place-items: center; background: linear-gradient(150deg, var(--ink), var(--ink-2)); border-radius: var(--r-lg); min-height: 220px; color: var(--accent); box-shadow: var(--shadow-md); }
.detail-visual svg { width: 42%; height: auto; }

/* Tabela de informação (requisitos) */
.info-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.info-table th, .info-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th { font-weight: 600; width: 42%; color: var(--ink); background: var(--bg); }
.info-table td { color: var(--muted); }

/* Equipa */
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; text-align: center; }
.team-avatar { width: 76px; height: 76px; margin: 0 auto 14px; border-radius: 50%; background: linear-gradient(150deg, var(--accent), var(--accent-strong)); display: grid; place-items: center; color: #04231a; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.team-card h3 { font-size: 1.1rem; }
.team-card .role { color: var(--accent-strong); font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.team-card p { color: var(--muted); font-size: .94rem; }

/* Valores */
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.value-card .num { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.4rem; }
.value-card h3 { font-size: 1.15rem; margin: 10px 0 8px; }
.value-card p { color: var(--muted); font-size: .96rem; }

@media (min-width: 760px) {
  .detail { grid-template-columns: 1fr 1fr; }
  .detail.reverse .detail-visual { order: -1; }
}
