/* checkout-flow.css — Estilos do carrinho, checkout, confirmação, modais
 * Complemento ao styles.css principal. Mesma identidade visual:
 * neo-brutalista (bordas 3px navy, sombras chapadas 6px 6px 0, paleta
 * cream/verde/azul/amarelo/navy, fontes Anton/Manrope/JetBrains Mono).
 */

/* ─── BREADCRUMB / PG ─────────────────────────────────────────── */
.pg { min-height: 50vh; }

/* ─── EMPTY STATES (carrinho vazio, conta vazia) ──────────────── */
.empty {
  padding: 80px 24px;
  text-align: center;
}
.empty__inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.empty__art {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 12px;
}
.empty h2, .empty h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  margin: 0;
}
.empty p {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink-2);
  max-width: 420px;
  line-height: 1.55;
}
.empty__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ─── CARRINHO ────────────────────────────────────────────────── */
.cartlayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 24px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cartlayout { grid-template-columns: 1fr 380px; gap: 40px; }
}

.cartlist { display: flex; flex-direction: column; gap: 16px; }

.cartmain {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.cartmain__head {
  padding: 20px 24px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--cream-2);
}
.cartmain__head h1, .cartmain__head h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  letter-spacing: 0;
}
.cartmain__foot {
  padding: 18px 24px;
  border-top: 2px solid var(--ink);
  background: var(--cream-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
}

.cartrow {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 2px dashed var(--line);
  align-items: center;
}
.cartrow:last-child { border-bottom: 0; }
.cartrow__media {
  aspect-ratio: 1;
  width: 110px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cartrow__media > * { width: 100%; height: 100%; object-fit: cover; }
.cartrow__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cartrow__body h3, .cartrow__body h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  margin: 0;
  letter-spacing: 0;
}
.cartrow__body .muted { font-size: 13px; }
.cartrow__price {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--blue);
  line-height: 1;
}
.cartrow__qty { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.cartrow__rmv {
  background: transparent;
  border: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
}
.cartrow__rmv:hover { color: var(--blue); }

@media (max-width: 640px) {
  .cartrow { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; }
  .cartrow__media { width: 80px; }
  .cartrow__qty { grid-column: 1 / -1; justify-content: space-between; }
}

/* qtybtn já existe no styles.css, mas adiciono variação compacta pro carrinho */
.cartrow .qtybtn { height: 44px; box-shadow: 2px 2px 0 var(--ink); }
.cartrow .qtybtn button { width: 38px; }
.cartrow .qtybtn span { width: 38px; font-size: 18px; }

/* ─── CARRINHO: SIDEBAR (resumo + cupom) ──────────────────────── */
.cartside {
  background: var(--yellow-l);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.cartside h2, .cartside h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--ink);
}
.cartside__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cartside__row--off {
  color: var(--green-d);
  font-weight: 700;
}
.cartside__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 6px;
  border-top: 2px solid var(--ink);
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0;
}
.cartside__inst {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--ink-2);
  text-align: right;
  font-weight: 600;
}
.cartside__freehint {
  background: rgba(255, 255, 255, 0.6);
  border: 2px dashed var(--ink);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cartside__freehint--ok {
  background: var(--green);
  color: #fff;
  border-color: var(--ink);
}

/* Cupom */
.cartside__cpn { display: flex; flex-direction: column; gap: 6px; }
.cartside__cpn-row { display: flex; gap: 6px; }
.cartside__cpn-row input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  outline: none;
  color: var(--ink);
}
.cartside__cpn-row input:focus { background: #fff; }
.cartside__cpn-err {
  font-size: 12px;
  color: #C2391F;
  font-weight: 600;
}
.cartside__cpn-ok {
  font-size: 12px;
  color: var(--green-d);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cartside__cpn-hints { font-size: 11px; color: var(--ink-2); }

.cartside__perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 2px dashed var(--ink);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.cartside__perks > div { display: inline-flex; align-items: center; gap: 8px; }
.cartside__perks svg { color: var(--green); flex-shrink: 0; }

/* ─── CHECKOUT ────────────────────────────────────────────────── */
.checkout {
  padding: 32px 24px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.checkout__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 24px;
}
.checkout__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.15s var(--ease);
}
.checkout__back:hover { background: var(--yellow); color: var(--ink); }
.checkout__safe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-d);
  padding: 6px 12px;
  background: rgba(0, 177, 79, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(0, 177, 79, 0.3);
}

/* Steps do checkout */
.checkout__steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--cream-2);
  border-left: 0;
  border-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  overflow-x: auto;
  flex-wrap: wrap;
}
.cstep__l, .cstep__n {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  padding: 4px 12px;
  flex: 1;
  min-width: 120px;
  white-space: nowrap;
}
.cstep__n {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  flex: 0 0 28px;
  padding: 0;
  min-width: 0;
}
.checkout__steps .is-on { color: var(--ink); }
.checkout__steps .is-on .cstep__n {
  background: var(--ink);
  color: var(--yellow);
}
.checkout__steps .is-done { color: var(--green-d); }
.checkout__steps .is-done .cstep__n {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Layout do checkout: form principal + sidebar de resumo */
.checkout__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .checkout__layout { grid-template-columns: 1fr 380px; gap: 40px; }
}
.checkout__main {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px;
}
.checkout__side {
  background: var(--yellow-l);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.checkout__side h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--ink);
}
.checkout__items { display: flex; flex-direction: column; gap: 10px; }
.checkout__item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(27, 34, 64, 0.3);
  align-items: center;
}
.checkout__item:last-child { border-bottom: 0; }
.checkout__item-art {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.checkout__item-art > * { width: 100%; height: 100%; object-fit: cover; }
.checkout__item-body { display: flex; flex-direction: column; min-width: 0; }
.checkout__item-name {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout__item-price {
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--blue);
}

/* ─── FORM (frm/fld) ──────────────────────────────────────────── */
.frm {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.fld {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fld > span:first-child,
.fld > label:first-child {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.fld input,
.fld select,
.fld textarea {
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  font-weight: 500;
  transition: border-color 0.15s var(--ease);
}
.fld textarea {
  border-radius: var(--r-sm);
  resize: vertical;
  min-height: 80px;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus { border-color: var(--blue); background: #fff; }
.fld input[disabled],
.fld input[readonly] {
  background: var(--cream-2);
  cursor: default;
}
.frm__group {
  margin-bottom: 18px;
}
.frm__group:last-of-type { margin-bottom: 0; }
.frm__group-title {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00205B;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
}
.frm__err {
  grid-column: 1 / -1;
  background: rgba(194, 57, 31, 0.08);
  border: 1px solid rgba(194, 57, 31, 0.3);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #C2391F;
  font-weight: 600;
}
@media (max-width: 720px) {
  .frm { grid-template-columns: 1fr; }
  .fld[style*="span"] { grid-column: 1 / -1 !important; }
}

/* ─── CHECKOUT BOX (sub-seções dentro do flow) ──────────────── */
.cbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cboxFadeIn 0.4s ease-out;
}
@keyframes cboxFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.checkout__steps .cstep {
  transition: all 0.3s var(--ease);
}
.checkout__steps .is-on .cstep__n {
  animation: cstepPulse 1.8s ease-in-out infinite;
}
@keyframes cstepPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  50%      { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(255, 215, 0, 0); }
}
.checkout__items .checkout__item {
  animation: itemSlideIn 0.3s ease-out backwards;
}
.checkout__items .checkout__item:nth-child(1) { animation-delay: 0.05s; }
.checkout__items .checkout__item:nth-child(2) { animation-delay: 0.1s; }
.checkout__items .checkout__item:nth-child(3) { animation-delay: 0.15s; }
.checkout__items .checkout__item:nth-child(4) { animation-delay: 0.2s; }
.checkout__items .checkout__item:nth-child(5) { animation-delay: 0.25s; }
@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cbox h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0;
  margin: 0 0 4px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.cbox__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 2px dashed var(--line);
  margin-top: 8px;
}

/* ─── SHIP OPTIONS (escolha de frete) ──────────────────────── */
.shipopts { display: flex; flex-direction: column; gap: 10px; }
.shipopt {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.shipopt:hover {
  background: var(--yellow-l);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.shipopt input[type="radio"] { display: none; }
.shipopt.is-on,
.shipopt:has(input:checked) {
  background: var(--green);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.shipopt.is-on .shipopt__price,
.shipopt:has(input:checked) .shipopt__price { color: var(--yellow); }
.shipopt__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  flex-shrink: 0;
}
.shipopt.is-on .shipopt__icon,
.shipopt:has(input:checked) .shipopt__icon {
  background: var(--yellow);
  color: var(--ink);
}
.shipopt__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.shipopt__body strong {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.2;
}
.shipopt__body .muted {
  font-size: 12px;
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.shipopt.is-on .shipopt__body .muted,
.shipopt:has(input:checked) .shipopt__body .muted { color: rgba(255, 255, 255, 0.85); }
.shipopt__price {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--blue);
  white-space: nowrap;
}

/* ─── PAYMENT TABS ────────────────────────────────────────── */
.paytabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.paytabs--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .paytabs--2 { grid-template-columns: 1fr; } }
.paytabs > label,
.paytabs > button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 18px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: all 0.15s var(--ease);
  min-height: 88px;
}
.paytabs > label > div,
.paytabs > button > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.paytabs > label:hover,
.paytabs > button:hover {
  background: var(--yellow-l);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.paytabs > label:has(input:checked),
.paytabs > .is-on {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}
.paytabs > label:has(input:checked) .paytab__sub,
.paytabs > .is-on .paytab__sub { color: rgba(255, 212, 0, 0.85); }
.paytabs input[type="radio"] { display: none; }
.paytabs strong {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.paytab__sub {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.paytab__pill {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   COPA-STYLE PAYMENT TABS + GERAR PIX (B option, animated)
   ═══════════════════════════════════════════════════════════ */

/* ─── PIX TAB (recomendado, amarelo Brasil) ──────────────── */
.paytab--copa-pix {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700 0%, #FFC500 60%, #FFB800 100%) !important;
  border: 3px solid #006B2A !important;
  min-height: 130px !important;
  padding: 22px 24px 22px 22px !important;
  box-shadow: 0 5px 0 #006B2A, 0 10px 24px rgba(0, 107, 42, 0.28) !important;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.paytab--copa-pix::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(0, 107, 42, 0.55) 2px, transparent 2.5px),
    radial-gradient(circle at 70% 78%, rgba(0, 32, 91, 0.45) 2.5px, transparent 3px),
    radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.65) 2px, transparent 2.5px),
    radial-gradient(circle at 35% 85%, rgba(0, 107, 42, 0.4) 1.8px, transparent 2.3px),
    radial-gradient(circle at 55% 15%, rgba(255, 255, 255, 0.55) 1.6px, transparent 2px);
  background-size: 90px 90px;
  pointer-events: none;
  animation: copaConfetti 9s linear infinite;
  opacity: 0.85;
}
.paytab--copa-pix::after {
  content: '⚽';
  position: absolute;
  left: -6px;
  bottom: -14px;
  font-size: 46px;
  filter: drop-shadow(2px 2px 0 #006B2A);
  animation: copaBallSpin 5s linear infinite;
  z-index: 2;
}
.paytab--copa-pix:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #006B2A, 0 14px 32px rgba(0, 107, 42, 0.38) !important;
}
.paytab--copa-pix.is-on {
  background: linear-gradient(135deg, #FFD700 0%, #FFC500 60%, #FFB800 100%) !important;
  color: #00205B !important;
  box-shadow: 0 5px 0 #006B2A, 0 10px 24px rgba(0, 107, 42, 0.4), inset 0 0 0 3px #fff !important;
}
.paytab__pix-logo {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 0 #006B2A, 0 0 0 3px rgba(255, 255, 255, 0.5);
  z-index: 3;
  position: relative;
  animation: copaLogoPulse 2.4s ease-in-out infinite;
}
.paytab--copa-pix strong {
  font-family: 'Anton', sans-serif !important;
  font-size: 24px !important;
  color: #00205B !important;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}
.paytab--copa-pix .paytab__sub {
  color: #006B2A !important;
  font-weight: 800 !important;
  font-size: 12.5px !important;
  position: relative;
  z-index: 2;
}
.paytab__trophy {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 36px;
  filter: drop-shadow(2px 2px 0 #006B2A);
  animation: copaTrophy 2.8s ease-in-out infinite;
  z-index: 2;
}
.paytab--copa-pix .paytab__pill {
  position: absolute !important;
  bottom: -12px !important;
  top: auto !important;
  right: 50% !important;
  transform: translateX(50%);
  background: linear-gradient(135deg, #00B14F 0%, #006B2A 100%) !important;
  color: #fff !important;
  font-family: 'Anton', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  padding: 6px 16px !important;
  border: 2.5px solid #FFF !important;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 107, 42, 0.5);
  animation: copaPill 2.2s ease-in-out infinite;
  z-index: 4;
}
.paytab--copa-pix .paytab__pill::before {
  content: '✓ ';
  font-weight: 900;
}

/* ─── CARD TAB (cartão, branco com borda Copa) ───────────── */
.paytab--copa-card {
  background: #FFFEFA !important;
  border: 3px solid #006B2A !important;
  position: relative;
  overflow: hidden;
  min-height: 130px !important;
  padding: 22px 22px 22px 28px !important;
  box-shadow: 0 5px 0 #006B2A, 0 8px 18px rgba(0, 32, 91, 0.12) !important;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.paytab--copa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #FFD700 0%, #00B14F 100%);
}
.paytab--copa-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00B14F 0%, #FFD700 60%, #00205B 100%);
}
.paytab--copa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #006B2A, 0 12px 24px rgba(0, 32, 91, 0.2) !important;
}
.paytab--copa-card.is-on {
  background: #FFFEFA !important;
  color: #00205B !important;
  box-shadow: 0 5px 0 #006B2A, 0 8px 18px rgba(0, 32, 91, 0.2), inset 0 0 0 3px #FFD700 !important;
}
.paytab__card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC500 100%);
  border-radius: 12px;
  border: 2px solid #00205B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 0 #00205B, 4px 4px 0 #00B14F;
  animation: copaCard 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.paytab--copa-card strong {
  font-family: 'Anton', sans-serif !important;
  font-size: 22px !important;
  color: #00205B !important;
  letter-spacing: 0.03em;
}
.paytab--copa-card .paytab__sub {
  color: #006B2A !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
}
.paytab__wa-mini {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 #128C7E, 0 0 0 3px #FFF;
  animation: copaWaPulse 2.2s ease-in-out infinite;
  z-index: 2;
}

/* ─── BOTÃO GERAR PIX (verde Brasil animado) ────────────── */
.btn--copa-pix {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00B14F 0%, #008C3F 50%, #006B2A 100%) !important;
  color: #FFF !important;
  border: 3px solid #FFD700 !important;
  font-family: 'Anton', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 0.06em !important;
  padding: 18px 36px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 0 #FFB800, 0 10px 28px rgba(0, 107, 42, 0.5) !important;
  animation: copaButtonPulse 2.4s ease-in-out infinite;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-radius: 999px !important;
  text-transform: uppercase;
}
.btn--copa-pix::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(20deg);
  animation: copaShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
.btn--copa-pix::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255, 215, 0, 0.7) 1.6px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.7) 1.6px, transparent 2px),
    radial-gradient(circle at 45% 80%, rgba(255, 215, 0, 0.6) 1.6px, transparent 2px),
    radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.55) 1.4px, transparent 2px);
  background-size: 100px 100px;
  pointer-events: none;
  animation: copaConfetti 7s linear infinite;
  opacity: 0.7;
}
.btn--copa-pix:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #FFB800, 0 14px 36px rgba(0, 107, 42, 0.6) !important;
}
.btn--copa-pix:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #FFB800, 0 4px 12px rgba(0, 107, 42, 0.4) !important;
}
.btn--copa-pix:disabled {
  opacity: 0.7;
  animation: none;
  cursor: wait;
}
.btn--copa-pix__icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px #FFD700, 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
  animation: copaLogoPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.btn--copa-pix__label { z-index: 2; position: relative; }

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes copaConfetti {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 90px -60px, -60px 90px, 60px 60px, -90px -60px, 60px -90px; }
}
@keyframes copaBallSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes copaLogoPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); box-shadow: 0 3px 0 #006B2A, 0 0 0 6px rgba(0, 177, 79, 0.25); }
}
@keyframes copaTrophy {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(6deg) translateY(-4px); }
}
@keyframes copaPill {
  0%, 100% { transform: translateX(50%) scale(1); }
  50%      { transform: translateX(50%) scale(1.06); }
}
@keyframes copaCard {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-3px); }
}
@keyframes copaWaPulse {
  0%, 100% { transform: translateY(-50%) scale(1); box-shadow: 0 2px 0 #128C7E, 0 0 0 3px #FFF, 0 0 0 6px rgba(37, 211, 102, 0); }
  50%      { transform: translateY(-50%) scale(1.08); box-shadow: 0 2px 0 #128C7E, 0 0 0 3px #FFF, 0 0 0 10px rgba(37, 211, 102, 0.3); }
}
@keyframes copaButtonPulse {
  0%, 100% { box-shadow: 0 5px 0 #FFB800, 0 10px 28px rgba(0, 107, 42, 0.5), 0 0 0 0 rgba(255, 215, 0, 0.5); }
  50%      { box-shadow: 0 5px 0 #FFB800, 0 10px 28px rgba(0, 107, 42, 0.5), 0 0 0 14px rgba(255, 215, 0, 0); }
}
@keyframes copaShimmer {
  0%       { left: -100%; }
  60%, 100% { left: 160%; }
}

/* ═══════════════════════════════════════════════════════════
   PIX WAIT SCREEN (após Gerar PIX) — design impactante
   ═══════════════════════════════════════════════════════════ */
.pixbox:has(.pixwait) {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
}
.pixwait {
  background: linear-gradient(135deg, #00B14F 0%, #008C3F 50%, #006B2A 100%);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 107, 42, 0.35);
  border: 3px solid #FFD700;
  animation: pixwaitFadeIn 0.5s ease-out;
}
.pixwait::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255, 215, 0, 0.5) 1.6px, transparent 2px),
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.4) 1.6px, transparent 2px),
    radial-gradient(circle at 42% 65%, rgba(255, 215, 0, 0.4) 1.6px, transparent 2px),
    radial-gradient(circle at 22% 88%, rgba(255, 255, 255, 0.35) 1.4px, transparent 2px);
  background-size: 120px 120px;
  animation: copaConfetti 12s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}
@keyframes pixwaitFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* TOP BANNER */
.pixwait__banner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background: linear-gradient(90deg, #FFD700, #FFC500, #FFD700);
  padding: 12px 20px;
  border-bottom: 3px solid #006B2A;
  position: relative;
  z-index: 2;
  background-size: 200% 100%;
  animation: pixwaitBannerShine 3s linear infinite;
}
@keyframes pixwaitBannerShine {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.pixwait__pulse {
  width: 14px;
  height: 14px;
  background: #C8102E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6);
  animation: pixwaitPulse 1.4s ease-in-out infinite;
}
@keyframes pixwaitPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); transform: scale(1); }
  50%      { box-shadow: 0 0 0 10px rgba(200, 16, 46, 0); transform: scale(1.15); }
}
.pixwait__banner-txt {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #00205B;
  font-weight: 700;
}

/* HEADER */
.pixwait__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px 16px;
  color: #FFF;
  position: relative;
  z-index: 2;
}
.pixwait__order {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
.pixwait__order strong {
  color: #FFD700;
  font-weight: 700;
}
.pixwait__title {
  font-family: 'Anton', sans-serif !important;
  font-size: 28px !important;
  margin: 6px 0 0 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.01em;
  color: #FFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.pixwait__timer {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  border: 2px solid #FFD700;
  border-radius: var(--r-md);
  padding: 10px 18px;
  text-align: center;
  flex-shrink: 0;
  animation: pixwaitTimerGlow 2s ease-in-out infinite;
}
@keyframes pixwaitTimerGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.15); }
}
.pixwait__timer-lbl {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #FFD700;
  text-transform: uppercase;
}
.pixwait__timer-val {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: #FFF;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* PRICE BOX */
.pixwait__pricebox {
  background: linear-gradient(135deg, #FFD700, #FFB800);
  margin: 16px 28px;
  padding: 20px 24px;
  border-radius: var(--r-md);
  border: 3px solid #006B2A;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 0 #006B2A, 0 8px 20px rgba(0, 0, 0, 0.15);
}
.pixwait__pricelbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #006B2A;
  font-weight: 700;
}
.pixwait__price {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: #00205B;
  line-height: 1;
  margin: 4px 0 6px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
  letter-spacing: 0.01em;
}
.pixwait__pricedisc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #006B2A;
  color: #FFD700;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* GRID — QR + COPY */
.pixwait__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  padding: 8px 28px 20px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}
@media (max-width: 720px) {
  .pixwait__grid { grid-template-columns: 1fr; gap: 12px; }
  .pixwait__or { display: none; }
}
.pixwait__qrwrap,
.pixwait__copywrap {
  background: #FFF;
  border-radius: var(--r-md);
  padding: 20px 18px;
  position: relative;
  border: 2px solid #FFD700;
  display: flex;
  flex-direction: column;
}
.pixwait__step-badge {
  position: absolute;
  top: -14px;
  left: 18px;
  background: linear-gradient(135deg, #FFD700, #FFC500);
  color: #00205B;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #006B2A;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.pixwait__steptitle {
  font-family: 'Anton', sans-serif !important;
  font-size: 17px !important;
  margin: 0 0 12px !important;
  letter-spacing: 0.02em;
  color: #00205B;
  padding-left: 42px;
}
.pixwait__qrframe {
  background: #FFF;
  padding: 8px;
  border-radius: 8px;
  border: 2px dashed #00B14F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  max-width: 220px;
}
.pixwait__qrframe img,
.pixwait__qrframe canvas,
.pixwait__qrframe svg {
  width: 100% !important;
  max-width: 200px !important;
  height: auto !important;
  display: block;
}
.pixwait__or {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pixwait__or span {
  background: #FFD700;
  color: #00205B;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #006B2A;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.pixwait__codetxt {
  width: 100%;
  min-height: 90px;
  padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.4;
  background: #F8F8F0;
  border: 2px solid #E0E0CC;
  border-radius: 8px;
  resize: none;
  color: #00205B;
  cursor: pointer;
  word-break: break-all;
}
.pixwait__codetxt:focus {
  outline: none;
  border-color: #00B14F;
  background: #FFF;
}
.pixwait__copybtn {
  margin-top: 10px;
  background: linear-gradient(135deg, #00B14F, #006B2A);
  color: #FFF;
  border: 2px solid #FFD700;
  border-radius: 999px;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  box-shadow: 0 3px 0 #FFB800;
}
.pixwait__copybtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #FFB800, 0 6px 16px rgba(0, 107, 42, 0.3);
}
.pixwait__hint {
  font-size: 12px;
  color: #5a6675;
  text-align: center;
  margin: 8px 0 0;
}

/* TRUST BADGES */
.pixwait__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 28px;
  background: rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}
.pixwait__trust > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
}
.pixwait__trust > div svg { color: #FFD700; flex-shrink: 0; }
@media (max-width: 600px) {
  .pixwait__trust > div { flex-direction: column; gap: 4px; text-align: center; font-size: 11px; }
}

/* CTA — Já paguei */
.pixwait__cta {
  display: flex;
  gap: 12px;
  padding: 18px 28px 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.pixwait__cta .btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.pixwait__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}
.pixwait__paid-btn {
  flex: 1;
  background: linear-gradient(135deg, #FFD700, #FFC500, #FFB800);
  color: #00205B;
  border: 3px solid #FFF;
  border-radius: 999px;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 0 #006B2A, 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: pixwaitPaidPulse 2.2s ease-in-out infinite;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.pixwait__paid-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(20deg);
  animation: copaShimmer 2.6s ease-in-out infinite;
  pointer-events: none;
}
.pixwait__paid-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #006B2A, 0 12px 30px rgba(0, 0, 0, 0.3);
}
@keyframes pixwaitPaidPulse {
  0%, 100% { box-shadow: 0 5px 0 #006B2A, 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50%      { box-shadow: 0 5px 0 #006B2A, 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 255, 255, 0); }
}

/* ═══════════════════════════════════════════════════════════
   PIX CARD (resumo no checkout step 4)
   ═══════════════════════════════════════════════════════════ */
.pixcard {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background: linear-gradient(135deg, #00205B 0%, #0a1e4f 100%);
  border-radius: var(--r-md);
  border: 3px solid #FFD700;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.3);
  margin-top: 16px;
}
@media (max-width: 700px) {
  .pixcard { grid-template-columns: 1fr; }
}
.pixcard__shine {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255, 215, 0, 0.35) 1.4px, transparent 2px),
    radial-gradient(circle at 78% 82%, rgba(0, 177, 79, 0.3) 1.4px, transparent 2px),
    radial-gradient(circle at 35% 55%, rgba(255, 215, 0, 0.25) 1.4px, transparent 2px);
  background-size: 140px 140px;
  animation: copaConfetti 14s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}
.pixcard__left {
  padding: 24px 28px;
  color: #FFF;
  position: relative;
  z-index: 2;
}
.pixcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 188, 173, 0.18);
  border: 2px solid #32BCAD;
  border-radius: 999px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 12px;
}
.pixcard__badge span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #32BCAD;
  font-weight: 700;
}
.pixcard__title {
  font-family: 'Anton', sans-serif !important;
  font-size: 30px !important;
  margin: 0 0 8px !important;
  color: #FFF !important;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.pixcard__title span {
  color: #FFD700;
  background: linear-gradient(90deg, #FFD700, #FFC500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pixcard__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 14px;
  line-height: 1.5;
}
.pixcard__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pixcard__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.pixcard__check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #00B14F, #006B2A);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}
.pixcard__right {
  background: linear-gradient(135deg, #FFD700, #FFC500 80%, #FFB800);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  border-left: 3px dashed rgba(0, 32, 91, 0.2);
}
@media (max-width: 700px) {
  .pixcard__right { border-left: none; border-top: 3px dashed rgba(0, 32, 91, 0.2); }
}
.pixcard__pricelbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #006B2A;
  font-weight: 700;
}
.pixcard__price {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  color: #00205B;
  line-height: 1;
  margin: 6px 0 2px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
}
.pixcard__strike {
  font-size: 13px;
  color: #00205B;
  opacity: 0.55;
  text-decoration: line-through;
  font-weight: 600;
}
.pixcard__save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #006B2A;
  color: #FFD700;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 10px;
  animation: pixcardSavePulse 2s ease-in-out infinite;
}
@keyframes pixcardSavePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 107, 42, 0.6); }
  50%      { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(0, 107, 42, 0); }
}

/* ═══════════════════════════════════════════════════════════
   FICHA TÉCNICA — card compacto animado
   ═══════════════════════════════════════════════════════════ */
.ficha {
  padding: 60px 0;
  background: linear-gradient(180deg, #FFF8E0 0%, #FFFDF5 100%);
}
.ficha__head {
  text-align: center;
  margin-bottom: 28px;
}
.ficha__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #006B2A;
  font-weight: 700;
}
.ficha__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 4px;
  color: #00205B;
  letter-spacing: 0.01em;
}
.ficha__title span {
  color: #FFD700;
  background: linear-gradient(135deg, #FFD700, #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ficha__lead {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #4a5568;
  font-weight: 600;
  margin: 0;
}
.ficha__card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00205B 0%, #0a1e4f 100%);
  border-radius: 24px;
  border: 3px solid #FFD700;
  padding: 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 32, 91, 0.3);
}
@media (max-width: 720px) {
  .ficha__card { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
}
.ficha__shine {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255, 215, 0, 0.45) 1.5px, transparent 2px),
    radial-gradient(circle at 78% 82%, rgba(0, 177, 79, 0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 42% 65%, rgba(255, 215, 0, 0.3) 1.5px, transparent 2px),
    radial-gradient(circle at 65% 25%, rgba(255, 255, 255, 0.35) 1.4px, transparent 2px);
  background-size: 130px 130px;
  animation: copaConfetti 14s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}
.ficha__rare {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 2px dashed #FFD700;
  border-radius: 18px;
}
.ficha__rare-pill {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFC500);
  color: #00205B;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 999px;
  border: 2px solid #006B2A;
  margin-bottom: 8px;
  animation: pixcardSavePulse 2.2s ease-in-out infinite;
}
.ficha__rare-num {
  font-family: 'Anton', sans-serif;
  font-size: 96px;
  line-height: 0.9;
  color: #FFD700;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
  margin: 6px 0 4px;
  animation: fichaPulse 2.5s ease-in-out infinite;
}
.ficha__rare-num sup {
  font-size: 36px;
  vertical-align: top;
  margin-left: 4px;
}
@keyframes fichaPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.ficha__rare-txt strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 0.04em;
}
.ficha__rare-txt span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.ficha__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ficha__item {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
  animation: fichaItemIn 0.5s ease-out backwards;
  animation-delay: calc(var(--i) * 0.08s);
}
@keyframes fichaItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ficha__item:hover {
  transform: translateY(-4px);
  border-color: #FFD700;
}
.ficha__item-num {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: #FFF;
  letter-spacing: 0.02em;
}
.ficha__item--green .ficha__item-num { color: #66E5A0; }
.ficha__item--yellow .ficha__item-num { color: #FFD700; }
.ficha__item--blue .ficha__item-num { color: #6BC1FF; }
.ficha__item--red .ficha__item-num { color: #FF8B8B; }
.ficha__item-lbl {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  color: #FFF;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.ficha__item-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   AVALIAÇÕES — Carrossel
   ═══════════════════════════════════════════════════════════ */
.reviews {
  padding: 60px 0;
  background: #FFFDF5;
}
.reviews__head {
  text-align: center;
  margin-bottom: 32px;
}
.reviews__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #006B2A;
  font-weight: 700;
}
.reviews__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  margin: 8px 0 12px;
  color: #00205B;
  letter-spacing: 0.01em;
}
.reviews__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFF, #FFFAE3);
  border: 2px solid #FFD700;
  border-radius: 999px;
  padding: 6px 16px;
  font-family: 'Manrope', sans-serif;
}
.reviews__star {
  color: #FFD700;
  font-size: 18px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
  animation: reviewStar 1.8s ease-in-out infinite;
}
.reviews__star:nth-child(2) { animation-delay: 0.1s; }
.reviews__star:nth-child(3) { animation-delay: 0.2s; }
.reviews__star:nth-child(4) { animation-delay: 0.3s; }
.reviews__star:nth-child(5) { animation-delay: 0.4s; }
@keyframes reviewStar {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
.reviews__stars strong {
  margin-left: 6px;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: #00205B;
}
.reviews__total {
  font-size: 12px;
  color: #4a5568;
  font-weight: 600;
}
.reviews__stage {
  max-width: 720px;
  margin: 0 auto;
  background: #FFF;
  border: 3px solid #00205B;
  border-radius: 22px;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.15), 8px 8px 0 #FFD700;
  animation: reviewSlideIn 0.5s var(--ease);
}
@keyframes reviewSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reviews__mark {
  position: absolute;
  top: -16px;
  left: 24px;
  background: #FFD700;
  color: #00205B;
  font-family: 'Anton', sans-serif;
  font-size: 50px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #00205B;
  box-shadow: 0 4px 12px rgba(0, 32, 91, 0.25);
  line-height: 1;
  padding-top: 12px;
}
.reviews__txt {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.55;
  color: #1a202c;
  margin: 6px 0 22px;
  font-style: italic;
  font-weight: 500;
}
.reviews__by {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 2px solid #FFD700;
  padding-top: 16px;
}
.reviews__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00B14F, #006B2A);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}
.reviews__by strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  color: #00205B;
  letter-spacing: 0.02em;
}
.reviews__by span {
  display: block;
  font-size: 12px;
  color: #4a5568;
  font-weight: 600;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D0D0D0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s var(--ease);
}
.reviews__dot:hover { background: #FFD700; }
.reviews__dot.is-on {
  background: #00205B;
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(0, 32, 91, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   REVENDEDOR — Destaque B2B
   ═══════════════════════════════════════════════════════════ */
.reseller {
  position: relative;
  padding: 56px 0;
  background: linear-gradient(135deg, #00205B 0%, #001540 100%);
  overflow: hidden;
}
.reseller__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.4) 2px, transparent 2.5px),
    radial-gradient(circle at 75% 75%, rgba(0, 177, 79, 0.35) 2px, transparent 2.5px),
    radial-gradient(circle at 45% 55%, rgba(255, 215, 0, 0.25) 1.8px, transparent 2.3px),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.3) 1.5px, transparent 2px);
  background-size: 150px 150px;
  animation: copaConfetti 18s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}
.reseller__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .reseller__inner { grid-template-columns: 1fr; }
  .reseller__art { display: none; }
}
.reseller__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 12px;
}
.reseller__dot {
  width: 8px;
  height: 8px;
  background: #00B14F;
  border-radius: 50%;
  animation: pixwaitPulse 1.6s ease-in-out infinite;
}
.reseller__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 12px;
  color: #FFF;
  letter-spacing: 0.01em;
  line-height: 1.02;
}
.reseller__title span {
  background: linear-gradient(135deg, #FFD700, #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reseller__lead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 540px;
}
.reseller__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reseller__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.reseller__benefits svg {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
  padding: 4px;
  border-radius: 50%;
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}
.reseller__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFF;
  border: 3px solid #FFD700;
  border-radius: 999px;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow: 0 5px 0 #128C7E, 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  position: relative;
  overflow: hidden;
  animation: pixwaitPaidPulse 2.4s ease-in-out infinite;
}
.reseller__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(20deg);
  animation: copaShimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.reseller__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #128C7E, 0 12px 30px rgba(37, 211, 102, 0.5);
}
.reseller__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reseller__badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFC500, #FFB800);
  border: 5px solid #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #00205B;
  font-family: 'Anton', sans-serif;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  animation: resellerBadge 4s ease-in-out infinite;
  position: relative;
}
.reseller__badge::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed #FFD700;
  animation: resellerSpin 18s linear infinite;
}
@keyframes resellerBadge {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}
@keyframes resellerSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.reseller__badge span {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.reseller__badge strong {
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.04em;
}

/* ─── PAYMENT PANEL (PIX / WhatsApp) ──────────────────────── */
.paypanel {
  background: var(--cream-2);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.paypanel--pix { background: rgba(0, 177, 79, 0.08); }
.paypanel--wa { background: rgba(37, 211, 102, 0.06); }
.paypanel h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0;
  margin: 0;
}
.paypanel__off {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-d);
  font-weight: 700;
  background: rgba(0, 177, 79, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
}
.paypanel__total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 14px;
  border-top: 2px dashed rgba(27, 34, 64, 0.18);
}
.paypanel__total > span:first-child {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.paypanel__total strong {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-d);
  line-height: 1;
  letter-spacing: 0;
}
.paypanel__wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #25D366;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--ff-body);
  transition: all 0.15s var(--ease);
}
.paypanel__wa:hover { background: #1ea854; transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }

/* ─── PIX BOX (QR Code + copia-cola) ──────────────────────── */
.pixbox {
  background: var(--green);
  color: #fff;
  padding: 28px;
  border: 4px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pixbox__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.pixbox__head h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--yellow);
  margin: 0;
  letter-spacing: 0;
}
.pixbox__amt {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--yellow);
  line-height: 1;
}
.pixbox__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 600px) {
  .pixbox__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
.pixbox__qr {
  flex-shrink: 0;
  background: #fff;
  padding: 14px;
  border-radius: var(--r-sm);
  border: 2px solid var(--ink);
  width: fit-content;
}
.pixbox__qr svg, .pixbox__qr img {
  display: block;
  width: 200px;
  height: 200px;
}
.pixbox__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.pixbox__copy label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.pixbox__copy input,
.pixbox__copy textarea {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 12px;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 12px;
  word-break: break-all;
  outline: none;
  resize: none;
  box-sizing: border-box;
}
.pixbox__copy textarea {
  min-height: 96px;
  max-height: 140px;
  overflow-y: auto;
}
.pixbox__copy input::placeholder,
.pixbox__copy textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.pixbox__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--r-sm);
  color: var(--yellow);
}
.pixbox__spin {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 212, 0, 0.3);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: pixspin 0.8s linear infinite;
}
@keyframes pixspin { to { transform: rotate(360deg); } }
.pixbox__ok {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-family: var(--ff-body);
}
.pixbox__ok-seal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-d);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── REVISÃO FINAL (rev) ─────────────────────────────────── */
.rev {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rev__sec {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rev__sec strong {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}
.rev__sec p, .rev__sec div {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* ─── CONFIRMATION (conf) ─────────────────────────────────── */
.conf {
  padding: 60px 24px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.conf__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.conf__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green);
  color: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.conf__kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-d);
  font-weight: 700;
}
.conf h1, .conf__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0;
  margin: 0;
  line-height: 0.95;
}
.conf__num {
  font-family: var(--ff-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
  background: var(--cream-2);
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-block;
}
.conf__lead {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
.conf__total {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--blue);
  letter-spacing: 0;
}
.conf__card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px;
  text-align: left;
}
.conf__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.conf__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.conf__item:last-child { border-bottom: 0; }
.conf__item-art {
  width: 50px;
  height: 50px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-2);
}
.conf__item-art > * { width: 100%; height: 100%; object-fit: cover; }
.conf__item-name {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.conf__timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-top: 8px;
}
.conf__timeline > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.conf__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ─── THX MODAL (modal "obrigado pelo pedido") ──────────────── */
.thxmodal {
  position: fixed;
  inset: 0;
  background: rgba(27, 34, 64, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: thxFadeIn 0.3s var(--ease);
}
@keyframes thxFadeIn { from { opacity: 0; } to { opacity: 1; } }
.thxmodal__inner {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 12px 12px 0 var(--ink);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  animation: thxSlideUp 0.35s var(--ease);
  text-align: center;
}
@keyframes thxSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.thxmodal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.thxmodal__close:hover { background: var(--ink); color: var(--yellow); }
.thxmodal__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B14F, #006B2A);
  color: #FFF;
  border: 5px solid #FFD700;
  box-shadow: 0 8px 28px rgba(0, 107, 42, 0.45);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: thxSealIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.thxmodal__seal-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  animation: thxRing 1.6s ease-in-out infinite;
}
@keyframes thxSealIn {
  0%   { transform: scale(0) rotate(-45deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes thxRing {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 0; transform: scale(1.25); }
}

/* CONFETTI */
.thxmodal__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.thxmodal__c {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  animation: thxConfettiFall 3.2s linear infinite;
}
.thxmodal__c--0 { background: #FFD700; }
.thxmodal__c--1 { background: #00B14F; }
.thxmodal__c--2 { background: #00205B; }
.thxmodal__c--3 { background: #FFF; border: 1px solid #00205B; }
@keyframes thxConfettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.4; }
}

.thxmodal__msg {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
  margin: 12px 0 20px;
  padding: 0 8px;
}
.thxmodal__msg strong { color: #006B2A; }
.thxmodal__tag {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(135deg, #FFD700, #FFC500);
  color: #00205B;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid #006B2A;
}
.thxmodal__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #00205B 0%, #00B14F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: thxTitleIn 0.5s ease-out 0.4s both;
}
@keyframes thxTitleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thxmodal__order {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.thxmodal__lead {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 20px;
  font-weight: 500;
}
.thxmodal__steps {
  text-align: left;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thxmodal__steps > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-family: var(--ff-body);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.thxmodal__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.thxmodal__support {
  font-size: 12px;
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
}

/* ─── PÁGINA DE CONTA (acc) ───────────────────────────────────── */
.acc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .acc { grid-template-columns: 280px 1fr; gap: 40px; }
}
.acc__side {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.acc__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 8px;
}
.acc__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--yellow);
  font-family: var(--ff-display);
  font-size: 22px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc__name {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--ink);
}
.acc__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s var(--ease);
}
.acc__tab:hover { background: var(--cream-2); color: var(--ink); }
.acc__tab.is-on {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.acc__main { min-width: 0; }
.acc__panel {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px;
  margin-bottom: 20px;
}
.acc__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 20px;
}
.acc__panel-head h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0;
  margin: 0;
}
.acc__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-2);
  font-style: italic;
}

/* Lista de pedidos */
.acc__orders { display: flex; flex-direction: column; gap: 14px; }
.acc__order {
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
}
.acc__order-head {
  padding: 14px 18px;
  background: var(--cream-2);
  border-bottom: 2px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.acc__order-stat {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}
.acc__order-items { padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.acc__order-item { display: grid; grid-template-columns: 40px 1fr auto; gap: 10px; align-items: center; font-size: 13px; }
.acc__order-art { width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 6px; overflow: hidden; }
.acc__order-foot {
  padding: 12px 18px;
  background: var(--cream-2);
  border-top: 2px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 18px;
}

/* Endereços */
.addrs { display: flex; flex-direction: column; gap: 12px; }
.addr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--paper);
}
.addr__lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.addr__act { display: flex; gap: 6px; flex-shrink: 0; }

/* ─── LOGIN DO CLIENTE (login__) ──────────────────────────────── */
.loginlayout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 200px);
}
@media (min-width: 900px) {
  .loginlayout { grid-template-columns: 1fr 1.1fr; }
}
.login__art {
  position: relative;
  background: var(--green);
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 4px solid var(--ink);
  border-radius: var(--r-md);
  margin: 24px;
  overflow: hidden;
}
.login__art-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 212, 0, 0.2) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0, 70, 199, 0.2) 0, transparent 30%);
  pointer-events: none;
}
.login__art-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login__art-copy h1, .login__art-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0;
  color: var(--yellow);
  margin: 0;
}
.login__art-copy p {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 36ch;
}
.login__form {
  padding: 40px 32px;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login__form h2 {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.login__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--line);
}
.login__tabs button {
  padding: 12px 16px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  margin-bottom: -2px;
}
.login__tabs button.is-on {
  color: var(--ink);
  border-bottom-color: var(--green);
}
.login__forgot {
  font-size: 13px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
  text-align: right;
  margin-top: -4px;
}
.login__forgot:hover { text-decoration: underline; }

/* ─── PÁGINAS ESTÁTICAS (FAQ, Política, Sobre) ─────────────── */
.static {
  padding: 48px 24px 80px;
  max-width: 880px;
  margin: 0 auto;
}
.static__head { margin-bottom: 32px; }
.static__head h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0;
  margin: 0;
}
.static__lead {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 12px;
  font-style: italic;
}
.static__body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}
.static__body h2, .static__body h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.static__body p { margin-bottom: 14px; }
.static__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.static__card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 20px;
}
.static__list { list-style: none; padding: 0; margin: 0; }
.static__list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.static__list li:last-child { border-bottom: 0; }
.static__list svg { color: var(--green); flex-shrink: 0; margin-top: 4px; }

/* ─── COLLECTION STATS (collstat — barra de progresso da coleção) ── */
.collstat {
  background: var(--cream-2);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collstat__big {
  font-family: var(--ff-display);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1;
}
.collstat__num { color: var(--blue); }
.collstat__bar {
  width: 100%;
  height: 14px;
  background: rgba(27, 34, 64, 0.1);
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.collstat__bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
}
.collstat__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

/* Misc */
.chk { padding: 24px 0; }
.chart {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 20px;
}

/* ─── PILL geral (caso falte) ─────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}

/* ─── ADMIN PAGE (versão dentro do site público pages-account.jsx) ──
 * Mesmo layout que o painel, mas precisa estar disponível sem admin.css.
 * Reaproveita os estilos do admin.css mas como fallback. */
.adm {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  font-family: var(--ff-body);
}
@media (max-width: 900px) {
  .adm { grid-template-columns: 1fr; }
}

/* ─── BTN GREEN (WhatsApp CTA do modal pós-PIX) ──────────────── */
.btn--green {
  background: #25D366;
  color: #FFFFFF;
  border: 3px solid #1B2240;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn--green:hover {
  background: #1FA855;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #1B2240 !important;
}
.btn--block { width: 100%; }

@keyframes thxPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
