:root {
  --navy: #16233a;
  --navy-2: #1f3350;
  --mint: #63d1a3;
  --mint-ink: #16233a;
  --page: #f6f8fa;
  --card: #ffffff;
  --line: #e4e9ef;
  --text: #1b2536;
  --muted: #59637a;
  --err: #c0362c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--page);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3, .brand { font-family: 'Bricolage Grotesque', system-ui, sans-serif; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy);
  color: #eaf0f7;
}
.brand { color: #eaf0f7; text-decoration: none; font-weight: 700; font-size: 18px; display: inline-flex; align-items: center; gap: 8px; }
.brand-mark { color: var(--mint); }
.brand-logo { height: 22px; width: auto; display: block; }
.topbar-link { color: #eaf0f7; text-decoration: none; font-size: 14px; font-weight: 600; }
.topbar-link:hover { color: var(--mint); }
.who { font-size: 14px; opacity: .85; margin-right: 8px; }

.email-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding: 10px 16px;
  background: #fff8e6;
  border-bottom: 1px solid #f0e0b8;
  font-size: 14px;
  color: #5c4a1a;
}
.email-banner-form { margin: 0; display: inline; }
.email-banner-btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  color: #2f8f6b;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.email-banner-btn.primary {
  text-decoration: none;
  background: #16233a;
  color: #eaf0f7;
  padding: 6px 12px;
  border-radius: 8px;
}

.container {
  max-width: 460px;
  margin: 32px auto;
  padding: 0 16px;
}

.painel-shell { display: flex; flex-direction: column; }
.painel-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.painel-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
}
.painel-nav a.is-active {
  background: var(--navy);
  color: #eaf0f7;
}
.painel-nav a:hover:not(.is-active) { color: var(--navy); background: var(--page); }
.painel-main {
  width: 100%;
  max-width: 640px;
  margin: 24px auto;
  padding: 0 16px;
}

@media (min-width: 900px) {
  .painel-shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    max-width: 1080px;
    margin: 0 auto;
    min-height: calc(100vh - 140px);
    align-items: start;
  }
  .painel-nav {
    flex-direction: column;
    overflow: visible;
    gap: 4px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 24px 16px;
    background: transparent;
    position: sticky;
    top: 0;
  }
  .painel-main { margin: 32px auto; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.card.narrow { max-width: 400px; }

h1 { font-size: 22px; margin: 0 0 8px; }
h2 { font-size: 16px; margin: 20px 0 6px; }
.lead { font-size: 16px; color: var(--muted); }
.muted { color: var(--muted); font-size: 14px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; word-break: break-all; }

.form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }
.form input {
  font: inherit;
  font-size: 16px;
  color: var(--text);
  padding: 11px 13px;
  border: 1px solid #d3dae6;
  border-radius: 10px;
  background: #fff;
}
.form label.check { flex-direction: row; align-items: flex-start; gap: 9px; font-weight: 400; color: var(--text); }
.form label.check input { width: auto; margin-top: 3px; }

.err { color: var(--err); font-size: 12px; font-weight: 600; }

.actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--mint-ink);
  background: var(--mint);
  border: none;
  border-radius: 11px;
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn.ghost { background: #fff; color: var(--navy); border: 1px solid #d3dae6; }
.btn.small { font-size: 13px; padding: 8px 12px; border-radius: 9px; }
.link { background: none; border: none; color: #eaf0f7; text-decoration: underline; cursor: pointer; font: inherit; font-size: 14px; }
.inline { display: inline-flex; align-items: center; }

.btn:focus-visible,
.btn.ghost:focus-visible,
.link:focus-visible,
.topbar-link:focus-visible,
.lp-faq summary:focus-visible,
.painel-nav a:focus-visible,
.swatch:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.notice {
  background: #e8f4ee;
  border: 1px solid #cdeadd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  margin: 14px 0;
}

.empty { text-align: center; padding: 20px 8px; color: var(--muted); }
.empty-icon { font-size: 28px; margin: 0 0 8px; color: var(--navy); }
.erro-page { text-align: center; padding: 28px 18px; }
.erro-page h1 { font-size: 28px; margin: 0 0 10px; }
.actions.center { justify-content: center; }
.small { font-size: 12px; }
.row { display: flex; gap: 12px; }
.row label { flex: 1; }

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.metric {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
}
.metric strong {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.metric .small { display: block; margin-top: 4px; }

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0 8px;
}
.metrics-table th,
.metrics-table td {
  text-align: left;
  padding: 8px 10px 8px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.metrics-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}
.metrics-table .num { font-variant-numeric: tabular-nums; }
.adesao-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.adesao-rate .num { flex: 0 0 3em; }
.adesao-rate .progress {
  flex: 1;
  height: 10px;
  border-width: 1px;
}

.chart {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 16px 0 8px;
}
.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.chart-track {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.chart-bar {
  width: 100%;
  background: var(--mint);
  border-radius: 5px 5px 0 0;
}
.chart-bar.is-current { background: var(--navy); }
.chart-bar.has-value { min-height: 4px; }
.chart-value, .chart-label {
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.wizard { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }

.preview { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.card-preview {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  box-shadow: 0 2px 10px rgba(22, 35, 58, .12);
}
.card-preview-logo { max-height: 40px; align-self: flex-start; object-fit: contain; }
.card-preview-reward { font-size: 17px; }
.stamp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.stamp-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid; opacity: .8; }
.points-line { font-size: 15px; font-weight: 600; }

.qr { display: block; margin: 16px auto; width: 240px; height: 240px; border: 1px solid var(--line); border-radius: 12px; }

.scan-stage {
  position: relative;
  margin: 16px 0;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 420px;
}
.scan-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-web {
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(22, 35, 58, .16);
}
.card-web.is-ready {
  box-shadow: 0 0 0 3px var(--mint), 0 8px 24px rgba(22, 35, 58, .2);
}
.card-logo-initial {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  background: rgba(255, 255, 255, .18);
}
.progress {
  height: 14px;
  border: 2px solid;
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 999px; transition: width .3s; }
.reward-badge {
  margin-top: 4px;
  background: rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.form select {
  font: inherit;
  font-size: 16px;
  color: var(--text);
  padding: 11px 13px;
  border: 1px solid #d3dae6;
  border-radius: 10px;
  background: #fff;
}
.form input[type="color"] { padding: 4px; height: 44px; width: 100%; }

.palette-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 8px; }
.swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid; padding: 0; cursor: pointer;
}
.contrast-warn {
  background: #fff8e6; border-color: #f0d98a; color: #6b5400;
}

.foot { text-align: center; color: var(--muted); font-size: 12px; padding: 24px; }
.foot a { color: var(--muted); }

.form textarea {
  font: inherit;
  font-size: 16px;
  color: var(--text);
  padding: 11px 13px;
  border: 1px solid #d3dae6;
  border-radius: 10px;
  background: #fff;
  resize: vertical;
}

/* Texto corrido: política de privacidade, termos, regras da promoção */
[x-cloak] { display: none !important; }
.prose { line-height: 1.6; }
.prose h2 { font-size: 16px; margin: 22px 0 6px; }
.prose p { margin: 10px 0; }
.prose ol, .prose ul { margin: 10px 0; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.prose.small p { white-space: pre-line; }

.rules-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.rules-box p { margin: 6px 0 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 35, 58, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}
.modal {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
  max-width: 360px;
  width: 100%;
  text-align: left;
}
.modal h2 { margin: 0 0 10px; }
.modal .btn { margin-top: 8px; width: 100%; }

/* Balcão — lista de clientes e histórico do cartão */
.cliente-list, .txn-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.cliente-list a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; color: var(--text);
}
.cliente-nome { font-weight: 700; }
.cliente-saldo { font-size: 13px; font-weight: 600; color: var(--muted); }
.txn-list li { display: flex; align-items: baseline; gap: 10px; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.txn-amount { font-weight: 700; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; min-width: 44px; }
.notice.err { background: #fbeceb; border-color: #f2c9c5; color: var(--err); font-weight: 600; }

.flash {
  max-width: 460px; margin: 16px auto 0; padding: 12px 16px;
  background: #e8f4ee; border: 1px solid #cdeadd; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: #1b5e43; text-align: center;
}
.form-inline { margin-top: 0; }
.actions form.inline { margin: 0; }

a { color: #2f8f6b; }

/* Landing pública — chrome próprio, não o .container de 460px do painel */
.lp-page { background: var(--page); }
.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--navy);
  color: #eaf0f7;
}
.lp-topbar-inner,
.lp-shell,
.lp-foot-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.lp-topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.lp-topbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px 18px;
  min-width: 0;
}
.lp-topbar-nav .topbar-link { white-space: nowrap; }
.lp-nav-short { display: none; }
@media (max-width: 899px) {
  .lp-topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .lp-topbar .brand-logo { height: 18px; }
  .lp-nav-full { display: none; }
  .lp-nav-short { display: inline; }
  .lp-topbar-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: space-between;
    gap: 0 8px;
  }
  .lp-topbar-nav .topbar-link,
  .lp-topbar-inner > .topbar-link {
    font-size: 12px;
  }
}
.lp-shell { padding-top: 28px; padding-bottom: 48px; }
.lp-foot { border-top: 1px solid var(--line); padding: 20px 0 28px; }
.lp-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}
.lp-foot-inner a { color: var(--muted); }

.lp { display: flex; flex-direction: column; gap: 56px; }

.lp-hero { display: flex; flex-direction: column; gap: 28px; }
.lp-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}
.lp-hero-copy > * { max-width: 100%; }
.lp-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2f8f6b;
}
.lp-hero h1 { font-size: 32px; line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
.lp-sub { font-size: 17px; color: var(--muted); margin: 0; }
.lp-sub mark,
.lp-note mark {
  background: rgba(99, 209, 163, .35);
  color: var(--navy);
  font-weight: 700;
  padding: 0 .18em;
  border-radius: 3px;
}
.lp-note { font-size: 14px; color: var(--muted); margin: 0; }
.lp-note a { color: var(--muted); font-weight: 600; }
.lp-optional { font-weight: 400; }
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 4px;
  width: 100%;
}

.lp-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-top: 4px;
}
.lp-cta { width: 100%; }
.lp-hero-actions .lp-cta { width: auto; }

.lp-pass-carousel {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: transparent;
}
.lp-pass-stage { position: relative; background: transparent; }
.lp-pass-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}
.lp-pass-track::-webkit-scrollbar { display: none; }
.lp-pass-track:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
  border-radius: 28px;
}
.lp-device {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lp-phone { width: min(232px, 100%); }
.lp-phone-bezel {
  position: relative;
  padding: 10px;
  background: #1c1c1e;
  border-radius: 38px;
  box-shadow:
    0 0 0 1px #3a3a3e,
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.lp-phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 428px;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  color: var(--text);
}
.lp-phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  background: #0a0a0c;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #111;
}
.lp-phone-hole {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 4;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 40% 35%, #3a4a66 0 2px, #0a0a0c 3px 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px #1c1c20, 0 0 0 3.5px #2a2a30;
}
.lp-phone--galaxy .lp-phone-bezel {
  padding: 7px;
  background: #0f0f12;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px #333338,
    inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.lp-phone--galaxy .lp-phone-screen { border-radius: 17px; }

.lp-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  padding: 8px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
}
.lp-status--ios { padding-top: 12px; padding-right: 14px; padding-left: 22px; }
.lp-status--android { padding: 6px 12px 2px 14px; }
.lp-status-end { display: flex; align-items: center; gap: 5px; }
.lp-batt {
  width: 20px;
  height: 10px;
  border: 1.2px solid currentColor;
  border-radius: 3px;
  position: relative;
  opacity: .9;
}
.lp-batt::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 1.5px;
  height: 4px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}
.lp-batt i {
  display: block;
  height: 100%;
  width: 70%;
  background: currentColor;
  border-radius: 1px;
}
.lp-batt.android { border-radius: 2px; }

.lp-safari {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 0 0 auto;
  margin: 0 8px 8px;
  padding: 7px 10px;
  background: #eceff4;
  border: 1px solid #e0e5ed;
  border-radius: 12px;
  color: var(--muted);
}
.lp-safari-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.lp-safari-tools { display: flex; opacity: .7; }

.lp-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin: 2px 6px 6px;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid #e0e5ed;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(22, 35, 58, .06);
}
.lp-chrome-fav {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-chrome-url {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.lp-chrome-tab {
  width: 16px;
  height: 16px;
  border: 1.4px solid var(--navy);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-client {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
.lp-client-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  padding: 8px 10px;
  background: var(--navy);
  color: #eaf0f7;
  font-size: 10px;
  font-weight: 600;
}
.lp-client-brand {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.lp-client-body {
  flex: 1;
  min-height: 0;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.lp-client-body .lp-pass { flex: 0 0 auto; }
.lp-pass {
  background: var(--navy);
  color: #eaf0f7;
  border-radius: 14px;
  padding: 14px 12px 12px;
  box-shadow: 0 8px 22px rgba(22, 35, 58, .22);
  width: 100%;
}
.lp-mock-who {
  margin: 2px 0 0;
  font-size: 10px;
  color: #9aadc4;
}
.lp-mock-qrwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  text-align: center;
}
.lp-mock-qr {
  width: 56px;
  height: 56px;
  /* zona de silêncio: sem margem branca em volta o QR não é lido */
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.lp-mock-code {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--navy);
}
.lp-mock-hint { margin: 0; font-size: 10px; color: var(--muted); }
.lp-mock-a2hs {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 10px;
  border: 1px solid #d3dae6;
  border-radius: 8px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
}

.lp-home-ind {
  display: block;
  width: 96px;
  height: 4px;
  margin: 2px auto 6px;
  background: var(--navy);
  border-radius: 999px;
  opacity: .85;
}
.lp-android-nav {
  display: block;
  width: 72px;
  height: 3px;
  margin: 4px auto 8px;
  background: var(--navy);
  border-radius: 999px;
  opacity: .7;
}
.lp-device-cap {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.lp-reg {
  font-size: .72em;
  font-weight: 700;
  position: relative;
  top: -0.35em;
  margin-left: .06em;
}
.lp-pass-top { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.lp-pass-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--navy-2);
  color: var(--mint);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-title { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; font-size: 13px; margin: 0; color: #d9e3f1; }
.lp-mock-kind {
  margin: 8px 0 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mint);
}
.lp-mock-reward { font-size: 15px; font-weight: 700; margin: 2px 0 10px; font-family: 'Bricolage Grotesque', system-ui, sans-serif; }
.lp-mock-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.lp-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(99, 209, 163, .35);
  background: transparent;
}
.lp-stamp.filled { background: var(--mint); border-color: var(--mint); }
.lp-mock-points {
  margin: 0 0 8px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--mint);
}
.lp-mock-points span { font-size: 13px; font-weight: 700; color: #7e9abd; }
.lp-mock-bar {
  height: 8px;
  border-radius: 999px;
  border: 2px solid rgba(99, 209, 163, .4);
  overflow: hidden;
}
.lp-mock-bar-fill {
  display: block;
  height: 100%;
  background: var(--mint);
  border-radius: 999px;
}
.lp-mock-progress { font-size: 11px; margin: 8px 0 0; color: #7e9abd; }
.lp-pass-nav {
  display: none;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(22, 35, 58, .12);
}
.lp-pass-nav:hover { color: #2f8f6b; }
.lp-pass-nav.prev { left: -6px; }
.lp-pass-nav.next { right: -6px; }
.lp-pass-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.lp-pass-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5cedb;
  cursor: pointer;
}
.lp-pass-dots button[aria-current="true"] { background: var(--navy); width: 18px; border-radius: 999px; }

@media (prefers-reduced-motion: reduce) {
  .lp-pass-track { scroll-behavior: auto; }
  .progress-fill { transition: none; }
}

.lp-section-title,
.lp-steps h2,
.lp-roadmap h2,
.lp-faq h2 {
  font-size: 22px;
  margin: 0 0 16px;
}

.lp-steps-split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.lp-steps-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.lp-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lp-steps-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.lp-step-n {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--mint);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lp-steps-list h3 { font-size: 14px; margin: 0 0 2px; }
.lp-steps-list p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.4; }

.lp-laptop-wrap {
  order: -1;
  margin: 0;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-laptop { width: 100%; }
.lp-laptop-lid {
  background: #1c1c1e;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 8px;
}
.lp-laptop-bezel {
  position: relative;
  background: #0b0b0d;
  border-radius: 8px;
  padding: 12px 8px 8px;
}
.lp-laptop-cam {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  background: #2a2a30;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px #1a1a22, 0 0 0 1px #111;
}
.lp-laptop-screen {
  display: flex;
  flex-direction: column;
  background: var(--page);
  border-radius: 3px;
  overflow: hidden;
  min-height: 220px;
  min-width: 0;
}
.lp-laptop-base {
  position: relative;
  height: 14px;
  background: linear-gradient(to bottom, #c8ccd3, #aeb4be 55%, #9aa1ac);
  border-radius: 0 0 10px 10px;
}
.lp-laptop-base::before,
.lp-laptop-base::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18%;
  height: 8px;
  background: #8d949e;
}
.lp-laptop-base::before { left: -2%; border-radius: 0 0 0 18px; transform: skewX(28deg); }
.lp-laptop-base::after { right: -2%; border-radius: 0 0 18px 0; transform: skewX(-28deg); }
.lp-laptop-dent {
  position: absolute;
  left: 50%;
  top: 0;
  width: 22%;
  height: 5px;
  transform: translateX(-50%);
  background: #d8dce3;
  border-radius: 0 0 6px 6px;
}

.lp-pm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  padding: 7px 10px;
  background: var(--navy);
  color: #eaf0f7;
  font-size: 9px;
  font-weight: 600;
}
.lp-pm-brand {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
}
.lp-pm-body {
  display: grid;
  grid-template-columns: minmax(0, 64px) minmax(0, 1fr);
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.lp-pm-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 6px;
  border-right: 1px solid var(--line);
  background: transparent;
}
.lp-pm-nav span {
  padding: 5px 6px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 600;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-pm-nav .is-on {
  background: var(--navy);
  color: #eaf0f7;
}
.lp-pm-main { padding: 8px 10px 10px; min-width: 0; }
.lp-pm-hi {
  margin: 0;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.lp-pm-sub { margin: 0 0 8px; font-size: 8px; color: var(--muted); }
.lp-pm-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 8px;
  min-width: 0;
}
.lp-pm-metrics div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 7px;
  min-width: 0;
  overflow: hidden;
}
.lp-pm-metrics span {
  display: block;
  font-size: 7px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-pm-metrics strong {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.lp-pm-label { margin: 0 0 1px; font-size: 8px; font-weight: 700; color: var(--muted); }
.lp-pm-reward { margin: 0; font-size: 10px; font-weight: 700; }
.lp-pm-meta { margin: 1px 0 7px; font-size: 8px; color: var(--muted); }
.lp-pm-actions { display: flex; flex-wrap: wrap; gap: 4px; }
.lp-pm-actions span {
  font-size: 7px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 5px;
  border: 1px solid #d3dae6;
  background: #fff;
  color: var(--navy);
}
.lp-pm-actions .on {
  background: var(--mint);
  border-color: var(--mint);
}

.lp-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-benefits .lp-section-title { margin-bottom: 0; }
.lp-why-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.lp-why-photo {
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: var(--page);
  width: 30%;
  max-width: 110px;
}
.lp-why-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 799px) {
  .lp-why-photo {
    width: 30%;
    max-width: 110px;
    min-height: 0;
  }
  .lp-why-photo img {
    width: 100%;
    height: auto;
    max-height: 146px;
    object-fit: contain;
  }
}
.lp-why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: stretch;
}
.lp-benefit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
}
.lp-benefit h3 { font-size: 16px; margin: 0 0 4px; }
.lp-benefit p { font-size: 14px; color: var(--muted); margin: 0; }

/* "Quem usa o Stampou": intro + lista de tipos de negócio (pills) */
.lp-who { display: flex; flex-direction: column; gap: 16px; scroll-margin-top: 72px; }
.lp-who-sub { margin: 0; font-size: 16px; color: var(--muted); max-width: 620px; }
.lp-who-list {
  list-style: none; margin: 0 auto; padding: 0;
  width: fit-content; max-width: 100%;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
@media (min-width: 800px) {
  .lp-who-list {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: center;
    justify-items: stretch;
  }
}
.lp-who-list li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px;
  font-size: 14px; font-weight: 600; color: var(--text);
}

/* CTA recorrente no fim das seções */
.lp-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 16px;
}
.lp-cta-row .lp-cta { width: auto; }
.lp-who .lp-cta-row,
.lp-roadmap .lp-cta-row { margin-top: 0; }
.lp-benefits .lp-cta-row { margin-top: 0; }

.lp-benefits,
.lp-why,
.lp-roadmap,
.lp-faq { scroll-margin-top: 72px; }

/* Marcador inclinado (nunca / impressão / não / rápido / sua) */
.lp-why mark {
  background: transparent; padding: 0; color: inherit; font-weight: 800;
  position: relative; white-space: nowrap; isolation: isolate;
}
.lp-why mark::before {
  content: ""; position: absolute;
  left: -.12em; right: -.12em; top: .12em; bottom: -.02em;
  background: var(--mint); opacity: .45;
  transform: rotate(-2deg); border-radius: .12em; z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .lp-why mark::before { transform: none; }
}

.lp-roadmap { display: flex; flex-direction: column; gap: 16px; }
.lp-roadmap-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 12px 36px rgba(22, 35, 58, .18);
}

.lp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-timeline li {
  position: relative;
  padding: 0 0 26px 30px;
  background: none;
  border: none;
}
.lp-timeline li:last-child { padding-bottom: 0; }
/* trilho vertical */
.lp-timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: -8px;
  width: 2px;
  background: rgba(99, 209, 163, .28);
}
.lp-timeline li:last-child::before { display: none; }

.lp-tl-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid var(--mint);
  background: var(--navy);
}
.lp-timeline li.is-now .lp-tl-dot {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(99, 209, 163, .22);
}
.lp-timeline li.is-later .lp-tl-dot { border-color: rgba(154, 173, 196, .5); }

.lp-tl-tag {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mint);
}
.lp-timeline li.is-later .lp-tl-tag { color: #8598b4; }

.lp-timeline h3 { font-size: 16px; margin: 0; color: #eaf0f7; line-height: 1.3; }
.lp-timeline h3 + p {
  font-size: 14px;
  color: #9aadc4;
  margin: 4px 0 0;
  max-width: 46ch;
  line-height: 1.5;
}

/* "O que vem por aí": texto no painel escuro à esquerda, prévia das carteiras
   à direita — essa coluna fica no fundo branco da página, sem painel. */
.lp-roadmap-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
.lp-wallets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lp-wallet-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.lp-wallet-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.lp-wallet-logo { display: flex; align-items: center; flex: 0 0 auto; }

.lp-wpass {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(22, 35, 58, .14);
}
.lp-wpass--apple { background: #1b2437; color: #eaf0f7; }
.lp-wpass--full { padding: 14px 12px 12px; border-radius: 14px; }
.lp-wpass-head { display: flex; align-items: center; gap: 6px; }
.lp-wpass-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--navy);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
}
.lp-wpass-store {
  margin: 0;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.lp-wpass-who { margin: 4px 0 0; font-size: 10px; color: #9aadc4; }
.lp-wpass-reward {
  margin: 8px 0 6px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.lp-wpass-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.lp-wpass-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.6px solid rgba(47, 143, 107, .4);
}
.lp-wpass-dot.filled { background: var(--mint); border-color: var(--mint); }
.lp-wpass--apple .lp-wpass-dot { border-color: rgba(99, 209, 163, .35); }
.lp-wpass-count { margin: 6px 0 8px; font-size: 10px; color: var(--muted); }
.lp-wpass--apple .lp-wpass-count { color: #9aadc4; }
/* o passe usa QR (é o que o balcão lê), não código de barras */
.lp-wpass-qr {
  align-self: center;
  margin-top: auto;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
  line-height: 0;
}
.lp-wpass-qr svg { display: block; width: 58px; height: 58px; }

.lp-wallet-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  max-width: 100%;
}
.lp-phone-screen--wallet { background: #0c1016; color: #f2f4f8; }
.lp-status--dark { color: #f2f4f8; }
.lp-wallet-app {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 12px 0;
}
.lp-wallet-app-title {
  margin: 2px 0 0;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-home-ind--dark { background: #f2f4f8; opacity: .6; }

/* Notificação de geolocalização prototipada (banner do iOS) */
.lp-geo-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, .96);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
  color: var(--navy);
}
.lp-geo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--mint);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
}
.lp-geo-text { min-width: 0; }
.lp-geo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-geo-title { margin: 1px 0 0; font-size: 11px; font-weight: 700; line-height: 1.25; }
.lp-geo-body { margin: 1px 0 0; font-size: 10px; color: var(--muted); line-height: 1.3; }

.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
}
.lp-faq summary {
  font-weight: 700;
  cursor: pointer;
}
.lp-faq details p { font-size: 14px; color: var(--muted); margin: 10px 0 0; }

.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  scroll-margin-top: 72px;
}
.lp-steps h2 { margin-bottom: 0; }
.lp-steps .lp-cta-row { justify-content: center; margin-top: 0; }
.lp-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  text-align: center;
  scroll-margin-top: 72px;
}
.lp-bottom h2 { font-size: 22px; margin: 0; }
.lp-bottom .lp-form { width: 100%; text-align: left; }
.lp-ok { max-width: 520px; display: flex; flex-direction: column; gap: 14px; padding: 24px 0 48px; }
.lp-ok h1 { font-size: 28px; margin: 0; }

@media (min-width: 800px) {
  .lp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: 48px;
    align-items: center;
  }
  .lp-hero h1 { font-size: 40px; }
  .lp-pass-carousel { max-width: 300px; }
  .lp-phone { width: 248px; }
  .lp-phone-screen { height: 448px; }
  .lp-pass-stage { padding: 0 28px; }
  .lp-pass-nav { display: flex; }
  .lp-pass-nav.prev { left: 0; }
  .lp-pass-nav.next { right: 0; }
  .lp-steps-split {
    display: grid;
    grid-template-columns: minmax(240px, .9fr) minmax(280px, 1.1fr);
    gap: 28px 36px;
    align-items: center;
  }
  .lp-steps-copy { align-self: center; }
  .lp-steps .lp-cta-row { justify-content: flex-start; }
  .lp-steps-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lp-laptop-wrap { order: 0; max-width: none; }
  .lp-laptop-screen { min-height: 252px; }
  .lp-why-split {
    grid-template-columns: minmax(260px, .92fr) minmax(0, 1.18fr);
    gap: 22px;
    align-items: stretch;
  }
  .lp-why-photo {
    width: auto;
    max-width: none;
    margin: 0;
    border-radius: 16px;
    min-height: 100%;
  }
  .lp-why-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }
  .lp-why-cards { grid-template-columns: 1fr 1fr; gap: 18px; }
  .lp-why-cards .lp-benefit:last-child { grid-column: 1 / -1; }
  .lp-roadmap-panel { padding: 40px 44px; }
  .lp-timeline { max-width: 640px; margin: 0 auto; }
  .lp-bottom { max-width: 520px; margin-inline: auto; }
  .lp-cta { width: auto; align-self: flex-start; }
  .lp-hero-actions .lp-cta { align-self: center; }
  .lp-bottom .lp-cta { align-self: center; }
  .lp-form .lp-cta { width: 100%; }
}

@media (min-width: 900px) {
  .lp-roadmap-split {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    gap: 36px;
  }
  .lp-roadmap-panel { padding: 34px 32px; }
  .lp-timeline { max-width: none; margin: 0; }
  .lp-wallets { align-self: center; }
}

/* Divulgação — lista no painel */
.divulgacao-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 14px; }
.divulgacao-item {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px; border: 1px solid var(--line); border-radius: 12px;
}
.divulgacao-item h2 { font-size: 16px; margin: 0 0 4px; }
.divulgacao-item p { margin: 0; }

/* Impressão — cartaz, tent card, adesivo */
.print-body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: #e8ecf2;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
}
.print-body-tent,
.print-body-adesivo { background: #f0f2f5; }

.print-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--mint-ink);
  background: var(--mint);
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22, 35, 58, .18);
}

.print-brand-root {
  --brand-bg: var(--navy);
  --brand-fg: #f4e9d8;
}

.print-cartaz {
  width: 794px;
  min-height: 1123px;
  background: var(--brand-bg);
  color: var(--brand-fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 68px;
  position: relative;
  box-shadow: 0 8px 32px rgba(22, 35, 58, .15);
}

.print-stampou-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: .55;
  font-size: 11px;
  letter-spacing: .04em;
}
.print-stampou-badge-lg { position: absolute; top: 30px; right: 34px; font-size: 13px; }
.print-stampou-badge-sm { margin-top: auto; }
.print-stampou-icon {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.print-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.print-brand-header-sm { gap: 12px; margin-top: 0; }

.print-logo-initial {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: var(--brand-fg);
  color: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 40px;
}
.print-logo-initial-sm { width: 58px; height: 58px; border-radius: 16px; font-size: 26px; }

.print-logo-img { max-width: 92px; max-height: 92px; border-radius: 16px; object-fit: contain; }
.print-logo-img-sm { max-width: 58px; max-height: 58px; }

.print-brand-name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .01em;
}
.print-brand-name-sm { font-size: 18px; }
.print-brand-name-xs { font-size: 17px; color: var(--brand-fg); }

.print-headline {
  margin: 40px 0 0;
  text-align: center;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 620px;
}
.print-headline-sm {
  margin: 24px 0 0;
  font-size: 32px;
  line-height: 1.12;
}

.print-tagline {
  margin: 22px 0 0;
  text-align: center;
  font-size: 21px;
  line-height: 1.5;
  opacity: .82;
  max-width: 520px;
}

.print-qr-box {
  margin-top: 44px;
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.print-qr-box-sm { margin-top: 24px; border-radius: 18px; padding: 18px; }
.print-qr-box-xs { border-radius: 16px; padding: 14px; margin: 0; }

.print-qr-img { display: block; width: 288px; height: 288px; }
.print-qr-img-sm { width: 168px; height: 168px; }
.print-qr-img-xs { width: 150px; height: 150px; }

.print-qr-url {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 16px;
  letter-spacing: .08em;
  color: #59637a;
}

.print-steps {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.print-step {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
}
.print-step-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid color-mix(in srgb, var(--brand-fg) 60%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.print-footer-note {
  margin-top: auto;
  padding-top: 40px;
  font-size: 15px;
  opacity: .55;
}

/* Tent card */
.print-tent-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}
.print-tent-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #99a3b6;
}
.print-tent-card {
  width: 420px;
  height: 520px;
  background: var(--brand-bg);
  color: var(--brand-fg);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 36px 30px;
  box-shadow: 0 4px 20px rgba(22, 35, 58, .12);
}
.print-tent-hint {
  margin-top: 16px;
  font-size: 14px;
  opacity: .82;
  text-align: center;
}
.print-tent-fold {
  width: 420px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.print-tent-fold-line { flex-grow: 1; border-top: 1.5px dashed #b6c0d0; }
.print-tent-fold-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #99a3b6;
}
.print-tent-note { font-size: 11.5px; color: #99a3b6; margin: 0; }

/* Adesivo */
.print-adesivo-wrap {
  width: 460px;
  height: 460px;
  background:
    repeating-conic-gradient(#e9edf2 0 25%, #f6f8fa 0 50%) 0 0 / 26px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-adesivo {
  position: relative;
  width: 400px;
  height: 400px;
}
.print-adesivo-fill { fill: var(--brand-bg); }
.print-adesivo-stroke { fill: none; stroke: color-mix(in srgb, var(--brand-fg) 22%, transparent); stroke-width: 1.5; }
.print-adesivo-text {
  fill: var(--brand-fg);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 5px;
}
.print-adesivo-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media print {
  .print-btn { display: none !important; }
  .print-body {
    background: #fff;
    padding: 0;
    display: block;
  }
  .print-cartaz,
  .print-tent-wrap,
  .print-adesivo-wrap {
    box-shadow: none;
  }
  .print-tent-label,
  .print-tent-fold,
  .print-tent-note { display: none; }
  @page { margin: 0; }
}
