/* ============================================================
   Checkout — Método 1% (multi-step pro)
   ============================================================ */

.checkout-body {
  background: #0a0a0a;
  min-height: 100vh;
  padding-top: 72px;
}

/* ===== Topbar ===== */
.checkout-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.checkout-topbar__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.checkout-topbar__secure svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* ===== Stepper ===== */
.stepper-wrap {
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}
.stepper {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  counter-reset: step;
}
.stepper__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  color: var(--text-dim);
  transition: color 0.3s var(--easing);
}
.stepper__item:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-left: 14px;
  transition: background 0.4s var(--easing);
}
.stepper__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s var(--easing);
}
.stepper__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.stepper__item.is-active {
  color: #fff;
}
.stepper__item.is-active .stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.18);
}
.stepper__item.is-done {
  color: #10b981;
}
.stepper__item.is-done .stepper__num {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
  font-size: 0;
}
.stepper__item.is-done .stepper__num::before {
  content: '✓';
  font-size: 16px;
}
.stepper__item.is-done::after {
  background: #10b981;
}

@media (max-width: 600px) {
  .stepper__label { display: none; }
  .stepper { gap: 8px; }
  .stepper__item { flex: 0 0 auto; }
  .stepper__item:not(:last-child)::after { width: 40px; flex: 0 0 40px; }
  .stepper-wrap { padding: 16px; }
}

/* ===== Layout ===== */
.checkout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 100px;
}
.checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: flex-start;
}

/* ===== Step Panels ===== */
.step-panel {
  display: none;
  animation: panelIn 0.4s var(--easing);
}
.step-panel.is-active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-panel > h1 {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.step-panel > .lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== Step Card ===== */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px;
}
.step-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.step-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(229, 9, 20, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step-card__icon svg { width: 18px; height: 18px; }
.step-card__head h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ===== Fields ===== */
.field {
  margin-bottom: 16px;
  position: relative;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row--cep { grid-template-columns: 200px 1fr; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field-row--city { grid-template-columns: 1fr 100px; }
.field-row .field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #d1d1d1;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: #0d0d0d;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--easing), box-shadow 0.18s var(--easing), background 0.18s var(--easing);
  outline: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23999' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  background: #111;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.18);
}
.field input.is-invalid {
  border-color: #ff4d57;
  box-shadow: 0 0 0 3px rgba(255, 77, 87, 0.15);
}
.field input.is-valid {
  border-color: #10b981;
}
.field input::placeholder { color: #555; }
.field input:read-only { color: var(--text-muted); cursor: default; }

.field__hint {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}
.field__hint a { color: var(--text-muted); text-decoration: underline; }
.field__hint a:hover { color: #fff; }
.field__error {
  display: block;
  font-size: 12px;
  color: #ff4d57;
  margin-top: 6px;
  min-height: 14px;
}

/* ===== CEP ===== */
.cep-input { position: relative; }
.cep-status {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-dim);
}
.cep-status.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--text-dim);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.cep-status.is-success { color: #10b981; }
.cep-status.is-success::after { content: '✓'; font-size: 14px; }
.cep-status.is-error { color: #ff4d57; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ===== Card input ===== */
.card-input { position: relative; }
.card-brand {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  display: flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
  opacity: 0;
  transition: opacity 0.2s var(--easing);
}
.card-brand.is-visible { opacity: 1; }
.card-brand[data-brand="visa"] { background: #1a1f71; color: #f9b314; }
.card-brand[data-brand="mastercard"] { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); color: #fff; }
.card-brand[data-brand="amex"] { background: #006fcf; color: #fff; }
.card-brand[data-brand="elo"] { background: #000; color: #fff; }
.card-brand[data-brand="hipercard"] { background: #b3262a; color: #fff; }

/* ===== Payment options ===== */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.payment-option { cursor: pointer; display: block; }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #0d0d0d;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--easing), background 0.18s var(--easing);
  position: relative;
}
.payment-option:hover .payment-option__inner {
  border-color: rgba(229, 9, 20, 0.5);
  background: #131313;
}
.payment-option input:checked + .payment-option__inner {
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.08);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.payment-option__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
}
.payment-option__icon--pix { color: #32bcad; }
.payment-option input:checked + .payment-option__inner .payment-option__icon {
  background: rgba(229, 9, 20, 0.18);
  color: var(--accent);
}
.payment-option input:checked + .payment-option__inner .payment-option__icon--pix {
  color: #32bcad;
  background: rgba(50, 188, 173, 0.15);
}
.payment-option__icon svg { width: 22px; height: 22px; }
.payment-option__inner > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.payment-option__inner strong { font-size: 15px; font-weight: 600; color: #fff; }
.payment-option__inner span { font-size: 13px; color: var(--text-muted); }
.payment-option__price { text-align: right; font-size: 14px; color: #fff; white-space: nowrap; }
.payment-option__price s { color: var(--text-dim); margin-right: 4px; font-weight: 400; }

.card-fields {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s var(--easing);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Trust badges ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.trust-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-badges__item svg { width: 14px; height: 14px; color: #10b981; }
.card-flags {
  display: inline-flex;
  gap: 6px;
  margin-left: auto;
}
.card-flags span {
  display: inline-block;
  padding: 4px 8px;
  background: #fff;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
}
.card-flags span[title="Visa"] { background: #1a1f71; color: #f9b314; }
.card-flags span[title="Mastercard"] { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); color: #fff; }
.card-flags span[title="Elo"] { background: #000; color: #fff; }
.card-flags span[title="American Express"] { background: #006fcf; color: #fff; }
.card-flags span[title="Hipercard"] { background: #b3262a; color: #fff; }

/* ===== Step actions ===== */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}
.step-actions .btn--xl {
  flex: 1;
  max-width: 340px;
  margin-left: auto;
}
#finalizeBtn svg {
  width: 18px;
  height: 18px;
}
.terms {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.terms a { color: var(--text-muted); text-decoration: underline; }
.terms a:hover { color: #fff; }

/* ===== STEP 3 — Confirmation ===== */
.confirm-view { animation: panelIn 0.4s var(--easing); }
.confirm-head { text-align: center; margin-bottom: 24px; }
.confirm-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 14px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse 1.4s ease-in-out infinite;
}
.confirm-head h1 {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.confirm-head .lead {
  font-size: 15px;
  color: var(--text-muted);
}

/* PIX */
.pix-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.pix-qr { text-align: center; }
.pix-qr__frame {
  position: relative;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  display: inline-block;
  box-shadow: 0 8px 32px -10px rgba(0,0,0,0.6);
}
.pix-qr__frame img {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 4px;
}
.pix-qr__loader {
  position: absolute;
  inset: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.pix-qr__loader.is-hidden { opacity: 0; pointer-events: none; }
.pix-qr__loader::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 3px solid #ddd;
  border-top-color: #32bcad;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.pix-timer {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.pix-timer strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-left: 4px;
}

.pix-copy h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pix-copy > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pix-copy__box {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.pix-copy__box input {
  flex: 1;
  padding: 12px 14px;
  background: #0d0d0d;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-muted);
  outline: none;
  text-overflow: ellipsis;
}
.pix-copy__box .btn {
  padding: 0 22px;
  flex-shrink: 0;
}
.pix-copy__box .btn.is-copied {
  background: #10b981;
}
.pix-copy__box .btn.is-copied::before { content: '✓ '; }
.pix-steps {
  list-style: none;
  counter-reset: pixstep;
  padding: 0;
  margin: 0;
}
.pix-steps li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: #d1d1d1;
  margin-bottom: 8px;
  counter-increment: pixstep;
}
.pix-steps li::before {
  content: counter(pixstep);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(50, 188, 173, 0.15);
  color: #32bcad;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pix-status {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--text-dim);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinSimple 0.8s linear infinite;
}
@keyframes spinSimple { to { transform: rotate(360deg); } }

/* Processing */
.processing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.processing__spinner {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  color: var(--accent);
}
.processing__spinner svg { width: 100%; height: 100%; }
.processing h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.processing p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.processing__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}
.processing__steps li {
  padding: 12px 16px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--easing);
}
.processing__steps li::before {
  content: '○';
  font-size: 14px;
  color: var(--text-dim);
}
.processing__steps li.is-active {
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.08);
  color: #fff;
}
.processing__steps li.is-active::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid rgba(229, 9, 20, 0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinSimple 0.8s linear infinite;
}
.processing__steps li.is-done {
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}
.processing__steps li.is-done::before {
  content: '✓';
  color: #10b981;
}

/* Success */
.success {
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.06) 0%, var(--surface) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.success__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s var(--easing) both;
  box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.15);
}
@keyframes successPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
}
.success p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}
.success__order {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 32px;
  padding: 22px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.success__order > div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.success__order > div strong {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.success__hint {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-dim);
}
.success__hint a { color: var(--text-muted); text-decoration: underline; }

/* Boleto */
.boleto {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.boleto h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.boleto > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.boleto__code {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.boleto__code input {
  flex: 1;
  padding: 14px 16px;
  background: #0d0d0d;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  color: #fff;
  outline: none;
  letter-spacing: 0.02em;
}
.boleto__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.boleto__info > div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.boleto__info > div strong {
  font-size: 15px;
  color: #fff;
}
.boleto__hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ===== Summary ===== */
.checkout__summary {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.summary-card {
  background: linear-gradient(160deg, #1a0507 0%, var(--surface) 100%);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.summary-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.summary-product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.summary-product__poster {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.5) 0%, rgba(80, 0, 0, 0.7) 100%), #220203;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.summary-product__poster span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #fff;
}
.summary-product strong { display: block; font-size: 16px; font-weight: 700; }
.summary-product span:not(.summary-product__poster span) { font-size: 13px; color: var(--text-muted); }
.summary-features { list-style: none; margin: 18px 0; padding: 0; }
.summary-features li { font-size: 13px; color: #d1d1d1; padding: 4px 0; }
.summary-totals { border-top: 1px solid var(--border); padding-top: 16px; }
.summary-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.summary-totals__row--discount span:last-child { color: #4ade80; }
.summary-totals__row--pix span:last-child { color: #4ade80; }
.summary-totals__row--total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.summary-totals__row--total span:last-child { color: var(--accent); font-size: 22px; }

.summary-guarantee {
  margin-top: 18px;
  padding: 14px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}
.seal--sm { width: 44px; height: 44px; font-size: 17px; }
.seal--sm span { font-size: 8px; }
.summary-guarantee p { font-size: 12px; line-height: 1.5; color: #d1d1d1; }
.summary-guarantee strong { color: #fff; }
.summary-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  padding: 0 4px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .checkout__grid { grid-template-columns: 1fr; }
  .checkout__summary { position: static; order: -1; }
  .pix-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .pix-qr { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 560px) {
  .checkout-topbar { padding: 0 18px; }
  .checkout-topbar__secure span { display: none; }
  .step-card { padding: 22px 20px; }
  .field-row,
  .field-row--cep,
  .field-row--3,
  .field-row--city { grid-template-columns: 1fr; gap: 0; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn--xl { max-width: none; width: 100%; }
  .step-actions .btn--ghost { width: 100%; }
  .pix-qr__frame img { width: 180px; height: 180px; }
  .success__order,
  .boleto__info { grid-template-columns: 1fr; }
  .trust-badges { gap: 10px; padding: 14px; }
  .card-flags { margin-left: 0; }
  .processing { padding: 40px 24px; }
}
