:root {
  --fundo: #f3f5f9;
  --superficie: #ffffff;
  --superficie-2: #eef2f8;
  --borda: #dde3ec;
  --tinta: #0f1728;
  --tinta-2: #4b5669;
  --acento: #1d4ed8;
  --acento-forte: #1e40af;
  --acento-suave: #dbe6ff;
  --sobre-acento: #ffffff;
  --ok: #15803d;
  --ok-suave: #dcfce7;
  --erro: #b91c1c;
  --erro-suave: #fee2e2;
  --alerta: #a16207;
  --alerta-suave: #fef3c7;
  --sombra: 0 1px 2px rgb(15 23 40 / 6%), 0 6px 20px rgb(15 23 40 / 6%);
  --raio: 16px;
  --nav: 68px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --fundo: #0b1020;
    --superficie: #141b2e;
    --superficie-2: #1b2440;
    --borda: #28324d;
    --tinta: #eef2fb;
    --tinta-2: #a4afc5;
    --acento: #6d9bff;
    --acento-forte: #9bbcff;
    --acento-suave: #1c2b55;
    --sobre-acento: #0b1020;
    --ok: #4ade80;
    --ok-suave: #12301f;
    --erro: #f87171;
    --erro-suave: #3a1519;
    --alerta: #fbbf24;
    --alerta-suave: #372a0c;
    --sombra: 0 1px 2px rgb(0 0 0 / 30%), 0 6px 20px rgb(0 0 0 / 25%);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --fundo: #0b1020; --superficie: #141b2e; --superficie-2: #1b2440; --borda: #28324d;
  --tinta: #eef2fb; --tinta-2: #a4afc5; --acento: #6d9bff; --acento-forte: #9bbcff;
  --acento-suave: #1c2b55; --sobre-acento: #0b1020; --ok: #4ade80; --ok-suave: #12301f; --erro: #f87171;
  --erro-suave: #3a1519; --alerta: #fbbf24; --alerta-suave: #372a0c; color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fundo);
  color: var(--tinta);
  font: 16px/1.45 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  padding-bottom: calc(var(--nav) + env(safe-area-inset-bottom) + 16px);
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1 { font-size: 1.45rem; }
h2 { font-size: 1.1rem; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* topo */
.topo {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; padding-top: calc(12px + env(safe-area-inset-top));
  background: color-mix(in srgb, var(--fundo) 88%, transparent);
  backdrop-filter: blur(10px);
}
.marca { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; }
.marca-icone { width: 30px; height: 30px; }
.marca-icone rect { fill: var(--acento); }
.marca-icone path { fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.pilula {
  font-size: .78rem; font-weight: 600; padding: 4px 10px; border-radius: 99px;
  background: var(--superficie-2); color: var(--tinta-2); white-space: nowrap;
}
.pilula.ok { background: var(--ok-suave); color: var(--ok); }
.pilula.alerta { background: var(--alerta-suave); color: var(--alerta); }

main { max-width: 560px; margin: 0 auto; padding: 4px 16px 16px; }
.aba { display: grid; gap: 14px; }

.aviso {
  max-width: 560px; margin: 4px auto 8px; padding: 12px 14px; border-radius: 12px;
  background: var(--alerta-suave); color: var(--tinta); font-size: .92rem;
  width: calc(100% - 32px);
}
.aviso b { color: var(--alerta); }

.cartao {
  background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--raio);
  padding: 16px; box-shadow: var(--sombra); display: grid; gap: 10px; min-width: 0;
}
.cartao.destaque { text-align: center; justify-items: center; padding: 22px 16px; }
.sutil { color: var(--tinta-2); margin: 0; font-size: .93rem; }
.titulo-secao { display: flex; align-items: baseline; justify-content: space-between; padding-top: 6px; }
.rodape { text-align: center; color: var(--tinta-2); font-size: .8rem; margin: 8px 0 0; }

/* botões */
.botao {
  appearance: none; border: 0; border-radius: 12px; padding: 12px 16px; min-height: 46px;
  font-weight: 650; cursor: pointer; transition: transform .12s ease, background .15s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.botao:active { transform: scale(.98); }
.botao:disabled { opacity: .5; cursor: not-allowed; }
.botao.primario { background: var(--acento); color: var(--sobre-acento); }
.botao.secundario { background: var(--superficie-2); color: var(--tinta); }
.botao.perigo { background: var(--erro); color: var(--sobre-acento); }
.botao.tracejado { background: transparent; border: 2px dashed var(--borda); color: var(--acento); }
.botao.largo { width: 100%; }
.botao.grande { min-height: 56px; font-size: 1.08rem; }
.link-acao { background: none; border: 0; color: var(--acento); font-weight: 600; padding: 6px; cursor: pointer; }
.dupla { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.arquivo { position: relative; overflow: hidden; }
.arquivo input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.barra-gravar {
  position: sticky; bottom: calc(var(--nav) + env(safe-area-inset-bottom) + 10px); z-index: 5;
}
.barra-gravar .botao { box-shadow: 0 8px 24px color-mix(in srgb, var(--acento) 35%, transparent); }

/* opções */
.opcao {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 12px;
  background: var(--superficie); border: 1px solid var(--borda); cursor: pointer;
}
.opcao input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--acento); flex: none; }
.opcao span { display: grid; gap: 2px; }
.opcao small { color: var(--tinta-2); font-size: .85rem; }
.opcao.perigo input { accent-color: var(--erro); }
.opcao.perigo:has(input:checked) { border-color: var(--erro); background: var(--erro-suave); }

/* registros */
.lista { display: grid; gap: 8px; }
.item {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
  background: var(--superficie); border: 1px solid var(--borda); border-radius: 14px; padding: 10px 10px 10px 12px;
  min-width: 0;
}
.item .emoji {
  width: 40px; height: 40px; border-radius: 10px; background: var(--superficie-2);
  display: grid; place-items: center; font-size: 1.3rem;
}
.item .texto { min-width: 0; cursor: pointer; }
.item .texto b { display: block; font-size: .95rem; }
.item .texto span {
  display: block; color: var(--tinta-2); font-size: .86rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.item .acoes { display: flex; gap: 2px; }
.icone-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 0; background: transparent; color: var(--tinta-2);
  display: grid; place-items: center; cursor: pointer; font-size: 1.05rem;
}
.icone-btn:active { background: var(--superficie-2); }
.icone-btn svg.x { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.vazio {
  text-align: center; color: var(--tinta-2); padding: 22px 12px; border-radius: var(--raio);
  background: var(--superficie); border: 1px solid var(--borda); display: grid; gap: 12px;
}
.atalhos { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  border: 1px solid var(--borda); background: var(--superficie-2); border-radius: 99px;
  padding: 8px 12px; font-size: .9rem; font-weight: 600; cursor: pointer;
}

/* medidor de espaço */
.medidor { display: grid; gap: 8px; }
.medidor-topo { display: flex; justify-content: space-between; font-size: .9rem; color: var(--tinta-2); }
.medidor-topo b { color: var(--tinta); }
.chip-linha { display: grid; grid-template-columns: 76px 1fr 64px; align-items: center; gap: 10px; font-size: .84rem; }
.barra { height: 8px; background: var(--superficie-2); border-radius: 99px; overflow: hidden; }
.barra i { display: block; height: 100%; background: var(--ok); border-radius: 99px; }
.barra.cheia i { background: var(--erro); }
.chip-linha .num { text-align: right; color: var(--tinta-2); }
.chip-linha .num.nao { color: var(--erro); font-weight: 650; }

/* leitura */
.campos-lidos { display: grid; gap: 6px; margin: 0; }
.campos-lidos div { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; }
.campos-lidos dt { color: var(--tinta-2); }
.campos-lidos dd { margin: 0; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .88em; }
.registro-lido { border-top: 1px solid var(--borda); padding-top: 10px; display: grid; gap: 4px; min-width: 0; }
.registro-lido .etiqueta {
  justify-self: start; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--acento); background: var(--acento-suave); padding: 2px 8px; border-radius: 6px;
}
.registro-lido .conteudo { overflow-wrap: anywhere; white-space: pre-wrap; }
.registro-lido a { color: var(--acento); }
.registro-lido small { color: var(--tinta-2); overflow-wrap: anywhere; }
.selo-ok { color: var(--ok); font-weight: 700; }

/* ondas */
.ondas-mini, .ondas { position: relative; display: grid; place-items: center; }
.ondas-mini { width: 76px; height: 76px; margin-bottom: 4px; }
.ondas { width: 160px; height: 160px; margin: 0 auto 8px; }
.ondas-mini span, .ondas span {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--acento); opacity: 0;
}
.ondas-mini i, .ondas i {
  width: 38%; height: 38%; border-radius: 30%; background: var(--acento);
  box-shadow: 0 0 0 6px var(--acento-suave);
}
.lendo .ondas-mini span, .ondas span { animation: onda 2.1s ease-out infinite; }
.ondas-mini span:nth-child(2), .ondas span:nth-child(2) { animation-delay: .7s; }
.ondas-mini span:nth-child(3), .ondas span:nth-child(3) { animation-delay: 1.4s; }
@keyframes onda { from { transform: scale(.35); opacity: .9; } to { transform: scale(1); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .lendo .ondas-mini span, .ondas span { animation: none; opacity: .35; transform: scale(.8); }
}

.aproxime {
  position: fixed; inset: 0; z-index: 60; display: grid; place-items: end center;
  background: rgb(5 10 25 / 55%); padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.aproxime-caixa {
  width: 100%; max-width: 480px; background: var(--superficie); border-radius: 24px; padding: 24px 18px 18px;
  text-align: center; display: grid; gap: 8px; animation: sobe .22s ease-out;
}
.aproxime-caixa p { color: var(--tinta-2); margin: 0 0 8px; white-space: pre-line; overflow-wrap: anywhere; }
.aproxime.sucesso .ondas i { background: var(--ok); box-shadow: 0 0 0 6px var(--ok-suave); }
.aproxime.sucesso .ondas span { border-color: var(--ok); }
@keyframes sobe { from { transform: translateY(30px); opacity: 0; } }

/* navegação */
.navegacao {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--superficie); border-top: 1px solid var(--borda);
  padding-bottom: env(safe-area-inset-bottom);
}
.navegacao button {
  position: relative; height: var(--nav); border: 0; background: none; color: var(--tinta-2);
  display: grid; justify-items: center; align-content: center; gap: 3px; font-size: .78rem; font-weight: 600; cursor: pointer;
}
.navegacao svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.navegacao svg circle { fill: currentColor; stroke: none; }
.navegacao button.ativo { color: var(--acento); }
.navegacao button.ativo::before {
  content: ""; position: absolute; top: 0; left: 30%; right: 30%; height: 3px; border-radius: 0 0 3px 3px; background: var(--acento);
}
.navegacao em {
  position: absolute; top: 8px; left: calc(50% + 8px); font-style: normal; font-size: .68rem; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 99px; background: var(--acento); color: var(--sobre-acento); display: grid; place-items: center;
}

/* folhas (dialog) */
.folha {
  border: 0; padding: 0; margin: auto auto 0; width: 100%; max-width: 560px; max-height: 92dvh;
  border-radius: 22px 22px 0 0; background: var(--superficie); color: var(--tinta);
}
.folha::backdrop { background: rgb(5 10 25 / 55%); }
.folha[open] { animation: sobe .22s ease-out; }
@media (min-width: 600px) { .folha { margin: auto; border-radius: 22px; } }
.folha-corpo { padding: 18px 16px calc(18px + env(safe-area-inset-bottom)); display: grid; gap: 14px; }
.folha-topo { display: flex; align-items: center; gap: 12px; }
.folha-topo h2 { flex: 1; }
.folha-topo .emoji { font-size: 1.6rem; }
.grupo-titulo { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--tinta-2); font-weight: 700; margin-top: 4px; }
.grade-tipos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tipo {
  text-align: left; border: 1px solid var(--borda); background: var(--superficie-2); border-radius: 14px;
  padding: 12px; display: grid; gap: 2px; cursor: pointer; min-width: 0;
}
.tipo b { font-size: .95rem; }
.tipo small { color: var(--tinta-2); font-size: .8rem; line-height: 1.3; }

.campo { display: grid; gap: 6px; }
.campo > span { font-weight: 600; font-size: .92rem; }
.campo small { color: var(--tinta-2); font-size: .83rem; }
.campo input, .campo select, .campo textarea {
  width: 100%; font-size: 16px; padding: 12px; border-radius: 12px; border: 1px solid var(--borda);
  background: var(--fundo); min-height: 48px;
}
.campo textarea { min-height: 96px; resize: vertical; }
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: 2px solid var(--acento); outline-offset: 1px; border-color: transparent; }
.linha-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.erro-form { color: var(--erro); font-weight: 600; font-size: .9rem; margin: 0; }
.previa { font-size: .85rem; color: var(--tinta-2); background: var(--superficie-2); padding: 10px 12px; border-radius: 10px; overflow-wrap: anywhere; }

/* abas segmentadas */
.segmentos { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; background: var(--superficie-2); border-radius: 12px; padding: 4px; gap: 4px; }
.segmentos button { border: 0; background: none; padding: 10px; border-radius: 9px; font-weight: 600; color: var(--tinta-2); cursor: pointer; }
.segmentos button.ativo { background: var(--superficie); color: var(--tinta); box-shadow: var(--sombra); }

/* lote */
.progresso { height: 10px; background: var(--superficie-2); border-radius: 99px; overflow: hidden; }
.progresso i { display: block; height: 100%; background: var(--ok); transition: width .3s ease; }
.proxima { background: var(--acento-suave); border-radius: 14px; padding: 14px; display: grid; gap: 4px; }
.proxima b { font-size: 1.15rem; }
.proxima span { overflow-wrap: anywhere; color: var(--tinta-2); font-size: .9rem; }
.linhas-lote { display: grid; gap: 0; max-height: 360px; overflow: auto; border: 1px solid var(--borda); border-radius: 12px; }
.linha-lote { display: grid; grid-template-columns: 26px 1fr; gap: 8px; padding: 9px 12px; border-bottom: 1px solid var(--borda); font-size: .88rem; min-width: 0; }
.linha-lote:last-child { border-bottom: 0; }
.linha-lote span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.linha-lote.atual { background: var(--acento-suave); }
.linha-lote.ok span { color: var(--tinta-2); }

/* outros */
.grade-acoes { display: grid; gap: 10px; }
.acao {
  text-align: left; border: 1px solid var(--borda); background: var(--superficie); border-radius: var(--raio);
  padding: 14px 16px; display: grid; gap: 2px; cursor: pointer; box-shadow: var(--sombra);
}
.acao b { font-size: 1rem; }
.acao small { color: var(--tinta-2); }
.acao.perigo b { color: var(--erro); }
.dicas { margin: 0; padding-left: 20px; display: grid; gap: 6px; color: var(--tinta-2); font-size: .93rem; }
.dicas b { color: var(--tinta); }

/* toasts */
.toasts {
  position: fixed; left: 16px; right: 16px; bottom: calc(var(--nav) + env(safe-area-inset-bottom) + 12px);
  z-index: 80; display: grid; gap: 8px; justify-items: center; pointer-events: none;
}
.toast {
  max-width: 520px; width: 100%; padding: 12px 14px; border-radius: 12px; background: var(--tinta); color: var(--fundo);
  font-weight: 600; font-size: .93rem; box-shadow: var(--sombra); animation: sobe .2s ease-out; pointer-events: auto;
}
.toast.ok { background: var(--ok); color: var(--sobre-acento); }
.toast.erro { background: var(--erro); color: var(--sobre-acento); }
.toast.aviso { background: var(--alerta); color: var(--sobre-acento); }

/* toast com ação */
.toast { display: flex; align-items: center; gap: 10px; }
.toast span { flex: 1; }
.toast-acao {
  flex: none; border: 0; border-radius: 8px; padding: 8px 10px; font-weight: 700; font-size: .85rem; cursor: pointer;
  background: rgb(255 255 255 / 22%); color: inherit;
}

.aprox-dica {
  font-size: .86rem; background: var(--superficie-2); border-radius: 10px; padding: 8px 10px; margin: 0 0 8px !important;
}

/* guia do passo a passo */
.guia {
  background: var(--superficie); border: 2px solid var(--acento); border-radius: var(--raio);
  box-shadow: var(--sombra); padding: 12px; display: grid; gap: 10px; margin-bottom: 14px; min-width: 0;
}
.guia.acabou { border-color: var(--ok); }
.guia-topo { display: flex; align-items: flex-start; gap: 6px; }
.guia-titulo {
  flex: 1; min-width: 0; display: flex; gap: 10px; align-items: center; text-align: left;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.guia-titulo > span:last-child { display: grid; min-width: 0; }
.guia-titulo small { color: var(--tinta-2); font-size: .85rem; line-height: 1.3; }
.guia:not(.minimizado) .guia-titulo small { display: none; }
.guia.minimizado .guia-titulo small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.guia-icone { font-size: 1.5rem; }
.progresso.fino { height: 6px; }
.guia-passos { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.guia-passos li { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; font-size: .93rem; padding: 4px; border-radius: 10px; }
.guia-passos li.atual { background: var(--acento-suave); font-weight: 650; }
.guia-passos li.feito span { color: var(--tinta-2); text-decoration: line-through; text-decoration-color: var(--borda); }
.guia-marca svg.x { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.guia-marca {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--borda); background: var(--superficie);
  font-weight: 700; font-size: .85rem; color: var(--tinta-2); cursor: pointer; display: grid; place-items: center;
}
.guia-passos li.atual .guia-marca { border-color: var(--acento); color: var(--acento); }
.guia-passos li.feito .guia-marca { background: var(--ok); border-color: var(--ok); color: var(--sobre-acento); }
.guia-fim { margin: 0; padding: 10px 12px; border-radius: 10px; background: var(--ok-suave); font-size: .93rem; }

/* ajuda */
.cartao h3 { font-size: .98rem; margin-top: 6px; }
.tutorial {
  display: grid; grid-template-columns: 40px 1fr 16px; gap: 12px; align-items: center; text-align: left;
  background: var(--superficie-2); border: 1px solid var(--borda); border-radius: 14px; padding: 12px; cursor: pointer; min-width: 0;
}
.tutorial .emoji { width: 40px; height: 40px; border-radius: 10px; background: var(--superficie); display: grid; place-items: center; font-size: 1.3rem; }
.tutorial .texto { display: grid; gap: 2px; min-width: 0; }
.tutorial .texto > span { color: var(--tinta-2); font-size: .88rem; line-height: 1.35; }
.tutorial small { color: var(--tinta-2); font-size: .78rem; }
.tutorial .seta { font-size: 1.5rem; color: var(--tinta-2); }
.tutorial.feito { background: var(--superficie); }
.selo {
  font-style: normal; font-size: .7rem; font-weight: 700; margin-left: 8px; padding: 2px 7px; border-radius: 99px;
  background: var(--acento); color: var(--sobre-acento); vertical-align: 2px; white-space: nowrap;
}
.lista-checagem { list-style: none; margin: 0 0 10px; padding: 0; display: grid; gap: 8px; }
.checagem { display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: start; }
.checagem > span:last-child { display: grid; }
.checagem small { color: var(--tinta-2); font-size: .86rem; }
.checagem.erro b { color: var(--erro); }
.antena { display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: center; }
.tag-info { display: grid; gap: 2px; padding: 10px 12px; border-radius: 12px; background: var(--superficie-2); font-size: .92rem; }
.tag-info small { color: var(--tinta-2); }
.tag-topo { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.perguntas { display: grid; gap: 6px; }
.pergunta { border: 1px solid var(--borda); border-radius: 12px; padding: 0 12px; }
.pergunta summary { cursor: pointer; font-weight: 650; padding: 12px 0; list-style-position: inside; }
.pergunta[open] { background: var(--superficie-2); }
.pergunta .dicas { padding-bottom: 12px; }
.glossario { margin: 0; display: grid; gap: 8px; }
.glossario dt { font-weight: 700; }
.glossario dd { margin: 0; color: var(--tinta-2); font-size: .92rem; }

/* ilustrações */
.arte { display: grid; place-items: center; }
.arte svg { width: 100%; max-width: 240px; height: auto; }
.arte.pequena svg { max-width: 110px; }
.a-corpo { fill: var(--superficie-2); stroke: var(--tinta-2); stroke-width: 3; }
.a-tela { fill: var(--superficie); }
.a-linha, .a-brilho { stroke: var(--tinta-2); stroke-width: 4; stroke-linecap: round; fill: none; opacity: .5; }
.a-ondas path { fill: none; stroke: var(--acento); stroke-width: 4; stroke-linecap: round; }
.a-tag { fill: var(--acento-suave); stroke: var(--acento); stroke-width: 3; }
.a-chip { fill: var(--acento); }
.a-ok { fill: var(--ok); }
.a-check { fill: none; stroke: var(--sobre-acento); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.a-camera { fill: var(--tinta-2); opacity: .35; }
.a-zona { fill: var(--acento); opacity: .18; }
.a-zona-forte { fill: var(--acento); opacity: .55; }
.a-seta { stroke: var(--acento); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.a-texto { fill: var(--acento); font-size: 16px; font-weight: 700; font-family: system-ui, sans-serif; }
.a-ondas path:nth-child(2) { opacity: .5; }
@media (prefers-reduced-motion: no-preference) {
  .boas-vindas .a-ondas path { animation: pisca 1.6s ease-in-out infinite; }
  .boas-vindas .a-ondas path:nth-child(2) { animation-delay: .3s; }
}
@keyframes pisca { 50% { opacity: .15; } }

/* boas-vindas */
.boas-vindas { text-align: center; }
.boas-vindas .lista-checagem { text-align: left; }
.boas-vindas .link-acao { justify-self: center; }
.bv-topo { display: flex; align-items: center; justify-content: space-between; min-height: 36px; }
.pontos { display: flex; gap: 6px; }
.pontos i { width: 8px; height: 8px; border-radius: 99px; background: var(--borda); transition: width .2s ease; }
.pontos i.ativo { width: 22px; background: var(--acento); }

.conteudo-ajuda { display: grid; gap: 14px; }
.barra-gravar:has(#btn-gravar:disabled) { position: static; }
