/* ============================================================
   instrucoes-opus5.denderson.ai
   Site standalone da aula "Ablação: reescreva seu CLAUDE.md para o Opus 5".

   Ancoragem de design (padrão dos sites que vão para a DM):
   - Paleta: agency.denderson.ai (preto quase puro + coral do Claude como
     único acento). Hex reais lidos do CSS servido daquele site.
   - Tipografia e nomes de token: estudomauricio.denderson.com, que é o
     mesmo design system do painel consultorias. Isso deixa os componentes
     da aula (infográfico, promptbox, recap, sublist) idênticos aos do
     painel sem reescrever uma linha de conteúdo.

   Regras da casa aplicadas: dark por padrão, cor sempre por token,
   zero gradiente decorativo, zero emoji, ícone só SVG inline,
   mobile-first conferido em 390px sem rolagem horizontal.
   ============================================================ */

:root {
  /* superfícies, do mais escuro ao mais claro */
  --bg:          #050505;
  --bg-2:        #08080a;
  --surface:     #0d0d10;
  --surface-2:   #131317;
  --terminal:    #0a0a0c;
  --terminal-2:  #0e0e11;

  --line:        rgba(255, 255, 255, 0.09);
  --line-soft:   rgba(255, 255, 255, 0.055);

  --ink:         #ededed;
  --ink-soft:    #b6b6b6;
  --ink-faint:   #7f7f7f;

  --coral:       #d97757;
  --coral-soft:  #e79274;
  --coral-press: #b85c40;
  --coral-ink:   #1a0d07;
  --esmeralda:   oklch(0.78 0.17 158);

  --maxw: 1080px;
  --radius: 14px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Bricolage Grotesque', ui-sans-serif, sans-serif;
  --font-body:    'Inter', ui-sans-serif, sans-serif;
  --font-serif:   'Newsreader', Georgia, serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --fa-serif:     var(--font-serif);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p { margin: 0; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--coral); color: var(--coral-ink); }

:focus-visible { outline: 2px solid var(--coral-soft); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--coral); color: var(--coral-ink);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
  padding: 12px 16px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 32px);
}

/* reveal no scroll, desligado sem JS e em prefers-reduced-motion */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.on { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal.on { transition: none; }
}

/* ============================= TOPBAR ============================= */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 62px;
}
.brandmark {
  display: inline-flex; align-items: center; gap: 11px; min-width: 0;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
}
.brandmark .glyph {
  width: 27px; height: 27px; flex: 0 0 auto; border-radius: 8px;
  border: 1px solid var(--line); background: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
}
.brandmark .glyph svg { width: 15px; height: 15px; display: block; }
.brandmark .soft { color: var(--ink-faint); }
.toplinks { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.toppill {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.toppill:hover { color: var(--ink); border-color: var(--coral); }
.topcta {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral-ink); background: var(--coral);
  border: 1px solid var(--coral); border-radius: 999px; padding: 9px 14px;
  white-space: nowrap;
  transition: background 0.16s var(--ease), border-color 0.16s var(--ease);
}
.topcta:hover { background: var(--coral-press); border-color: var(--coral-press); }
@media (max-width: 720px) {
  .brandmark { font-size: 0.58rem; letter-spacing: 0.14em; }
  .brandmark .soft { display: none; }
  .toppill { display: none; }
}
@media (max-width: 380px) { .brandmark span:not(.glyph) { display: none; } }

/* ============================= HERO ============================= */
.hero { padding: clamp(46px, 8vw, 96px) 0 clamp(26px, 4vw, 44px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.64rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--coral);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--coral); flex: 0 0 auto; }

.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 3.5rem); line-height: 1.03; letter-spacing: -0.035em;
  color: var(--ink); margin: 22px 0 0; max-width: 22ch; text-wrap: balance;
}
.hero .lead {
  margin-top: 22px; max-width: 66ch;
  font-size: clamp(1rem, 1.1vw, 1.09rem); line-height: 1.66; color: var(--ink-soft);
}

.deck { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.deck .eyebrow { margin-bottom: 18px; }
.deckline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.35rem, 2.9vw, 2rem); line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); max-width: 30ch; text-wrap: balance;
}
.decklead { margin-top: 18px; max-width: 66ch; font-size: 1rem; line-height: 1.68; color: var(--ink-soft); }

.anchor { margin-top: 34px; border-left: 3px solid var(--coral); padding: 6px 0 6px 22px; }
.anchor p {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.28rem, 2.6vw, 1.85rem); line-height: 1.28;
  color: var(--ink); letter-spacing: -0.01em; max-width: 26ch;
}
.anchor p .hl { color: var(--coral); font-style: normal; }
.anchor small {
  display: block; margin-top: 15px; font-family: var(--font-body); font-style: normal;
  font-size: 0.95rem; line-height: 1.62; color: var(--ink-faint); max-width: 64ch;
}

.facets { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.facet {
  display: inline-flex; align-items: center; gap: 8px; min-width: 0;
  font-weight: 500; font-size: 0.8rem; color: var(--ink-soft);
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 8px 14px 8px 8px;
}
.facet .fc-n {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.06em; color: var(--coral); flex: 0 0 auto;
  background: color-mix(in srgb, var(--coral) 13%, transparent);
  border-radius: 999px; padding: 3px 9px;
}
.facets-note { margin-top: 16px; max-width: 68ch; font-size: 0.94rem; line-height: 1.62; color: var(--ink-faint); }

/* ======================= REGRA DE SEÇÃO ======================= */
.secrule {
  border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 28px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.64rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
}
.secrule .rom {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1rem; color: var(--coral); letter-spacing: 0; text-transform: none;
  flex: 0 0 auto;
}
.secrule .mid { letter-spacing: 0.16em; }
.secrule .num { flex: 0 0 auto; }
@media (max-width: 760px) { .secrule .mid { display: none; } }

/* ========================= VÍDEO DA FONTE =========================
   Embed 16:9 fluido. A caixa manda na proporção, o iframe só preenche,
   então não existe altura fixa para estourar em tela estreita. */
.videobox { padding: clamp(30px, 4.5vw, 54px) 0 clamp(30px, 5vw, 56px); border-top: 1px solid var(--line-soft); }
.videoh {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.18rem, 2.4vw, 1.6rem); line-height: 1.12; letter-spacing: -0.028em;
  color: var(--ink); max-width: 30ch; text-wrap: balance; margin-bottom: 20px;
}
.videoframe {
  position: relative; width: 100%; max-width: 900px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--terminal); overflow: hidden;
}
.videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
/* fallback para navegador sem aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .videoframe { height: 0; padding-bottom: 56.25%; }
}
.videocap { margin-top: 15px; max-width: 68ch; font-size: 0.92rem; line-height: 1.66; color: var(--ink-faint); }
.videolink {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 9px;
  font-size: 0.92rem; color: var(--coral); font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--coral) 38%, transparent);
  padding-bottom: 2px; transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.videolink:hover { color: var(--coral-soft); border-bottom-color: var(--coral-soft); }
.videolink svg { width: 13px; height: 13px; flex: 0 0 auto; }

/* ============================= ÍNDICE ============================= */
.toc-wrap { background: var(--bg-2); border-block: 1px solid var(--line-soft); padding: clamp(34px, 5vw, 56px) 0; scroll-margin-top: 70px; }
.toclead { max-width: 68ch; font-size: 0.98rem; line-height: 1.66; color: var(--ink-soft); margin-bottom: 26px; }
.toc { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 760px) { .toc { grid-template-columns: 1fr; } }
.tocitem {
  display: flex; align-items: flex-start; gap: 14px; min-width: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 15px 18px;
  transition: border-color 0.16s var(--ease), background 0.16s var(--ease), transform 0.16s var(--ease);
}
.tocitem:hover { border-color: var(--coral); background: var(--surface-2); transform: translateY(-2px); }
.tocn {
  flex: 0 0 auto; font-family: var(--font-mono); font-weight: 700; font-size: 0.68rem;
  color: var(--coral); border: 1px solid var(--line); background: var(--bg);
  border-radius: 8px; padding: 4px 9px; margin-top: 2px;
}
.toctx { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.toct { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; letter-spacing: -0.012em; color: var(--ink); line-height: 1.24; }
.tocs { font-size: 0.85rem; line-height: 1.5; color: var(--ink-faint); overflow-wrap: anywhere; }

/* ============================= BLOCOS ============================= */
.aula { padding: clamp(38px, 6vw, 68px) 0; }
.fecho { padding: clamp(38px, 6vw, 68px) 0 clamp(52px, 7vw, 84px); background: var(--bg-2); border-top: 1px solid var(--line-soft); }

.bloco {
  border-top: 1px solid var(--line-soft);
  padding: clamp(30px, 4vw, 46px) 0 clamp(24px, 3vw, 34px);
  scroll-margin-top: 72px;
}
.bloco:first-of-type { border-top: 0; padding-top: 0; }

.bhead { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.bhx { min-width: 0; }
.phase-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%;
  background: var(--coral); color: var(--coral-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.88rem; line-height: 1;
}
.stag {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px;
}
.bhead h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 3.1vw, 2.15rem); line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); text-wrap: balance;
}
.standfirst {
  margin: 18px 0 4px; max-width: 68ch;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem); line-height: 1.5; color: var(--ink-soft);
}
.acbody { margin-top: 22px; }

.backtoc {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  transition: color 0.16s var(--ease);
}
.backtoc::before { content: ""; width: 16px; height: 1px; background: currentColor; }
.backtoc:hover { color: var(--coral); }

/* ===================== COMPONENTES DA AULA =====================
   Mesmos valores do CSS servido no painel, sem o prefixo de seção. */

.acbody p.what { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.62; margin-top: 4px; max-width: 72ch; overflow-wrap: anywhere; }
.acbody p.what b { color: var(--ink); font-weight: 700; }

.lesson { margin-top: 4px; }
.lesson .lblock { margin-top: 24px; }
.lesson .lblock:first-child { margin-top: 0; }
.lesson .lh {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 11px;
}
.lesson .lh::before { content: ""; width: 18px; height: 2px; background: var(--coral); border-radius: 2px; flex: 0 0 auto; transform: translateY(-4px); }
.lesson p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.68; margin-bottom: 12px; max-width: 70ch; }
.lesson p:last-child { margin-bottom: 0; }
.lesson p b { color: var(--ink); font-weight: 700; }
.lesson ul.dense { list-style: none; padding: 0; margin: 8px 0 12px; display: grid; gap: 9px; }
.lesson ul.dense li { position: relative; padding-left: 18px; font-size: 0.95rem; line-height: 1.58; color: var(--ink-soft); max-width: 70ch; overflow-wrap: anywhere; }
.lesson ul.dense li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.lesson ul.dense li b { color: var(--ink); font-weight: 700; }

/* sublist: o .sx mantém o item num único flex item. Sem isso cada <b> vira
   flex item próprio, a linha não quebra e o item estoura a largura no mobile
   (foi o bug de rolagem horizontal em 390px). */
.sublist { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.sublist li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.56; }
.sublist li .sn { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; color: var(--coral); border: 1px solid var(--line); border-radius: 7px; padding: 4px 9px; flex: 0 0 auto; background: var(--surface-2); }
.sublist li .sx { min-width: 0; flex: 1 1 auto; overflow-wrap: anywhere; }
.sublist li b { color: var(--ink); font-weight: 700; }

/* promptbox (terminal) */
.promptbox { margin: 26px 0 8px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--terminal-2); color: var(--ink); overflow: hidden; }
.promptbox .pbhead { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 13px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
.promptbox .pbtitle { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03em; color: var(--coral); }
.promptbox .pbtitle .pbico { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1; }
.promptbox .pbactions { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.promptbox .pbbtn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 0.74rem; border-radius: 999px; padding: 11px 15px; min-height: 42px; cursor: pointer; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05); color: var(--ink); transition: background 0.16s var(--ease), border-color 0.16s var(--ease), color 0.16s var(--ease); white-space: nowrap; }
.promptbox .pbbtn:hover { background: var(--coral); border-color: var(--coral); color: var(--coral-ink); }
.promptbox .pbbtn.copied { background: var(--esmeralda); border-color: var(--esmeralda); color: var(--bg); }
.promptbox .pbbtn svg { width: 13px; height: 13px; display: block; flex: 0 0 auto; }
.promptbox pre { margin: 0; padding: 18px; max-height: 360px; overflow: auto; background: var(--terminal); border: 0; -webkit-overflow-scrolling: touch; }
.promptbox pre code { font-family: var(--font-mono); font-size: 0.75rem; line-height: 1.66; color: var(--ink-soft); white-space: pre-wrap; overflow-wrap: anywhere; word-break: break-word; display: block; }
.promptbox .pbnote { padding: 12px 18px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.65rem; line-height: 1.55; color: var(--ink-faint); }
@media (max-width: 560px) {
  .promptbox .pbhead { flex-direction: column; align-items: flex-start; }
  .promptbox .pbactions { width: 100%; }
  .promptbox .pbactions .pbbtn { flex: 1 1 0; justify-content: center; }
}

/* par de ângulos */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 4px; }
.dual .ang { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: var(--surface); }
.dual .ang .angk { font-family: var(--font-mono); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.dual .ang .angk::before { content: ""; width: 16px; height: 1px; background: var(--coral); }
.dual .ang h4 { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.012em; color: var(--ink); margin: 0 0 8px; }
.dual .ang p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.58; margin: 0; }
@media (max-width: 680px) { .dual { grid-template-columns: 1fr; } }

/* grade de categorias */
.forms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 4px; }
.fcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 17px 19px; background: var(--surface); }
.fcard .fmeta { font-family: var(--font-mono); font-weight: 700; font-size: 0.57rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 9px; }
.fcard .ftit { font-family: var(--font-display); font-weight: 800; font-size: 0.96rem; letter-spacing: -0.012em; color: var(--ink); margin: 0 0 7px; }
.fcard p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; margin: 0; }
@media (max-width: 680px) { .forms { grid-template-columns: 1fr; } }

/* recap */
.recap { display: grid; gap: 12px; margin-top: 20px; }
.recap .rline { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 17px 21px; transition: transform 0.16s var(--ease), border-color 0.16s var(--ease); }
.recap .rline:hover { transform: translateY(-2px); border-color: var(--coral); }
.recap .rline .rtag { font-family: var(--font-display); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); white-space: nowrap; }
.recap .rline p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.58; margin: 0; }
.recap .rline p b { color: var(--ink); font-weight: 700; }
@media (max-width: 620px) { .recap .rline { grid-template-columns: 1fr; gap: 7px; } .recap .rline .rtag { white-space: normal; } }

/* ============================= BLOCO 9 ============================= */
.basecard {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); color: var(--ink-soft);
  padding: clamp(24px, 4vw, 46px); position: relative; scroll-margin-top: 72px;
}
.basecard .blabel { font-family: var(--font-mono); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.basecard .blabel::before { content: ""; width: 18px; height: 1px; background: var(--coral); flex: 0 0 auto; }
.basecard h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.45rem, 3.3vw, 2.3rem); letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px; color: var(--ink); text-wrap: balance; }
.basecard h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--coral); }
.basecard p.bp { color: var(--ink-soft); font-size: 1rem; line-height: 1.68; max-width: 66ch; margin-bottom: 20px; }
.basecard p.bp b { color: var(--ink); font-weight: 700; }

.dl-wrap { margin-top: 28px; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.012em;
  color: var(--coral-ink); background: var(--coral); border: 1px solid var(--coral);
  border-radius: var(--radius); padding: 16px 22px; min-height: 54px; cursor: pointer;
  text-align: left; line-height: 1.1;
  transition: transform 0.16s var(--ease), background 0.16s var(--ease), border-color 0.16s var(--ease);
}
.dl-btn:hover { transform: translateY(-2px); background: var(--coral-press); border-color: var(--coral-press); }
.dl-btn .dl-ic { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; background: rgba(26, 13, 7, 0.14); }
.dl-btn .dl-ic svg { width: 20px; height: 20px; display: block; }
.dl-btn .dl-tx { display: flex; flex-direction: column; gap: 4px; font-size: 1rem; min-width: 0; }
.dl-btn .dl-sub { font-family: var(--font-mono); font-weight: 700; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.78; }
.dl-note { margin-top: 13px; font-family: var(--font-mono); font-size: 0.66rem; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-faint); overflow-wrap: anywhere; }
.dl-alt { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--ink-faint); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color 0.16s var(--ease), border-color 0.16s var(--ease); }
.dl-alt:hover { color: var(--coral); border-color: var(--coral); }
.dl-alt svg { width: 13px; height: 13px; flex: 0 0 auto; }
@media (max-width: 560px) { .dl-btn { width: 100%; } }

/* princípio */
.principle { margin-top: 26px; border: 1px solid var(--coral); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--coral) 8%, transparent); padding: 22px 24px 22px 26px; position: relative; overflow: hidden; }
.principle::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--coral); }
.principle .pk { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: 11px; }
.principle .pk .di { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.05rem; line-height: 1; letter-spacing: 0; text-transform: none; }
.principle p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.66; margin: 0; max-width: 72ch; }
.principle p b { color: var(--ink); font-weight: 800; }

/* fontes */
.keep-rule { margin-top: 26px; border-top: 1px dashed var(--line); padding-top: 20px; }
.keep-rule .krh { font-family: var(--font-mono); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.keep-rule p.what { font-size: 0.88rem; line-height: 1.72; color: var(--ink-faint); max-width: 78ch; overflow-wrap: anywhere; }
.keep-rule p.what b { color: var(--ink-soft); }

/* ============================= RODAPÉ ============================= */
.sitefoot { border-top: 1px solid var(--line-soft); background: var(--bg); padding: clamp(30px, 4vw, 46px) 0 clamp(38px, 5vw, 56px); }
.footrow { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.fmark { font-family: var(--font-mono); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.fdot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }
.fnote { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; color: var(--ink-faint); }
.fsmall { margin-top: 14px; max-width: 76ch; font-size: 0.85rem; line-height: 1.66; color: var(--ink-faint); }

/* ==================== INFOGRÁFICO CONCEITUAL ====================
   Idêntico ao do painel: cor 100% derivada de --ac, que aponta para o
   coral. Zero gradiente, zero glow. */
.infographic {
  --ac: var(--coral);
  position: relative; display: flex; align-items: center; justify-content: center;
  margin: 4px 0 24px;
  padding: clamp(26px, 4vw, 36px) clamp(18px, 3vw, 30px) clamp(18px, 3vw, 26px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); overflow: hidden;
}
.infographic::before {
  content: attr(data-fig); position: absolute; top: 12px; left: 16px;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.56rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
}
.infographic .ico { width: 100%; max-width: 240px; height: auto; display: block; color: var(--ac); }
.infographic .fill-1 { fill: color-mix(in srgb, var(--ac) 14%, transparent); }
.infographic .fill-2 { fill: color-mix(in srgb, var(--ac) 22%, transparent); }
.infographic .fill-3 { fill: color-mix(in srgb, var(--ac) 32%, transparent); }
.infographic .stk { stroke: var(--ac); }
.infographic .stk-soft { stroke: var(--ac); opacity: 0.5; }
.infographic .fl { fill: var(--ac); }

@keyframes ab-pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.4; } }
@keyframes ab-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes ab-draw { to { stroke-dashoffset: 0; } }
@keyframes ab-drift { 0% { opacity: 0; transform: translate(0, 0); } 40% { opacity: 0.8; } 100% { opacity: 0; transform: translate(14px, 10px); } }

.infographic .anim-pulse { animation: ab-pulse 3.2s var(--ease) infinite; }
.infographic .anim-float { animation: ab-float 4s var(--ease) infinite; transform-box: fill-box; }
.infographic .anim-draw { stroke-dasharray: 300; stroke-dashoffset: 300; animation: ab-draw 3.2s var(--ease) 0.2s forwards; }
.infographic .anim-drift-1 { animation: ab-drift 3.6s var(--ease) infinite; }
.infographic .anim-drift-2 { animation: ab-drift 3.6s var(--ease) 0.9s infinite; }
.infographic .anim-drift-3 { animation: ab-drift 3.6s var(--ease) 1.6s infinite; }

@media (prefers-reduced-motion: reduce) {
  .infographic * { animation: none !important; }
  .infographic .anim-draw { stroke-dashoffset: 0; }
  .tocitem, .recap .rline, .dl-btn { transition: none; }
}
