/* =============================================================================
   AGILE ASSESSORIA — Folha de estilo compartilhada
   Reutilize este arquivo em todas as páginas do site (home + páginas de serviço).
   Mobile-first. Breakpoints: 640px (mobile→tablet) e 1024px (tablet→desktop).
   ============================================================================= */

/* ---------- Tokens de design (direção "Autoridade") ------------------------ */
:root {
  --night:   #13140d;   /* hero e faixas escuras                         */
  --night2:  #1c1d14;   /* faixa secundária escura (marquee)            */
  --ink:     #2b291d;   /* texto sobre fundo claro                      */
  --paper:   #F7F6F0;   /* fundo claro da página                        */
  --bone:    #E7E4D7;   /* texto/superfície sobre escuro                */
  --moss:    #9AA25E;   /* acento sobre fundo escuro                    */
  --moss2:   #8E9558;   /* acento/botões sobre fundo claro              */
  --moss-deep:#5E6536;  /* verde escuro p/ texto pequeno e hover        */
  --line-d:  #2f3124;   /* linhas sobre escuro                          */
  --line-l:  #DDD9C9;   /* linhas sobre claro                           */
  --mut:     #6E6C5F;   /* texto secundário sobre claro                 */
  --sage:    #A7AD80;   /* rótulos claros sobre fundo escuro            */
  --wa:      #25D366;   /* verde WhatsApp                               */

  --maxw: 1140px;
  --radius: 12px;
  --shadow: 0 24px 48px -20px rgba(19,20,13,.35);
}

/* ---------- Reset enxuto --------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* trava scroll horizontal em qualquer tela */
}
h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

/* Foco de teclado sempre visível (acessibilidade) */
:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Utilitários ----------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss-deep);
}
.eyebrow.on-dark { color: var(--sage); }
.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: 12px; top: -60px; z-index: 200;
  background: var(--moss2); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ---------- Botões (alvo de toque ≥ 44px) ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
  min-height: 48px; padding: 13px 24px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: transform .12s ease, background .15s, border-color .15s, color .15s;
}
.btn-wa { background: var(--moss2); color: #fff; box-shadow: 0 12px 26px -12px rgba(94,101,54,.9); }
.btn-wa:hover { background: var(--moss-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-l); }
.btn-ghost:hover { border-color: var(--moss2); color: var(--moss-deep); }
.btn-ghost.on-dark { color: var(--bone); border-color: var(--line-d); }
.btn-ghost.on-dark:hover { border-color: var(--moss); color: var(--moss); }

/* ---------- NAV (escura, sticky) ------------------------------------------- */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(19,20,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-d);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand b { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: var(--bone); line-height: 1; }
.brand span { display: block; font-size: 10px; font-weight: 500; color: var(--sage); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; }
nav.links { display: flex; align-items: center; gap: 30px; }
nav.links a { font-size: 15px; font-weight: 500; color: var(--bone); transition: color .15s; }
nav.links a:hover { color: var(--moss); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  background: var(--moss2); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13.5px;
  padding: 10px 18px; border-radius: 9px; transition: background .15s;
}
.nav-cta:hover { background: var(--moss-deep); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line-d); border-radius: 9px;
  cursor: pointer; width: 46px; height: 46px; align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--bone); transition: .2s;
}
.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-2px); }

/* ---------- Menu mobile ----------------------------------------------------- */
.mobile-menu {
  display: none; background: var(--night); border-bottom: 1px solid var(--line-d);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 16px 24px; color: var(--bone); font-weight: 500;
  border-top: 1px solid var(--line-d); min-height: 44px;
}
.mobile-menu a.cta { color: var(--moss); font-weight: 700; }

@media (max-width: 860px) {
  nav.links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand span { display: none; }
}

/* ---------- HERO (fundo night) --------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--night); color: var(--bone); padding: 64px 0 56px; }
.hero::before { /* anel/círculo sutil ao fundo */
  content: ""; position: absolute; right: -160px; top: -120px; width: 620px; height: 620px;
  border-radius: 50%; border: 1px solid rgba(154,162,94,.16);
  box-shadow: 0 0 0 40px rgba(154,162,94,.05); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero .eyebrow { margin-bottom: 16px; }
.hero h1 { font-weight: 900; font-size: clamp(1.95rem, 4.4vw, 3.15rem); color: #fff; }
.hero h1 .accent { color: var(--moss); }
.hero .sub { margin-top: 16px; font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--bone); max-width: 58ch; }
.hero .actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-emblem { display: flex; justify-content: center; align-items: center; order: -1; }
.hero-emblem .frame {
  position: relative; display: grid; place-items: center;
  width: min(72vw, 300px); aspect-ratio: 1;
}
.hero-emblem .frame::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(154,162,94,.22), rgba(154,162,94,0) 62%);
}
.hero-emblem img { position: relative; width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
/* No celular a nav já mostra a marca: escondemos o emblema grande do hero
   para não duplicar o logo e trazer o título para cima. */
@media (max-width: 640px) {
  .hero-emblem { display: none; }
  .hero { padding: 40px 0 44px; }
}

@media (min-width: 1025px) {
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: clamp(1.95rem, 3.4vw, 2.9rem); }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
  .hero-emblem { order: 0; align-self: center; }
  .hero-emblem .frame { width: 290px; }
}

/* ---------- Faixa de ÓRGÃOS no hero (nomes acendem em sequência) ----------- */
.hero-orgaos { position: relative; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-d); }
.hero-orgaos .label {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
}
.orgaos-list { display: flex; flex-wrap: wrap; gap: 10px; }
.orgao {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(0.82rem, 1.5vw, 1.02rem);
  color: #767a63;                       /* estado apagado (cinza) */
  padding: 9px 15px; min-height: 40px; display: inline-flex; align-items: center;
  border: 1px solid var(--line-d); border-radius: 999px;
  background: transparent;
  transition: color .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease;
}
.orgao:hover { color: var(--bone); border-color: var(--moss); }
.orgao.active {                          /* estado aceso (destaque passando) */
  color: #fff; border-color: var(--moss);
  background: rgba(154,162,94,.14);
  box-shadow: 0 0 0 1px rgba(154,162,94,.35), 0 10px 24px -14px rgba(154,162,94,.8);
}
@media (max-width: 640px) {
  .hero-orgaos { margin-top: 32px; padding-top: 24px; }
  .orgao { font-size: 0.84rem; padding: 8px 13px; }
}

/* ---------- Bloco de resposta direta (GEO/AEO) ----------------------------- */
.answer { background: var(--paper); border-bottom: 1px solid var(--line-l); }
.answer .wrap { padding-top: 40px; padding-bottom: 40px; }
.answer p {
  font-size: clamp(1.12rem, 2.4vw, 1.4rem); line-height: 1.55; color: var(--ink);
  max-width: 78ch; font-weight: 500;
}
.answer strong { color: var(--moss-deep); }

/* ---------- MARQUEE de clientes (fundo night2) ----------------------------- */
.marquee { background: var(--night2); color: var(--bone); padding: 26px 0; overflow: hidden; }
.marquee .label {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
  text-align: center; margin-bottom: 18px;
}
.marquee-track { display: flex; width: max-content; animation: scroll-x 42s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 16px; color: var(--bone);
  padding: 0 30px; white-space: nowrap; position: relative; opacity: .9;
}
.marquee-item::after {
  content: "•"; position: absolute; right: -4px; top: 50%; transform: translateY(-50%); color: var(--moss);
}
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section shell -------------------------------------------------- */
section { padding: 72px 0; }
@media (min-width: 1025px) { section { padding: 92px 0; } }
.sec-head { max-width: 680px; margin-bottom: 44px; }
.sec-head h2 { font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 12px; }
.sec-head p { margin-top: 16px; color: var(--mut); font-size: 1.08rem; }
.sec-head.on-dark h2 { color: #fff; }
.sec-head.on-dark p { color: var(--bone); }

/* ---------- SERVIÇOS -------------------------------------------------------- */
#servicos { background: var(--bone); }
.cat { margin-bottom: 40px; }
.cat:last-child { margin-bottom: 0; }
.cat-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 2px solid var(--ink); }
.cat-head h3 { min-width: 0; }
.cat-head .idx { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 12px; color: var(--moss-deep); letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.cat-head h3 { font-weight: 800; font-size: clamp(1.2rem, 2.6vw, 1.55rem); }
.svc-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 641px)  { .svc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1025px) { .svc-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } }
.svc {
  display: flex; flex-direction: column; gap: 8px; height: 100%;
  background: var(--paper); border: 1px solid var(--line-l); border-radius: var(--radius);
  padding: 22px 20px; transition: transform .15s, border-color .15s, box-shadow .15s;
}
a.svc:hover { transform: translateY(-3px); border-color: var(--moss2); box-shadow: var(--shadow); }
.svc .ic { font-size: 24px; line-height: 1; }
.svc h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.05rem; }
.svc p { color: var(--mut); font-size: 0.96rem; }
.svc .go { margin-top: auto; padding-top: 8px; font-family: 'Archivo',sans-serif; font-weight: 700; font-size: 13px; color: var(--moss-deep); }
a.svc:hover .go { color: var(--moss2); }

/* ---------- Faixa de estatísticas (fundo night) ---------------------------- */
.statband { background: var(--night); color: var(--bone); }
.statband .grid { display: grid; grid-template-columns: 1fr; gap: 8px; text-align: center; }
@media (min-width: 641px) { .statband .grid { grid-template-columns: repeat(3, 1fr); } }
.statband .stat { padding: 22px 12px; }
.statband .stat + .stat { border-top: 1px solid var(--line-d); }
@media (min-width: 641px) { .statband .stat + .stat { border-top: none; border-left: 1px solid var(--line-d); } }
.statband b { display: block; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); color: #fff; letter-spacing: -0.03em; }
.statband span { display: block; margin-top: 6px; color: var(--sage); font-size: 0.98rem; }

/* ---------- Processo -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 641px) { .steps { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.step { background: var(--paper); border: 1px solid var(--line-l); border-radius: var(--radius); padding: 26px 22px; }
.step .n { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2rem; color: var(--moss2); line-height: 1; }
.step h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.15rem; margin: 12px 0 8px; }
.step p { color: var(--mut); font-size: 0.98rem; }

/* ---------- Clientes -------------------------------------------------------- */
.featured { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.chip {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-l); border-radius: 999px; padding: 10px 18px;
}
.client-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 18px; color: var(--mut); font-size: 0.95rem; }
@media (min-width: 641px)  { .client-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1025px) { .client-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.client-grid div { padding: 4px 0; }
.client-note { margin-top: 22px; font-size: 0.82rem; color: var(--mut); font-style: italic; }

/* ---------- FAQ ------------------------------------------------------------- */
#faq { background: var(--bone); }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { background: var(--paper); border: 1px solid var(--line-l); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 22px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.06rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--moss2); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 22px 22px; color: var(--mut); }

/* ---------- CTA final + Contato -------------------------------------------- */
.cta-final { background: var(--night); color: var(--bone); text-align: center; }
.cta-final h2 { color: #fff; font-weight: 900; font-size: clamp(1.9rem, 4.5vw, 3rem); }
.cta-final p { margin: 18px auto 0; max-width: 60ch; color: var(--bone); }
.cta-final .actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.contact-list { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; }
.contact-list a, .contact-list span { display: inline-flex; align-items: center; gap: 8px; color: var(--bone); font-weight: 500; min-height: 44px; }
.contact-list a:hover { color: var(--moss); }

/* ---------- Rodapé ---------------------------------------------------------- */
footer.site {
  background: #0d0e08; color: var(--bone); padding: 56px 0 32px;
  border-top: 1px solid var(--line-d);
}
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 641px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand img { height: 52px; width: auto; }
.foot-brand b { font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--bone); font-size: 1.05rem; }
footer.site .desc { color: var(--sage); font-size: 0.95rem; max-width: 42ch; }
footer.site h5 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); margin: 0 0 14px; }
footer.site nav a, footer.site .fcontact a, footer.site .fcontact span { display: block; padding: 6px 0; color: var(--bone); font-size: 0.95rem; }
footer.site nav a:hover, footer.site .fcontact a:hover { color: var(--moss); }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-d); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; color: var(--sage); font-size: 0.85rem; }
.foot-bottom a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a:hover { color: var(--moss); }

/* ---------- Animação de entrada (progressive enhancement) ------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =============================================================================
   PÁGINAS INTERNAS (artigo / serviço) — reutilizável por todas as páginas
   Ex.: /licenca-corpo-de-bombeiros/, /licenciamento-cetesb/, etc.
   ============================================================================= */

/* Hero compacto de página interna (fundo night) */
.hero.inner { padding: 44px 0 40px; }
.hero.inner::before { display: none; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--sage); margin-bottom: 20px; }
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--moss); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current] { color: var(--bone); }
.hero.inner h1 { font-weight: 900; font-size: clamp(1.85rem, 4vw, 2.7rem); color: #fff; max-width: 20ch; }
.hero.inner .sub { margin-top: 16px; font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--bone); max-width: 62ch; }
.page-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--sage); font-size: 13.5px; }
.page-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* Layout do artigo: conteúdo + índice lateral */
.article { padding: 48px 0 8px; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; }
@media (min-width: 1025px) {
  .article-grid { grid-template-columns: minmax(0, 1fr) 250px; gap: 56px; align-items: start; }
  .toc-wrap { order: 2; }
}

/* Índice (TOC) */
.toc { border: 1px solid var(--line-l); border-radius: var(--radius); padding: 20px; background: var(--paper); }
@media (min-width: 1025px) { .toc { position: sticky; top: 90px; } }
.toc h2 { font-family: 'Archivo', sans-serif; font-size: 11px !important; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss-deep); margin: 0 0 12px !important; }
.toc a { display: block; padding: 7px 0 7px 12px; font-size: 14px; color: var(--mut); border-left: 2px solid var(--line-l); }
.toc a:hover { color: var(--ink); border-color: var(--moss2); }

/* Prosa do artigo */
.prose { max-width: 760px; font-size: 1.06rem; }
.prose h2 { font-weight: 800; font-size: clamp(1.45rem, 3vw, 2rem); margin: 48px 0 16px; scroll-margin-top: 88px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-weight: 700; font-size: 1.22rem; margin: 30px 0 10px; }
.prose p { margin: 0 0 16px; color: #3b3a2e; }
.prose > ul, .prose > ol { margin: 0 0 16px; padding-left: 22px; color: #3b3a2e; }
.prose > ul { list-style: none; padding-left: 0; }
.prose > ul > li { position: relative; padding: 4px 0 4px 28px; }
.prose > ul > li::before { content: "✓"; position: absolute; left: 0; top: 4px; color: var(--moss2); font-weight: 800; }
.prose ol { list-style: decimal; padding-left: 24px; }
.prose ol li { padding: 4px 0; }
.prose a { color: var(--moss-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.prose a:hover { color: var(--moss2); }
.prose strong { color: var(--ink); }

/* TL;DR / principais pontos */
.tldr { border: 1px solid var(--line-l); border-left: 4px solid var(--moss2); border-radius: var(--radius); padding: 22px 24px; margin: 0 0 32px; background: var(--paper); }
.tldr h2 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.05rem !important; margin: 0 0 12px !important; letter-spacing: 0; }
.tldr ul { display: grid; gap: 9px; list-style: none; padding: 0; margin: 0; }
.tldr li { position: relative; padding-left: 26px; color: #3b3a2e; font-size: 0.98rem; }
.tldr li::before { content: "✓"; position: absolute; left: 0; color: var(--moss2); font-weight: 800; }

/* Callouts (aviso / dica) */
.callout { border-radius: var(--radius); padding: 18px 20px; margin: 24px 0; border: 1px solid var(--line-l); background: var(--bone); font-size: 0.98rem; }
.callout.warn { border-color: #d9c98a; background: #f6efd6; }
.callout.tip { border-left: 4px solid var(--moss2); background: var(--paper); }
.callout strong { display: block; margin-bottom: 4px; color: var(--ink); }

/* Tabelas de dados (comparativo / riscos) */
.table-scroll { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line-l); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 0.96rem; }
table.data caption { text-align: left; padding: 12px 14px; font-size: 0.8rem; color: var(--mut); }
table.data th, table.data td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line-l); vertical-align: top; }
table.data thead th { background: var(--ink); color: var(--paper); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:nth-child(even) { background: rgba(43,41,29,.03); }
table.data td:first-child { font-weight: 600; color: var(--ink); }

/* HowTo — passos numerados */
.howto { display: grid; gap: 14px; margin: 24px 0; padding: 0; list-style: none; counter-reset: step; }
.howto li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; border: 1px solid var(--line-l); border-radius: var(--radius); padding: 18px 20px; background: var(--paper); }
.howto li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--moss2); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.05rem; }
.howto li h3 { margin: 2px 0 6px; font-size: 1.08rem; }
.howto li p { margin: 0; color: var(--mut); font-size: 0.97rem; }

/* Caixa de CTA inline (para a página de vendas) */
.cta-box { background: var(--night); color: var(--bone); border-radius: 16px; padding: 34px 28px; margin: 44px 0; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(154,162,94,.18); }
.cta-box .eyebrow { color: var(--sage); }
.cta-box h2, .cta-box h3 { color: #fff; font-weight: 900; font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 10px 0 0; position: relative; }
.cta-box p { margin: 12px auto 0; max-width: 52ch; color: var(--bone); position: relative; }
.cta-box .actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }

/* Bloco de serviços relacionados (reaproveita .svc-grid / .svc) */
.related { background: var(--bone); }

/* Nota final / disclaimer */
.disclaimer { max-width: 760px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line-l); font-size: 0.86rem; color: var(--mut); font-style: italic; }

/* Autor / E-E-A-T */
.author { display: flex; align-items: center; gap: 14px; max-width: 760px; margin: 40px 0 0; padding: 18px 20px; border: 1px solid var(--line-l); border-radius: var(--radius); background: var(--paper); }
.author img { width: 52px; height: 52px; border-radius: 50%; flex: none; }
.author .who { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--ink); }
.author .who span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.9rem; color: var(--mut); margin-top: 2px; }

/* ---------- Movimento reduzido (acessibilidade) ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee-track { animation: none; transform: none; flex-wrap: wrap; justify-content: center; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc { transition: none; }
  /* Sem animação de destaque: todos os órgãos ficam legíveis e estáticos */
  .orgao { color: var(--bone); transition: none; }
}
