/* Atleta One — identidade própria: esmeralda de gramado, âmbar GQuest e marinho.
   Vibrante e arredondado, sem ser cópia de ninguém. */
:root {
  color-scheme: light;
  --verde: #059669; --verde-escuro: #047857; --verde-sombra: #065f46; --verde-suave: #d6f5e8;
  --marinho: #14213d; --marinho-claro: #1f3355;
  --ambar: #ffaa00; --ambar-escuro: #cc7a00; --ambar-suave: #fff4dc;
  --azul: #2563eb; --azul-escuro: #1d4ed8;
  --coral: #f43f5e; --roxo: #8b5cf6;
  --vermelho: #dc2626;
  --tinta: #1e293b; --tinta-suave: #64748b;
  --fundo: #f4f7f6; --card: #ffffff; --borda: #e2e8f0;
  --tec: #059669; --tat: #2563eb; --fis: #f59e0b; --ati: #f43f5e; --con: #8b5cf6;
  --raio: 20px;
  font-size: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--fundo); color: var(--tinta);
  min-height: 100dvh; padding-bottom: 84px;
}
a { color: var(--azul-escuro); text-decoration: none; }

/* ===== Cabeçalho — boxed, na régua do ecossistema GQuest ===== */
.topo {
  position: sticky; top: 0; z-index: 20; background: #fff;
  border-bottom: 2px solid var(--borda);
}
.topo-inner {
  max-width: 720px; margin: 0 auto; padding: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 72px;
}
.marca { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.55rem; letter-spacing: -0.03em; line-height: 1; }
.marca svg.logomark { width: 42px; height: 42px; display: block; }
.marca-um { color: var(--marinho); }
.marca-one { color: var(--verde); }

/* Chip do usuário: avatar + nome, alinhados; menu no toque */
.chip-user {
  position: relative;
}
.chip-user > button {
  display: flex; align-items: center; gap: 10px; border: 2px solid var(--borda);
  background: #fff; border-radius: 999px; padding: 6px 14px 6px 6px;
  font-family: inherit; font-size: .92rem; font-weight: 800; color: var(--tinta);
  cursor: pointer;
}
.chip-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--marinho); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .85rem;
}
.chip-menu {
  position: absolute; right: 0; top: calc(100% + 8px); background: #fff;
  border: 2px solid var(--borda); border-radius: 14px; min-width: 170px;
  box-shadow: 0 10px 24px rgba(20, 33, 61, .12); overflow: hidden; display: none; z-index: 40;
}
.chip-menu.aberto { display: block; animation: chip-in .15s ease; }
.chip-menu a { display: block; padding: 12px 16px; font-weight: 800; color: var(--tinta); font-size: .9rem; }
.chip-menu a:hover { background: var(--fundo); }
.chip-menu a.sair { color: var(--vermelho); border-top: 1px solid var(--borda); }
@keyframes chip-in { from { opacity: 0; transform: translateY(-6px); } }

.conteudo { max-width: 720px; margin: 0 auto; padding: 18px 16px 40px; }

/* ===== Cards com entrada suave ===== */
.card {
  background: var(--card); border: 2px solid var(--borda); border-radius: var(--raio);
  padding: 20px; margin-bottom: 16px;
  animation: card-in .45s ease backwards;
}
.card:nth-child(2) { animation-delay: .06s; } .card:nth-child(3) { animation-delay: .12s; }
.card:nth-child(4) { animation-delay: .18s; } .card:nth-child(5) { animation-delay: .24s; }
.card:nth-child(6) { animation-delay: .3s; }
@keyframes card-in { from { opacity: 0; transform: translateY(14px); } }
.card h2 { font-size: 1.05rem; font-weight: 900; margin-bottom: 12px; color: var(--marinho); }
.mutado { color: var(--tinta-suave); }
.centro { text-align: center; }

/* ===== Botões: presença física, sombra inferior ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 12px 24px; border-radius: 16px; border: 0;
  font-family: inherit; font-size: 1rem; font-weight: 900; letter-spacing: .02em;
  cursor: pointer; color: #fff; background: var(--verde);
  box-shadow: 0 4px 0 var(--verde-sombra), 0 6px 14px rgba(5, 150, 105, .25);
  transition: transform .06s, box-shadow .06s; text-decoration: none;
}
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--verde-sombra); }
.btn.azul { background: var(--azul); box-shadow: 0 4px 0 var(--azul-escuro), 0 6px 14px rgba(37, 99, 235, .25); }
.btn.azul:active { box-shadow: 0 1px 0 var(--azul-escuro); }
.btn.ambar { background: var(--ambar); color: var(--marinho); box-shadow: 0 4px 0 var(--ambar-escuro), 0 6px 14px rgba(255, 170, 0, .3); }
.btn.ambar:active { box-shadow: 0 1px 0 var(--ambar-escuro); }
.btn.vazado { background: #fff; color: var(--verde-escuro); border: 2px solid var(--borda); box-shadow: 0 4px 0 var(--borda); }
.btn.perigo { background: var(--vermelho); box-shadow: 0 4px 0 #991b1b; }
.btn.largo { width: 100%; }
.btn.gigante { min-height: 64px; font-size: 1.15rem; border-radius: 18px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ===== Tab bar ===== */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  display: flex; background: #fff; border-top: 2px solid var(--borda);
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
}
.tabbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: .72rem; font-weight: 800; color: var(--tinta-suave); position: relative;
}
.tabbar a span.ico { font-size: 1.3rem; }
.tabbar a.ativo { color: var(--verde-escuro); }
.tab-dot {
  position: absolute; top: -2px; right: calc(50% - 18px); width: 10px; height: 10px;
  border-radius: 50%; background: var(--vermelho); border: 2px solid #fff; display: none;
}
.tab-dot.on { display: block; animation: pulse-dot 1.2s ease infinite; }
@keyframes pulse-dot { 50% { transform: scale(1.35); } }

/* ===== Listas de atletas ===== */
.linha-atleta { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--borda); }
.linha-atleta:last-child { border-bottom: 0; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--verde-suave);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex: none;
}
.linha-nome { flex: 1; min-width: 0; }
.linha-nome b { display: block; font-weight: 900; }
.linha-nome small { color: var(--tinta-suave); font-weight: 700; }

/* ===== Presença ===== */
.presenca {
  border: 2px solid var(--borda); background: #fff; color: var(--tinta-suave);
  border-radius: 999px; padding: 8px 14px; font-weight: 900; font-family: inherit;
  cursor: pointer; font-size: .85rem;
}
.presenca.sim { background: var(--verde-suave); border-color: var(--verde); color: var(--verde-escuro); }
.presenca.nao { background: #fee2e2; border-color: var(--vermelho); color: #991b1b; }

/* ===== Avaliação 1-5 ===== */
.criterio { padding: 14px 0; border-bottom: 1px solid var(--borda); }
.criterio:last-child { border-bottom: 0; }
.criterio b { font-weight: 900; }
.criterio p { color: var(--tinta-suave); font-size: .85rem; font-weight: 600; margin: 2px 0 10px; }
.escala { display: flex; gap: 8px; }
.escala button {
  flex: 1; min-height: 54px; border-radius: 14px; border: 2px solid var(--borda);
  background: #fff; font-family: inherit; font-size: 1.15rem; font-weight: 900;
  color: var(--tinta-suave); cursor: pointer; box-shadow: 0 3px 0 var(--borda);
  transition: transform .08s;
}
.escala button.marcado {
  background: var(--verde); border-color: var(--verde-sombra); color: #fff;
  box-shadow: 0 3px 0 var(--verde-sombra); transform: scale(1.05);
}
.legenda-escala { display: flex; justify-content: space-between; font-size: .7rem; font-weight: 800; color: var(--tinta-suave); margin-top: 6px; }

/* ===== Pilares ===== */
.tag-pilar { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 900; color: #fff; }
.tag-TEC { background: var(--tec); } .tag-TAT { background: var(--tat); }
.tag-FIS { background: var(--fis); } .tag-ATI { background: var(--ati); } .tag-CON { background: var(--con); }

/* ===== Figurinha ===== */
.figurinha {
  border-radius: 24px; padding: 24px 20px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--marinho) 0%, #0d4f3a 55%, var(--verde) 115%);
  box-shadow: 0 6px 0 #0b1428, 0 14px 30px rgba(20, 33, 61, .3);
  margin-bottom: 18px; animation: card-in .45s ease backwards;
}
.figurinha::after {
  content: ""; position: absolute; top: -60%; left: -30%; width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(18deg); animation: brilho 4.2s ease-in-out infinite;
}
@keyframes brilho { 0%, 55%, 100% { left: -40%; } 25% { left: 120%; } }
.figurinha.formacao { background: linear-gradient(155deg, #334155, #475569 55%, #64748b); box-shadow: 0 6px 0 #1e293b, 0 14px 30px rgba(30, 41, 59, .3); }
.fig-topo { display: flex; align-items: center; gap: 16px; }
.fig-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem; flex: none;
  border: 3px solid rgba(255,255,255,.55);
}
.fig-nome b { display: block; font-size: 1.25rem; font-weight: 900; }
.fig-nome span { font-weight: 800; opacity: .9; font-size: .85rem; }
.fig-geral { margin-left: auto; text-align: center; }
.fig-geral .num { font-size: 2.7rem; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.fig-geral .rot { font-size: .68rem; font-weight: 900; letter-spacing: .1em; opacity: .9; }
.fig-atributos { display: flex; gap: 8px; margin-top: 18px; }
.fig-atr { flex: 1; background: rgba(255,255,255,.16); border-radius: 14px; padding: 10px 4px; text-align: center; }
.fig-atr .v { font-size: 1.25rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.fig-atr .k { font-size: .66rem; font-weight: 900; letter-spacing: .08em; opacity: .9; }

/* Faixa: barra que carrega + objetivo claro */
.fig-faixa {
  margin-top: 14px; background: rgba(0,0,0,.22); padding: 12px 14px; border-radius: 14px;
}
.fig-faixa-linha { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: .9rem; }
.fig-faixa .barra { flex: 1; height: 12px; border-radius: 999px; background: rgba(255,255,255,.22); overflow: hidden; }
.fig-faixa .barra i {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--ambar), #ffd066);
  box-shadow: 0 0 10px rgba(255, 170, 0, .55);
  transition: width 1.3s cubic-bezier(.22, 1, .36, 1);
}
.fig-faixa-meta { margin-top: 6px; font-size: .78rem; font-weight: 800; opacity: .95; }
.fig-faixa-meta b { color: #ffd066; }

/* ===== Chips ===== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 6px 12px; border-radius: 999px; font-weight: 900; font-size: .82rem; background: var(--verde-suave); color: var(--verde-escuro); }
.chip.baixa { background: #fee2e2; color: #991b1b; }
.chip.xp { background: var(--ambar-suave); color: var(--ambar-escuro); }

/* ===== Foguinho animado ===== */
.streak { display: flex; align-items: center; gap: 14px; }
.streak b { font-size: 1.2rem; font-weight: 900; display: block; }
.fogo-wrap { width: 58px; height: 66px; flex: none; position: relative; filter: drop-shadow(0 4px 10px rgba(255, 122, 0, .45)); }
.fogo-wrap.apagado { filter: grayscale(1) opacity(.45); }
.fogo-wrap svg { width: 100%; height: 100%; overflow: visible; }
.fogo-externo { transform-origin: 50% 92%; animation: fogo-danca .62s ease-in-out infinite alternate; }
.fogo-interno { transform-origin: 50% 90%; animation: fogo-danca .48s .12s ease-in-out infinite alternate-reverse; }
.fogo-wrap.apagado .fogo-externo, .fogo-wrap.apagado .fogo-interno { animation: none; }
@keyframes fogo-danca {
  from { transform: scaleY(1) scaleX(1) rotate(-2.5deg); }
  to   { transform: scaleY(1.12) scaleX(.94) rotate(2.5deg); }
}
.faisca { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--ambar); opacity: 0; }
.fogo-wrap:not(.apagado) .faisca { animation: faisca-sobe 1.6s ease-in infinite; }
.faisca:nth-child(2) { left: 12%; animation-delay: .5s !important; }
.faisca:nth-child(3) { left: 74%; animation-delay: 1s !important; }
@keyframes faisca-sobe {
  0% { bottom: 30%; opacity: 0; transform: scale(.6); }
  25% { opacity: .95; }
  100% { bottom: 105%; opacity: 0; transform: scale(.2); }
}

/* ===== Gráfico ===== */
.grafico svg { width: 100%; height: auto; display: block; }
.grafico polyline { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: traca 1.6s .3s ease forwards; }
@keyframes traca { to { stroke-dashoffset: 0; } }
.legenda { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; font-size: .75rem; font-weight: 900; }
.legenda i { display: inline-block; width: 12px; height: 4px; border-radius: 2px; margin-right: 4px; vertical-align: middle; }

/* ===== Medalhas (conquistas) ===== */
.medalhas { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 14px; }
.medalha { text-align: center; cursor: pointer; border: 0; background: none; font-family: inherit; padding: 0; }
.medalha .disco {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85), rgba(255,255,255,0) 42%),
    conic-gradient(from 210deg, #ffd066, var(--ambar) 30%, #b87400 52%, #ffd066 74%, var(--ambar));
  box-shadow: 0 4px 0 #8a5a00, 0 8px 16px rgba(184, 116, 0, .35), inset 0 0 0 5px rgba(255, 255, 255, .35);
  transition: transform .12s;
}
.medalha:active .disco { transform: scale(.92); }
.medalha .disco span { filter: drop-shadow(0 2px 2px rgba(0,0,0,.25)); }
.medalha.recorrente .disco {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85), rgba(255,255,255,0) 42%),
    conic-gradient(from 210deg, #e2e8f0, #94a3b8 30%, #64748b 52%, #e2e8f0 74%, #94a3b8);
  box-shadow: 0 4px 0 #475569, 0 8px 16px rgba(71, 85, 105, .3), inset 0 0 0 5px rgba(255, 255, 255, .35);
}
.medalha figcaption, .medalha .nome { display: block; font-size: .7rem; font-weight: 900; margin-top: 7px; color: var(--tinta); }
.medalha .qtd {
  position: absolute; margin-top: -22px; margin-left: 48px; background: var(--marinho); color: #fff;
  font-size: .68rem; font-weight: 900; border-radius: 999px; padding: 2px 7px; border: 2px solid #fff;
}

/* Sobreposição da medalha */
.medalha-overlay {
  position: fixed; inset: 0; z-index: 95; background: rgba(15, 23, 42, .78);
  display: flex; align-items: center; justify-content: center; padding: 28px;
  animation: aparece .25s ease;
}
.medalha-overlay .caixa-medalha { text-align: center; color: #fff; max-width: 340px; }
.medalha-overlay .disco {
  width: 148px; height: 148px; font-size: 4.2rem; margin: 0 auto 18px;
  animation: medalha-entra .55s cubic-bezier(.34, 1.56, .64, 1);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85), rgba(255,255,255,0) 42%),
    conic-gradient(from 210deg, #ffd066, var(--ambar) 30%, #b87400 52%, #ffd066 74%, var(--ambar));
  box-shadow: 0 8px 0 #8a5a00, 0 20px 50px rgba(0, 0, 0, .5), inset 0 0 0 8px rgba(255,255,255,.35);
}
.medalha-overlay h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.medalha-overlay p { font-weight: 700; opacity: .92; margin-bottom: 6px; }
.medalha-overlay small { display: block; font-weight: 800; opacity: .7; margin-bottom: 22px; }
@keyframes medalha-entra { 0% { transform: scale(.2) rotate(-18deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } }
.medalha-overlay .disco.recorrente {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85), rgba(255,255,255,0) 42%),
    conic-gradient(from 210deg, #e2e8f0, #94a3b8 30%, #64748b 52%, #e2e8f0 74%, #94a3b8);
  box-shadow: 0 8px 0 #475569, 0 20px 50px rgba(0, 0, 0, .5), inset 0 0 0 8px rgba(255,255,255,.35);
}

/* ===== Recado / jornada ===== */
.recado-resumo { display: flex; gap: 12px; align-items: flex-start; }
.recado-resumo .balao {
  flex: 1; background: var(--verde-suave); border-radius: 16px; padding: 12px 14px;
  font-weight: 600; font-size: .92rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.evento { border-left: 4px solid var(--borda); padding: 4px 0 18px 16px; margin-left: 8px; position: relative; }
.evento::before {
  content: ""; position: absolute; left: -9px; top: 8px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--verde); border: 3px solid #fff;
}
.evento.falta::before { background: var(--vermelho); }
.evento .data { font-weight: 900; font-size: .85rem; }
.comentario { background: var(--verde-suave); border-radius: 14px; padding: 12px 14px; margin-top: 8px; font-weight: 600; font-size: .92rem; }
.comentario small { display: block; margin-top: 6px; color: var(--verde-escuro); font-weight: 900; }

/* ===== Formulários ===== */
label.rotulo { display: block; font-weight: 900; font-size: .85rem; margin: 14px 0 6px; }
input[type=text], input[type=email], input[type=password], textarea, select {
  width: 100%; padding: 14px; border: 2px solid var(--borda); border-radius: 14px;
  font-family: inherit; font-size: 1rem; font-weight: 600; background: #fff; color: var(--tinta);
}
textarea { min-height: 90px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--azul); }

/* ===== Toast ===== */
#toast-area { position: fixed; top: 16px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 100; pointer-events: none; }
.toast {
  background: var(--marinho); color: #fff; font-weight: 800; padding: 12px 20px;
  border-radius: 999px; box-shadow: 0 6px 18px rgba(0,0,0,.2);
  animation: toast-in .25s ease; display: flex; align-items: center; gap: 8px;
}
.toast.ok { background: var(--verde-escuro); }
.toast.erro { background: var(--vermelho); }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px); } }

/* ===== Confirmação e celebração ===== */
.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(15,23,42,.55); display: flex; align-items: flex-end; justify-content: center; }
.overlay .caixa {
  background: #fff; border-radius: 24px 24px 0 0; padding: 28px 22px calc(24px + env(safe-area-inset-bottom));
  width: 100%; max-width: 560px; animation: sobe .25s ease;
}
.overlay .caixa h3 { font-weight: 900; font-size: 1.15rem; margin-bottom: 8px; color: var(--marinho); }
.overlay .caixa p { color: var(--tinta-suave); font-weight: 600; margin-bottom: 18px; }
@keyframes sobe { from { transform: translateY(40px); opacity: .4; } }

.celebra {
  position: fixed; inset: 0; z-index: 95; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff;
  background: linear-gradient(160deg, var(--marinho), var(--verde-escuro)); padding: 32px;
  animation: aparece .3s ease;
}
.celebra .emoji { font-size: 4.5rem; animation: pula .8s ease infinite alternate; }
.celebra h2 { font-size: 1.6rem; font-weight: 900; margin: 14px 0 6px; }
.celebra p { font-weight: 700; opacity: .95; margin-bottom: 26px; }
@keyframes aparece { from { opacity: 0; } }
@keyframes pula { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* ===== Landing e método ===== */
.hero { text-align: center; padding: 56px 20px 40px; }
.hero h1 { font-size: 2rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.15; color: var(--marinho); }
.hero h1 em { color: var(--verde); font-style: normal; }
.hero p { color: var(--tinta-suave); font-weight: 700; max-width: 480px; margin: 14px auto 26px; }
.passos { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.passo { background: #fff; border: 2px solid var(--borda); border-radius: var(--raio); padding: 20px; text-align: center; }
.passo .num { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; color: #fff; font-size: 1.2rem; }
.preco { font-size: 2.4rem; font-weight: 900; color: var(--marinho); }
.preco small { font-size: 1rem; color: var(--tinta-suave); font-weight: 800; }

.aviso-vermelho { border-left: 6px solid var(--vermelho); background: #fef2f2; border-radius: 12px; padding: 14px 16px; font-weight: 600; font-size: .9rem; }
.aviso-vermelho b { color: #991b1b; }

.grade-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .grade-2 { grid-template-columns: 1fr; } }

.progresso-mini { height: 8px; border-radius: 999px; background: var(--borda); overflow: hidden; }
.progresso-mini i { display: block; height: 100%; background: var(--verde); border-radius: 999px; }

table.tabela { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.tabela th { text-align: left; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--tinta-suave); padding: 8px 6px; }
table.tabela td { padding: 10px 6px; border-top: 1px solid var(--borda); font-weight: 700; }
.alerta-con { color: #991b1b; font-weight: 900; }

/* Escada de faixas (página do método) */
.escada { display: flex; flex-direction: column; gap: 8px; }
.degrau { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 2px solid var(--borda); border-radius: 14px; font-weight: 900; background: #fff; }
.degrau .bolinha { width: 18px; height: 18px; border-radius: 50%; flex: none; }
.degrau small { margin-left: auto; color: var(--tinta-suave); font-weight: 800; }
