/* ═══════════════════════════════════════════════════════════
   Site público — home + checkout
   ═══════════════════════════════════════════════════════════ */

/* ── Cabeçalho ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 14px 0; transition: all .45s var(--ease-out);
}
.site-header.stuck {
  background: rgba(7, 7, 12, .72);
  backdrop-filter: blur(26px) saturate(180%); -webkit-backdrop-filter: blur(26px) saturate(180%);
  border-bottom: 1px solid var(--hair);
  padding: 9px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 38px; height: 38px; border-radius: 12px; }
.brand-name { font-weight: 800; letter-spacing: -.03em; font-size: 1.06rem; line-height: 1; }
.brand-sub { font-family: var(--mono); font-size: .58rem; letter-spacing: .26em; color: var(--ink-3); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .89rem; font-weight: 600; color: var(--ink-2); position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--rt); transition: right .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

@media (max-width: 900px) { .nav-links { display: none; } }

/* Em tela estreita o nome da marca quebrava em quatro linhas e passava
   por cima dos botoes. Aqui ele encolhe e o botao secundario sai de cena
   (o dock la embaixo ja tem o mesmo atalho). */
@media (max-width: 620px) {
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: .92rem; white-space: nowrap; }
  .brand-sub { display: none; }
  .hide-sm { display: none !important; }
  .site-header .btn-sm { padding: 10px 14px; font-size: .8rem; }
}
@media (max-width: 380px) {
  .brand-name { font-size: .82rem; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { padding: 150px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 118px 0 60px; }
}

.hero h1 { margin: 20px 0 22px; }
.hero-lead { font-size: clamp(1rem, 2.1vw, 1.16rem); color: var(--ink-2); max-width: 54ch; line-height: 1.62; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.status-strip {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid var(--hair);
}
.status-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px;
  border-radius: var(--r-pill); background: rgba(255,255,255,.035);
  border: 1px solid var(--hair); font-family: var(--mono); font-size: .68rem;
  letter-spacing: .1em; color: var(--ink-2); text-transform: uppercase;
}

/* Órbita do patch */
.orbit-stage {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1; max-width: 480px; margin-inline: auto; width: 100%;
}
.orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
}
.orbit-ring::before {
  content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--rt); box-shadow: 0 0 16px 3px var(--rt-glow);
  top: -5px; left: 50%; margin-left: -4.5px;
}
.orbit-ring.r1 { inset: 4%; animation: orbit 22s linear infinite; }
.orbit-ring.r2 { inset: 14%; animation: orbit 34s linear infinite reverse; border-color: rgba(255,45,74,.14); }
.orbit-ring.r2::before { background: var(--info); box-shadow: 0 0 14px 3px rgba(77,184,255,.5); width: 7px; height: 7px; }
.orbit-ring.r3 { inset: -6%; border-style: dashed; border-color: rgba(255,255,255,.05); animation: orbit 60s linear infinite; }
.orbit-ring.r3::before { display: none; }
@keyframes orbit { to { transform: rotate(360deg) } }

.patch-img { width: 62%; filter: drop-shadow(0 30px 60px rgba(255,45,74,.28)); animation: float 7s ease-in-out infinite; }

/* Varredura de radar */
.radar-sweep {
  position: absolute; inset: 4%; border-radius: 50%; pointer-events: none; overflow: hidden;
  mask-image: radial-gradient(circle, #000 62%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 62%, transparent 72%);
}
.radar-sweep::after {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,45,74,.22) 24deg, transparent 60deg);
  animation: orbit 5.5s linear infinite;
}

/* O anel externo (.r3) fica 6% pra fora de cada lado. Em tela estreita isso
   passava da largura da tela e criava rolagem lateral — o cabecalho ficava
   cortado e a pagina "andava" de lado. Este bloco precisa vir DEPOIS das
   regras acima: com a mesma especificidade, quem vem por ultimo ganha. */
@media (max-width: 980px) {
  .orbit-stage { max-width: min(400px, 74%); }
  .orbit-ring.r3 { inset: -2%; }
}

/* ── Cartões de telemetria ──────────────────────────────────── */
.telemetry { padding: 26px; display: grid; gap: 18px; }
.telemetry-head { display: flex; align-items: center; justify-content: space-between; }

.gauge-row { display: grid; gap: 12px; }
.gauge {
  display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 14px;
  padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.028); border: 1px solid var(--hair);
  transition: all .4s var(--ease-out);
}
.gauge.win { border-color: rgba(34,224,161,.4); background: rgba(34,224,161,.07); }
.gauge-name { font-weight: 700; font-size: .88rem; }
.gauge-bar { height: 7px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; }
.gauge-fill {
  height: 100%; border-radius: 99px; width: 0;
  background: linear-gradient(90deg, var(--rt-deep), var(--rt));
  transition: width .7s var(--ease-out);
}
.gauge.win .gauge-fill { background: linear-gradient(90deg, #0f9d6f, var(--ok)); }
.gauge-val { font-family: var(--mono); font-size: .82rem; font-weight: 700; min-width: 74px; text-align: right; }

/* Slider */
.slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  border-radius: 99px; background: rgba(255,255,255,.1); outline: none; cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rt-hot), var(--rt-deep));
  border: 3px solid #0b0b12;
  box-shadow: 0 0 0 1px var(--rt), 0 6px 20px -4px var(--rt-glow);
  cursor: grab; transition: transform .2s var(--ease-spring);
}
.slider::-webkit-slider-thumb:active { transform: scale(1.22); cursor: grabbing; }
.slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid #0b0b12;
  background: var(--rt); box-shadow: 0 0 0 1px var(--rt);
}

/* ── Seções ─────────────────────────────────────────────────── */
.section { padding: 92px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { margin: 16px 0 16px; }
.section-head p { color: var(--ink-2); font-size: 1.03rem; line-height: 1.65; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.card { padding: 30px; transition: transform .5s var(--ease-out), border-color .4s; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,45,74,.28); }
.card h3 { font-size: 1.13rem; font-weight: 700; letter-spacing: -.02em; margin: 20px 0 10px; }
.card p { color: var(--ink-2); font-size: .93rem; line-height: 1.65; }
.card-icon {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,45,74,.2), rgba(255,45,74,.05));
  border: 1px solid rgba(255,45,74,.24); color: var(--rt-hot);
}
.card-icon svg { width: 23px; height: 23px; }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 30px; position: relative; }
.step-num {
  font-family: var(--mono); font-size: 3.2rem; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, var(--rt), rgba(255,45,74,.12));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { margin: 14px 0 10px; font-size: 1.1rem; font-weight: 700; }
.step p { color: var(--ink-2); font-size: .93rem; line-height: 1.6; }

/* Lista de segurança */
.sec-list { display: grid; gap: 2px; }
.sec-item {
  display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: start;
  padding: 17px 20px; border-radius: var(--r-sm);
  transition: background .3s;
}
.sec-item:hover { background: rgba(255,255,255,.028); }
.sec-item svg { width: 20px; height: 20px; color: var(--ok); margin-top: 2px; }
.sec-item strong { display: block; margin-bottom: 4px; font-size: .96rem; }
.sec-item span { color: var(--ink-3); font-size: .88rem; line-height: 1.55; }

/* Acessar cobrança por código */
.code-box { padding: 28px; display: grid; gap: 16px; }
.code-input {
  font-family: var(--mono); font-size: 1.5rem; letter-spacing: .42em;
  text-align: center; text-transform: uppercase; font-weight: 700;
}

/* ── Rodapé ─────────────────────────────────────────────────── */
.site-footer { padding: 62px 0 130px; border-top: 1px solid var(--hair); margin-top: 60px; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-3); font-size: .87rem; transition: color .25s; }
.footer-links a:hover { color: var(--rt-hot); }
@media (max-width: 720px) { .site-footer { padding-bottom: 140px; } }

/* ── Dock líquido (mobile) ──────────────────────────────────── */
.dock {
  position: fixed; z-index: 90; left: 50%; transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 2px; padding: 7px;
  border-radius: var(--r-pill);
  background: rgba(16, 16, 24, .55);
  backdrop-filter: blur(34px) saturate(200%); -webkit-backdrop-filter: blur(34px) saturate(200%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 20px 50px -18px rgba(0,0,0,.95),
    0 0 40px -20px var(--rt-glow);
  animation: dockIn .8s var(--ease-spring) .3s backwards;
}
@keyframes dockIn { from { opacity: 0; transform: translate(-50%, 60px) } }

.dock-item {
  position: relative; z-index: 2; display: grid; place-items: center; gap: 3px;
  min-width: 68px; padding: 9px 10px 8px; border-radius: var(--r-pill);
  color: var(--ink-3); border: 0; background: none; cursor: pointer;
  transition: color .35s var(--ease-out), transform .35s var(--ease-spring);
}
.dock-item svg { width: 21px; height: 21px; transition: transform .4s var(--ease-spring); }
.dock-item span { font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.dock-item.on { color: #fff; }
.dock-item.on svg { transform: translateY(-1px) scale(1.1); }
.dock-item:active { transform: scale(.9); }

.dock-thumb {
  position: absolute; z-index: 1; top: 7px; bottom: 7px; left: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(150deg, rgba(255,45,74,.9), rgba(196,30,58,.75));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 26px -8px var(--rt-glow);
  transition: transform .55s var(--ease-spring), width .55s var(--ease-spring);
}

@media (min-width: 901px) { .dock.mobile-only { display: none; } }

/* ── Checkout ───────────────────────────────────────────────── */
.checkout-wrap { min-height: 100vh; display: grid; place-items: center; padding: 84px 16px 130px; }
.checkout-card { width: min(560px, 100%); padding: 0; overflow: hidden; }

.co-head {
  padding: 30px 30px 26px; text-align: center; position: relative;
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(255,45,74,.11), transparent);
}
.co-head::after {
  content: ''; position: absolute; left: 50%; bottom: -1px; width: 130px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--rt), transparent);
}
.co-merchant { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.co-merchant img { width: 34px; height: 34px; border-radius: 11px; }
.co-title { font-size: 1.42rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.22; }
.co-desc { color: var(--ink-3); font-size: .91rem; margin-top: 9px; line-height: 1.55; }

.co-amount { padding: 30px; text-align: center; border-bottom: 1px solid var(--hair); }
.co-amount-value {
  font-family: var(--mono); font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(2.4rem, 9vw, 3.3rem); line-height: 1;
  background: linear-gradient(180deg, #fff, #b9b9c8);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.co-body { padding: 28px 30px 32px; display: grid; gap: 18px; }

.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip {
  padding: 11px 17px; border-radius: var(--r-pill); cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--hair);
  font-family: var(--mono); font-size: .85rem; font-weight: 700; color: var(--ink-2);
  transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--rt); color: var(--ink); }
.chip.on { background: rgba(255,45,74,.16); border-color: var(--rt); color: #fff; }

/* QR */
.qr-stage { display: grid; place-items: center; gap: 20px; padding: 6px 0 4px; }
.qr-frame {
  position: relative; padding: 16px; border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid var(--hair-strong);
  box-shadow: 0 24px 70px -26px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.16);
  animation: qrIn .7s var(--ease-spring);
}
@keyframes qrIn { from { opacity: 0; transform: scale(.9) translateY(16px) } }
.qr-frame canvas { width: 258px; height: 258px; border-radius: 16px; }

/* Cantos de mira */
.qr-frame::before, .qr-frame::after {
  content: ''; position: absolute; width: 26px; height: 26px; border: 2px solid var(--rt);
}
.qr-frame::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; border-radius: 12px 0 0 0; }
.qr-frame::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; border-radius: 0 0 12px 0; }

/* Linha de varredura */
.qr-scan {
  position: absolute; left: 16px; right: 16px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--rt), transparent);
  box-shadow: 0 0 14px 2px var(--rt-glow);
  animation: scanline 2.6s var(--ease-out) infinite;
}
@keyframes scanline {
  0%, 100% { top: 20px; opacity: 0 } 12% { opacity: 1 } 88% { opacity: 1 }
  50% { top: calc(100% - 22px) }
}

.pix-code {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(0,0,0,.45); border: 1px solid var(--hair);
  font-family: var(--mono); font-size: .7rem; color: var(--ink-3);
  word-break: break-all; line-height: 1.55; max-height: 74px; overflow: hidden;
  position: relative; cursor: pointer; transition: all .3s;
}
.pix-code:hover { border-color: var(--rt); color: var(--ink-2); }
.pix-code::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 34px;
  background: linear-gradient(transparent, #08080d);
}

/* Timer */
.timer { display: flex; align-items: center; justify-content: center; gap: 12px; }
.timer-ring { position: relative; width: 44px; height: 44px; }
.timer-ring svg { transform: rotate(-90deg); }
.timer-ring circle { fill: none; stroke-width: 3.5; stroke-linecap: round; }
.timer-ring .bg { stroke: rgba(255,255,255,.09); }
.timer-ring .fg { stroke: var(--rt); transition: stroke-dashoffset 1s linear, stroke .5s; }
.timer-ring.warn .fg { stroke: var(--warn); }
.timer-text {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
}

/* Sucesso */
.success-stage { padding: 46px 30px; text-align: center; display: grid; gap: 20px; place-items: center; }
.success-mark { width: 96px; height: 96px; position: relative; }
.success-mark svg { width: 100%; height: 100%; }
.success-mark .ring {
  fill: none; stroke: var(--ok); stroke-width: 4;
  stroke-dasharray: 283; stroke-dashoffset: 283;
  animation: drawRing .8s var(--ease-out) forwards;
}
.success-mark .check {
  fill: none; stroke: var(--ok); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: drawCheck .5s var(--ease-out) .55s forwards;
}
@keyframes drawRing { to { stroke-dashoffset: 0 } }
@keyframes drawCheck { to { stroke-dashoffset: 0 } }

.success-glow {
  position: absolute; inset: -40px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(34,224,161,.35), transparent 65%);
  animation: burst 1.4s var(--ease-out) forwards;
}
@keyframes burst { from { transform: scale(.3); opacity: 0 } 40% { opacity: 1 } to { transform: scale(1.5); opacity: 0 } }

.receipt { width: 100%; display: grid; gap: 1px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--hair); }
.receipt-row {
  display: flex; justify-content: space-between; gap: 14px; padding: 14px 17px;
  background: rgba(255,255,255,.028); font-size: .89rem;
}
.receipt-row span { color: var(--ink-3); }
.receipt-row strong { font-weight: 700; text-align: right; word-break: break-word; }

/* Estado de erro / expirado */
.state-box { padding: 52px 30px; text-align: center; display: grid; gap: 16px; place-items: center; }
.state-icon {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,45,74,.1); border: 1px solid rgba(255,45,74,.3); color: var(--rt);
}
.state-icon svg { width: 34px; height: 34px; }

/* ── Grades responsivas das seções ──────────────────────────── */
@media (max-width: 940px) {
  #rotaGrid, #secGrid { grid-template-columns: 1fr !important; gap: 26px !important; }
  .section { padding: 66px 0; }
  .section-head { margin-bottom: 34px; }
}

@media (max-width: 940px) {
  #platGrid { grid-template-columns: 1fr !important; }
}

/* Faixa de preço */
.preco-faixa {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--hair);
  background: var(--hair);
}
@media (max-width: 680px) { .preco-faixa { grid-template-columns: repeat(2, 1fr); } }
.preco-item { padding: 24px 14px; background: #0a0a10; text-align: center; }
.preco-item strong {
  display: block; font-family: var(--mono); font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 700; letter-spacing: -.04em; margin-bottom: 7px; white-space: nowrap;
}
.preco-item span { color: var(--ink-3); font-size: .82rem; line-height: 1.5; }
.preco-item.zero strong { color: var(--ok); }

.preco-item.destaque {
  background: linear-gradient(160deg, rgba(255,45,74,.16), rgba(255,45,74,.04));
}
.preco-item.destaque strong { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   HOME · blocos da versão para lojistas
   ═══════════════════════════════════════════════════════════ */

/* Barra de progresso do scroll */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80;
  pointer-events: none; background: rgba(255,255,255,.05);
}
.scroll-progress i {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--rt-deep), var(--rt), var(--rt-hot));
  box-shadow: 0 0 12px var(--rt-glow);
}

.link { color: var(--rt-hot); border-bottom: 1px solid rgba(255,92,114,.35); transition: color .25s, border-color .25s; }
.link:hover { color: #fff; border-color: #fff; }

.chip-inline {
  padding: 2px 8px; border-radius: 7px; font-size: .82em;
  background: rgba(255,45,74,.12); border: 1px solid rgba(255,45,74,.24); color: var(--rt-hot);
}

/* ── Números do hero ────────────────────────────────────────── */
.metric-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 72px; border: 1px solid var(--hair); border-radius: var(--r-md);
  overflow: hidden; background: var(--hair);
}
.metric { padding: 22px 20px; background: rgba(9,9,15,.72); }
.metric-value {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; letter-spacing: -.045em;
  background: linear-gradient(180deg, #fff, #9c9cae);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-label { color: var(--ink-3); font-size: .78rem; line-height: 1.5; margin-top: 8px; max-width: 24ch; }
@media (max-width: 860px) {
  .metric-row { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .metric { padding: 17px 15px; }
  .metric-label { font-size: .72rem; }
}

/* ── Passo a passo ──────────────────────────────────────────── */
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .passos { grid-template-columns: 1fr; } }

.passo {
  padding: 30px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  transition: transform .5s var(--ease-out), border-color .4s;
}
.passo:hover { transform: translateY(-6px); border-color: rgba(255,45,74,.28); }
.passo-num {
  font-family: var(--mono); font-size: 2.9rem; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, var(--rt), rgba(255,45,74,.12));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.passo h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.passo p { color: var(--ink-2); font-size: .92rem; line-height: 1.62; flex: 1; }
.passo .btn { margin-top: 4px; }

.nota-token {
  margin-top: 22px; padding: 24px 26px;
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
}
@media (max-width: 620px) { .nota-token { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; } }
.nota-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(34,224,161,.2), rgba(34,224,161,.04));
  border: 1px solid rgba(34,224,161,.26); color: var(--ok);
}
.nota-icon svg { width: 23px; height: 23px; }
.nota-token strong { display: block; font-size: 1rem; margin-bottom: 8px; }
.nota-token p { color: var(--ink-2); font-size: .9rem; line-height: 1.65; }

/* ── Calculadora ────────────────────────────────────────────── */
.calc-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
@media (max-width: 980px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-valor {
  font-size: clamp(1.9rem, 5.5vw, 2.4rem); font-weight: 700;
  letter-spacing: -.04em; margin-top: 6px;
}

.calc-linhas { list-style: none; display: grid; gap: 2px; }
.calc-linhas li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.026); border: 1px solid transparent;
}
.calc-linhas li.externo {
  background: rgba(255,176,32,.055); border-color: rgba(255,176,32,.2);
}
.calc-linhas li.total {
  background: linear-gradient(120deg, rgba(34,224,161,.14), rgba(34,224,161,.04));
  border-color: rgba(34,224,161,.3); margin-top: 6px; padding-block: 17px;
}
.calc-nome { font-size: .92rem; font-weight: 600; display: grid; gap: 3px; min-width: 0; }
.calc-hint {
  font-style: normal; font-family: var(--mono); font-size: .66rem;
  letter-spacing: .06em; color: var(--ink-4); text-transform: uppercase;
}
.calc-linhas li.externo .calc-hint { color: var(--warn); opacity: .85; }
.calc-num { font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.calc-num.neg { color: var(--ink-2); }
.calc-linhas li.externo .calc-num { color: var(--warn); }
.calc-num.ok { color: var(--ok); font-size: 1.24rem; }
.calc-linhas li.total .calc-nome { font-size: 1rem; }
@media (max-width: 460px) {
  .calc-linhas li { padding: 12px 13px; gap: 10px; }
  .calc-nome { font-size: .86rem; }
  .calc-num { font-size: .94rem; }
  .calc-num.ok { font-size: 1.1rem; }
}

/* Aviso fino — o rodapé honesto de cada bloco */
.aviso-fino {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start;
  margin-top: 22px; padding: 16px 18px; border-radius: var(--r-md);
  background: rgba(255,255,255,.022); border: 1px solid var(--hair);
  color: var(--ink-3); font-size: .82rem; line-height: 1.62;
}
.aviso-fino svg { width: 20px; height: 20px; color: var(--warn); margin-top: 1px; }
.aviso-fino strong { color: var(--ink-2); }

/* ── Detalhe das taxas ──────────────────────────────────────── */
.taxa-detalhe { margin-top: 20px; padding: 28px; }
.taxa-linha { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
@media (max-width: 760px) { .taxa-linha { grid-template-columns: 1fr; gap: 18px; } }
.taxa-linha strong {
  display: block; font-family: var(--mono); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -.035em; margin: 10px 0 10px;
}
.taxa-linha > div:first-child strong { color: var(--rt-hot); }
.taxa-linha > div:last-child strong { color: var(--warn); }
.taxa-linha p { color: var(--ink-2); font-size: .88rem; line-height: 1.62; }
.taxa-sep {
  font-family: var(--mono); font-size: 1.6rem; color: var(--ink-4);
  align-self: center; padding: 0 4px;
}
@media (max-width: 760px) { .taxa-sep { justify-self: center; } }
.taxa-rodape {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hair);
  color: var(--ink-2); font-size: .9rem; line-height: 1.7;
}
.taxa-rodape .ok { color: var(--ok); font-weight: 700; }

/* ── Avisos de conformidade ─────────────────────────────────── */
.aviso-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.aviso-card { padding: 26px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.aviso-card h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em; }
.aviso-card p { color: var(--ink-2); font-size: .9rem; line-height: 1.64; flex: 1; }
.aviso-card.destaque { border-color: rgba(34,224,161,.26); }
.aviso-card.alerta { border-color: rgba(255,176,32,.3); background: linear-gradient(160deg, rgba(255,176,32,.07), rgba(255,255,255,.015)); }

.aviso-selo {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  border: 1px solid var(--hair-strong); color: var(--ink-2);
}
.aviso-selo svg { width: 21px; height: 21px; }
.aviso-selo.alerta { border-color: rgba(255,176,32,.35); color: var(--warn); background: rgba(255,176,32,.1); }

.acao-mei {
  margin-top: 20px; padding: 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center;
}
@media (max-width: 900px) { .acao-mei { grid-template-columns: 1fr; gap: 20px; } }
.acao-mei h3 { font-size: 1.24rem; font-weight: 800; letter-spacing: -.03em; margin: 12px 0 10px; }
.acao-mei p { color: var(--ink-2); font-size: .92rem; line-height: 1.65; max-width: 62ch; }
.acao-mei-cta { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 900px) { .acao-mei-cta { flex-direction: row; flex-wrap: wrap; } .acao-mei-cta .btn { flex: 1; } }

/* ── Suporte ────────────────────────────────────────────────── */
.suporte-card { padding: 42px 34px; text-align: center; display: grid; gap: 14px; justify-items: center; }
.suporte-card p { color: var(--ink-2); font-size: .96rem; line-height: 1.65; max-width: 50ch; }
.suporte-card .btn { margin-top: 10px; }
.suporte-horario { font-size: .8rem; }
.suporte-pulse {
  width: 66px; height: 66px; border-radius: 22px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(37,211,102,.24), rgba(37,211,102,.05));
  border: 1px solid rgba(37,211,102,.3); color: #25d366; margin-bottom: 6px;
  animation: pulseWa 2.6s ease-in-out infinite;
}
.suporte-pulse svg { width: 30px; height: 30px; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.34) }
  60% { box-shadow: 0 0 0 18px rgba(37,211,102,0) }
}
@media (max-width: 560px) { .suporte-card { padding: 32px 22px; } }

/* ── Segurança ──────────────────────────────────────────────── */
.seg-grid { grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
@media (max-width: 940px) { .seg-grid { grid-template-columns: 1fr !important; gap: 26px !important; } }

/* ── Rodapé ─────────────────────────────────────────────────── */
.footer-legal { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--hair); }
.footer-legal p { font-size: .76rem; line-height: 1.7; max-width: 92ch; }
