:root {
  --paper: #FAFAF7;
  --ink: #16181D;
  --muted: #6E7278;
  --line: #E4E2DB;
  --accent: #D42B1F;
  --c-federal: #1E40AF;
  --c-if: #0F766E;
  --c-estadual: #B45309;
  --c-municipal: #8A8F98;
}
[data-theme="dark"] {
  --paper: #101215;
  --ink: #E9E7E2;
  --muted: #9BA0A6;
  --line: #262A30;
  --accent: #FF5A4E;
  --c-federal: #7FA8F9;
  --c-if: #4FD0C0;
  --c-estadual: #F2B65A;
  --c-municipal: #6B7078;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(212, 43, 31, .16); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.topo { border-bottom: 1px solid var(--line); }
.topo-in { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 30px 0 22px; }
.marca { display: flex; gap: 14px; align-items: flex-start; }
.marca-quadrado { width: 14px; height: 14px; background: var(--accent); margin-top: 10px; flex: none; }
h1 { margin: 0; font-size: clamp(1.5rem, .9rem + 2vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; }
h1 .e { font-style: italic; font-weight: 500; color: var(--accent); }
.sub { margin: 8px 0 0; color: var(--muted); font-size: .95rem; max-width: 58ch; }
.topo-acao { text-align: right; flex: none; }
.stats { margin: 0 0 10px; font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.stats strong { color: var(--ink); font-weight: 750; }

#btn-tema { border: 1px solid var(--line); background: transparent; color: var(--ink); width: 38px; height: 38px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
#btn-tema:hover { border-color: var(--ink); }
#btn-tema svg { width: 16px; height: 16px; }

.ferramentas { padding: 20px 0 4px; }
.ferramentas-linha { display: flex; flex-wrap: wrap; gap: 12px 14px; align-items: center; }
.busca-wrap { position: relative; flex: 1 1 300px; max-width: 420px; }
#busca { width: 100%; padding: 10px 14px; border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; font-size: .9rem; }
#busca::placeholder { color: var(--muted); }
#busca:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
#resultados { position: absolute; top: calc(100% + 6px); left: 0; right: 0; margin: 0; padding: 6px; list-style: none; background: var(--paper); border: 1px solid var(--line); z-index: 40; max-height: 330px; overflow: auto; }
#resultados li { margin: 0; }
#resultados li:empty::after { content: "Nada encontrado."; display: block; padding: 8px 10px; color: var(--muted); font-size: .85rem; }
#resultados button { display: flex; gap: 10px; align-items: baseline; width: 100%; text-align: left; background: none; border: 0; padding: 8px 10px; cursor: pointer; color: var(--ink); font: inherit; font-size: .85rem; }
#resultados button:hover { background: var(--line); }
#resultados strong { font-variant-numeric: tabular-nums; flex: none; }
#resultados span { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.chk { display: inline-flex; gap: 7px; align-items: center; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; user-select: none; }
.chk input { accent-color: var(--accent); width: 14px; height: 14px; margin: 0; }
.filtro-uf { padding: 9px 12px; border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; font-size: .85rem; }
#btn-reset { padding: 9px 14px; border: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
#btn-reset:hover { border-color: var(--ink); color: var(--ink); }
#contagem { font-size: .76rem; color: var(--muted); font-variant-numeric: tabular-nums; margin-left: auto; }

.lenda { display: flex; flex-wrap: wrap; gap: 10px 30px; padding: 16px 0 6px; font-size: .78rem; color: var(--muted); }
.lenda-grupo { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
.lenda-tit { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 750; color: var(--ink); }
.leg-item { display: inline-flex; align-items: center; gap: 7px; }
.leg-ponto { width: 9px; height: 9px; border-radius: 50%; }
.leg-federal { background: var(--c-federal); }
.leg-if { background: var(--c-if); }
.leg-estadual { background: var(--c-estadual); }
.leg-municipal { background: transparent; border: 1px dashed var(--c-municipal); }
.leg-linha { width: 22px; height: 0; border-top: 2px solid var(--ink); display: inline-block; opacity: .8; }
.leg-linha.avalia { border-top-style: dashed; border-top-width: 1.5px; }
.leg-linha.fomenta { border-top-style: dotted; }
.leg-linha.integra { border-top-width: 1px; opacity: .55; }

.mapa { padding: 6px 0 0; }
.roda-wrap { position: relative; }
#roda { display: block; width: 100%; height: auto; }
.dica { font-size: .78rem; color: var(--muted); margin: 4px 0 0; }
@media (max-width: 880px) {
  .roda-wrap { overflow-x: auto; }
  #roda { min-width: 760px; }
}
.tip { position: absolute; pointer-events: none; background: var(--ink); color: var(--paper); font-size: .76rem; padding: 6px 10px; max-width: 300px; z-index: 30; box-shadow: 0 2px 10px rgba(0, 0, 0, .18); }

#roda { touch-action: none; cursor: grab; }
#roda.arrastando { cursor: grabbing; }
.zoom-ctl { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 4px; z-index: 5; }
.zoom-ctl button { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink); font: inherit; font-size: 1.05rem; cursor: pointer; line-height: 1; display: flex; align-items: center; justify-content: center; }
.zoom-ctl button:hover { border-color: var(--ink); }

.modo-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.modo-toggle button { border: 0; background: transparent; color: var(--muted); font: inherit; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; padding: 8px 14px; cursor: pointer; }
.modo-toggle button.ativo { background: var(--ink); color: var(--paper); }

.mapa-uf { margin-top: 6px; overflow-x: auto; }
.mapa-nota { color: var(--muted); font-size: .78rem; margin: 0 0 14px; }
.uf-grid { display: grid; grid-template-columns: repeat(9, 1fr); grid-auto-rows: minmax(108px, auto); gap: 6px; min-width: 660px; }
.uf-cel { border: 1px solid var(--line); background: transparent; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px 4px; cursor: pointer; font: inherit; min-height: 108px; transition: opacity .18s ease, border-color .18s ease; }
.uf-cel:hover { border-color: var(--ink); }
.uf-cel.off { opacity: .22; }
.uf-bolha { border-radius: 50%; display: block; }
.uf-sigla { font-size: .78rem; font-weight: 700; color: var(--ink); letter-spacing: .04em; }
.uf-info { font-size: .68rem; color: var(--muted); text-align: center; line-height: 1.35; }

.tour { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); width: min(680px, 92vw); background: var(--ink); color: var(--paper); border-radius: 12px; padding: 14px 18px; z-index: 60; box-shadow: 0 6px 24px rgba(0, 0, 0, .25); }
.tour p { margin: 0 0 10px; font-size: .88rem; line-height: 1.5; }
.tour-controles { display: flex; gap: 8px; align-items: center; }
.tour-controles button { border: 1px solid color-mix(in srgb, var(--paper) 35%, transparent); background: transparent; color: var(--paper); font: inherit; font-size: .8rem; border-radius: 999px; padding: 5px 14px; cursor: pointer; }
.tour-controles button:hover { border-color: var(--paper); }
#tour-pos { font-size: .72rem; opacity: .7; }

.hist { width: 100%; height: auto; margin-top: 6px; display: block; }
.hist-linha { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hist-area { fill: color-mix(in srgb, var(--accent) 12%, transparent); stroke: none; }
.hist circle { fill: var(--accent); }
.hist-max { font-size: 9px; fill: var(--muted); font-weight: 600; }
.hist-ano { font-size: 9px; fill: var(--muted); }
.hist-fim { font-size: 10px; fill: var(--accent); font-weight: 700; }
.hist-cli { cursor: pointer; }
.hist-sel { fill: none; stroke: var(--accent); stroke-width: 2; }
.hist-sel-linha { stroke: var(--accent); stroke-width: 1; stroke-dasharray: 2 3; opacity: .5; }
.hist-sel-ano { fill: var(--accent); font-size: 10px; font-weight: 700; }

.orc-ano-sel { display: flex; align-items: center; gap: 10px; margin: 4px 0 10px; }
.orc-ano-sel label { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.orc-ano-sel input[type=range] { flex: 1; min-width: 0; accent-color: var(--accent); }
.orc-ano-val { font-weight: 700; font-size: .95rem; min-width: 3.2em; text-align: right; font-variant-numeric: tabular-nums; }

.guide { fill: none; stroke: var(--line); stroke-width: 1; }
.edge { fill: none; stroke: var(--ink); opacity: .14; pointer-events: none; transition: opacity .18s ease, stroke .18s ease; }
.rel-mantem, .rel-supervisiona { stroke-width: 1.1; }
.rel-avalia { stroke-dasharray: 3 3.4; stroke-width: .9; opacity: .12; }
.rel-fomenta { stroke-dasharray: 1.4 3.2; stroke-width: .9; opacity: .12; }
.rel-integra { stroke-width: .75; opacity: .2; }
.edge.dim { opacity: .03; }
.edge.off { opacity: .025; }
.edge.hl { stroke: var(--accent); opacity: .95; stroke-width: 1.6; }
.node { transition: opacity .18s ease; }
.node .dot { fill: var(--ink); cursor: pointer; }
.tipo-federal .dot { fill: var(--c-federal); }
.tipo-instituto-federal .dot { fill: var(--c-if); }
.tipo-estadual .dot { fill: var(--c-estadual); }
.tipo-municipal .dot { fill: transparent; stroke: var(--c-municipal); stroke-width: 1.4; stroke-dasharray: 2.6 2.4; }
.node .label { fill: var(--ink); font-size: 11px; font-weight: 550; letter-spacing: .02em; pointer-events: none; }
.node .hub-label { font-size: 12.5px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.node .centro-label { fill: var(--paper); font-weight: 800; font-size: 13px; letter-spacing: .1em; pointer-events: none; }
.node.dim { opacity: .1; }
.node.off { opacity: .12; }
.node.hl circle.dot { stroke: var(--accent); stroke-width: 2.2; }
.node.hl .label { font-weight: 750; }

.ficha { position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 94vw); background: var(--paper); border-left: 1px solid var(--line); padding: 26px; overflow-y: auto; z-index: 60; box-shadow: -12px 0 32px rgba(0, 0, 0, .08); }
#ficha-fechar { position: absolute; top: 16px; right: 16px; border: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; padding: 6px 10px; cursor: pointer; }
#ficha-fechar:hover { color: var(--ink); border-color: var(--ink); }
.badge { display: inline-block; font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; padding: 3px 8px; border: 1px solid currentColor; }
.badge.tipo-federal { color: var(--c-federal); }
.badge.tipo-instituto-federal { color: var(--c-if); }
.badge.tipo-estadual { color: var(--c-estadual); }
.badge.tipo-municipal, .badge.tipo-governo, .badge.tipo-associacao, .badge.tipo-centro { color: var(--muted); }
.ficha-meta { margin: 4px 0 12px; }
.ficha-uf { color: var(--muted); font-size: .85rem; font-variant-numeric: tabular-nums; }
.ficha h2 { margin: 0 0 4px; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; padding-right: 92px; }
.ficha-nome { margin: 0 0 12px; color: var(--muted); font-size: .95rem; }
.ficha-site { margin: 0 0 4px; }
.ficha-site a { color: var(--accent); font-size: .85rem; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.ficha-site a:hover { color: var(--ink); }
.ficha-link { border: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-size: .72rem; padding: 3px 10px; border-radius: 999px; cursor: pointer; margin-left: 8px; }
.ficha-link:hover { border-color: var(--ink); color: var(--ink); }

.orc-contexto { font-size: .78rem; color: var(--muted); margin: 4px 0 10px; line-height: 1.5; }
.compara-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compara-cols h3 { margin-top: 6px; }
@media (max-width: 720px) { .compara-cols { grid-template-columns: 1fr; } }

.compara-bar { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); width: min(560px, 92vw); background: var(--ink); color: var(--paper); border-radius: 999px; padding: 10px 16px; display: flex; gap: 10px; align-items: center; z-index: 58; box-shadow: 0 4px 18px rgba(0, 0, 0, .22); }
.compara-bar span { flex: 1; font-size: .8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compara-bar button { border: 1px solid color-mix(in srgb, var(--paper) 35%, transparent); background: transparent; color: var(--paper); font: inherit; font-size: .75rem; border-radius: 999px; padding: 5px 12px; cursor: pointer; }
.compara-bar button:disabled { opacity: .45; cursor: not-allowed; }

@media print {
  body { background: #fff; color: #000; }
  body > *:not(#ficha) { display: none !important; }
  #ficha { position: static; width: auto; height: auto; max-height: none; overflow: visible; border: 0; box-shadow: none; padding: 0; }
  #ficha-fechar, .ficha-link, .c-tip { display: none !important; }
  .ficha h2 { margin-top: 4px; }
}
.ficha-desc { color: var(--muted); font-size: .9rem; }
.ficha h3 { margin: 24px 0 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; border-top: 1px solid var(--line); padding-top: 16px; }
.ficha-rels { margin: 0; padding: 0; list-style: none; }
.ficha-rels li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .88rem; display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; }
.ficha-rels li:last-child { border-bottom: 0; }
.ficha-rels strong { font-weight: 700; }
.ficha-orc { width: 100%; border-collapse: collapse; font-size: .88rem; margin-bottom: 8px; }
.ficha-orc .orc-ano { padding: 10px 0 2px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.ficha-orc td.k { color: var(--muted); padding: 3px 0; }
.ficha-orc td.v { text-align: right; padding: 3px 0; font-variant-numeric: tabular-nums; font-weight: 600; }
.ficha-fonte { margin: 0; font-size: .78rem; color: var(--muted); }
.ficha-fonte a { color: inherit; border-bottom: 1px solid currentColor; text-decoration: none; }
#btn-orc { border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; font-size: .78rem; padding: 7px 14px; border-radius: 999px; cursor: pointer; }
#btn-orc strong { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
#btn-orc:hover, #btn-tour:hover { border-color: var(--ink); }
.topo-botoes { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
#btn-tour { border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; font-size: .78rem; padding: 7px 14px; border-radius: 999px; cursor: pointer; }

#btn-menu { border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; font-size: .78rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
#btn-menu:hover { border-color: var(--ink); }
#btn-menu svg { width: 15px; height: 15px; }

.menu-veu { position: fixed; inset: 0; background: rgba(16, 18, 21, .45); z-index: 70; }
.menu-painel { position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 94vw); background: var(--paper); border-left: 1px solid var(--line); overflow-y: auto; z-index: 80; box-shadow: -12px 0 32px rgba(0, 0, 0, .14); }
.menu-cabecalho { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 24px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--paper); z-index: 1; }
.menu-cabecalho h2 { margin: 0; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.menu-sub { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }
#menu-fechar { border: 1px solid var(--line); background: transparent; color: var(--muted); width: 38px; height: 38px; flex: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; }
#menu-fechar:hover { color: var(--ink); border-color: var(--ink); }
#menu-fechar svg { width: 16px; height: 16px; }
.menu-conteudo { padding: 10px 24px 30px; }
.menu-secao { margin: 22px 0 6px; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-weight: 700; }
.menu-item { display: block; width: 100%; text-align: left; background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); font: inherit; padding: 12px 10px 13px; cursor: pointer; text-decoration: none; }
.menu-item:hover { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.menu-item strong { display: block; font-size: .95rem; font-weight: 700; }
.menu-item span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.menu-rodape { margin: 26px 0 0; padding: 14px 10px 0; border-top: 1px solid var(--line); font-size: .78rem; color: var(--muted); }

.orc-rank { color: var(--muted); font-size: .8rem; margin: 4px 0 10px; }
.orc-exec { padding-top: 4px; }
.orc-exec-bar { display: flex; height: 14px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); background: repeating-linear-gradient(45deg, var(--line), var(--line) 3px, transparent 3px, transparent 7px); }
.orc-exec-bar .seg { display: block; height: 100%; }
.seg-pago { background: var(--accent); }
.seg-liq { background: color-mix(in srgb, var(--accent) 45%, transparent); }
.seg-emp { background: color-mix(in srgb, var(--accent) 18%, transparent); }
.orc-exec-leg { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .7rem; color: var(--muted); margin-top: 6px; }
.orc-exec-leg i, .orc-leg i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; margin-right: 4px; }
.pt-pago { background: var(--accent); }
.pt-liq { background: color-mix(in srgb, var(--accent) 45%, transparent); }
.pt-emp { background: color-mix(in srgb, var(--accent) 18%, transparent); }
.pt-resto { background: repeating-linear-gradient(45deg, var(--line), var(--line) 2px, transparent 2px, transparent 5px); border: 1px solid var(--line); }
.c-bar { height: 5px; background: var(--line); border-radius: 3px; margin-top: 5px; overflow: hidden; }
.c-bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.c-bar .bar-outros { background: var(--muted); }
.orc-compo { display: grid; grid-template-columns: 1fr auto; gap: 1px 10px; padding: 6px 0 7px; border-bottom: 1px solid var(--line); align-items: baseline; }
.orc-compo .c-k { font-size: .85rem; }
.orc-compo .c-v { font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; text-align: right; }
.orc-compo .c-bar { grid-column: 1 / -1; margin-top: 2px; }
.orc-acoes { list-style: none; margin: 0; padding: 0; }
.orc-acoes li { padding: 7px 0 8px; border-bottom: 1px solid var(--line); }
.orc-acoes .linha, .orc-lista .linha { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.orc-acoes .a-nome { font-size: .82rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orc-acoes .a-v { font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.orc-big { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 2px; }
.orc-sub { color: var(--muted); font-size: .8rem; margin: 0 0 6px; }
.orc-stack { display: flex; height: 18px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); margin: 8px 0; }
.orc-stack span { display: block; height: 100%; }
.orc-leg { display: flex; flex-direction: column; gap: 4px; font-size: .78rem; color: var(--ink); margin-bottom: 4px; }
.orc-leg i { vertical-align: -1px; }
.h3-min { margin-top: 14px; }
.orc-lista { list-style: none; margin: 0; padding: 0; }
.orc-lista li { padding: 6px 0 7px; }
.orc-lista .l-nome { font-size: .82rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orc-lista .l-v { font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.rel-nome { color: var(--accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.rel-norma { color: var(--muted); font-size: .78rem; flex-basis: 100%; }
.rel-resumo { color: var(--muted); font-size: .85rem; }

.sobre { border-top: 1px solid var(--line); margin-top: 44px; padding: 38px 0 8px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
@media (max-width: 880px) { .sobre { grid-template-columns: 1fr; gap: 26px; } }
.sobre h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 12px; }
.sobre p, .sobre li { font-size: .92rem; color: var(--muted); }
.sobre .nota { border-left: 2px solid var(--accent); padding-left: 14px; }
.sobre ul { margin: 8px 0 0; padding-left: 18px; }
.sobre a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 2px; }

.rodape { border-top: 1px solid var(--line); margin-top: 44px; padding: 24px 24px 44px; font-size: .8rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.rodape a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 2px; }
