:root {
  --cafe: #21150F;
  --magenta: #3A2518;
  --leather: #573822;
  --gold: #BA8B3B;
  --gold-deep: #8A6428;
  --sand: #E7C98F;
  --cream: #F5EAD8;
  --paper: #FFF9EF;
  --ink: #1E1712;
  --accent-deep: #8A3F24;
  --ok: #1FA86A;
  --brand-color: #8A3F24;
  --brand-bg: #F5EAD8;
  --brand-border: #BA8B3B;
  --success-color: #1FA86A;
  --success-deep: #178A56;
  --timer-yellow: #BA8B3B;
  --checkout-gray: #E8DFD2;
  --brand-blue-surface: #21150F;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--checkout-gray);
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
button, a, .btn, .order-bump, input, select, textarea, label { touch-action: manipulation; }

/* Toast */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; max-width: 380px; width: calc(100% - 40px); }
.toast { background: white; border-radius: 10px; padding: 14px 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; animation: slideIn 0.3s ease; border-left: 4px solid var(--gold); }
.toast.toast-error { border-left-color: #dc3545; } .toast.toast-success { border-left-color: var(--ok); }
.toast.toast-warning { border-left-color: var(--gold); } .toast.toast-info { border-left-color: var(--accent-deep); }
.toast-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.toast-icon svg { width: 20px; height: 20px; }
.toast-content { flex: 1; } .toast-title { font-weight: 600; font-size: 13px; color: #333; margin-bottom: 2px; }
.toast-message { font-size: 12px; color: #666; line-height: 1.4; }
.toast-close { background: none; border: none; cursor: pointer; padding: 4px; color: #999; transition: color 0.2s; }
.toast-close:hover { color: #333; }
.toast.hiding { animation: slideOut 0.3s ease forwards; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* Purchase notification (BrandClub) */
.purchase-notification {
  position: fixed;
  z-index: 9999;
  left: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: min(390px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  color: #20242a;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 900ms ease, transform 900ms ease, visibility 900ms ease;
}
.purchase-notification.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.purchase-notification > img {
  width: 74px;
  height: 74px;
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}
.purchase-notification-copy { min-width: 0; }
.purchase-notification-heading { display: flex; flex-wrap: wrap; align-items: center; gap: 5px 9px; line-height: 1.2; }
.purchase-notification-heading > strong { overflow: hidden; font-size: 0.92rem; text-overflow: ellipsis; white-space: nowrap; color: #20242a; }
.purchase-notification.is-city .purchase-notification-heading { display: none; }
.purchase-verified { display: inline-flex; align-items: center; gap: 4px; color: var(--ok); font-size: 0.74rem; font-weight: 800; white-space: nowrap; }
.purchase-verified svg { width: 15px; height: 15px; flex: 0 0 15px; }
.purchase-verified circle { fill: currentColor; }
.purchase-verified path { fill: none; stroke: #ffffff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.purchase-notification-copy p { margin: 5px 0 1px; color: #343941; font-size: 0.86rem; line-height: 1.3; }
.purchase-notification-copy p strong { font-weight: 800; }
.purchase-notification-copy small { color: #717780; font-size: 0.72rem; }
.purchase-notification-close { width: 28px; height: 28px; align-self: start; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #8a9099; cursor: pointer; font-size: 1.05rem; line-height: 1; }
.purchase-notification-close:hover { background: #f1f3f5; color: #343941; }
.purchase-notification-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
body.pix-active .purchase-notification { display: none; }

/* Header — igual à LP: fundo branco, logo à esquerda, selo Compra segura à direita */
.header {
  position: relative;
  isolation: isolate;
  background: #fff;
  border-bottom: 1px solid rgba(231, 185, 105, 0.5);
  box-shadow: 0 2px 10px rgba(48, 32, 27, 0.05);
  padding-top: env(safe-area-inset-top, 0px);
}
.header-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: transparent; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.w-secure { display: inline-flex; align-items: center; gap: 7px; color: #1E9E4A; }
.w-secure svg { width: 24px; height: 24px; flex-shrink: 0; }
.w-secure span { display: grid; line-height: 1.15; }
.w-secure b { font-size: 13px; font-weight: 700; color: #30201B; }
.w-secure small { font-size: 11px; color: #6B5448; }
@media (max-width: 479px) {
  .w-secure { gap: 5px; }
  .w-secure svg { width: 20px; height: 20px; }
  .w-secure b { font-size: 12px; }
  .w-secure small { font-size: 10px; }
}

/* Promo Banner — padrão DROP ("Pedido reservado por") nas cores Waffle em Casa */
.promo-banner {
    background: linear-gradient(180deg, var(--leather) 0%, var(--cafe) 100%);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid var(--gold-deep);
}
.promo-banner-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.promo-banner-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.promo-timer { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.promo-timer-digit {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 4px;
    min-width: 24px;
    text-align: center;
    line-height: 1;
    display: inline-block;
    font-variant-numeric: tabular-nums;
    box-shadow: none;
}
.promo-timer-separator,
.promo-timer-colon {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 0 2px;
    line-height: 1;
}
@media (max-width: 480px) {
    .promo-banner { padding: 8px 15px; font-size: 12px; }
    .promo-banner-timer { gap: 6px; }
    .promo-banner-text { font-size: 12px; }
    .promo-timer-digit { font-size: 14px; padding: 3px 5px; min-width: 20px; }
    .promo-timer-separator,
    .promo-timer-colon { font-size: 14px; }
}

/* Banner */
.checkout-banner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.checkout-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 10px;
  background: #3A2518;
  border: 1px solid rgba(138, 100, 40, 0.4);
  box-shadow: 0 8px 24px rgba(33, 21, 15, 0.2);
  filter: saturate(0.84) brightness(0.9) contrast(1.06);
}
body.pix-active .checkout-banner { display: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 15px; }
.checkout-wrapper { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.checkout-main { width: 100%; min-width: 0; }
.checkout-sidebar { position: static; }
@media (min-width: 1025px) {
  body:not(.checkout-no-sidebar) .checkout-wrapper { grid-template-columns: 1fr 380px; }
  body:not(.checkout-no-sidebar) .checkout-sidebar { position: sticky; top: 20px; }
}
body.checkout-no-sidebar .checkout-sidebar { display: none; }
body.checkout-no-sidebar .checkout-wrapper { grid-template-columns: 1fr; }

/* Cards */
.card { background: white; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; border: 1px solid #e5e5e5; }

/* Step Header */
.step-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: #fff; cursor: pointer; transition: all 0.2s; }
.step-header:hover { background: #fafafa; }
.step-header-static { cursor: default; }
.step-header-static:hover { background: #fff; }
.step-number { width: 28px; height: 28px; background: #e0e0e0; color: #999; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.step-number.active { background: var(--accent-deep); color: #fff; } .step-number.completed { background: var(--ok); color: #fff; }
.step-title-wrapper { display: flex; align-items: center; gap: 8px; flex: 1; }
.step-title { font-size: 14px; font-weight: 700; color: #333; }
.step-title.inactive { color: #999; }
.step-check { color: #8A3F24; font-size: 16px; display: none; } .step-check.show { display: inline-block; }
.step-edit { color: #666; font-size: 14px; cursor: pointer; display: none; padding: 4px; } .step-edit:hover { color: #333; } .step-edit.show { display: block; }

/* Step Content */
.step-content { padding: 0 20px 20px; display: none; animation: fadeIn 0.3s ease; }
.step-content.open { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Sidebar */
.summary-card { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid #e5e5e5; }
.summary-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #8A3F24; }
.summary-product { display: flex; gap: 12px; padding-bottom: 14px; }
.summary-product-image { width: 70px; height: 70px; object-fit: contain; border-radius: 8px; border: 1px solid #eee; background: #ffffff; }
.summary-product-name { font-size: 14px; color: #333; font-weight: 600; line-height: 1.4; white-space: normal; overflow: visible; word-break: break-word; }
.summary-product-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.summary-product-desc { font-size: 11px; color: #666; line-height: 1.4; }
.summary-product-price-old { font-size: 12px; font-weight: 600; color: #9ca3af; text-decoration: line-through; }
.summary-product-price { font-size: 14px; font-weight: 800; color: #8A3F24; margin-top: 2px; }
.summary-bumps { display: none; padding: 10px 0; margin-bottom: 4px; border-top: 1px solid #f0f0f0; }
.summary-bumps.visible { display: block; }
.summary-bumps-row { display: flex; justify-content: space-between; align-items: center; }
.summary-bumps-label { font-size: 13px; color: #666; } .summary-bumps-value { font-size: 13px; color: #666; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e8e8e8; }
.summary-total-label { font-size: 13px; font-weight: 600; color: #555; }
.summary-total-value { font-size: 18px; font-weight: 800; color: #111; }

/* Form */
.form-group { margin-bottom: 12px; }
.form-label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 500; color: #333; }
.form-label span { font-size: 11px; color: #999; font-weight: 400; }
.form-input { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; transition: all 0.2s; }
.form-input:focus { outline: none; border-color: #8A3F24; box-shadow: 0 0 0 3px rgba(138,63,36,0.15); }
.form-input.error { border-color: #f44336; background: #fff8f8; }
.form-input.valid { border-color: rgba(33,21,15,0.28); background: #f7fbff; }
.form-input::placeholder { color: #aaa; }
.form-input[readonly] { background: #f5f5f5; color: #555; }
.error-message { color: #f44336; font-size: 11px; margin-top: 4px; display: none; }
.form-input.error + .error-message { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Number Input S/N */
.number-input-wrapper { position: relative; }
.number-input-wrapper .form-input { padding-right: 60px; }
.sn-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 4px; cursor: pointer; padding: 4px 8px; border-radius: 4px; background: #f0f0f0; font-size: 11px; font-weight: 600; color: #666; transition: all 0.2s; }
.sn-toggle:hover { background: #e0e0e0; }
.sn-toggle.active { background: #8A3F24; color: #fff; }
.sn-toggle .sn-check { display: none; font-size: 10px; } .sn-toggle.active .sn-check { display: inline; }

/* Select */
.form-select { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; background: white; cursor: pointer; }
.form-select:focus { outline: none; border-color: #8A3F24; box-shadow: 0 0 0 3px rgba(138,63,36,0.15); }

/* CEP */
.cep-group { position: relative; transition: opacity 0.22s ease, transform 0.22s ease; }
.cep-loading { position: absolute; right: 12px; bottom: 14px; width: 18px; height: 18px; border: 2px solid #f3f3f3; border-top: 2px solid #8A3F24; border-radius: 50%; animation: spinCep 0.8s linear infinite; display: none; }
@keyframes spinCep { to { transform: rotate(360deg); } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Address Fields */
.address-fields { margin-top: 12px; display: none; opacity: 0; transform: translateY(8px); }
.address-fields.visible { display: block; animation: addressIn 0.32s ease forwards; }
@keyframes addressIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cep-group.is-leaving, .address-fields.is-leaving { opacity: 0; transform: translateY(-6px); pointer-events: none; }

/* Delivery Confirmation */
.delivery-confirmation { display: none; margin-top: 4px; padding: 14px 16px; background: #e8f6ee; border: 1px solid #9ad4b4; border-radius: 8px; opacity: 0; }
.delivery-confirmation.visible { display: flex; align-items: center; gap: 12px; animation: confirmIn 0.32s ease forwards; }
@keyframes confirmIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
#step2Content.is-confirmed .cep-group,
#step2Content.is-confirmed .address-fields { display: none; }
.delivery-confirmation-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: #8A3F24; }
.delivery-confirmation-icon svg { width: 36px; height: 36px; display: block; }
.delivery-confirmation-content { flex: 1; }
.delivery-confirmation-title { font-size: 14px; font-weight: 700; color: #8A3F24; margin-bottom: 2px; }
.delivery-confirmation-text { font-size: 12px; color: #666; }

/* Incentive Box */
.incentive-box { background: #fffbf0; border: 1px solid #f5a623; border-radius: 8px; padding: 10px 12px; margin: 12px 0; display: flex; align-items: center; gap: 8px; }
.incentive-box.hidden { display: none; }
.incentive-text { flex: 1; font-size: 11px; font-weight: 600; color: #666; } .incentive-text span { color: #8A3F24; }

/* Buttons */
.btn { width: 100%; padding: 16px 24px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 54px; position: relative; }
.btn-primary { background: var(--gold-deep); color: #FFF9EF; }
.btn-primary:hover { background: #75541F; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(33,21,15,0.28); }
.btn-pix { background: #2dbb2f; color: #ffffff; }
.btn-pix:hover { background: #28a92a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(45,187,47,0.4); }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-continue { margin-top: 16px; }
.btn-content { display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-loading { pointer-events: none; }
.btn-loading .btn-content { display: none !important; }
.btn-loading .btn-spinner-wrapper { display: flex !important; }
.btn-spinner-wrapper { display: none; align-items: center; justify-content: center; width: 100%; height: 22px; }
.btn-spinner { width: 22px; height: 22px; border: 3px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spinBtn 0.8s linear infinite; }
@keyframes spinBtn { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Payment Method Selector */
.payment-method-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.payment-method-option { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px; border: 2px solid #e0e0e0; border-radius: 10px; cursor: pointer; transition: all 0.2s; background: #fff; }
.payment-method-option:hover { border-color: #8A3F24; background: #e8f6ee; }
.payment-method-option.selected { border-color: #8A3F24; background: #8A3F24; box-shadow: 0 0 0 1px #8A3F24; }
.payment-method-option.selected .pm-label { color: #fff; font-weight: 700; }
.payment-method-option.selected .pm-card-icon { color: #fff; }
.pm-icon { width: 32px; height: 32px; object-fit: contain; }
.pm-card-icon { font-size: 28px; color: #666; }
.pm-label { font-size: 12px; font-weight: 600; color: #333; text-align: center; }

/* PIX Info Box */
.pix-info-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 10px; }
.pix-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; line-height: 1.3; white-space: nowrap; overflow: hidden; }
.pix-info-item span { overflow: hidden; text-overflow: ellipsis; }
.pix-info-item strong { color: #333; }
.pix-info-number { width: 22px; height: 22px; min-width: 22px; background: #8A3F24; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.cpf-section { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.cpf-label { font-size: 12px; font-weight: 700; color: #333; text-transform: uppercase; margin-bottom: 8px; }
.cpf-sublabel { font-size: 11px; color: #999; font-weight: 400; text-transform: none; }

/* Order Bumps — ticket */
.order-bumps { margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.order-bumps[hidden] { display: none !important; }
.order-bump-card {
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  border: 2px dashed #147c4e;
  border-radius: 12px;
}
.order-bump-card:last-child { margin-bottom: 0; }
.order-bumps-header {
  margin: 0 0 10px;
  padding: 10px 12px;
  background: #e8f6ee;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px dashed #9ad4b4;
}
.order-bump {
  display: block;
  padding: 14px 14px 8px;
  background: #fff;
  cursor: pointer;
}
.order-bump.selected { background: #f3faf6; }
.order-bump-card:has(.order-bump.selected) {
  border-style: solid;
  background: #f3faf6;
  box-shadow: 0 2px 10px rgba(20, 124, 78, 0.14);
}
.order-bump-card:has(.order-bump.selected) .order-bump { background: transparent; }
.bump-body { display: flex; align-items: flex-start; gap: 12px; }
.bump-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e8eee9;
  border-radius: 10px;
}
.bump-content { flex: 1; min-width: 0; }
.bump-header { margin-bottom: 4px; }
.bump-title { font-weight: 800; color: #166534; font-size: 15px; line-height: 1.25; white-space: normal; overflow: visible; }
.bump-description { margin-bottom: 8px; color: #555; font-size: 12px; line-height: 1.45; }
.bump-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.bump-price-old {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.bump-price-old-value { text-decoration: line-through; }
.bump-price-new { font-weight: 800; color: #147c4e; font-size: 16px; line-height: 1.2; }
.bump-price-value { color: inherit; }
.bump-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 6px;
  background: #147c4e;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.bump-discount b {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bump-discount small {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.bump-add {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px dashed #9ad4b4;
  color: #166534;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.bump-native-check {
  -webkit-appearance: checkbox;
  appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: #147c4e;
  cursor: pointer;
}
.bump-native-check:focus-visible { outline: 2px solid #147c4e; outline-offset: 2px; }

.order-bump[data-bump-enabled="false"],
.order-bump-card:has([data-bump-enabled="false"]) { display: none !important; }

/* Purchase Summary Box */
.purchase-summary-box { margin-top: 16px; padding: 16px; background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.purchase-summary-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.purchase-summary-header span { font-size: 14px; font-weight: 700; color: #333; }
.purchase-summary-content { margin-bottom: 14px; }
.purchase-summary-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px; background: #fafafa; border-radius: 10px; border: 1px solid #f0f0f0; margin-bottom: 6px; }
.purchase-summary-item:last-child { margin-bottom: 0; }
.purchase-summary-image { width: 88px; height: 88px; border-radius: 10px; object-fit: contain; border: 1px solid #eee; background: #ffffff; flex-shrink: 0; }
.purchase-summary-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.purchase-summary-name { display: block; font-size: 15px; font-weight: 700; color: #333; line-height: 1.35; white-space: normal; overflow: visible; word-break: break-word; }
.purchase-summary-price-old { font-size: 13px; font-weight: 600; color: #9ca3af; text-decoration: line-through; }
.purchase-summary-price-now { font-size: 18px; font-weight: 800; color: #13803D; line-height: 1.2; }
.coupon-applied-tag { display: inline-flex; align-items: center; gap: 5px; align-self: flex-start; margin-top: 2px; padding: 3px 8px; border-radius: 4px; background: #e8f8ef; color: #00a650; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.2; }
.coupon-applied-tag svg { flex: 0 0 12px; }
.coupon-applied-tag b { font-weight: 800; }
.coupon-applied-tag[hidden] { display: none !important; }
.purchase-summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.purchase-summary-total[hidden] { display: none !important; }
.purchase-summary-total-label { font-size: 14px; font-weight: 600; color: #333; }
.purchase-summary-total-value { font-size: 18px; font-weight: 800; color: #111; }
.purchase-summary-discount { padding-top: 10px; border-top: 1px solid #f0f0f0; }
.purchase-summary-discount + .purchase-summary-discount { padding-top: 6px; border-top: 0; }
.purchase-summary-discount + .purchase-summary-total { padding-top: 8px; border-top: 0; }
.purchase-summary-discount .purchase-summary-total-label { font-weight: 400; color: #555; }
.purchase-summary-discount .purchase-summary-total-value { font-size: 14px; font-weight: 600; color: #00a650; }

/* Service Fee */
.purchase-summary-fee { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 8px; border-top: 1px dashed #eee; cursor: pointer; transition: opacity 0.2s; }
.purchase-summary-fee.hidden,
.purchase-summary-fee[hidden] { display: none !important; }
.purchase-summary-fee:hover { opacity: 0.7; }
.fee-left { display: flex; align-items: center; gap: 6px; }
.fee-icon { color: #434343; font-size: 13px; }
.fee-label { font-size: 12px; color: #5e5a5a; }
.fee-value { font-size: 12px; color: #5e5a5a; font-weight: 500; }

/* Summary Bump Items (inside purchase summary) */
#summaryBumpItems .purchase-summary-item { background: #fafafa; border-color: #f0f0f0; }
#summaryBumpItems .purchase-summary-name { font-size: 13px; font-weight: 600; color: #333; }
#summaryBumpItems .purchase-summary-image { width: 56px; height: 56px; }
#summaryBumpItems .purchase-summary-price-now { font-size: 15px; }

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 10001; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.2s ease; }
.modal-overlay.active { display: flex; }
.modal-box { background: #fff; border-radius: 14px; padding: 28px 24px; max-width: 360px; width: 100%; text-align: center; position: relative; animation: modalPop 0.3s ease; }
@keyframes modalPop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; cursor: pointer; color: #999; font-size: 16px; padding: 4px; transition: color 0.2s; }
.modal-close:hover { color: #333; }
.modal-icon-wrap { margin-bottom: 12px; }
.modal-pix-icon { font-size: 40px; color: #8A3F24; }
.modal-shield-icon { font-size: 36px; color: #8A3F24; }
.modal-title { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 8px; }
.modal-text { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 20px; }
.modal-text p + p { margin-top: 8px; }
.modal-btn { min-height: 44px; font-size: 14px; }

/* Testimonials */
.step-header-centered { justify-content: center; }
.step-header-centered .step-title-wrapper { flex: unset; }
#step4Card { content-visibility: auto; contain-intrinsic-size: 1px 640px; }
#step4Card .step-header { padding-bottom: 8px; }
#step4Card .step-content { padding-top: 0; padding-bottom: 18px; }
.testimonials-score { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid #eef0f3; }
.testimonials-score-number { font-size: 28px; font-weight: 800; color: #1f2937; line-height: 1; }
.testimonials-score-stars { color: #f59e0b; font-size: 13px; display: flex; gap: 2px; }
.testimonials-score-meta { font-size: 12px; color: #6b7280; }
.testimonials-grid { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card { display: flex; gap: 12px; padding: 14px; background: #fff; border: 1px solid #e8eaee; border-radius: 12px; box-shadow: 0 1px 2px rgba(16,24,40,0.04); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: #e5e7eb; flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-body { flex: 1; min-width: 0; }
.testimonial-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.testimonial-name { font-size: 14px; font-weight: 700; color: #1f2937; line-height: 1.2; }
.testimonial-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; margin-top: 4px; }
.testimonial-verified { display: inline-flex; align-items: center; gap: 4px; color: #8A3F24; font-size: 11px; font-weight: 700; }
.testimonial-verified svg { width: 13px; height: 13px; }
.testimonial-verified circle { fill: currentColor; }
.testimonial-verified path { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-date { font-size: 11px; color: #9ca3af; }
.testimonial-stars { color: #f59e0b; font-size: 11px; display: flex; gap: 1px; flex-shrink: 0; }
.testimonial-text { font-size: 13px; color: #4b5563; line-height: 1.5; margin: 0 0 12px; }
.testimonial-actions { display: flex; align-items: center; gap: 8px; padding-top: 10px; border-top: 1px solid #f3f4f6; }
.testimonial-helpful { font-size: 11px; font-weight: 600; color: #9ca3af; margin-right: 2px; }
.testimonial-like, .testimonial-dislike { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; padding: 6px 10px; min-height: 32px; border-radius: 999px; background: #f8fafc; border: 1px solid #e5e7eb; font-size: 12px; font-weight: 600; color: #4b5563; }
.testimonial-like:hover { background: #eff6ff; border-color: #bfdbfe; color: #8A3F24; }
.testimonial-like.liked { background: #dbeafe; border-color: #93c5fd; color: #8A3F24; }
.testimonial-dislike:hover { background: #fef2f2; border-color: #fecaca; color: #ef4444; }
.testimonial-dislike.disliked { background: #fee2e2; border-color: #fca5a5; color: #ef4444; }
.testimonial-like i, .testimonial-dislike i { font-size: 12px; }

/* Check Payment Button States */
.check-btn-content { display: flex; align-items: center; justify-content: center; gap: 8px; }
.check-btn-loading { display: none; align-items: center; justify-content: center; gap: 8px; }
.pix-paid-btn.checking .check-btn-content { display: none; }
.pix-paid-btn.checking .check-btn-loading { display: flex; }
.check-btn-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spinBtn 0.8s linear infinite; }

/* Site Seguro */
.site-seguro-global { text-align: center; padding: 20px; }
.site-seguro-global img { max-width: 280px; width: 100%; height: auto; }

/* Footer */
.footer-minimal { background: #f5f5f5; padding: 15px; text-align: center; border-top: 1px solid #e0e0e0; }
.footer-minimal p { font-size: 12px; color: #666; }
.payment-footer {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    border-top: 2px solid var(--gold-deep);
    padding: 16px 20px 14px;
    text-align: center;
}
.payment-footer-content {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.payment-footer-logo { margin-bottom: 4px; }
.payment-footer-logo img { height: 30px; width: auto; object-fit: contain; display: block; }
.payment-footer-legal {
    margin: 4px auto 6px;
    max-width: 360px;
    font-size: 11px;
    line-height: 1.45;
    color: var(--leather);
}
.payment-footer-secure {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(31, 168, 106, 0.12);
    border: 1px solid rgba(31, 168, 106, 0.35);
    border-radius: 20px;
    padding: 4px 12px;
    margin: 4px 0;
    color: var(--ok);
}
.payment-footer-secure span { font-size: 12px; font-weight: 600; color: var(--ok); }
.payment-footer-recaptcha { font-size: 10px; color: #8a7a68; margin-top: 2px; }
.payment-footer-guarantee { font-size: 11px; color: var(--leather); font-weight: 500; }
.payment-footer-links { font-size: 11px; color: var(--leather); margin-top: 2px; }
.payment-footer-links a { color: var(--ink); font-weight: 600; text-decoration: none; }
.payment-footer-links a:hover { text-decoration: underline; color: var(--gold-deep); }

/* One-step checkout */
body.checkout-one-step .checkout-main .step-header { cursor: default; }
body.checkout-one-step .checkout-main .step-header:hover { background: #fff; }
body.checkout-one-step .checkout-main .step-edit,
body.checkout-one-step .checkout-main .step-check { display: none !important; }
body.checkout-one-step #step1Content,
body.checkout-one-step #step2Content,
body.checkout-one-step #step3Content { display: block !important; }
body.checkout-one-step #continueStep1,
body.checkout-one-step #saveAddress,
body.checkout-one-step #confirmAddress,
body.checkout-one-step #deliveryConfirmation { display: none !important; }

/* Loading Screen */
.loading-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #F5EAD8 0%, #FFF9EF 48%, #E8D7B4 100%);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
}
.loading-screen.active { display: flex; }
.loading-ring {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 50%;
    border: 4px solid #E7C98F;
    border-top-color: #8A6428;
    animation: loadingSpin 0.75s linear infinite;
}
.loading-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #21150F;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.loading-hint {
    margin: 12px 0 0;
    max-width: 280px;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #573822;
    font-weight: 500;
}
@keyframes loadingSpin { to { transform: rotate(1turn); } }

/* ==================== PIX SCREEN ==================== */
.pix-screen {
  --pix-pink: #FF4D7A;
  --pix-green: #22C55E;
  --pix-green-deep: #16A34A;
  --pix-ink: #1B1B1F;
  --pix-muted: #8B8B93;
  display: none;
  background: #fff;
}
.pix-screen.active {
  display: block;
  position: relative;
  z-index: 40;
  min-height: 100dvh;
  overflow: visible;
  background: #fff;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}
body.pix-active { background: #fff; }
body.pix-active .header,
body.pix-active .promo-banner,
body.pix-active .checkout-banner,
body.pix-active .container,
body.pix-active .site-seguro-global,
body.pix-active .footer-minimal,
body.pix-active .payment-footer,
body.pix-active .modal-overlay,
body.pix-active .toast-container {
  display: none;
}
.pix-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pix-pay {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 28px 22px 8px;
  text-align: center;
  color: var(--pix-ink);
}
.pix-pay-head { margin: 0 0 22px; }
.pix-pay-head h1 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--pix-ink);
  text-wrap: balance;
}
.pix-pay-head p {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--pix-muted);
  line-height: 1.4;
}
.pix-pay-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 22px;
}
.pix-pay-timer-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4B4B53;
  text-align: left;
  line-height: 1.3;
}
.pix-pay-timer-clock {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pix-pay-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 42px;
  padding: 0 10px;
  background: var(--pix-pink);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 12px;
  font-variant-numeric: tabular-nums;
}
.pix-pay-colon {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pix-pink);
  line-height: 1;
}
.pix-pay-qr { display: grid; place-items: center; margin: 4px 0 18px; }
.pix-pay-qr-frame {
  position: relative;
  width: min(220px, calc(100vw - 88px));
  aspect-ratio: 1;
  padding: 14px;
  border: 2px dashed #D8D8DE;
  border-radius: 18px;
  background: #fff;
  box-sizing: border-box;
}
#qrCodeContainer {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#qrCodeContainer img,
#qrCodeContainer canvas,
#qrCodeContainer table {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}
.pix-pay-qr-mark {
  position: absolute;
  inset: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #fff;
  pointer-events: none;
  box-sizing: border-box;
}
.pix-pay-qr-mark img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.pix-pay-wait {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0 0 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #9A9AA3;
  line-height: 1.3;
}
.pix-pay-wait-spin {
  width: 16px;
  height: 16px;
  border: 2px solid #E4E4EA;
  border-top-color: #B8B8C0;
  border-radius: 50%;
  animation: spinBtn 0.8s linear infinite;
  flex: 0 0 16px;
}
.pix-pay-note {
  margin: 0 0 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pix-green);
  line-height: 1.35;
}
.pix-pay-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 280px;
  margin: 0 auto 28px;
}
.pix-copy-btn,
.pix-paid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.pix-copy-btn {
  background: #fff;
  color: var(--pix-green);
  border: 2px solid var(--pix-green);
}
.pix-copy-btn.copied {
  background: var(--pix-green);
  color: #fff;
  border-color: var(--pix-green);
}
.pix-paid-btn {
  background: var(--pix-green);
  color: #fff;
  border: 2px solid var(--pix-green);
}
.pix-paid-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.pix-copy-btn:focus-visible,
.pix-paid-btn:focus-visible {
  outline: 2px solid var(--pix-ink);
  outline-offset: 3px;
}
.pix-copy-btn:active,
.pix-paid-btn:active { transform: scale(0.98); }
.pix-pay-steps {
  list-style: none;
  margin: 0;
  padding: 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.pix-pay-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6F6F78;
  line-height: 1.45;
}
.pix-pay-steps li span {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E8F9EE;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--pix-green);
  line-height: 1;
}
.pix-pay-steps strong { font-weight: 700; color: #5C5C64; }

/* PIX Approved Loading */
.pix-approved-loading { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.97); z-index: 10000; flex-direction: column; align-items: center; justify-content: center; }
.pix-approved-loading.active { display: flex; }
.pix-approved-spinner { width: 60px; height: 60px; border: 4px solid #f3f3f3; border-top: 4px solid var(--pix-green, #22C55E); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px; }
.pix-approved-text { font-size: 20px; color: #333; font-weight: 700; margin-bottom: 8px; }
.pix-approved-subtext { font-size: 14px; color: #666; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) { .checkout-wrapper { grid-template-columns: 1fr; gap: 15px; } .checkout-sidebar { position: static; } }
@media (max-width: 768px) { .container { padding: 12px; } .logo-img { height: 32px; } .form-grid-2 { grid-template-columns: 1fr; gap: 10px; } .step-header { padding: 14px 16px; } .step-content { padding: 0 16px 16px; } }
@media (min-width: 640px) {
  .pix-pay { max-width: 420px; padding: 40px 24px 16px; }
  .pix-pay-head h1 { font-size: 1.5rem; }
  .pix-pay-qr-frame { width: 236px; }
}
@media (max-width: 480px) {
    .header-content { padding: 10px 15px; } .logo-img { height: 28px; }
    .promo-banner { padding: 8px 15px; font-size: 12px; }
    .promo-banner-timer { gap: 6px; flex-wrap: nowrap; justify-content: center; }
    .promo-banner-text { font-size: 12px; }
    .promo-timer-digit { font-size: 14px; padding: 3px 5px; min-width: 20px; width: auto; height: auto; border-radius: 4px; }
    .promo-timer-separator,
    .promo-timer-colon { font-size: 14px; line-height: 1; padding: 0 2px; }
    .form-input, .form-select { padding: 12px; font-size: 16px; }
    .btn { padding: 14px 20px; font-size: 15px; min-height: 50px; } .btn-spinner { width: 20px; height: 20px; }
    .summary-product-image { width: 60px; height: 60px; } .summary-product-name { font-size: 13px; }
    .summary-total-value { font-size: 16px; }
    .testimonial-card { padding: 12px; }
    .testimonial-top { flex-wrap: wrap; }
    .purchase-summary-box { padding: 14px; } .purchase-summary-image { width: 76px; height: 76px; }
    .purchase-summary-name { font-size: 14px; } .purchase-summary-price-now { font-size: 16px; } .purchase-summary-total-value { font-size: 16px; }
    .payment-method-selector { gap: 8px; } .payment-method-option { padding: 10px 8px; }
    .purchase-notification {
        left: 14px;
        right: auto;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 315px;
        max-width: calc(100vw - 28px);
        grid-template-columns: 62px minmax(0, 1fr) 26px;
        gap: 10px;
        padding: 10px;
        border-radius: 12px;
    }
    .purchase-notification > img { width: 62px; height: 62px; }
    .purchase-notification-heading { gap: 4px 7px; }
    .purchase-notification-heading > strong { font-size: 0.86rem; }
    .purchase-verified { font-size: 0.7rem; }
    .purchase-notification-copy p { margin-top: 4px; font-size: 0.8rem; }
    .testimonial-card { padding: 10px; gap: 10px; }
    .testimonial-avatar { width: 36px; height: 36px; font-size: 14px; }
    .pix-info-item { font-size: 11px; gap: 8px; }
    .pix-info-number { width: 18px; height: 18px; min-width: 18px; font-size: 10px; }
}

@media (max-width: 359px) {
  .pix-pay { padding: 22px 16px 8px; }
  .pix-pay-head h1 { font-size: 1.2rem; }
  .pix-pay-timer { flex-wrap: wrap; justify-content: center; }
  .pix-pay-timer-label { text-align: center; width: 100%; }
  .pix-pay-time { min-width: 42px; height: 38px; font-size: 1rem; }
  .pix-pay-actions { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .address-fields.visible, .delivery-confirmation.visible,
    .cep-group.is-leaving, .address-fields.is-leaving {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
    .purchase-notification { transition: none; }
    .coupon-box { animation: none; }
    .coupon-cta { animation: none; box-shadow: 0 6px 16px rgba(45, 187, 47, 0.28); }
    .loading-ring { animation: none; border-top-color: #8A6428; }
    .checkout-banner img { filter: none; }
    .pix-pay-wait-spin,
    .check-btn-spinner,
    .pix-approved-spinner { animation: none; }
}

body.pix-active { overflow: auto; }
body.coupon-lock:not(.pix-active) { overflow: hidden; }
.coupon-overlay { z-index: 10020; background: rgba(8, 16, 32, 0.62); }
.coupon-box { max-width: 380px; padding: 32px 22px 24px; }
.coupon-kicker { font-size: 13px; font-weight: 700; color: #E10600; margin-bottom: 8px; }
.coupon-title { font-size: 22px; font-weight: 800; color: #111827; line-height: 1.2; margin: 0 0 10px; }
.coupon-lead { font-size: 14px; color: #4b5563; line-height: 1.45; margin: 0 0 16px; }
.coupon-code { display: inline-block; padding: 10px 18px; border: 2px dashed #2dbb2f; border-radius: 10px; background: #f3fff4; color: #13803D; font-size: 22px; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 16px; }
.coupon-cta { width: 100%; min-height: 48px; border: 0; border-radius: 10px; background: #2dbb2f; color: #fff; font-size: 15px; font-weight: 800; letter-spacing: 0.04em; cursor: pointer; outline: none; transition: none; box-shadow: 0 0 0 0 rgba(45, 187, 47, 0.55); animation: couponPulse 1.7s ease-in-out infinite; }
.coupon-cta:hover { background: #28a92a; }
.coupon-cta:focus, .coupon-cta:focus-visible { outline: none; }
@keyframes couponPulse {
    0%, 100% { background: #2dbb2f; box-shadow: 0 0 0 0 rgba(45, 187, 47, 0.5), 0 6px 16px rgba(45, 187, 47, 0.28); }
    50% { background: #3ad63e; box-shadow: 0 0 0 12px rgba(45, 187, 47, 0), 0 8px 22px rgba(45, 187, 47, 0.38); }
}
.coupon-decline { display: block; width: 100%; margin-top: 12px; padding: 0; border: 0; background: none; color: #6b7280; font-size: 13px; font-weight: 600; text-decoration: underline; cursor: pointer; }
.coupon-decline:hover { color: #374151; }
.coupon-fine { margin: 12px 0 0; font-size: 12px; color: #6b7280; line-height: 1.35; }
.confetti-canvas { position: fixed; inset: 0; z-index: 10030; pointer-events: none; width: 100%; height: 100%; }

/* 1 etapa: timer sem rótulo min/seg */
.promo-banner-timer:not(:has(.promo-timer-unit)) .promo-timer { align-items: center; }
.promo-banner-timer:not(:has(.promo-timer-unit)) .promo-timer-colon { padding-bottom: 0; }