:root {
  --blue-950: #020629;
  --blue-900: #030c4e;
  --blue-800: #07156e;
  --gold: #fac70c;
  --gold-dark: #c99000;
  --white: #f8f8fb;
  --muted: #b9bfdc;
  --line: rgba(255,255,255,.14);
  --card: rgba(255,255,255,.08);
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(250,199,12,.16), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(63,107,255,.23), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 52%, #01020d);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(45deg, rgba(255,255,255,.25) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.16) 25%, transparent 25%);
  background-size: 6px 6px;
  z-index: 0;
}

button, input, textarea { font: inherit; }
button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(2,6,41,.62);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #171000;
  font-weight: 900;
  background: linear-gradient(135deg, #fff3a8, var(--gold));
  box-shadow: 0 10px 35px rgba(250,199,12,.26);
}

.brand span, .muted { color: var(--muted); }
.brand span { display: block; font-size: 13px; }
.nav-actions { display: flex; gap: 10px; flex-wrap: wrap; }

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
}

.hero h1, .dashboard-head h1, .form-head h1, .auth-card h1 {
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .94;
  letter-spacing: -2.4px;
}

.hero p, .dashboard-head p, .form-head p, .panel-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(250,199,12,.12);
  color: #ffe277;
  border: 1px solid rgba(250,199,12,.28);
  font-size: 13px;
  font-weight: 700;
}

.cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.primary, .secondary, .ghost {
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.primary {
  color: #171000;
  background: linear-gradient(135deg, #fff3a8, var(--gold));
  box-shadow: 0 12px 36px rgba(250,199,12,.23);
}
.secondary {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
}
.ghost {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  padding: 11px 14px;
}
button:hover { transform: translateY(-1px); filter: brightness(1.04); }
.full { width: 100%; }
.hidden { display: none !important; }
.center { text-align: center; }

.certificate-preview { perspective: 1000px; }
.cert-card {
  min-height: 420px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255,255,255,.96), rgba(239,242,255,.88));
  color: #0b1235;
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(5deg);
  border: 1px solid rgba(255,255,255,.6);
}
.cert-head {
  display: flex;
  justify-content: space-between;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
}
.cert-card h2 { font-size: 40px; margin: 80px 0 16px; }
.fake-qr {
  width: 98px;
  height: 98px;
  margin-top: 45px;
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0/16px 16px,
    linear-gradient(#111 8px, transparent 8px) 0 0/16px 16px,
    #fff;
  border: 10px solid #fff;
  box-shadow: 0 0 0 1px #d3d3d3;
}

.grid { display: grid; gap: 18px; margin-top: 22px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.info-card, .panel-card, .auth-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.info-card h3, .panel-card h2 { margin: 0 0 10px; }
.dark-card {
  background: linear-gradient(145deg, rgba(250,199,12,.14), rgba(255,255,255,.07));
}

.auth-wrap {
  min-height: 620px;
  display: grid;
  place-items: center;
}
.auth-card { width: min(480px, 100%); }
.auth-card h1 { font-size: clamp(38px, 5vw, 58px); }
form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #e8ebff;
}
form { display: grid; gap: 16px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  outline: none;
  padding: 14px;
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.42); }
input:focus, textarea:focus { border-color: rgba(250,199,12,.65); box-shadow: 0 0 0 4px rgba(250,199,12,.08); }

.dashboard-head, .form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-head h1, .form-head h1 { font-size: clamp(36px, 5vw, 58px); }
.credits-box {
  min-width: 190px;
  border: 1px solid rgba(250,199,12,.35);
  border-radius: 24px;
  padding: 22px;
  background: rgba(250,199,12,.12);
}
.credits-box small { display: block; color: #ffe277; margin-bottom: 6px; }
.credits-box strong { font-size: 56px; line-height: 1; }
.card-title-row { display: flex; justify-content: space-between; gap: 12px; }
.credit-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.plan {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 18px;
  padding: 18px;
  text-align: left;
}
.plan strong { display: block; font-size: 32px; color: var(--gold); }
.plan span { color: var(--muted); }

.form-page { width: min(920px, 100%); margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.full-field { grid-column: 1 / -1; }
.file-drop span { color: var(--muted); font-size: 13px; font-weight: 500; }
.checkbox-row {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
}
.checkbox-row input { width: auto; margin-top: 4px; }

.records-list { display: grid; gap: 12px; margin-top: 18px; }
.record-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.06);
}
.record-item h3 { margin: 0 0 6px; }
.record-meta { color: var(--muted); font-size: 13px; line-height: 1.45; }
.record-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.record-actions button { white-space: nowrap; }
.empty-state {
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 18px;
  padding: 24px;
  color: var(--muted);
}
.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 14px 18px;
  background: rgba(13,18,50,.95);
  border: 1px solid var(--line);
  color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .hero, .grid.two, .grid.three, .form-grid { grid-template-columns: 1fr; }
  .dashboard-head, .form-head { align-items: flex-start; flex-direction: column; }
  .credit-plans { grid-template-columns: 1fr; }
  .record-item { grid-template-columns: 1fr; }
  .record-actions { justify-content: flex-start; }
  .cert-card { transform: none; }
}

/* Efeito visual de clique em todos os botoes */
button {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button:active {
  transform: translateY(2px) scale(.975);
  filter: brightness(.92) saturate(1.04);
}
button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255,255,255,.34), transparent 58%);
  opacity: 0;
  transform: scale(.65);
  pointer-events: none;
}
button.is-pressing::after {
  animation: rc-button-press .34s ease-out;
}
@keyframes rc-button-press {
  0% { opacity: .55; transform: scale(.65); }
  100% { opacity: 0; transform: scale(1.18); }
}
button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.tiny-note {
  margin-top: 14px !important;
  font-size: 12px;
  color: var(--muted);
}

.credit-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  min-height: 178px;
}

.plan-card.featured-plan {
  border-color: rgba(250,199,12,.65);
  box-shadow: 0 18px 45px rgba(250,199,12,.13);
}

.plan-card strong {
  font-size: 22px;
  color: #fff;
}

.plan-card span {
  color: var(--muted);
  font-weight: 700;
}

.plan-card em {
  font-style: normal;
  font-size: 24px;
  color: var(--gold);
  font-weight: 900;
  margin-top: 4px;
}

.plan-card small {
  color: var(--muted);
  font-size: 12px;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #171000 !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.plan-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mini {
  padding: 9px 11px;
  border-radius: 11px;
  font-size: 13px;
  flex: 1;
}

button.is-pressing {
  transform: translateY(1px) scale(.985) !important;
  filter: brightness(.94) !important;
}


/* Checkout Transparente Preview */
.checkout-shell{min-height:100vh;padding:32px;background:radial-gradient(circle at 15% 10%,rgba(250,199,12,.14),transparent 28%),linear-gradient(135deg,#020629 0%,#030C4E 55%,#08124f 100%);color:#fff}.back-link{display:inline-flex;align-items:center;gap:8px;color:#fac70c;text-decoration:none;font-weight:800;margin-bottom:24px}.checkout-hero{max-width:1120px;margin:0 auto 24px;display:grid;grid-template-columns:1.6fr .8fr;gap:22px;align-items:stretch}.checkout-hero h1{font-size:clamp(34px,5vw,68px);line-height:.95;margin:8px 0 14px;letter-spacing:-.04em}.checkout-hero p{font-size:20px;color:rgba(255,255,255,.72);max-width:720px}.eyebrow{display:inline-flex;padding:8px 12px;border:1px solid rgba(250,199,12,.35);border-radius:999px;color:#fac70c;font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:12px}.checkout-summary{border:1px solid rgba(250,199,12,.38);background:rgba(255,255,255,.08);border-radius:28px;padding:28px;display:flex;flex-direction:column;justify-content:center;box-shadow:0 18px 70px rgba(0,0,0,.25)}.checkout-summary span{color:rgba(255,255,255,.8);font-weight:800;font-size:22px}.checkout-summary strong{color:#fac70c;font-size:48px;margin:8px 0;letter-spacing:-.04em}.checkout-summary small{color:rgba(255,255,255,.65);font-size:16px}.checkout-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.35fr .65fr;gap:22px}.payment-card,.trust-card{background:rgba(255,255,255,.96);color:#111827;border-radius:30px;padding:28px;box-shadow:0 24px 80px rgba(0,0,0,.28)}.section-title-row{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:20px}.section-title-row h2,.trust-card h2{color:#020629;font-size:30px;margin:0 0 6px}.section-title-row p{color:#667085;margin:0}.safe-badge{white-space:nowrap;background:#e9fff3;color:#027a48;border:1px solid #abefc6;padding:8px 12px;border-radius:999px;font-weight:900;font-size:13px}.pay-tabs{display:grid;grid-template-columns:repeat(3,1fr);background:#eef2ff;border-radius:18px;padding:6px;margin-bottom:18px}.pay-tab{border:0;border-radius:14px;padding:14px 12px;background:transparent;color:#344054;font-weight:900;font-size:16px;cursor:pointer;transition:transform .12s ease,background .12s ease,color .12s ease}.pay-tab:active,.pay-final:active,.copy-field button:active{transform:scale(.97)}.pay-tab.active{background:#020629;color:#fac70c}.brick-preview{border:1px solid #d0d5dd;background:#f8fafc;border-radius:24px;padding:22px;min-height:250px}.hidden{display:none!important}.pix-layout{display:grid;grid-template-columns:190px 1fr;gap:22px;align-items:center}.fake-qr{width:180px;height:180px;background:#fff;border:10px solid #fff;outline:1px solid #d0d5dd;border-radius:12px;position:relative;overflow:hidden;box-shadow:inset 0 0 0 1px #111;background-image:linear-gradient(90deg,#111 10px,transparent 10px),linear-gradient(#111 10px,transparent 10px);background-size:22px 22px}.fake-qr div{position:absolute;width:48px;height:48px;border:10px solid #111;background:#fff}.fake-qr div:nth-child(1){left:10px;top:10px}.fake-qr div:nth-child(2){right:10px;top:10px}.fake-qr div:nth-child(3){left:10px;bottom:10px}.fake-qr span,.fake-qr i{position:absolute;background:#fff}.fake-qr span:nth-of-type(1){left:75px;top:70px;width:18px;height:70px}.fake-qr span:nth-of-type(2){right:58px;bottom:35px;width:55px;height:12px}.fake-qr span:nth-of-type(3){left:102px;top:25px;width:15px;height:110px}.fake-qr i:nth-of-type(1){left:78px;top:105px;width:90px;height:16px;transform:rotate(-28deg)}.fake-qr i:nth-of-type(2){left:80px;top:138px;width:70px;height:12px;transform:rotate(20deg)}.fake-qr i:nth-of-type(3){left:70px;top:48px;width:46px;height:14px;transform:rotate(40deg)}.brick-preview h3{color:#020629;font-size:24px;margin:0 0 8px}.brick-preview p,.brick-note{color:#667085;margin:0 0 14px}.brick-preview label{display:block;color:#344054;font-weight:900;margin-bottom:8px}.copy-field{display:flex;gap:8px}.copy-field input,.card-form-grid input,.card-form-grid select{width:100%;border:1px solid #d0d5dd;border-radius:14px;padding:14px;font-size:15px;background:#fff;color:#111827}.copy-field button{border:0;background:#fac70c;color:#020629;font-weight:950;border-radius:14px;padding:0 18px;cursor:pointer}.card-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.boleto-line{border:1px dashed #98a2b3;background:#fff;color:#344054;padding:16px;border-radius:16px;font-family:ui-monospace,Menlo,monospace;overflow:auto}.pay-final{width:100%;margin-top:18px;border:0;border-radius:18px;padding:18px 20px;background:linear-gradient(135deg,#fac70c,#ffe879);color:#020629;font-weight:950;font-size:18px;cursor:pointer;box-shadow:0 14px 34px rgba(250,199,12,.25)}.checkout-disclaimer{text-align:center;color:#667085;margin:12px 0 0;font-size:13px}.trust-card ul{list-style:none;padding:0;margin:18px 0;display:grid;gap:12px}.trust-card li{color:#344054;font-weight:800;display:flex;gap:10px}.trust-card li:before{content:"✓";color:#027a48;font-weight:950}.mini-flow{display:flex;flex-wrap:wrap;gap:8px;background:#f2f4f7;border-radius:20px;padding:16px;color:#020629;font-weight:900}.mini-flow b{color:#fac70c}@media(max-width:860px){.checkout-shell{padding:18px}.checkout-hero,.checkout-grid,.pix-layout{grid-template-columns:1fr}.checkout-summary strong{font-size:40px}.section-title-row{flex-direction:column}.card-form-grid{grid-template-columns:1fr}.fake-qr{margin:auto}}


/* ================================
   V12 Checkout de Conversão
================================ */
.checkout-page-v12{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(250,199,12,.14), transparent 34%),
    linear-gradient(135deg,#020629 0%,#030C4E 58%,#01041f 100%);
  color:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.checkout-shell-v12{
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
  padding:24px 0 42px;
}

.checkout-back-v12{
  display:inline-flex;
  color:#FAC70C;
  font-weight:950;
  text-decoration:none;
  margin-bottom:22px;
}

.checkout-header-v12{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:36px;
}

.checkout-brand-v12{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:24px;
  font-weight:950;
  letter-spacing:-.04em;
}

.brand-mark-v12{
  width:52px;
  height:52px;
  border-radius:18px;
  background:linear-gradient(135deg,#FAC70C,#fff3a6);
  color:#020629;
  display:grid;
  place-items:center;
  font-weight:950;
  box-shadow:0 20px 46px rgba(250,199,12,.18);
}

.secure-pill-v12{
  border:1px solid rgba(183,255,210,.38);
  color:#b7ffd2;
  background:rgba(255,255,255,.05);
  border-radius:999px;
  padding:11px 16px;
  font-weight:950;
}

.checkout-main-v12{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(330px,.72fr);
  gap:28px;
  align-items:start;
}

.payment-card-v12,
.order-card-v12{
  background:rgba(255,255,255,.97);
  color:#111827;
  border-radius:34px;
  box-shadow:0 28px 90px rgba(0,0,0,.30);
}

.payment-card-v12{
  padding:34px;
}

.order-card-v12{
  padding:30px;
  position:sticky;
  top:22px;
}

.payment-title-row-v12{
  margin-bottom:20px;
}

.mini-badge-v12,
.order-label-v12{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border:1px solid rgba(230,168,5,.45);
  color:#B57900;
  background:#fff8dd;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.payment-title-row-v12 h1{
  color:#020629;
  margin:0 0 8px;
  font-size:clamp(34px,4vw,52px);
  line-height:.98;
  letter-spacing:-.06em;
}

.payment-title-row-v12 p{
  color:#667085;
  margin:0;
  font-size:19px;
  line-height:1.38;
}

.checkout-alert-v12{
  border-radius:20px;
  padding:17px 18px;
  margin:18px 0;
  font-size:17px;
  line-height:1.35;
}

.checkout-alert-v12.success{
  background:#ECFDF3;
  border:1px solid #86EFAC;
  color:#027A48;
}

.checkout-alert-v12.error{
  background:#FEF3F2;
  border:1px solid #FDA29B;
  color:#B42318;
}

.checkout-alert-v12.info{
  background:#FFFAEB;
  border:1px solid #FDB022;
  color:#93370D;
}

.hidden{
  display:none!important;
}

.buyer-grid-v12{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:16px;
}

.buyer-grid-v12 label,
.copy-label-v12{
  color:#344054;
  font-weight:950;
  font-size:15px;
}

.buyer-grid-v12 input{
  width:100%;
  margin-top:7px;
  border:1px solid #D0D5DD;
  background:#fff;
  color:#111827;
  border-radius:18px;
  padding:16px 18px;
  font-size:17px;
  outline:none;
}

.buyer-grid-v12 input:focus{
  border-color:#FAC70C;
  box-shadow:0 0 0 4px rgba(250,199,12,.16);
}

.pay-tabs-v12{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-radius:22px;
  background:#EEF2FF;
  padding:7px;
  margin-bottom:20px;
}

.pay-tab-v12{
  border:0;
  background:transparent;
  color:#344054;
  border-radius:17px;
  padding:16px;
  font-size:17px;
  font-weight:950;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, color .12s ease;
}

.pay-tab-v12.active{
  background:#020629;
  color:#FAC70C;
  box-shadow:0 16px 30px rgba(2,6,41,.16);
}

.pay-tab-v12:active,
.primary-pay-button-v12:active,
.whatsapp-button-v12:active{
  transform:scale(.98);
}

.method-box-v12{
  border:1px solid #D0D5DD;
  border-radius:28px;
  background:#F8FAFC;
  padding:24px;
}

.method-box-v12 h2{
  color:#020629;
  margin:0 0 8px;
  font-size:31px;
  letter-spacing:-.04em;
}

.method-box-v12 p{
  color:#667085;
  margin:0 0 18px;
  font-size:17px;
  line-height:1.45;
}

.primary-pay-button-v12{
  width:100%;
  border:0;
  border-radius:22px;
  padding:20px 22px;
  margin-top:20px;
  background:linear-gradient(135deg,#FAC70C,#FFE879);
  color:#020629;
  font-size:20px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 18px 38px rgba(250,199,12,.22);
}

.primary-pay-button-v12:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.pix-result-v12,
.boleto-result-v12{
  display:grid;
  gap:14px;
}

.payment-status-v12{
  border-radius:18px;
  padding:14px 16px;
  font-weight:900;
  font-size:15px;
}

.payment-status-v12.pending{
  background:#FFFAEB;
  border:1px solid #FDB022;
  color:#93370D;
}

.pix-qr-v12{
  width:min(280px,100%);
  background:#fff;
  border-radius:24px;
  border:1px solid #D0D5DD;
  padding:14px;
  justify-self:center;
}

.copy-row-v12{
  display:flex;
  gap:10px;
}

.copy-row-v12 input{
  flex:1;
  min-width:0;
  border:1px solid #D0D5DD;
  border-radius:18px;
  padding:15px;
  font-size:15px;
  color:#111827;
}

.copy-row-v12 button{
  border:0;
  border-radius:18px;
  background:#FAC70C;
  color:#020629;
  font-weight:950;
  padding:0 22px;
  cursor:pointer;
}

.payment-id-v12{
  color:#667085!important;
  font-size:15px!important;
  margin:0!important;
}

.boleto-link-v12{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#020629;
  color:#FAC70C;
  padding:16px;
  text-decoration:none;
  font-weight:950;
}

.card-brick-v12{
  background:#fff;
  border:1px solid #E4E7EC;
  border-radius:24px;
  padding:18px;
  overflow:hidden;
}

.post-payment-v12{
  margin-top:22px;
  background:#ECFDF3;
  border:1px solid #86EFAC;
  border-radius:24px;
  padding:22px;
}

.post-payment-v12 h3{
  margin:0 0 8px;
  color:#027A48;
  font-size:24px;
}

.post-payment-v12 p{
  margin:0 0 16px;
  color:#344054;
  font-size:16px;
  line-height:1.45;
}

.post-payment-v12 button{
  border:0;
  background:#027A48;
  color:white;
  border-radius:16px;
  padding:14px 18px;
  font-size:16px;
  font-weight:950;
  cursor:pointer;
}

.order-card-v12{
  border:1px solid rgba(250,199,12,.26);
}

.order-card-v12 h2{
  color:#020629;
  margin:0 0 5px;
  font-size:34px;
  letter-spacing:-.05em;
}

.order-card-v12 p{
  color:#667085;
  margin:0;
  font-size:18px;
  line-height:1.35;
}

.order-total-v12{
  margin:24px 0;
  border-radius:24px;
  padding:22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(250,199,12,.18), transparent 42%),
    #020629;
  color:#fff;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
}

.order-total-v12 span{
  color:rgba(255,255,255,.70);
  font-weight:850;
}

.order-total-v12 strong{
  color:#FAC70C;
  font-size:36px;
  letter-spacing:-.06em;
  white-space:nowrap;
}

.trust-list-v12{
  display:grid;
  gap:13px;
  margin:22px 0;
}

.trust-list-v12 div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#344054;
  font-weight:850;
  line-height:1.25;
}

.trust-list-v12 span{
  width:25px;
  height:25px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#E9FFF3;
  color:#027A48;
  font-weight:950;
  flex:0 0 auto;
}

.support-box-v12{
  background:#F2F4F7;
  border:1px solid #E4E7EC;
  border-radius:24px;
  padding:20px;
}

.support-box-v12 h3{
  color:#020629;
  font-size:22px;
  margin:0 0 6px;
  letter-spacing:-.03em;
}

.support-box-v12 p{
  font-size:15px;
  color:#667085;
  margin:0 0 14px;
}

.whatsapp-button-v12{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  border-radius:18px;
  background:#22C55E;
  color:#fff;
  text-decoration:none;
  padding:15px 18px;
  font-weight:950;
  box-shadow:0 16px 34px rgba(34,197,94,.24);
}

.support-box-v12 small{
  display:block;
  color:#667085;
  font-size:12px;
  line-height:1.35;
  margin-top:10px;
}

@media(max-width:980px){
  .checkout-main-v12{
    grid-template-columns:1fr;
  }

  .order-card-v12{
    position:static;
    order:-1;
  }
}

@media(max-width:680px){
  .checkout-shell-v12{
    width:min(100% - 24px, 520px);
    padding:18px 0 30px;
  }

  .checkout-header-v12{
    align-items:flex-start;
    flex-direction:column;
    margin-bottom:22px;
  }

  .checkout-brand-v12{
    font-size:20px;
  }

  .brand-mark-v12{
    width:46px;
    height:46px;
    border-radius:16px;
  }

  .payment-card-v12,
  .order-card-v12{
    border-radius:28px;
    padding:22px;
  }

  .buyer-grid-v12{
    grid-template-columns:1fr;
  }

  .payment-title-row-v12 h1{
    font-size:36px;
  }

  .payment-title-row-v12 p,
  .method-box-v12 p{
    font-size:16px;
  }

  .method-box-v12{
    padding:18px;
    border-radius:24px;
  }

  .method-box-v12 h2{
    font-size:26px;
  }

  .order-total-v12{
    align-items:flex-start;
    flex-direction:column;
  }

  .order-total-v12 strong{
    font-size:34px;
  }

  .copy-row-v12{
    flex-direction:column;
  }

  .copy-row-v12 button{
    padding:15px;
  }
}


/* V12.1 Leads + GTM */
.lead-grid-v12{
  grid-template-columns:1fr 1fr;
}

.phone-field-v12{
  grid-column:1 / -1;
}

.lead-notice-v12{
  margin:-4px 0 18px;
  color:#667085;
  font-size:13px;
  line-height:1.4;
}

.boleto-extra-v12{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0 16px;
}

.boleto-extra-v12 label{
  color:#344054;
  font-weight:900;
  font-size:14px;
}

.boleto-extra-v12 input{
  width:100%;
  margin-top:6px;
  border:1px solid #D0D5DD;
  background:#fff;
  color:#111827;
  border-radius:15px;
  padding:13px 14px;
  font-size:15px;
}

.boleto-line{
  border:1px dashed #98A2B3;
  background:#fff;
  color:#344054;
  padding:15px;
  border-radius:16px;
  font-family:ui-monospace,Menlo,monospace;
  overflow:auto;
  margin-top:10px;
}

.status-pill{
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:16px;
  padding:13px 15px;
  background:#FFFAEB;
  border:1px solid #FDB022;
  color:#93370D;
  font-weight:850;
  margin-top:14px;
}

.spinner{
  width:15px;
  height:15px;
  border-radius:50%;
  border:2px solid rgba(147,55,13,.25);
  border-top-color:#93370D;
  display:inline-block;
  animation:rcSpin 1s linear infinite;
}

@keyframes rcSpin{
  to{ transform:rotate(360deg); }
}

@media(max-width:680px){
  .lead-grid-v12,
  .boleto-extra-v12{
    grid-template-columns:1fr;
  }
}


/* V14.1 Login Supabase */
.auth-shell-v14{
  max-width:760px;
}

.auth-card-v14{
  max-width:680px;
  margin:0 auto;
}

.auth-card-v14 .primary-pay-button-v12{
  margin-top:12px;
}


/* V14.3 modal de compra aprovada */
.approved-modal-v143{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(2,6,41,.72);
  backdrop-filter:blur(8px);
}

.approved-modal-v143.show{
  display:flex;
}

.approved-modal-card-v143{
  width:min(460px,100%);
  background:#fff;
  color:#020629;
  border-radius:30px;
  padding:34px;
  text-align:center;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  border:1px solid rgba(250,199,12,.28);
}

.approved-icon-v143{
  width:72px;
  height:72px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  background:#ECFDF3;
  color:#027A48;
  font-size:42px;
  font-weight:950;
}

.approved-modal-card-v143 h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1;
  letter-spacing:-.05em;
}

.approved-modal-card-v143 p{
  margin:0;
  color:#667085;
  font-size:17px;
  line-height:1.45;
}

.approved-actions-v143{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.approved-actions-v143 button,
.approved-actions-v143 a{
  display:block;
  width:100%;
  box-sizing:border-box;
  border:0;
  border-radius:18px;
  padding:16px 18px;
  font-size:16px;
  font-weight:950;
  line-height:1.2;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
}

.approved-primary-v143{
  background:linear-gradient(135deg,#FAC70C,#FFE879);
  color:#020629;
}

.approved-secondary-v143{
  background:#F2F4F7;
  color:#344054;
}


/* V15 registro musical real */
.lyrics-snippet-v15{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.76);
  font-size:13px;
  line-height:1.45;
  max-width:620px;
}

.lyrics-preview-v15{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:#F8FAFC;
  border:1px solid #D0D5DD;
  color:#344054;
  line-height:1.55;
}

.lyrics-preview-v15 strong{
  display:block;
  color:#020629;
  margin-bottom:10px;
}

.record-actions a{
  text-decoration:none;
}


/* ── Modal passos 1·2·3 (novo layout compra aprovada) ── */
.approved-desc{
  margin:0 0 16px;
  color:#475467;
  font-size:15px;
  line-height:1.55;
  text-align:center;
}
.approved-desc strong{
  color:#020629;
  font-weight:700;
}
.approved-warning{
  background:#FFF8E1;
  border:1px solid #FAC70C;
  border-radius:12px;
  padding:10px 14px;
  font-size:13px;
  color:#7A5C00;
  line-height:1.45;
  margin-bottom:20px;
  text-align:center;
}
.approved-steps{
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-bottom:20px;
  text-align:left;
}
.approved-step{
  display:flex;
  align-items:center;
  gap:13px;
  background:#F8FAFC;
  border:1px solid #E4E7EC;
  border-radius:14px;
  padding:11px 15px;
}
.approved-step-num{
  flex-shrink:0;
  width:28px;
  height:28px;
  border-radius:50%;
  border:2px solid #D0D5DD;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  color:#344054;
  background:#fff;
}
.approved-step-text{
  font-size:14px;
  font-weight:600;
  color:#344054;
  line-height:1.3;
}
.approved-step-sub{
  font-size:12px;
  font-weight:400;
  color:#98A2B3;
  margin-top:2px;
}
.approved-support{
  font-size:12.5px;
  color:#98A2B3;
  text-align:center;
  margin:0;
}
.approved-support a{
  color:#027A48;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}
.approved-support a:hover{
  text-decoration:underline;
}
