:root {
  --ink: #0f1419;
  --ink-2: #2a3340;
  --mute: #5c6775;
  --line: #dfe3ea;
  --paper: #f7f4ef;
  --paper-2: #fffdf9;
  --asphalt: #0c1a2e;
  --asphalt-2: #132238;
  --amber: #059669;
  --amber-2: #34d399;
  --gold: #d4a017;
  --gold-2: #f0c040;
  --sky: #1550b0;
  --ok: #059669;
  --radius: 14px;
  --max: 1120px;
  --read: 720px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Newsreader", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(16, 21, 28, .92);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em;
  color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .55rem;
}
.logo-mark {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232,160,28,.2);
}
.nav { display: flex; flex-wrap: wrap; gap: .15rem .1rem; }
.nav a {
  color: #c6ccd6; text-decoration: none; font-size: .88rem; font-weight: 600;
  padding: .55rem .8rem; border-radius: 999px;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Hero landing */
.hero {
  position: relative; min-height: min(92vh, 760px);
  display: grid; align-items: end;
  color: #fff; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,13,18,.25) 0%, rgba(10,13,18,.72) 55%, rgba(10,13,18,.92) 100%),
    radial-gradient(900px 420px at 70% 20%, rgba(232,160,28,.22), transparent 60%),
    url("https://images.unsplash.com/photo-1544552866-3a09857676f2?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat,
    var(--asphalt);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 28px, transparent 28px 48px);
  opacity: .85;
}
.hero-copy {
  position: relative; z-index: 1;
  padding: 0 0 64px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  animation: rise .9s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 800; letter-spacing: -.04em; line-height: .95;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-body);
  font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  max-width: 18ch; line-height: 1.25; color: #f3f5f8;
}
.hero p {
  margin-top: 1rem; max-width: 36ch; color: #c8d0db; font-size: 1.05rem;
}
.hero-cta {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .7rem;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.2rem; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #1a1400; }
.btn-primary:hover { background: var(--amber-2); color: #1a1400; }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section-head {
  max-width: 40rem; margin-bottom: 2rem;
}
.section-head .kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .6rem;
  font-family: var(--font-ui);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: .7rem;
}
.section-head p { color: var(--mute); font-size: 1.05rem; }

.topic-rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.topic-rail a {
  background: var(--paper-2); padding: 1.4rem 1.2rem; text-decoration: none; color: inherit;
  transition: background .15s ease;
}
.topic-rail a:hover { background: #fff; }
.topic-rail strong {
  display: block; font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: -.02em; margin-bottom: .35rem;
}
.topic-rail span { color: var(--mute); font-size: .92rem; }

.guide-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.guide-item {
  display: grid; grid-template-columns: 4.5rem 1fr auto; gap: 1rem; align-items: baseline;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit;
}
.guide-item:hover h3 { color: var(--sky); }
.guide-item .num {
  font-family: var(--font-display); font-weight: 700; color: var(--amber);
  font-size: 1.1rem;
}
.guide-item h3 {
  font-family: var(--font-body); font-size: 1.2rem; font-weight: 600;
  letter-spacing: -.01em; line-height: 1.3;
}
.guide-item p { color: var(--mute); font-size: .95rem; margin-top: .25rem; }
.guide-item .tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
}

.article {
  max-width: var(--read); margin: 0 auto 3rem;
}
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.02em; margin: 2.2rem 0 .9rem; scroll-margin-top: 84px;
}
.article h3 {
  font-family: var(--font-body); font-size: 1.2rem; margin: 1.4rem 0 .5rem;
}
.article p, .article li { font-family: var(--font-body); font-size: 1.12rem; color: var(--ink-2); }
.article p + p { margin-top: 1rem; }
.article ul { padding-left: 1.2rem; margin: .8rem 0 1rem; }
.article li { margin: .35rem 0; }

.faq details {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: .7rem; color: var(--ink-2); font-family: var(--font-body); font-size: 1.05rem;
}

.legal-hero {
  background: var(--asphalt); color: #fff; padding: 56px 0 42px;
  border-bottom: 3px solid var(--amber);
}
.legal-hero .crumb {
  font-size: .82rem; color: #9aa3b0; margin-bottom: .8rem;
}
.legal-hero .crumb a { color: #cfd5de; text-decoration: none; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.03em; line-height: 1.1; max-width: 16ch;
}
.legal-hero p { margin-top: .8rem; color: #b7c0cc; max-width: 40rem; }
.legal-body {
  width: min(var(--read), calc(100% - 40px));
  margin: 40px auto 72px;
}
.legal-body h2 {
  font-family: var(--font-display); font-size: 1.35rem;
  margin: 2rem 0 .7rem; letter-spacing: -.02em;
}
.legal-body h3 { font-size: 1.05rem; margin: 1.3rem 0 .45rem; }
.legal-body p, .legal-body li { color: var(--ink-2); margin-bottom: .85rem; }
.legal-body ul { padding-left: 1.15rem; margin-bottom: 1rem; }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem;
  font-size: .85rem; color: var(--mute); margin-top: 1rem;
}
.policy-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 1.5rem;
}
.policy-grid a {
  display: block; padding: 1.2rem 1.15rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper-2); text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.policy-grid a:hover { border-color: var(--amber); transform: translateY(-2px); }
.policy-grid strong {
  display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .35rem;
}
.policy-grid span { color: var(--mute); font-size: .92rem; }

.contact-box {
  display: grid; gap: 1rem; margin-top: 1.5rem;
  padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2);
}
.contact-box dt { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.contact-box dd { font-size: 1.05rem; margin-bottom: .6rem; }

.site-footer {
  background: var(--asphalt); color: #aeb6c2; padding: 48px 0 0; margin-top: 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding-bottom: 36px;
}
.site-footer .logo { margin-bottom: .7rem; }
.site-footer p { font-size: .92rem; max-width: 32ch; line-height: 1.7; }
.site-footer h4 {
  color: #fff; font-family: var(--font-display); font-size: .95rem;
  margin-bottom: .8rem; letter-spacing: -.01em;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #c3cad4; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 22px; font-size: .8rem; color: #808996;
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: space-between;
}

.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 520px; margin-inline: auto;
  background: var(--asphalt-2); color: #e8ecf2;
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 1rem 1.1rem; box-shadow: 0 18px 50px rgba(0,0,0,.35);
  display: none;
}
.cookie-bar.is-on { display: block; animation: rise .5s ease both; }
.cookie-bar p { font-size: .9rem; margin-bottom: .85rem; color: #c5ccd6; }
.cookie-bar .row { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-bar .btn { padding: .65rem 1rem; font-size: .85rem; }

@media (max-width: 900px) {
  .topic-rail { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .topic-rail { grid-template-columns: 1fr; }
  .guide-item { grid-template-columns: 2.5rem 1fr; }
  .guide-item .tag { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; align-items: end; }
}

/* ── Ebook / produto digital ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: -32px; position: relative; z-index: 2;
  box-shadow: 0 20px 50px rgba(12,26,46,.12);
}
.stats-bar div {
  background: #fff; padding: 1.25rem 1rem; text-align: center;
}
.stats-bar strong {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--sky); letter-spacing: -.02em;
}
.stats-bar span { font-size: .78rem; color: var(--mute); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.ebook-section { padding-top: 88px; }
.ebook-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center;
}
.ebook-cover {
  position: relative; max-width: 340px; margin: 0 auto;
  transform: perspective(800px) rotateY(-8deg);
  transition: transform .4s ease;
}
.ebook-cover:hover { transform: perspective(800px) rotateY(0deg); }
.ebook-cover-inner {
  background: linear-gradient(145deg, #0c326f 0%, #1550b0 50%, #059669 100%);
  border-radius: 8px 16px 16px 8px; padding: 32px 28px 40px;
  box-shadow: 12px 20px 40px rgba(12,50,111,.35), inset 0 1px 0 rgba(255,255,255,.15);
  color: #fff; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
  border-left: 6px solid var(--gold);
}
.ebook-cover .badge {
  display: inline-block; background: var(--gold); color: #1a1400;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 4px; align-self: flex-start;
}
.ebook-cover h3 {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 800;
  line-height: 1.15; letter-spacing: -.03em; margin-top: 1rem;
}
.ebook-cover p { font-size: .88rem; opacity: .85; margin-top: .5rem; }
.ebook-cover .author { font-size: .75rem; opacity: .7; margin-top: auto; padding-top: 1.5rem; }

.ebook-details h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem;
}
.ebook-details .lead { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 1.5rem; line-height: 1.6; }
.ebook-features { list-style: none; margin: 0 0 1.5rem; }
.ebook-features li {
  display: flex; gap: .75rem; align-items: flex-start; padding: .65rem 0;
  border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-2);
}
.ebook-features li::before {
  content: "✓"; color: var(--ok); font-weight: 800; flex-shrink: 0;
}
.price-box {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem; background: var(--paper-2); border: 2px solid var(--gold);
  border-radius: var(--radius); margin-bottom: 1rem;
}
.price-box .old { font-size: 1rem; color: var(--mute); text-decoration: line-through; }
.price-box .now {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--sky); letter-spacing: -.02em;
}
.price-box .off {
  background: #fef2f2; color: #dc2626; font-size: .72rem; font-weight: 800;
  padding: .3rem .6rem; border-radius: 4px; letter-spacing: .04em;
}

.chapters-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.chapter-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; transition: border-color .15s, transform .15s;
}
.chapter-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.chapter-card .num {
  font-family: var(--font-display); font-size: .75rem; font-weight: 800;
  color: var(--amber); letter-spacing: .1em; margin-bottom: .5rem;
}
.chapter-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; line-height: 1.3; }
.chapter-card p { font-size: .85rem; color: var(--mute); line-height: 1.45; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; position: relative;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: 8px; left: 14px;
  font-size: 2.5rem; color: var(--amber); opacity: .35; font-family: Georgia, serif; line-height: 1;
}
.testimonial p { font-size: .92rem; color: var(--ink-2); margin-top: 1rem; line-height: 1.55; font-style: italic; }
.testimonial .who { margin-top: .85rem; font-size: .8rem; font-weight: 700; color: var(--ink); }
.testimonial .who span { display: block; font-weight: 500; color: var(--mute); font-size: .75rem; }

.cta-band {
  background: linear-gradient(135deg, var(--asphalt) 0%, #1550b0 100%);
  color: #fff; padding: 56px 0; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.02em; margin-bottom: .75rem;
}
.cta-band p { color: #c8d0db; max-width: 42ch; margin: 0 auto 1.5rem; font-size: 1.05rem; }

@media (max-width: 900px) {
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .ebook-grid { grid-template-columns: 1fr; gap: 32px; }
  .ebook-cover { max-width: 280px; }
  .chapters-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .chapters-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ── Checkout ebook ── */
.checkout-page { background: var(--paper); min-height: 100vh; }
.checkout-top {
  background: var(--asphalt); color: #fff; padding: 14px 0;
  border-bottom: 3px solid var(--amber);
}
.checkout-top-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.checkout-top .logo { font-size: 1rem; }
.checkout-secure { font-size: .75rem; color: #9aa3b0; display: flex; align-items: center; gap: 6px; }
.checkout-wrap { max-width: 520px; margin: 0 auto; padding: 28px 20px 48px; }
.checkout-steps {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.checkout-step {
  flex: 1; text-align: center; padding: 10px 8px; border-radius: 8px;
  background: #fff; border: 1px solid var(--line); font-size: .72rem; font-weight: 700;
  color: var(--mute); text-transform: uppercase; letter-spacing: .04em;
}
.checkout-step.active { border-color: var(--sky); color: var(--sky); background: #eff6ff; }
.checkout-step.done { border-color: var(--ok); color: var(--ok); background: #ecfdf5; }
.ck-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; margin-bottom: 16px; box-shadow: 0 4px 20px rgba(12,26,46,.06);
}
.ck-box h1 {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.02em;
  margin-bottom: 6px; line-height: 1.2;
}
.ck-box .sub { font-size: .88rem; color: var(--mute); margin-bottom: 18px; line-height: 1.5; }
.ck-product {
  display: flex; gap: 14px; padding: 14px; background: var(--paper);
  border-radius: 10px; margin-bottom: 18px; border: 1px solid var(--line);
}
.ck-product-cover {
  width: 56px; height: 72px; flex-shrink: 0; border-radius: 6px;
  background: linear-gradient(145deg, #0c326f, #059669);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; color: #fff; text-align: center; padding: 4px;
}
.ck-product-info strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.ck-product-info span { font-size: .8rem; color: var(--mute); }
.ck-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.ck-price-row .total { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--sky); }
.ck-label { font-size: .78rem; font-weight: 700; color: var(--ink-2); margin-bottom: 5px; display: block; }
.ck-input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 8px;
  padding: 12px 14px; font-size: 15px; font-family: var(--font-ui); margin-bottom: 14px;
}
.ck-input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(21,80,176,.12); }
.ck-btn {
  width: 100%; padding: 15px; border: none; border-radius: 999px;
  background: var(--amber); color: #fff; font-family: var(--font-ui);
  font-size: 1rem; font-weight: 800; cursor: pointer; transition: transform .15s, background .15s;
}
.ck-btn:hover { background: var(--amber-2); transform: translateY(-1px); }
.ck-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.ck-note { text-align: center; font-size: .72rem; color: var(--mute); margin-top: 12px; line-height: 1.45; }
.ck-trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.ck-trust span {
  font-size: .68rem; font-weight: 600; color: var(--mute);
  background: #fff; border: 1px solid var(--line); padding: 5px 10px; border-radius: 6px;
}
.pix-ck-summary {
  background: linear-gradient(135deg, var(--asphalt), var(--sky));
  color: #fff; border-radius: var(--radius); padding: 18px; margin-bottom: 16px;
}
.pix-ck-summary .lbl { font-size: .68rem; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.pix-ck-summary .val { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; }
.pix-ck-summary .timer { float: right; text-align: right; font-size: .75rem; opacity: .85; }
.pix-ck-summary .timer strong { display: block; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
#pix-ck-area { display: none; }
.qr-ck { text-align: center; padding: 16px; border: 2px solid var(--sky); border-radius: 12px; margin-bottom: 14px; background: #fff; }
.qr-ck img { width: 200px; height: 200px; max-width: 100%; }
.copy-ck {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 14px;
}
.copy-ck code {
  display: block; font-size: 10px; word-break: break-all; max-height: 64px; overflow-y: auto;
  margin-bottom: 10px; line-height: 1.5; color: var(--ink-2);
}
.copy-ck button {
  width: 100%; padding: 12px; border: none; border-radius: 8px;
  background: var(--sky); color: #fff; font-weight: 700; cursor: pointer; font-family: inherit;
}
.copy-ck button.ok { background: var(--ok); }
.ck-success { text-align: center; padding: 24px 0; display: none; }
.ck-success h2 { font-family: var(--font-display); color: var(--ok); margin-bottom: 8px; }
.ck-success p { color: var(--mute); font-size: .92rem; line-height: 1.55; }

/* ── Checkout PIX premium (white) ── */
.checkout-wrap-wide { max-width: 960px; margin: 0 auto; padding: 28px 20px 48px; }
.pix-layout {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: start;
}
.pix-order-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 4px 24px rgba(12,26,46,.06); position: sticky; top: 80px;
}
.pix-order-card h2 {
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 16px; letter-spacing: -.02em;
}
.pix-order-item {
  display: flex; gap: 14px; padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.pix-order-cover {
  width: 64px; height: 84px; flex-shrink: 0; border-radius: 8px;
  background: linear-gradient(145deg, #0c326f, #059669);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 800; color: #fff; text-align: center; padding: 6px;
  border-left: 3px solid var(--gold);
}
.pix-order-meta strong { display: block; font-size: .92rem; line-height: 1.35; margin-bottom: 4px; }
.pix-order-meta span { font-size: .78rem; color: var(--mute); }
.pix-order-rows { display: grid; gap: 8px; font-size: .85rem; }
.pix-order-rows div { display: flex; justify-content: space-between; gap: 8px; }
.pix-order-rows .k { color: var(--mute); }
.pix-order-rows .v { font-weight: 600; text-align: right; }
.pix-order-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; margin-top: 6px; border-top: 2px solid var(--asphalt);
}
.pix-order-total span:first-child { font-weight: 700; font-size: .9rem; }
.pix-order-total span:last-child {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; color: var(--sky);
}
.pix-guarantee {
  margin-top: 16px; padding: 12px; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 10px; font-size: .78rem; color: #065f46; line-height: 1.45;
}
.pix-pay-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 32px rgba(12,26,46,.08);
}
.pix-pay-head {
  background: linear-gradient(135deg, var(--asphalt) 0%, #1550b0 100%);
  color: #fff; padding: 20px 22px; display: flex; justify-content: space-between; align-items: flex-start;
}
.pix-pay-head h1 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 4px; }
.pix-pay-head p { font-size: .82rem; opacity: .85; }
.pix-pay-timer {
  text-align: right; background: rgba(0,0,0,.2); padding: 8px 14px; border-radius: 8px;
}
.pix-pay-timer .lbl { font-size: .65rem; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.pix-pay-timer .num { font-size: 1.25rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.pix-pay-timer .num.urgente { color: #fca5a5; }
.pix-pay-body { padding: 22px; }
.pix-instructions {
  text-align: center; font-size: .88rem; color: var(--ink-2); margin-bottom: 18px; line-height: 1.5;
}
.pix-qr-frame {
  position: relative; text-align: center; padding: 20px; margin-bottom: 18px;
  border: 2px solid var(--sky); border-radius: 14px; background: #fafbfc;
}
.pix-qr-label {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--sky); color: #fff; font-size: .65rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .12em;
}
.pix-qr-frame img { width: 220px; height: 220px; max-width: 100%; border-radius: 8px; }
.pix-qr-loader { padding: 50px 20px; }
.pix-qr-loader-bar {
  height: 4px; background: #e5e7eb; border-radius: 4px; overflow: hidden; max-width: 200px; margin: 0 auto 12px;
}
.pix-qr-loader-fill {
  height: 100%; width: 40%; background: var(--sky); border-radius: 4px;
  animation: pix-load-slide 1.2s ease infinite;
}
@keyframes pix-load-slide { 0%{ transform: translateX(-100%); } 100%{ transform: translateX(350%); } }
.pix-copy-block {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px;
}
.pix-copy-label { font-size: .72rem; font-weight: 700; color: var(--mute); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.pix-copy-code {
  font-family: ui-monospace, monospace; font-size: 10px; word-break: break-all;
  max-height: 72px; overflow-y: auto; line-height: 1.55; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px; margin-bottom: 12px;
}
.pix-copy-btn {
  width: 100%; padding: 14px; border: none; border-radius: 999px;
  background: var(--sky); color: #fff; font-weight: 800; font-size: .95rem; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .1s;
}
.pix-copy-btn:hover { background: #0c326f; }
.pix-copy-btn.ok { background: var(--ok); }
.pix-wait {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 12px; background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 10px; font-size: .78rem; font-weight: 600; color: var(--sky);
}
.pix-wait-dot { width: 8px; height: 8px; background: var(--sky); border-radius: 50%; animation: pix-pulse 1.5s ease infinite; }
@keyframes pix-pulse { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
.white-ft-mini {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center;
  font-size: .72rem;
}
.white-ft-mini a { color: var(--mute); text-decoration: none; }
.white-ft-mini a:hover { color: var(--sky); }
.obrigado-wrap { max-width: 520px; margin: 0 auto; padding: 48px 20px; text-align: center; }
.obrigado-icon {
  width: 72px; height: 72px; border-radius: 50%; background: #ecfdf5; color: var(--ok);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 2rem; font-weight: 800;
}
.obrigado-wrap h1 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 10px; }
.obrigado-wrap p { color: var(--mute); line-height: 1.6; margin-bottom: 8px; }
.obrigado-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; margin: 24px 0; text-align: left; font-size: .88rem;
}
.obrigado-box div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #f3f4f6; }
.obrigado-box div:last-child { border-bottom: none; }
@media (max-width: 860px) {
  .pix-layout { grid-template-columns: 1fr; }
  .pix-order-card { position: static; }
}
