@charset "UTF-8";
:root {
  --checkout-bg: var(--cor_de_fundo);
  --checkout-bg-soft: var(--cor_primaria_clara_50);
  --checkout-surface: var(--cor_de_fundo);
  --checkout-surface-strong: var(--cor_primaria_clara_50);
  --checkout-border: var(--cor_primaria_clara_40);
  --checkout-primary: var(--cor_primaria);
  --checkout-primary-strong: var(--cor_primaria_escura_15);
  --checkout-primary-soft: var(--cor_primaria_clara_32);
  --checkout-accent: var(--cor_alerta);
  --checkout-text: var(--cor_texto);
  --checkout-muted: var(--cor_base_cinza);
  --checkout-danger: var(--cor_perigo);
  --checkout-on-primary: var(--cor_primaria_clara_40);
  --checkout-header-text: var(--cor_de_fundo);
  --checkout-header-kicker: var(--cor_primaria_clara_32);
  --checkout-header-separator: var(--cor_primaria_clara_32);
  --checkout-header-subbar-bg: var(--cor_primaria_clara_40);
  --checkout-header-subbar-text: var(--cor_primaria);
  --checkout-header-subbar-hover: var(--cor_primaria_escura_15);
  --checkout-success-bg: var(--cor_primaria_clara_50);
  --checkout-success-fg: var(--cor_primaria_escura_10);
  --checkout-warning-bg: var(--cor_primaria_clara_40);
  --checkout-warning-fg: var(--cor_alerta);
  --checkout-container-max: 100vw;
  --checkout-radius-lg: 10px;
  --checkout-radius-md: 8px;
  --checkout-header-offset: 0px;
  --checkout-field-bg: #fafafa;
  --checkout-field-disabled-bg: #efefef;
  --checkout-field-border: #d6d6d6;
  --checkout-field-border-focus: #bdbdbd;
  --checkout-step-inactive-bg: var(--checkout-primary-soft);
  --checkout-step-inactive-fg: var(--checkout-text);
  --checkout-step-divider: var(--cor_primaria_clara_40);
  --checkout-step-arrow-contrast: var(--checkout-on-primary);
  --checkout-chip-bg: var(--checkout-primary-strong);
  --checkout-chip-fg: var(--checkout-on-primary);
  --checkout-chip-border: var(--checkout-primary-strong);
  --checkout-menu-panel-bg: var(--checkout-surface-strong);
  --checkout-menu-panel-surface: var(--checkout-surface);
  --checkout-menu-panel-border: var(--checkout-border);
  --checkout-menu-panel-hover: var(--checkout-primary-soft);
  --checkout-menu-panel-text: var(--checkout-header-subbar-text);
  --checkout-menu-panel-text-soft: var(--checkout-muted);
  --checkout-menu-panel-link: var(--checkout-primary);
  --checkout-menu-panel-link-hover: var(--checkout-primary-strong);
}

html,
body {
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
}

body.checkout-public-body {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--checkout-text);
  font-family: "Manrope", sans-serif;
  background: var(--checkout-bg);
  overflow-x: hidden;
}

body.checkout-public-body #cover-spin {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

/* Desativa o spinner legado global aplicado em app.css (#cover-spin::after). */
body.checkout-public-body #cover-spin::before,
body.checkout-public-body #cover-spin::after {
  content: none !important;
  display: none !important;
}

body.checkout-public-body .checkout-loader-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(440px, 100vw - 32px);
  padding: 28px 24px 22px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94) 0%, rgba(10, 16, 28, 0.96) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  text-align: center;
  color: #ffffff;
}

body.checkout-public-body #cover-spin[data-loader-variant=processing] .checkout-loader-panel {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

body.checkout-public-body .checkout-loader-panel__visual {
  position: relative;
  width: 88px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.checkout-public-body .checkout-loader-panel__spinner {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-top-color: #ffffff;
  animation: checkoutSpin 0.8s linear infinite;
}

body.checkout-public-body .checkout-loader-panel__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 26px;
  transform: translate(-50%, -50%);
  background-color: transparent;
  background-image: var(--checkout-loader-logo-url, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body.checkout-public-body #cover-spin[data-loader-variant=download] .checkout-loader-panel {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
}

body.checkout-public-body .checkout-loader-panel__title {
  display: block;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.checkout-public-body .checkout-loader-panel__message {
  margin: 10px auto 0;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

@keyframes checkoutSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.checkout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  margin-top: 0 !important;
  background: var(--checkout-header-bg, var(--checkout-surface-strong));
  border-bottom: 0;
  color: var(--checkout-header-text, var(--checkout-text));
}

.checkout-header__inner {
  max-width: 100%;
  width: 100%;
  margin: 0;
  min-height: 86px;
  padding: 16px 30px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) minmax(260px, auto);
  align-items: center;
  gap: 20px;
  border-bottom: 6px solid var(--checkout-header-separator, var(--checkout-primary-soft));
}

.checkout-header__block {
  min-width: 0;
}

.checkout-header__block--logo {
  display: flex;
  align-items: center;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.checkout-brand--logo-only {
  line-height: 0;
}

.checkout-brand img {
  height: 60px;
  width: auto;
  display: block;
}

.checkout-header__block--identity {
  display: grid;
  gap: 2px;
  align-content: center;
}

.checkout-brand__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.03;
  color: var(--checkout-header-text, var(--checkout-text));
}

.checkout-brand__subtitle {
  font-size: 16px;
  line-height: 1.2;
  color: var(--checkout-header-kicker, var(--checkout-muted));
  font-weight: 700;
}

.checkout-header__block--free {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.checkout-header__free-items {
  max-width: 560px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.checkout-header__free-item,
.checkout-header__free-item:hover,
.checkout-header__free-item:focus {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--checkout-header-kicker, var(--checkout-header-text));
  text-align: right;
  text-decoration: none;
}

.checkout-header__free-content,
.checkout-header__free-text {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--checkout-header-kicker, var(--checkout-header-text));
  text-align: right;
  white-space: pre-line;
}

.checkout-header__subbar {
  border-top: 1px solid var(--checkout-header-separator, var(--checkout-border));
  background: var(--checkout-header-subbar-bg, var(--checkout-on-primary, var(--checkout-primary-soft)));
  padding: 0 30px;
}

.checkout-header__subbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.checkout-header__subbar-left {
  min-width: 0;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  position: relative;
}

.checkout-header__subbar-right {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.checkout-links-menu {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.checkout-links-menu__trigger {
  border: 0;
  border-bottom: 4px solid var(--checkout-header-subbar-text, var(--checkout-primary, var(--checkout-text)));
  background: transparent;
  color: var(--checkout-header-subbar-text, var(--checkout-primary, var(--checkout-text)));
  min-height: 64px;
  padding: 14px 16px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkout-links-menu__trigger-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-links-menu__trigger-caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;
  margin-top: 2px;
}

.checkout-links-menu__panel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 420px;
  background: var(--checkout-menu-panel-bg);
  border: 1px solid var(--checkout-menu-panel-border);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  z-index: 1300;
}

.checkout-links-menu__panel--level-1 {
  top: 100%;
  left: 0;
}

.checkout-links-menu__node {
  position: relative;
}

.checkout-links-menu__node-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--checkout-menu-panel-text);
  line-height: 1.3;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-links-menu__node-toggle::after {
  content: ">";
  font-size: 20px;
  line-height: 1;
  color: var(--checkout-menu-panel-text-soft);
  font-weight: 300;
}

.checkout-links-menu__node-toggle:hover,
.checkout-links-menu__node-toggle:focus {
  background: var(--checkout-menu-panel-hover);
  color: var(--checkout-menu-panel-link-hover);
  outline: 0;
}

.checkout-links-menu__node > .checkout-links-menu__panel {
  top: -1px;
  left: calc(100% - 1px);
  min-width: 390px;
}

.checkout-links-menu__leaf + .checkout-links-menu__leaf {
  border-top: 1px solid var(--checkout-menu-panel-border);
}

.checkout-links-menu__link {
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--checkout-menu-panel-link);
  padding: 22px 26px;
  background: var(--checkout-menu-panel-surface);
}

.checkout-links-menu__link:hover,
.checkout-links-menu__link:focus {
  text-decoration: none;
  background: var(--checkout-menu-panel-hover);
  color: var(--checkout-menu-panel-link-hover);
  outline: 0;
}

.checkout-links-menu:hover > .checkout-links-menu__panel--level-1,
.checkout-links-menu:focus-within > .checkout-links-menu__panel--level-1,
.checkout-links-menu__node:hover > .checkout-links-menu__panel,
.checkout-links-menu__node:focus-within > .checkout-links-menu__panel {
  display: block;
}

.checkout-header__link-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.checkout-header__link-menu--mobile {
  display: none;
}

.checkout-header__link-menu-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
  color: var(--checkout-header-subbar-text, var(--checkout-primary, var(--checkout-text)));
}

.checkout-header__link-menu-select {
  width: 100%;
  min-width: 260px;
  max-width: 740px;
  height: 34px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--checkout-header-separator, var(--checkout-border));
  background: var(--checkout-surface);
  color: var(--checkout-header-subbar-text, var(--checkout-primary, var(--checkout-text)));
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.checkout-header__link-menu-select:focus {
  outline: 0;
  border-color: var(--checkout-primary);
}

.checkout-header__subbar-item,
.checkout-header__subbar-item:hover,
.checkout-header__subbar-item:focus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--checkout-header-subbar-text, var(--checkout-primary, var(--checkout-text)));
  line-height: 1.2;
  padding: 12px 0;
}

.checkout-header__subbar-item--active {
  font-weight: 800;
}

.checkout-header__subbar-right > .checkout-header__subbar-item--active::after,
.checkout-header__subbar-right > .checkout-header__subbar-node > .checkout-header__subbar-item--active::after {
  background: var(--checkout-header-subbar-hover);
  border-radius: 999px;
  bottom: -12px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.checkout-header__subbar-area {
  font-size: 18px;
  font-weight: 800;
}

.checkout-header__subbar-content {
  font-size: 16px;
  font-weight: 700;
}

.checkout-header__subbar-node {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.checkout-header__subbar-node--has-children > .checkout-header__subbar-item {
  padding-right: 2px;
}

.checkout-header__subbar-caret {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.checkout-header__subbar-children {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  max-width: 320px;
  background: var(--checkout-surface);
  border: 1px solid var(--checkout-header-separator, var(--checkout-border));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  padding: 6px 0;
  z-index: 1300;
}

.checkout-header__subbar-node:hover > .checkout-header__subbar-children,
.checkout-header__subbar-node:focus-within > .checkout-header__subbar-children {
  display: block;
}

.checkout-header__subbar-children .checkout-header__subbar-node {
  display: block;
  width: 100%;
}

.checkout-header__subbar-children .checkout-header__subbar-item,
.checkout-header__subbar-children .checkout-header__subbar-item:hover,
.checkout-header__subbar-children .checkout-header__subbar-item:focus {
  width: 100%;
  justify-content: flex-start;
  padding: 9px 14px;
  border-radius: 0;
}

.checkout-header__subbar-children .checkout-header__subbar-item--active {
  background: var(--checkout-bg-soft, rgba(0, 0, 0, 0.05));
}

.checkout-header__subbar-children .checkout-header__subbar-item--active::after {
  display: none;
}

.checkout-header__subbar-children .checkout-header__subbar-node--has-children > .checkout-header__subbar-children {
  top: -1px;
  left: calc(100% - 1px);
}

.checkout-header--links-right .checkout-header__subbar-children {
  left: auto;
  right: 0;
}

.checkout-header--links-right .checkout-header__subbar-children .checkout-header__subbar-node--has-children > .checkout-header__subbar-children {
  left: auto;
  right: calc(100% - 1px);
}

.checkout-main {
  max-width: 100%;
  width: 100%;
  margin: calc(var(--checkout-header-offset, 0px) + 20px) 0 18px;
  padding: 0 20px;
}

.checkout-header,
.checkout-header__inner,
.checkout-header__subbar,
.checkout-header__subbar-inner,
.checkout-main,
.checkout-shell,
.checkout-page,
.checkout-grid,
.checkout-card,
#smartwizard,
#smartwizard > .nav,
#smartwizard .tab-content {
  max-width: 100%;
}

.checkout-shell {
  width: 100%;
}

.checkout-alerts {
  margin-bottom: 12px;
}

.checkout-page {
  display: grid;
  gap: 16px;
}

.checkout-hero {
  display: grid;
  gap: 4px;
}

.checkout-hero__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--checkout-text);
}

.checkout-hero__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--checkout-muted);
  font-weight: 600;
}

.checkout-infobar {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  border-left: 4px solid var(--checkout-primary);
  background: var(--checkout-surface);
  color: var(--checkout-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.checkout-grid > .checkout-card--form {
  order: 2;
}

.checkout-grid > .checkout-card--summary {
  order: 1;
}

.checkout-card {
  background: var(--checkout-surface);
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-lg);
  box-shadow: none;
}

.checkout-card__inner {
  padding: 22px;
}

.checkout-card__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.checkout-card__title--summary {
  margin: 0 0 14px;
}

.checkout-card__subtitle {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--checkout-muted);
  font-weight: 600;
  line-height: 1.35;
}

.checkout-certificate-card {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface);
  padding: 14px;
  margin-bottom: 14px;
}

.checkout-certificate-card__kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--checkout-muted);
}

.checkout-certificate-card__title {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--checkout-text);
}

.checkout-certificate-card__chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.checkout-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--checkout-chip-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  color: var(--checkout-chip-fg);
  background: var(--checkout-chip-bg);
}

.checkout-summary-list {
  display: grid;
  gap: 7px;
  margin: 10px 0;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  border-bottom: 1px solid var(--checkout-border);
  padding-bottom: 9px;
}

.checkout-summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-summary-row__label {
  color: var(--checkout-muted);
  font-weight: 600;
}

.checkout-summary-row__value {
  font-weight: 700;
  text-align: right;
}

.checkout-summary-row__value--discount {
  color: var(--checkout-danger);
}

.checkout-price-total {
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--checkout-radius-md);
  border: 1px solid var(--checkout-border);
  background: var(--checkout-surface-strong);
}

.checkout-price-total__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--checkout-muted);
  font-weight: 700;
}

.checkout-price-total__value {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--checkout-primary-strong);
}

.checkout-summary-footnote {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--checkout-muted);
  font-weight: 600;
}

#checkout-form-errors {
  border-radius: var(--checkout-radius-md);
  border: 1px solid var(--checkout-danger);
  background: var(--checkout-surface);
}

.checkout-card .form-group {
  margin-bottom: 14px;
}

.checkout-card .form-group label {
  font-size: 12px;
  color: var(--checkout-muted);
  font-weight: 700;
  margin-bottom: 7px;
}

.checkout-card .form-control {
  height: 40px;
  border-radius: var(--checkout-radius-md);
  border: 1px solid var(--checkout-field-border);
  background: var(--checkout-field-bg);
  box-shadow: none;
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 14px;
  color: var(--checkout-text);
  transition: border-color 0.15s ease;
}

.checkout-card textarea.form-control {
  min-height: 100px;
}

.checkout-card .form-control:focus {
  border-color: var(--checkout-field-border-focus);
  box-shadow: none;
}

.checkout-card .form-control:disabled,
.checkout-card fieldset[disabled] .form-control {
  background-color: var(--checkout-field-disabled-bg);
  background-image: repeating-linear-gradient(-45deg, rgba(45, 38, 24, 0.06) 0, rgba(45, 38, 24, 0.06) 2px, transparent 2px, transparent 8px);
  background-size: auto;
  box-shadow: none;
  color: var(--checkout-muted);
}

.checkout-card .form-control[readonly]:not(:disabled) {
  background-color: var(--checkout-field-disabled-bg);
  background-image: repeating-linear-gradient(-45deg, rgba(45, 38, 24, 0.06) 0, rgba(45, 38, 24, 0.06) 2px, transparent 2px, transparent 8px);
  background-size: auto;
  box-shadow: none;
  color: var(--checkout-text);
}

.checkout-card .form-control[readonly]:not(:disabled):focus {
  border-color: var(--checkout-field-border);
}

.checkout-card .has-error .form-control {
  border-color: var(--checkout-danger);
}

.checkout-phone-group.has-error {
  padding: 6px 6px 0;
  border: 1px solid var(--checkout-danger);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface);
}

.checkout-phone-group.has-error > .row {
  margin-left: -6px;
  margin-right: -6px;
}

.checkout-card .text-danger {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--checkout-danger);
}

#smartwizard {
  margin-top: 0;
  --sw-anchor-default-primary-color: var(--checkout-step-inactive-bg);
  --sw-anchor-default-secondary-color: var(--checkout-step-divider);
  --sw-anchor-active-primary-color: var(--checkout-primary-strong);
  --sw-anchor-active-secondary-color: var(--checkout-on-primary);
  --sw-anchor-done-primary-color: var(--checkout-step-inactive-bg);
  --sw-anchor-done-secondary-color: var(--checkout-step-divider);
  --sw-anchor-disabled-primary-color: var(--checkout-step-inactive-bg);
  --sw-anchor-disabled-secondary-color: var(--checkout-step-divider);
}

#smartwizard > .nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--checkout-border);
  border-bottom: 0;
  border-radius: var(--checkout-radius-md) var(--checkout-radius-md) 0 0;
  background: var(--checkout-step-inactive-bg);
  overflow: hidden;
}

#smartwizard > .nav .nav-item {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Forca 3 colunas iguais quando estiver no tema arrows. */
#smartwizard.sw-theme-arrows > .nav .nav-item {
  flex: 1 1 0 !important;
  min-width: 0;
}

/* Mantem a ponta da seta de cada passo sobre o bloco do passo seguinte. */
#smartwizard.sw-theme-arrows > .nav .nav-item:nth-child(1) .nav-link {
  z-index: 30 !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-item:nth-child(2) .nav-link {
  z-index: 20 !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-item:nth-child(3) .nav-link {
  z-index: 10 !important;
}

#smartwizard > .nav .nav-link {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 0;
  border-right: 1px solid var(--checkout-step-divider);
  background: var(--checkout-step-inactive-bg);
  padding: 8px 16px;
  color: var(--checkout-step-inactive-fg);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 56px;
  text-align: center;
  text-decoration: none;
}

#smartwizard.sw-theme-arrows > .nav .nav-link {
  width: auto !important;
  margin-left: -30px !important;
  margin-right: 30px !important;
  padding: 10px 10px 10px 50px !important;
  border: 0 !important;
  transition: all 0.5s ease-in-out;
}

#smartwizard.sw-theme-arrows > .nav .nav-item:first-child .nav-link {
  margin-left: 0 !important;
  padding-left: 10px !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-item:last-child .nav-link {
  margin-right: 0 !important;
}

#smartwizard > .nav .nav-item:last-child .nav-link {
  border-right: 0;
}

#smartwizard > .nav .nav-link:focus,
#smartwizard > .nav .nav-link:hover {
  background: var(--checkout-primary-soft);
  color: var(--checkout-primary-strong);
  text-decoration: none;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:not(:last-child) .nav-link::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0;
  width: 22px;
  height: 100%;
  background: var(--checkout-step-inactive-bg) !important;
  border: 0 !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border-top: 1px solid var(--checkout-step-divider) !important;
  border-right: 1px solid var(--checkout-step-divider) !important;
  border-bottom: 1px solid var(--checkout-step-divider) !important;
  z-index: 2;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:not(:last-child) .nav-link.active::after {
  background: var(--checkout-primary-strong) !important;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:not(:last-child) .nav-link.done::after {
  background: var(--checkout-primary-soft) !important;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:not(:first-child) .nav-link {
  padding-left: 28px;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:not(:first-child) .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 100%;
  border: 0 !important;
  background: var(--checkout-step-inactive-bg) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:first-child .nav-link::before {
  content: none !important;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-item:last-child .nav-link::after {
  content: none !important;
}

.checkout-step-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 3;
}

.checkout-step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  min-height: 0;
  max-width: none;
  position: relative;
  z-index: 3;
}

#smartwizard > .nav .nav-link.active,
#smartwizard > .nav .nav-link.active .checkout-step-title,
#smartwizard > .nav .nav-link.active .checkout-step-label {
  color: var(--checkout-on-primary);
  background: var(--checkout-primary-strong);
}

#smartwizard > .nav .nav-link.done,
#smartwizard > .nav .nav-link.done .checkout-step-title,
#smartwizard > .nav .nav-link.done .checkout-step-label {
  color: var(--checkout-primary-strong);
  background: var(--checkout-primary-soft);
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-link.active::before {
  background: var(--checkout-primary-strong) !important;
}

#smartwizard:not(.sw-theme-arrows) > .nav .nav-link.done::before {
  background: var(--checkout-primary-soft) !important;
}

/* Fallback: quando o SmartWizard aplicar o tema arrows, força as mesmas cores do checkout */
#smartwizard.sw-theme-arrows > .nav .nav-link.default,
#smartwizard.sw-theme-arrows > .nav .nav-link.done {
  background-color: var(--checkout-step-inactive-bg) !important;
  border-color: var(--checkout-step-divider) !important;
  color: var(--checkout-step-inactive-fg) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.active {
  background-color: var(--checkout-primary-strong) !important;
  border-color: var(--checkout-primary-strong) !important;
  color: var(--checkout-on-primary) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.default .checkout-step-title,
#smartwizard.sw-theme-arrows > .nav .nav-link.default .checkout-step-label,
#smartwizard.sw-theme-arrows > .nav .nav-link.done .checkout-step-title,
#smartwizard.sw-theme-arrows > .nav .nav-link.done .checkout-step-label {
  color: var(--checkout-step-inactive-fg) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.active .checkout-step-title,
#smartwizard.sw-theme-arrows > .nav .nav-link.active .checkout-step-label {
  color: var(--checkout-on-primary) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link::before {
  content: "" !important;
  position: absolute !important;
  left: 100% !important;
  top: 50% !important;
  width: 0 !important;
  height: 0 !important;
  margin-top: -50px !important;
  display: block !important;
  pointer-events: none !important;
  border: 50px solid transparent !important;
  border-left-width: 40px !important;
  border-left-color: var(--checkout-step-divider) !important;
  background: transparent !important;
  clip-path: none !important;
  z-index: 1 !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link::after {
  content: "" !important;
  position: absolute !important;
  left: 100% !important;
  top: 50% !important;
  width: 0 !important;
  height: 0 !important;
  margin-top: -50px !important;
  display: block !important;
  pointer-events: none !important;
  border: 50px solid transparent !important;
  border-left-width: 40px !important;
  border-left-color: var(--checkout-step-inactive-bg) !important;
  background: transparent !important;
  clip-path: none !important;
  z-index: 2 !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-item:last-child .nav-link::after,
#smartwizard.sw-theme-arrows > .nav .nav-item:last-child .nav-link::before {
  content: none !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.active::after {
  border-left-color: var(--checkout-primary-strong) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.default::after,
#smartwizard.sw-theme-arrows > .nav .nav-link.done::after,
#smartwizard.sw-theme-arrows > .nav .nav-link.disabled::after {
  border-left-color: var(--checkout-step-inactive-bg) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.default::before,
#smartwizard.sw-theme-arrows > .nav .nav-link.done::before,
#smartwizard.sw-theme-arrows > .nav .nav-link.disabled::before {
  border-left-color: var(--checkout-step-divider) !important;
}

#smartwizard.sw-theme-arrows > .nav .nav-link.active::before {
  border-left-color: var(--checkout-step-inactive-bg) !important;
}

#smartwizard .tab-content {
  border: 1px solid var(--checkout-border);
  border-radius: 0 0 var(--checkout-radius-md) var(--checkout-radius-md);
  border-top: 0;
  background: var(--checkout-surface);
  padding: 16px 14px 0;
  min-height: 0;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

#smartwizard .sw-container {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

#smartwizard .tab-content > .tab-pane {
  overflow: visible;
}

#smartwizard .tab-pane h5 {
  margin: 2px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--checkout-border);
  font-size: 22px;
  font-weight: 700;
  color: var(--checkout-text);
  letter-spacing: -0.01em;
}

#smartwizard .toolbar-bottom {
  border-top: 1px solid var(--checkout-border);
  margin-top: 16px;
  padding: 14px 0 0;
}

#smartwizard .sw-btn-prev,
#smartwizard .sw-btn-next {
  border-radius: var(--checkout-radius-md);
  min-width: 170px;
  height: 46px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--checkout-border);
  background: var(--checkout-primary-soft);
  color: var(--checkout-primary-strong);
}

#smartwizard .sw-btn-next {
  border-color: var(--checkout-primary-soft);
  background: var(--checkout-primary-soft);
  color: var(--checkout-primary-strong);
}

#smartwizard .sw-btn-next:hover,
#smartwizard .sw-btn-next:focus {
  background: var(--checkout-primary-strong);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
}

.checkout-payment-chooser {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface-strong);
  padding: 14px;
}

.checkout-payment-section + .checkout-payment-section {
  margin-top: 12px;
}

.checkout-payment-section__title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--checkout-muted);
}

.checkout-payment-accordion {
  margin: 0;
}

.checkout-payment-group {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  overflow: hidden;
}

.checkout-payment-group.is-selected {
  border-color: var(--checkout-primary);
}

.checkout-payment-group + .checkout-payment-group {
  margin-top: 10px;
}

.checkout-payment-group__head {
  padding: 0;
  border: 0;
  background: var(--checkout-surface-strong);
}

.checkout-payment-group__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  text-decoration: none;
  color: var(--checkout-text);
  font-weight: 700;
}

.checkout-payment-group__toggle:hover,
.checkout-payment-group__toggle:focus {
  text-decoration: none;
  color: var(--checkout-primary-strong);
  background: var(--checkout-primary-soft);
}

.checkout-payment-group.is-selected .checkout-payment-group__toggle {
  color: var(--checkout-primary-strong);
  background: var(--checkout-primary-soft);
}

.checkout-payment-group.is-selected .checkout-payment-group__icon {
  color: var(--checkout-primary-strong);
}

.checkout-payment-group__icon {
  width: 22px;
  text-align: center;
  color: var(--checkout-primary);
  font-size: 14px;
}

.checkout-payment-group__title {
  flex: 1;
  font-size: 13px;
}

.checkout-payment-options {
  padding: 10px;
  border-top: 1px solid var(--checkout-border);
  background: var(--checkout-surface);
}

.checkout-payment-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--checkout-radius-md);
  padding: 10px 12px;
  margin: 0;
  cursor: pointer;
}

.checkout-payment-option + .checkout-payment-option {
  margin-top: 6px;
}

.checkout-payment-option input[type=radio] {
  margin-top: 2px;
}

.checkout-payment-option__label {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--checkout-text);
}

.checkout-payment-option:hover {
  border-color: var(--checkout-border);
  background: var(--checkout-surface-strong);
}

.checkout-payment-option.is-selected {
  border-color: var(--checkout-primary);
  background: var(--checkout-primary-soft);
}

#div-condicao_pagamento_id.has-error .checkout-payment-chooser {
  border-color: var(--checkout-danger);
  background: var(--checkout-surface);
}

.checkout-submit-btn {
  width: 100%;
  border-radius: var(--checkout-radius-md);
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--checkout-primary);
  background: var(--checkout-primary);
  color: var(--checkout-on-primary);
}

.checkout-submit-btn:hover,
.checkout-submit-btn:focus {
  color: var(--checkout-on-primary);
  background: var(--checkout-primary-strong);
  border-color: var(--checkout-primary-strong);
}

.checkout-status {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
}

.checkout-status__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-status__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

.checkout-status__icon--pending {
  background: var(--checkout-warning-bg);
  color: var(--checkout-warning-fg);
}

.checkout-payment-evidence {
  border: 1px solid var(--checkout-primary);
  border-left: 5px solid var(--checkout-primary);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-primary-soft);
  color: var(--checkout-primary-strong);
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.checkout-status__icon--pending {
  background: var(--checkout-accent);
  color: var(--checkout-primary-strong);
}

.checkout-payment-evidence--expired {
  border-color: var(--checkout-danger);
  border-left-color: var(--checkout-danger);
  background: var(--checkout-surface);
  color: var(--checkout-text);
}

.checkout-payment-evidence__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

.checkout-payment-evidence__title {
  font-size: 23px;
  line-height: 1.1;
}

.checkout-payment-evidence__status {
  margin-left: auto;
}

.checkout-payment-evidence__text {
  margin: 0 0 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}

.checkout-payment-evidence__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.checkout-payment-evidence .btn {
  font-weight: 700;
}

.checkout-payment-evidence .btn.btn-primary {
  background: var(--checkout-primary-strong);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-surface);
}

.checkout-payment-evidence .btn.btn-primary:hover,
.checkout-payment-evidence .btn.btn-primary:focus {
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: var(--checkout-surface);
}

.checkout-payment-evidence .btn.btn-default {
  background: var(--checkout-surface);
  border-color: var(--checkout-primary);
  color: var(--checkout-primary-strong);
}

.checkout-payment-evidence .btn.btn-default:hover,
.checkout-payment-evidence .btn.btn-default:focus {
  background: var(--checkout-bg-soft);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-primary-strong);
}

.checkout-payment-evidence__cta {
  min-height: 54px;
  padding: 12px 24px;
  border: 0;
  background: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-payment-evidence__cta:hover,
.checkout-payment-evidence__cta:focus {
  background: var(--checkout-primary);
  border: 0;
  color: var(--checkout-on-primary);
}

.checkout-payment-evidence__cta--neutral {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  background: var(--checkout-primary-strong);
  border: 1px solid var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
}

.checkout-payment-evidence__cta--neutral:hover,
.checkout-payment-evidence__cta--neutral:focus {
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: var(--checkout-on-primary);
}

.checkout-copy-feedback {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--checkout-primary-strong);
}

.checkout-copy-feedback--compact {
  margin-top: 0;
  margin-bottom: 8px;
}

.checkout-contact-link {
  color: var(--checkout-primary-strong);
  text-decoration: none;
  font-weight: 700;
}

.checkout-contact-link:hover,
.checkout-contact-link:focus {
  color: var(--checkout-primary);
  text-decoration: underline;
}

.checkout-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 24px;
  border: 1px solid #25d366;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.checkout-whatsapp-btn:hover,
.checkout-whatsapp-btn:focus {
  border-color: #1fa855;
  background: #1fa855;
  color: #fff;
  text-decoration: none;
}

.checkout-meta__value--danger {
  color: var(--checkout-danger);
  font-weight: 700;
}

.checkout-boleto-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-sm);
  background: var(--checkout-surface);
}

.checkout-boleto-panel__title {
  margin: 0 0 12px;
  font-weight: 700;
}

.checkout-boleto-panel__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.checkout-boleto-panel__actions--bottom {
  margin-top: 12px;
  margin-bottom: 0;
}

.checkout-boleto-panel__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-boleto-panel__object {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-sm);
  background: #fff;
}

.checkout-boleto-panel__hint {
  margin: 10px 0 0;
  font-size: 12px;
}

.checkout-pix-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed var(--checkout-primary);
  border-radius: var(--checkout-radius-sm);
  background: var(--checkout-surface);
}

.checkout-pix-panel__title {
  margin: 0 0 10px;
  font-weight: 700;
}

.checkout-pix-panel__img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: var(--checkout-radius-sm);
  border: 1px solid var(--checkout-border);
  margin: 0 auto 10px;
  background: #fff;
}

.checkout-pix-panel__code {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--checkout-text);
  background: #fff;
}

.checkout-payment-modal__body {
  line-height: 1.5;
}

.checkout-payment-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#checkout-modal-pagamento-externo .modal-dialog {
  width: min(680px, 100% - 24px);
  margin: 34px auto;
}

#checkout-modal-pagamento-externo .modal-content {
  border-radius: var(--checkout-radius-md);
  overflow: hidden;
  border: 1px solid #d8e0ea;
  box-shadow: 0 28px 72px rgba(16, 24, 40, 0.35), 0 8px 24px rgba(16, 24, 40, 0.2);
}

#checkout-modal-pagamento-externo .modal-header {
  border-bottom: 1px solid var(--checkout-primary-strong);
  background: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
}

#checkout-modal-pagamento-externo .modal-header .close {
  color: var(--checkout-on-primary);
  opacity: 1;
  text-shadow: none;
}

#checkout-modal-pagamento-externo .modal-header .close:hover,
#checkout-modal-pagamento-externo .modal-header .close:focus {
  color: var(--checkout-surface);
  opacity: 0.9;
}

#checkout-modal-pagamento-externo .modal-title {
  color: var(--checkout-on-primary);
  font-weight: 800;
}

#checkout-modal-pagamento-externo .checkout-payment-modal__body {
  padding: 18px;
  background: #fff;
  color: #334155;
}

#checkout-modal-pagamento-externo .checkout-payment-modal__body strong {
  color: #0f766e;
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer {
  padding: 14px 18px;
  border-top: 1px solid #d8e0ea;
  background: #f8fafc;
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn {
  min-height: 40px;
  min-width: 120px;
  font-weight: 700;
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-default {
  background: var(--checkout-surface);
  border-color: var(--checkout-primary);
  color: var(--checkout-primary-strong);
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-default:hover,
#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-default:focus {
  background: var(--checkout-bg-soft);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-primary-strong);
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-primary {
  background: var(--checkout-primary-strong);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
}

#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-primary:hover,
#checkout-modal-pagamento-externo .checkout-payment-modal__footer .btn.btn-primary:focus {
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: var(--checkout-on-primary);
}

#checkout-modal-alterar-forma-pagamento,
#checkout-modal-pagamento-externo {
  z-index: 1600 !important;
}

.modal-open #checkout-modal-alterar-forma-pagamento,
.modal-open #checkout-modal-pagamento-externo {
  overflow: hidden !important;
}

.modal-backdrop.in {
  z-index: 1500 !important;
}

#checkout-modal-alterar-forma-pagamento .modal-dialog {
  width: min(920px, 100% - 24px);
  margin: 34px auto;
}

#checkout-modal-alterar-forma-pagamento .modal-content {
  border-radius: var(--checkout-radius-md);
  overflow: hidden;
  border: 1px solid var(--checkout-border);
  box-shadow: 0 28px 72px rgba(16, 24, 40, 0.35), 0 8px 24px rgba(16, 24, 40, 0.2);
}

#checkout-modal-alterar-forma-pagamento .modal-header {
  border-bottom: 1px solid var(--checkout-primary-strong);
  background: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
}

#checkout-modal-alterar-forma-pagamento .modal-header .close {
  color: var(--checkout-on-primary);
  opacity: 1;
  text-shadow: none;
}

#checkout-modal-alterar-forma-pagamento .modal-header .close:hover,
#checkout-modal-alterar-forma-pagamento .modal-header .close:focus {
  color: var(--checkout-surface);
  opacity: 0.9;
}

#checkout-modal-alterar-forma-pagamento .modal-title {
  color: var(--checkout-on-primary);
  font-weight: 800;
}

#checkout-modal-alterar-forma-pagamento .modal-body {
  max-height: none;
  overflow: hidden;
  padding: 18px;
  background: var(--checkout-bg-soft);
}

.checkout-forma-pagamento-modal__head h4 {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--checkout-primary-strong);
}

.checkout-forma-pagamento-modal__head p {
  margin: 0 0 14px;
  color: var(--checkout-muted);
}

.checkout-forma-pagamento-grupo {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-sm);
  background: var(--checkout-surface);
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.checkout-forma-pagamento-grupo:hover {
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.12);
  transform: translateY(-1px);
}

.checkout-forma-pagamento-grupo__titulo {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid var(--checkout-border);
  font-size: 15px;
  font-weight: 700;
  color: var(--checkout-primary-strong);
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkout-forma-pagamento-grupo__lista {
  padding: 10px;
  overflow: hidden;
}

.checkout-forma-pagamento-opcao {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.checkout-forma-pagamento-opcao:last-child {
  margin-bottom: 0;
}

.checkout-forma-pagamento-opcao:hover {
  border-color: var(--checkout-primary);
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.1);
}

.checkout-forma-pagamento-opcao input[type=radio] {
  margin: 0;
}

.checkout-forma-pagamento-opcao__texto {
  flex: 1 1 auto;
}

.checkout-forma-pagamento-opcao.is-selected {
  border-color: var(--checkout-primary);
  background: var(--checkout-primary-soft);
  box-shadow: 0 0 0 1px var(--checkout-primary), 0 10px 16px rgba(16, 24, 40, 0.14);
}

.checkout-forma-pagamento-opcao__tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--checkout-primary-soft);
  color: var(--checkout-primary-strong);
  font-size: 11px;
  font-weight: 700;
}

.checkout-forma-pagamento-opcao.is-current {
  border-color: var(--checkout-primary);
  background: var(--checkout-primary-soft);
  cursor: not-allowed;
  opacity: 0.9;
}

.checkout-forma-pagamento-modal__alert {
  margin-top: 8px;
  margin-bottom: 0;
}

.checkout-forma-pagamento-modal__actions {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-top: 1px solid var(--checkout-border);
  background: var(--checkout-surface);
  display: flex;
  justify-content: flex-end;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.checkout-forma-pagamento-modal__actions .btn.btn-primary {
  background: var(--checkout-primary-strong);
  border-color: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
  font-weight: 700;
}

.checkout-forma-pagamento-modal__actions .btn.btn-primary:hover,
.checkout-forma-pagamento-modal__actions .btn.btn-primary:focus {
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: var(--checkout-on-primary);
}

.checkout-forma-pagamento-modal__actions .btn.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-status__icon--success {
  background: var(--checkout-success-bg);
  color: var(--checkout-success-fg);
}

.checkout-status__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.checkout-status__description {
  margin: 2px 0 0;
  color: var(--checkout-muted);
  font-weight: 600;
}

.checkout-status__content {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
  align-items: start;
}

.checkout-status__content .checkout-payment-guide {
  margin-top: 0;
}

.checkout-status__content .checkout-meta {
  margin-top: 0;
}

.checkout-meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.checkout-meta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  padding: 10px 12px;
  background: var(--checkout-surface-strong);
  font-size: 12px;
}

.checkout-meta__label {
  color: var(--checkout-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}

.checkout-meta__value {
  font-weight: 700;
}

.checkout-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-payment-guide {
  margin-top: 16px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface-strong);
  padding: 12px;
}

.checkout-payment-guide__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--checkout-primary-strong);
}

.checkout-payment-guide__description {
  margin: 0 0 10px;
  color: var(--checkout-muted);
  font-weight: 600;
  line-height: 1.45;
}

.checkout-payment-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.checkout-payment-guide__document {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface-strong);
}

.checkout-payment-guide__fallback {
  margin: 0;
  padding: 12px;
}

.checkout-payment-guide__alert {
  margin-bottom: 0;
}

.checkout-payment-guide__pix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-payment-guide__pix-card {
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface-strong);
  padding: 10px;
}

.checkout-payment-guide__pix-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--checkout-text);
}

.checkout-payment-guide__pix-qrcode {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
}

.checkout-payment-guide__pix-raw {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius-md);
  background: var(--checkout-surface);
  padding: 8px;
  max-height: 240px;
  overflow: auto;
}

.checkout-payment-guide__pix-empty {
  color: var(--checkout-muted);
  font-weight: 600;
}

.checkout-payment-guide__pix-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-actions .btn {
  border-radius: var(--checkout-radius-md);
  min-height: 40px;
  font-weight: 700;
}

.checkout-footer {
  margin: 18px 0 0;
}

.checkout-footer.mc-footer {
  background: var(--checkout-primary-strong);
  color: var(--checkout-on-primary);
  border-top: 4px solid var(--checkout-primary);
  padding: 24px 14px;
}

.checkout-footer .mc-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.checkout-footer .mc-footer-logo {
  margin-bottom: 8px;
}

.checkout-footer .mc-footer-version {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-footer .mc-footer-text {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.checkout-footer .mc-footer-text strong {
  color: var(--checkout-accent);
}

.checkout-footer .mc-footer-legal {
  margin: 8px auto 0;
  max-width: 980px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--checkout-bg-soft);
}

@media (min-width: 1200px) {
  .checkout-grid > .checkout-card--summary {
    position: sticky;
    top: calc(var(--checkout-header-offset, 0px) + 12px);
  }
}
@media (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid > .checkout-card--summary {
    order: 2;
  }
  .checkout-grid > .checkout-card--form {
    order: 1;
  }
  #smartwizard > .nav {
    margin-bottom: 0;
  }
  #smartwizard > .nav .nav-link {
    min-height: 56px;
    padding: 8px 14px;
  }
  #smartwizard.sw-theme-arrows > .nav {
    flex-direction: column;
  }
  #smartwizard.sw-theme-arrows > .nav .nav-item {
    flex: 1 1 auto !important;
    width: 100%;
  }
  #smartwizard.sw-theme-arrows > .nav .nav-link {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px 12px !important;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  #smartwizard.sw-theme-arrows > .nav .nav-link::before,
  #smartwizard.sw-theme-arrows > .nav .nav-link::after {
    content: none !important;
    border: 0 !important;
    margin: 0 !important;
  }
  #smartwizard > .nav .nav-item:not(:last-child) .nav-link {
    border-right: 0;
    border-bottom: 1px solid var(--checkout-step-divider);
  }
  .checkout-step-title {
    font-size: 11px;
  }
  .checkout-step-label {
    font-size: 13px;
  }
  .checkout-header__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    min-height: 0;
    padding: 12px 14px;
    gap: 10px;
  }
  .checkout-brand img {
    height: 44px;
  }
  .checkout-brand__title {
    font-size: 22px;
  }
  .checkout-brand__subtitle {
    font-size: 14px;
  }
  .checkout-header__block--free {
    justify-content: flex-start;
  }
  .checkout-header__free-items {
    justify-content: flex-start;
    min-height: 0;
    gap: 10px;
  }
  .checkout-header__free-item {
    font-size: 15px;
    text-align: left;
  }
  .checkout-header__free-content,
  .checkout-header__free-text {
    text-align: left;
    font-size: 15px;
  }
  .checkout-header__link-menu-label,
  .checkout-header__subbar-area,
  .checkout-header__subbar-content {
    font-size: 15px;
  }
  .checkout-header__subbar {
    padding: 0 14px;
  }
  .checkout-header__subbar-inner {
    justify-content: flex-start;
    min-height: 0;
    gap: 12px;
    padding: 6px 0;
  }
  .checkout-header__subbar-left,
  .checkout-header__subbar-right {
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .checkout-header__subbar-right {
    gap: 12px;
  }
  .checkout-links-menu {
    display: none;
  }
  .checkout-header__link-menu--mobile {
    display: flex;
    flex-wrap: wrap;
  }
  .checkout-header__link-menu-select {
    min-width: 0;
  }
  .checkout-header__subbar-item {
    padding: 6px 0;
    flex-wrap: wrap;
  }
  .checkout-header__subbar-node {
    width: 100%;
    display: block;
  }
  .checkout-header__subbar-caret {
    display: none;
  }
  .checkout-header__subbar-children {
    position: static;
    display: block;
    min-width: 0;
    max-width: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 14px;
    margin: 0 0 6px;
  }
  .checkout-header__subbar-children .checkout-header__subbar-item,
  .checkout-header__subbar-children .checkout-header__subbar-item:hover,
  .checkout-header__subbar-children .checkout-header__subbar-item:focus {
    padding: 4px 0;
    background: transparent;
  }
  .checkout-main {
    padding: 0 12px;
  }
  .checkout-card__inner {
    padding: 14px;
  }
  .checkout-card__title {
    font-size: 22px;
  }
  .checkout-hero__title {
    font-size: 24px;
  }
  .checkout-hero__subtitle {
    font-size: 13px;
  }
  .checkout-card__subtitle {
    font-size: 14px;
  }
  .checkout-card .form-control {
    height: 40px;
    font-size: 14px;
  }
  #smartwizard .tab-pane h5 {
    font-size: 22px;
  }
  .checkout-payment-guide__pix-grid {
    grid-template-columns: 1fr;
  }
  .checkout-payment-guide__document {
    min-height: 440px;
  }
}
