:root {
  --vd-header-offset: 135px;
}

body {
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
}

.vd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--vd-header-offset);
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px 24px 28px;
}

.vd-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  position: relative;
}

.vd-header-back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #392269;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
}

.vd-header-back:hover {
  color: #2a1a4a;
}

.vd-header-back svg {
  width: 22px;
  height: 22px;
}

.vd-header-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}

.vd-header-logo-wrap img,
.vd-header-logo-wrap .vd-header-logo-fallback {
  pointer-events: auto;
}

.vd-header-logo-flame {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.vd-header-logo {
  max-height: 44px;
  width: auto;
  display: block;
}

.vd-header-logo-fallback-hidden {
  display: none;
}

.vd-header-message {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 16px;
  color: #392269;
  font-weight: 500;
}

.vd-header-progress-wrap {
  margin-top: 20px;
  height: 8px;
  background: #e8e0f8;
  border-radius: 8px;
  overflow: hidden;
  border: 1px dotted rgba(107, 76, 230, 0.4);
}

.vd-header-progress-bar {
  height: 100%;
  width: 20%;
  background: #8c52ff;
  border-radius: 8px;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .vd-header-row {
    position: relative;
    justify-content: center;
  }

  .vd-header-back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .vd-header-back-text {
    display: none;
  }

  .vd-header-back svg {
    width: 24px;
    height: 24px;
  }

  .vd-header-logo-wrap {
    margin: 0 auto;
  }

  .vd-header-message {
    display: none;
  }
}

.vd-page-bg {
  width: 100%;
  min-height: 100vh;
  padding-top: var(--vd-header-offset);
  margin-top: 0;
  padding-bottom: 80px;
  background: linear-gradient(170.92deg, #f3edf9 22.8%, #fff3e5 93.11%);
  box-sizing: border-box;
}

.vd-page-bg .vd-content {
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.vd-page-bg .vd-etapa {
  display: none;
}

.vd-page-bg .vd-etapa.vd-etapa-active {
  display: block;
}

.vd-page-bg .vd-etapa1 .vd-label {
  text-align: center;
  margin-bottom: 34px;
}

.vd-page-bg .vd-etapa1-titulo {
  text-align: center;
}

.vd-page-bg .vd-form-group {
  margin-bottom: 32px;
}

.vd-page-bg #vd-etapa1 .vd-form-group:first-of-type {
  margin-top: 40px;
}

.vd-page-bg #vd-etapa1 .vd-input:not(.vd-input-invalid):focus,
.vd-page-bg #vd-etapa1 .vd-input:not(.vd-input-invalid):focus-visible {
  outline: none;
  border: 1px solid #8c52ff;
}

/* Input field v2 — preenchido, sem foco (etapa 1) */
.vd-page-bg
  #vd-etapa1
  .vd-input:not(.vd-input-invalid):not(:placeholder-shown):not(:focus):not(
    :focus-visible
  ) {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 25px 20px;
  gap: 10px;
  isolation: isolate;
  min-height: 68px;
  height: 68px;
  background:
    linear-gradient(0deg, rgba(140, 82, 255, 0.1), rgba(140, 82, 255, 0.1)),
    #ffffff;
  border: 1px solid #8c52ff;
  border-radius: 20px;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #2c194e;
  box-shadow: none;
}

.vd-page-bg .vd-form-group-disabled .vd-input {
  opacity: 0.6;
  pointer-events: none;
}

.vd-page-bg .vd-form-group-disabled .vd-label {
  opacity: 0.5;
}

.vd-page-bg .vd-label {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
}

.vd-page-bg .vd-input {
  box-sizing: border-box;
  width: 100%;
  max-width: 601px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 25px 20px;
  min-height: 68px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #2c194e;
  background: #ffffff;
  border: 1px solid #d8d8dc;
  border-radius: 20px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.vd-page-bg .vd-input::placeholder {
  color: #5d5f69;
  font-weight: 400;
}

.vd-page-bg .vd-input:focus,
.vd-page-bg .vd-input:not(:placeholder-shown) {
  outline: none;
  background:
    linear-gradient(0deg, rgba(140, 82, 255, 0.1), rgba(140, 82, 255, 0.1)),
    #ffffff;
  border-color: #8c52ff;
  box-shadow: none;
}

.vd-page-bg .vd-input.vd-input-invalid {
  border-color: #e53935 !important;
  background: #fff !important;
}

.vd-page-bg .vd-input.vd-input-invalid:focus {
  border-color: #e53935 !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.12);
}

.vd-page-bg .vd-field-error {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #e53935;
  display: none;
}

.vd-page-bg .vd-field-error.vd-field-error-visible {
  display: block;
}

.vd-page-bg #vd-etapa1 .vd-input.vd-input-invalid,
.vd-page-bg #vd-etapa1 .vd-input.vd-input-invalid:focus,
.vd-page-bg #vd-etapa1 .vd-input.vd-input-invalid:focus-visible {
  box-sizing: border-box;
  padding: 25px 20px;
  min-height: 68px;
  border: 1px solid #f44336 !important;
  border-radius: 20px;
  background: #ffffff !important;
  color: #f44336;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  box-shadow: none !important;
  outline: none;
}

.vd-page-bg #vd-etapa1 .vd-field-error.vd-field-error-visible {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #f44336;
}

.vd-page-bg .vd-nome-saudacao {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #8c52ff;
  text-align: center;
  display: none;
}

.vd-page-bg .vd-btn-rodape {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #6f34e4 0%, #8c52ff 100%);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.vd-page-bg .vd-btn-rodape > div:empty {
  display: none !important;
}

.vd-page-bg[data-vd-etapa="1"] #maton-2026-registro.vd-btn-rodape--visivel,
.vd-page-bg[data-vd-etapa="1"] #vd-btn-etapa1.vd-btn-rodape--visivel {
  display: block;
}

.vd-page-bg:not([data-vd-etapa="1"]) #maton-2026-registro,
.vd-page-bg:not([data-vd-etapa="1"]) #vd-btn-etapa1 {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.vd-page-bg .vd-btn-rodape:hover {
  background: linear-gradient(90.15deg, #be9dff 0%, #8c52ff 100%);
}

#maton-2026-pagamento {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1990;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 65px;
  padding: 0 16px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: #ffffff;
  background: linear-gradient(180deg, #8c52ff 0%, #6f34e4 100%) !important;
  box-shadow: none !important;
  transition:
    filter 0.15s ease,
    opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

#maton-2026-pagamento:not(:disabled):hover {
  filter: brightness(1.06);
}

#maton-2026-pagamento:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

#maton-2026-pagamento:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: none;
}

.vd-page-bg:has(#vd-etapa4.vd-etapa-active) {
  padding-bottom: 100px;
}

.vd-page-bg:has(#vd-etapa5.vd-etapa-active) {
  padding-bottom: 0;
  min-height: 100dvh;
}

.vd-page-bg:has(#vd-etapa5.vd-etapa-active) .vd-content {
  display: flex;
  flex-direction: column;
  max-width: none;
  min-height: calc(100dvh - var(--vd-header-offset, 120px));
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.vd-page-bg:has(#vd-etapa5.vd-etapa-active) #vd-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

.vd-page-bg #vd-etapa5.vd-etapa-active {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

/* Etapa 5 — Finalize sua transação */
.vd-page-bg #vd-etapa5 .vd-etapa5-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 12px;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 0;
  box-sizing: border-box;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-titulo {
  width: 100%;
  margin: 30px 0;
  padding: 0 8px;
  box-sizing: border-box;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #593493;
  flex: none;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-iframe-wrap {
  --vd-etapa5-chrome: 88px;
  --vd-etapa5-iframe-min-h: max(
    840px,
    calc(100dvh - var(--vd-header-offset, 120px) - var(--vd-etapa5-chrome))
  );
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: min(1200px, calc(100vw - 32px));
  flex: 1 1 auto;
  min-height: var(--vd-etapa5-iframe-min-h);
  max-height: none;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 4px 24px rgba(89, 52, 147, 0.08);
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  background: #f5f5f7;
  border-radius: inherit;
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading--oculto {
  display: none;
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 280px;
  text-align: center;
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(140, 82, 255, 0.22);
  border-top-color: #8c52ff;
  border-radius: 50%;
  animation: vd-checkout-loading-spin 0.75s linear infinite;
}

@keyframes vd-checkout-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading-texto {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #593493;
}

.vd-page-bg #vd-etapa5 .vd-checkout-loading-subtexto {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: #6b5b7a;
  max-width: 300px;
}

.vd-page-bg
  #vd-etapa5
  .vd-checkout-loading[data-vd-loading="gerando"]
  .vd-checkout-loading-subtexto {
  display: none !important;
}

.vd-page-bg
  #vd-etapa5
  .vd-checkout-loading[data-vd-loading="pos-pagamento"]
  .vd-checkout-loading-inner {
  gap: 14px;
}

.vd-page-bg #vd-etapa5 .vd-checkout-iframe.vd-checkout-iframe--carregando {
  visibility: hidden;
  pointer-events: none;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-iframe-scaler {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vd-page-bg #vd-etapa5 .vd-checkout-iframe {
  display: block;
  width: 100%;
  height: var(--vd-etapa5-iframe-min-h);
  min-height: var(--vd-etapa5-iframe-min-h);
  border: none;
  border-radius: 16px;
  background: #fff;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-cta svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: #8c52ff;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-cta-link {
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #8c52ff;
  text-decoration: none;
  border-radius: 300px;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-cta-link:hover,
.vd-page-bg #vd-etapa5 .vd-etapa5-cta-link:focus {
  text-decoration: underline;
  outline: none;
}

.vd-page-bg #vd-etapa5 .vd-etapa5-cta-link:focus-visible {
  outline: 2px solid #8c52ff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .vd-page-bg:has(#vd-etapa5.vd-etapa-active) .vd-content {
    padding-left: 0;
    padding-right: 0;
  }

  .vd-page-bg #vd-etapa5 .vd-etapa5-content {
    padding: 10px 0 8px;
    gap: 8px;
  }

  .vd-page-bg #vd-etapa5 .vd-etapa5-titulo {
    margin: 30px 0;
    font-size: 35px;
    padding: 0 12px;
    line-height: 1.25;
  }

  /* Mobile: altura mínima generosa + sem height fixo (evita “corte”); página rola se precisar */
  .vd-page-bg #vd-etapa5 .vd-etapa5-iframe-wrap {
    --vd-etapa5-iframe-min-h: max(
      720px,
      calc(100dvh - var(--vd-header-offset, 88px) + 80px)
    );
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
    flex: 1 1 auto;
    min-height: var(--vd-etapa5-iframe-min-h);
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .vd-page-bg #vd-etapa5 .vd-etapa5-iframe-scaler {
    flex: 1 1 auto;
    min-height: var(--vd-etapa5-iframe-min-h);
    height: auto;
    overflow: visible;
  }

  .vd-page-bg #vd-etapa5 .vd-checkout-iframe {
    width: 100%;
    height: var(--vd-etapa5-iframe-min-h);
    min-height: var(--vd-etapa5-iframe-min-h);
    margin-left: 0;
    border-radius: 0;
    transform: none;
    zoom: 1;
  }

  .vd-page-bg #vd-etapa5 .vd-checkout-loading-texto {
    font-size: 16px;
  }

  .vd-page-bg #vd-etapa5 .vd-checkout-loading-subtexto {
    font-size: 14px;
  }

  .vd-page-bg #vd-etapa5 .vd-etapa5-cta {
    margin: 30px 0;
    padding: 0 12px 10px;
  }

  .vd-page-bg #vd-etapa5 .vd-etapa5-cta-link {
    font-size: 15px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  #maton-2026-pagamento {
    font-size: 20px;
    height: auto;
    min-height: 65px;
    padding: 12px 16px;
    text-align: center;
  }
}

/* Paleta padronizada para titulos e botoes */
.vd-page-bg .vd-titulo-etapa,
.vd-page-bg .vd-contrato-titulo,
#vd-modal-cupom-overlay .vd-modal-titulo {
  color: #593493 !important;
  font-size: 56px;
  font-weight: 700;
  margin: 50px auto 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.vd-page-bg .vd-btn-rodape,
.vd-page-bg .vd-btn-confirmar,
#vd-modal-cupom-overlay .vd-modal-btn {
  background: linear-gradient(180deg, #6f34e4 0%, #8c52ff 100%) !important;
  border-color: #8c52ff !important;
}

.vd-page-bg .vd-btn-rodape:hover,
.vd-page-bg .vd-btn-confirmar:hover,
#vd-modal-cupom-overlay .vd-modal-btn:hover,
#vd-modal-cupom-overlay .vd-modal-btn:focus {
  background: linear-gradient(90.15deg, #be9dff 0%, #8c52ff 100%) !important;
  border-color: #8c52ff !important;
}

.vd-page-bg .vd-etapa-cabecalho {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.vd-page-bg .vd-etapa-titulo {
  flex: 1;
  max-width: 720px;
}

.vd-page-bg .vd-etapa-icon {
  width: 40px;
  height: 40px;
  color: #6b4ce6;
  flex-shrink: 0;
}

.vd-page-bg .vd-etapa-subtitulo {
  font-size: 30px;
  color: #555;
  margin: 24px auto 20px;
  max-width: 720px;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.vd-page-bg .vd-chips-estado {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.vd-page-bg .vd-chip {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid #593493;
  background: #fff;
  color: #593493;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.vd-page-bg .vd-chip:not(.vd-chip-selected) {
  background: transparent !important;
  color: #593493 !important;
  border-color: #593493 !important;
}

.vd-page-bg .vd-chip:not(.vd-chip-selected):hover {
  background: rgba(107, 76, 230, 0.08) !important;
  color: #593493 !important;
}

.vd-page-bg .vd-chip.vd-chip-selected {
  background: #593493;
  color: #fff;
  border-color: #593493;
}

.vd-page-bg #vd-etapa2 .vd-etapa-subtitulo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.vd-page-bg #vd-etapa2 .vd-etapa-cabecalho {
  justify-content: center;
}

.vd-page-bg #vd-etapa1 .vd-etapa-cabecalho {
  justify-content: center;
}

.vd-page-bg #vd-etapa2 .vd-etapa-titulo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.vd-page-bg #vd-etapa3 .vd-etapa-cabecalho {
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.vd-page-bg .vd-etapa3-titulo {
  text-align: center;
}

.vd-page-bg .vd-etapa3-subtitulo {
  font-size: 30px;
  color: #5d5f69;
  font-weight: 700;
  margin: 24px auto 28px;
  text-align: center;
  max-width: 720px;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.vd-cupom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(140, 82, 255, 1);
  text-decoration: none;
  cursor: pointer;
  margin: 36px auto 32px;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0.01em;
  transition:
    color 0.15s ease,
    opacity 0.15s ease;
}

.vd-cupom-link--etapa4 {
  margin-top: 8px;
  margin-bottom: 20px;
}

.vd-cupom-link-texto {
  text-align: center;
}

.vd-cupom-icone-tag {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.vd-cupom-link:hover {
  color: #392269;
  opacity: 0.85;
}

.vd-cupom-link-hidden {
  display: none !important;
}

.vd-cupom-aplicado-bar {
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0 32px;
}

.vd-cupom-aplicado-bar.vd-cupom-aplicado-bar-hidden {
  display: none !important;
}

.vd-cupom-aplicado-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 76px;
  box-sizing: border-box;
  padding: 0 14px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e5dff7;
}

.vd-cupom-aplicado-inner {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.vd-cupom-aplicado-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.vd-cupom-aplicado-marca {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
}

.vd-cupom-aplicado-label {
  font-size: 20px;
  font-weight: 600;
  color: #392269;
  white-space: nowrap;
}

.vd-cupom-aplicado-codigo {
  border: 2px dashed #8c52ff;
  border-radius: 5px;
  color: #8c52ff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  line-height: 1.25;
  max-width: min(200px, 38vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}

.vd-cupom-aplicado-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
  color: #6b4ce6;
  white-space: nowrap;
  transition:
    color 0.15s ease,
    opacity 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  text-transform: none !important;
}

.vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.vd-page-bg #vd-etapa3 #vd-btn-cupom-trocar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C52FF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.13-3.36L23 10M1 14l5.36 4.36A9 9 0 0 0 20.49 15'/%3E%3C/svg%3E");
}

.vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn:hover,
.vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn:focus {
  color: #392269;
  opacity: 0.85;
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
}

.vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn--remover {
  color: #ef3d2f;
}

.vd-page-bg #vd-etapa3 #vd-btn-cupom-remover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF3D2F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.vd-page-bg
  #vd-etapa3
  .vd-cupom-aplicado-actions
  .vd-cupom-acao-btn--remover:hover,
.vd-page-bg
  #vd-etapa3
  .vd-cupom-aplicado-actions
  .vd-cupom-acao-btn--remover:focus {
  color: #d33628;
  background: transparent !important;
  box-shadow: none !important;
}

/* Cupom aplicado — mobile (Figma) */
@media (max-width: 768px) {
  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-card {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-inner {
    width: 100%;
    max-width: 345px;
    min-height: 60px;
    height: 60px;
    box-sizing: border-box;
    padding: 9px 12px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(140, 82, 255, 0.2);
    border-radius: 15px;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-left {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-marca .vd-cupom-icone-tag {
    width: 24px;
    height: 24px;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    color: #2c194e;
    white-space: nowrap;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-codigo {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 15px;
    gap: 10px;
    min-width: 0;
    width: auto;
    max-width: 94px;
    min-height: 42px;
    height: 42px;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: normal;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed #8c52ff;
    border-radius: 5px;
    color: #8c52ff;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions {
    width: 100%;
    max-width: 345px;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn {
    gap: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    color: #8c52ff;
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .vd-page-bg #vd-etapa3 #vd-btn-cupom-trocar::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C52FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.13-3.36L23 10M1 14l5.36 4.36A9 9 0 0 0 20.49 15'/%3E%3C/svg%3E");
  }

  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn:hover,
  .vd-page-bg #vd-etapa3 .vd-cupom-aplicado-actions .vd-cupom-acao-btn:focus {
    color: #6f3dd4;
    opacity: 1;
  }

  .vd-page-bg
    #vd-etapa3
    .vd-cupom-aplicado-actions
    .vd-cupom-acao-btn--remover {
    color: #f44336;
  }

  .vd-page-bg #vd-etapa3 #vd-btn-cupom-remover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F44336' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  }

  .vd-page-bg
    #vd-etapa3
    .vd-cupom-aplicado-actions
    .vd-cupom-acao-btn--remover:hover,
  .vd-page-bg
    #vd-etapa3
    .vd-cupom-aplicado-actions
    .vd-cupom-acao-btn--remover:focus {
    color: #d32f2f;
  }
}

/* === Modal Cupom === */
#vd-modal-cupom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.48);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-sizing: border-box;
}

#vd-modal-cupom-overlay.vd-modal-open {
  display: flex;
}

#vd-modal-cupom-overlay .vd-modal {
  background: #ffffff;
  border-radius: 30px;
  width: 100%;
  max-width: 480px;
  padding: 32px 28px 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  position: relative;
  animation: vdModalIn 0.22s ease;
  box-sizing: border-box;
  margin: 0;
}

@keyframes vdModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#vd-modal-cupom-overlay .vd-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px 0;
  padding: 0;
}

#vd-modal-cupom-overlay .vd-modal-titulo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

#vd-modal-cupom-overlay .vd-modal-titulo {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(89, 52, 147, 1);
  margin: 0;
  padding: 0;
  line-height: 1.3;
  border: none;
  background: none;
  min-width: 0;
}

#vd-modal-cupom-overlay .vd-modal-fechar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999 !important;
  font-size: 22px;
  line-height: 1;
  transition: color 0.15s ease;
  box-shadow: none !important;
  outline: none;
  border-radius: 0 !important;
}

#vd-modal-cupom-overlay .vd-modal-fechar:hover {
  color: #392269 !important;
  background: transparent !important;
}

#vd-modal-cupom-overlay .vd-modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 0 0;
  padding: 0;
}

#vd-modal-cupom-overlay .vd-modal-info {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  color: #888;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

#vd-modal-cupom-overlay .vd-modal-input {
  width: 100%;
  padding: 14px 18px;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #392269;
  border: 1px solid #e0e0e0 !important;
  border-radius: 20px !important;
  outline: none;
  box-sizing: border-box;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.15s ease;
  margin: 0;
  display: block;
  background: #ffffff !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

#vd-modal-cupom-overlay .vd-modal-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: #bbb;
  font-weight: 400;
}

#vd-modal-cupom-overlay .vd-modal-input:focus {
  border-color: #6b4ce6 !important;
  outline: none;
  box-shadow: none !important;
}

#vd-modal-cupom-overlay .vd-modal-btn {
  display: block !important;
  width: 100% !important;
  padding: 16px 24px !important;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: #6b4ce6 !important;
  border: none !important;
  border-radius: 300px !important;
  cursor: pointer !important;
  transition: background 0.15s ease !important;
  text-align: center !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4 !important;
  text-decoration: none !important;
  letter-spacing: normal !important;
}

#vd-modal-cupom-overlay .vd-modal-btn:hover,
#vd-modal-cupom-overlay .vd-modal-btn:focus {
  background: #8265ec !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: none !important;
}

#vd-modal-cupom-overlay .vd-modal-btn:active {
  background: #5a3dd0 !important;
  color: #ffffff !important;
}

#vd-modal-cupom-overlay .vd-modal-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background: #6b4ce6 !important;
}

#vd-modal-cupom-overlay .vd-modal-feedback {
  margin: 0;
  padding: 0;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  min-height: 18px;
  line-height: 1.4;
}

#vd-modal-cupom-overlay .vd-modal-feedback.sucesso {
  color: #2e7d32;
}

#vd-modal-cupom-overlay .vd-modal-feedback.erro {
  color: #c62828;
}

.vd-page-bg .vd-termos-check {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vd-page-bg #vd-etapa4 .vd-termos-check {
  margin-top: 0;
}

.vd-page-bg .vd-termos-check input[type="checkbox"] {
  accent-color: #8c52ff;
  flex-shrink: 0;
}

.vd-page-bg .vd-termos-check label {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #5d5f69;
}

.vd-page-bg .vd-termos-check a {
  color: #6f34e4;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  cursor: pointer;
}

#vd-modal-termo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.52);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

#vd-modal-termo-overlay.vd-modal-open {
  display: flex;
}

/* === Modal Termos de Uso (spec Figma, alinhado ao modal Privacidade) === */
#vd-modal-termo-overlay .vd-modal-termo {
  width: min(592px, 100%);
  max-height: min(88vh, 900px);
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  animation: vdModalIn 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#vd-modal-termo-overlay .vd-modal-termo-header {
  position: relative;
  min-height: 184px;
  flex: none;
  background: linear-gradient(132.68deg, #f3edf9 25.96%, #fff3e5 100%);
  box-sizing: border-box;
}

#vd-modal-termo-overlay .vd-modal-termo-fechar {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
  border: none !important;
  border-radius: 100px !important;
  background: #ffffff !important;
  color: rgba(0, 0, 0, 0.54) !important;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  box-shadow: none !important;
}

#vd-modal-termo-overlay .vd-modal-termo-head-inner {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  width: min(299px, calc(100% - 100px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 1;
}

#vd-modal-termo-overlay .vd-modal-termo-tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 12px;
  gap: 5px;
  border-radius: 100px;
  background: rgba(140, 82, 255, 0.2);
  color: #8c52ff;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

#vd-modal-termo-overlay .vd-modal-termo-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #8c52ff;
}

#vd-modal-termo-overlay .vd-modal-termo-titulo {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: #593493;
}

#vd-modal-termo-overlay .vd-modal-termo-meta {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  color: #5d5f69;
}

#vd-modal-termo-overlay .vd-modal-termo-art {
  position: absolute;
  right: 24px;
  top: 50px;
  width: 187px;
  height: 135px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 520px) {
  #vd-modal-termo-overlay .vd-modal-termo-art {
    display: none;
  }
}

#vd-modal-termo-overlay .vd-modal-termo-progress {
  width: 100%;
  height: 10px;
  flex: none;
  background: rgba(89, 52, 147, 0.1);
  position: relative;
}

#vd-modal-termo-overlay .vd-modal-termo-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, #8c52ff 0%, #6f34e4 100%);
}

#vd-modal-termo-overlay .vd-modal-termo-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  box-sizing: border-box;
}

#vd-modal-termo-overlay .vd-termo-doc-block {
  width: 100%;
  max-width: 522px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#vd-modal-termo-overlay .vd-termo-doc-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#vd-modal-termo-overlay .vd-termo-doc-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #8c52ff;
  color: #ffffff;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vd-modal-termo-overlay .vd-termo-doc-num.vd-termo-doc-num--dois-digitos {
  font-size: 18px;
  letter-spacing: -0.03em;
}

#vd-modal-termo-overlay .vd-termo-doc-titulo {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: #2c194e;
}

#vd-modal-termo-overlay .vd-termo-doc-rule {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(140, 82, 255, 0.5);
  margin: 0;
}

#vd-modal-termo-overlay .vd-termo-doc-texto {
  margin: 0;
  width: 100%;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #5d5f69;
}

#vd-modal-termo-overlay .vd-termo-doc-texto + .vd-termo-doc-texto,
#vd-modal-termo-overlay .vd-termo-doc-texto + .vd-termo-doc-list,
#vd-modal-termo-overlay .vd-termo-doc-list + .vd-termo-doc-texto,
#vd-modal-termo-overlay .vd-termo-doc-list + .vd-termo-doc-list {
  margin-top: 12px;
}

#vd-modal-termo-overlay .vd-termo-doc-list {
  margin: 0;
  padding-left: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #5d5f69;
}

#vd-modal-termo-overlay .vd-termo-doc-list li + li {
  margin-top: 8px;
}

#vd-modal-termo-overlay .vd-termo-doc-list--letras {
  list-style-type: lower-alpha;
}

/* === Modal Política de Privacidade (spec Figma) === */
#vd-modal-priv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2110;
  background: rgba(0, 0, 0, 0.52);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

#vd-modal-priv-overlay.vd-modal-open {
  display: flex;
}

#vd-modal-priv-overlay .vd-modal-priv {
  width: min(592px, 100%);
  max-height: min(88vh, 900px);
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  animation: vdModalIn 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#vd-modal-priv-overlay .vd-modal-priv-header {
  position: relative;
  min-height: 196px;
  flex: none;
  background: linear-gradient(132.68deg, #f3edf9 25.96%, #fff3e5 100%);
  box-sizing: border-box;
}

#vd-modal-priv-overlay .vd-modal-priv-fechar {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
  border: none !important;
  border-radius: 100px !important;
  background: #ffffff !important;
  color: rgba(0, 0, 0, 0.54) !important;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  box-shadow: none !important;
}

#vd-modal-priv-overlay .vd-modal-priv-head-inner {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(calc(-50% - 7px));
  width: min(270px, calc(100% - 100px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 1;
}

#vd-modal-priv-overlay .vd-modal-priv-tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 12px;
  gap: 5px;
  border-radius: 100px;
  background: rgba(140, 82, 255, 0.2);
  color: #8c52ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
}

#vd-modal-priv-overlay .vd-modal-priv-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #8c52ff;
}

#vd-modal-priv-overlay .vd-modal-priv-titulo {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: #593493;
}

#vd-modal-priv-overlay .vd-modal-priv-meta {
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  color: #5d5f69;
}

#vd-modal-priv-overlay .vd-modal-priv-art {
  position: absolute;
  right: 24px;
  top: 50px;
  width: 187.66px;
  height: 114px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 520px) {
  #vd-modal-priv-overlay .vd-modal-priv-art {
    display: none;
  }
}

#vd-modal-priv-overlay .vd-modal-priv-progress {
  width: 100%;
  height: 10px;
  flex: none;
  background: rgba(89, 52, 147, 0.1);
  position: relative;
}

#vd-modal-priv-overlay .vd-modal-priv-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, #8c52ff 0%, #6f34e4 100%);
}

#vd-modal-priv-overlay .vd-modal-priv-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  box-sizing: border-box;
}

#vd-modal-priv-overlay .vd-priv-doc-block {
  width: 100%;
  max-width: 522px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#vd-modal-priv-overlay .vd-priv-doc-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#vd-modal-priv-overlay .vd-priv-doc-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #8c52ff;
  color: #ffffff;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vd-modal-priv-overlay .vd-priv-doc-num--dois-digitos {
  font-size: 18px;
  letter-spacing: -0.03em;
}

#vd-modal-priv-overlay .vd-priv-doc-titulo {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: #2c194e;
}

#vd-modal-priv-overlay .vd-priv-doc-rule {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(140, 82, 255, 0.5);
  margin: 0;
}

#vd-modal-priv-overlay .vd-priv-doc-texto {
  margin: 0;
  width: 100%;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #5d5f69;
}

#vd-modal-priv-overlay .vd-priv-doc-texto + .vd-priv-doc-texto,
#vd-modal-priv-overlay .vd-priv-doc-texto + .vd-priv-doc-list,
#vd-modal-priv-overlay .vd-priv-doc-list + .vd-priv-doc-texto,
#vd-modal-priv-overlay .vd-priv-doc-list + .vd-priv-doc-list {
  margin-top: 12px;
}

#vd-modal-priv-overlay .vd-priv-doc-list {
  margin: 0;
  padding-left: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #5d5f69;
}

#vd-modal-priv-overlay .vd-priv-doc-list li + li {
  margin-top: 8px;
}

#vd-modal-priv-overlay .vd-priv-doc-texto a {
  color: #641dc9;
  text-decoration: underline;
}

#vd-modal-priv-overlay .vd-priv-doc-texto a:hover {
  color: #8c52ff;
}

@media (min-width: 769px) {
  .vd-page-bg .vd-etapa3-subtitulo {
    font-size: 32px;
    max-width: 800px;
    margin-top: 0;
  }
}

.vd-page-bg .vd-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .vd-page-bg .vd-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .vd-page-bg .vd-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .vd-page-bg .vd-cards-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }
}

.vd-page-bg .vd-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.vd-page-bg .vd-card:hover {
  border-color: #6b4ce6;
  box-shadow: 0 4px 12px rgba(107, 76, 230, 0.12);
}

.vd-page-bg .vd-card.vd-card-selected {
  border-color: #6b4ce6;
  background: #f8f6ff;
  box-shadow: 0 4px 12px rgba(107, 76, 230, 0.2);
}

.vd-page-bg .vd-card-img {
  flex-shrink: 0;
  width: 100%;
  height: 180px;
  background: #e8e4f4;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .vd-page-bg .vd-card-img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .vd-page-bg .vd-card-img {
    height: 160px;
  }
}

.vd-page-bg .vd-card-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.vd-page-bg .vd-card-local {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  min-height: 0;
}

.vd-page-bg .vd-card-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 12px;
  background: #e8e0f8;
  border: 1px solid rgba(107, 76, 230, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vd-page-bg .vd-card-icon-wrap svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6b4ce6;
}

.vd-page-bg .vd-card-local .vd-card-text {
  flex: 1;
  min-width: 0;
}

.vd-page-bg .vd-card-nome {
  font-size: 18px;
  font-weight: 700;
  color: #2c194e;
  margin: 0 0 6px;
  flex-shrink: 0;
}

.vd-page-bg .vd-card-endereco {
  font-size: 14px;
  font-weight: 400;
  color: #5d5f69;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vd-page-bg .vd-card-badge {
  flex-shrink: 0;
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 0px 20px 20px 20px;
}

.vd-page-bg .vd-turnos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .vd-page-bg .vd-turnos-grid {
    gap: 28px;
    row-gap: 28px;
  }
}

.vd-page-bg .vd-turno {
  position: relative;
  flex: 0 1 260px;
  max-width: 320px;
  min-width: 200px;
  padding: 24px 24px 22px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.vd-page-bg .vd-turno-chip {
  position: static;
  transform: none;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  gap: 10px;
  min-height: 29px;
  border-radius: 10px;
  background: #e5ffde;
  border: 1px solid #27b300;
  color: #27b300;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  z-index: 1;
}

.vd-page-bg .vd-turno-chips {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1;
}

.vd-page-bg .vd-turno-chip-noite {
  position: static;
  transform: none;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  gap: 10px;
  min-height: 29px;
  border-radius: 10px;
  background: #e9deff;
  border: 1px solid #8c52ff;
  color: #8c52ff;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  z-index: 1;
}

@media (max-width: 480px) {
  .vd-page-bg .vd-turno {
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }
}

.vd-page-bg .vd-turno:hover {
  border-color: #6b4ce6;
  box-shadow: 0 4px 14px rgba(107, 76, 230, 0.18);
  transform: translateY(-2px);
}

.vd-page-bg .vd-turno.vd-turno-selected {
  border-color: #6b4ce6;
  background: #f8f6ff;
}

.vd-page-bg .vd-turno-nome {
  font-size: 22px;
  font-weight: 700;
  color: #8c52ff;
  margin: 14px 0 14px;
}

.vd-page-bg .vd-turno.vd-turno-selected .vd-turno-nome {
  color: #6b4ce6;
}

.vd-page-bg .vd-turno-a-partir {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin: 0 0 6px;
  line-height: 120%;
}

.vd-page-bg .vd-turno-valor-antigo-wrap {
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vd-page-bg .vd-turno-valor-antigo-wrap:empty {
  display: none;
}

.vd-page-bg .vd-turno-valor-antigo {
  font-size: 18px;
  font-weight: 500;
  color: #aaa;
  text-decoration: line-through;
  letter-spacing: 0.01em;
}

.vd-page-bg .vd-turno-valor-wrap {
  margin: 0 0 8px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  align-self: center;
  max-width: 100%;
  white-space: nowrap;
  gap: 0;
}

.vd-page-bg .vd-turno-valor-wrap .vd-turno-valor,
.vd-page-bg .vd-turno-valor-wrap .vd-turno-mes {
  white-space: nowrap;
  flex-shrink: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.vd-page-bg .vd-turno-valor {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.vd-page-bg .vd-turno-mes {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  margin-left: 2px;
}

.vd-page-bg .vd-turno-parcelas {
  font-size: 15px;
  color: #777;
  margin-bottom: 2px;
}

.vd-page-bg .vd-turno-desconto-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: 8px 16px;
  margin: 14px 0 4px;
  border-radius: 10px;
  border: 1.5px solid #27b300;
  background: rgba(229, 255, 222, 1);
  color: #1a7a00;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.vd-page-bg .vd-turno-separador {
  height: 1px;
  background: #e5dff7;
  margin: 14px 0 10px;
}

.vd-page-bg .vd-turno-extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  margin-top: 4px;
}

.vd-page-bg .vd-turno-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #555;
  width: 100%;
  justify-content: center;
}

.vd-page-bg .vd-turno-info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6b4ce6;
}

.vd-page-bg .vd-turno-info-text {
  font-size: 15px;
}

.vd-page-bg .vd-tooltip {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  margin: 0 0 0 4px !important;
  padding: 0 !important;
  z-index: 10000 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.vd-page-bg .vd-tooltip-trigger {
  position: relative !important;
  z-index: 10001 !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  border-radius: 50% !important;
  border: 1px solid #8c52ff !important;
  color: #8c52ff !important;
  background: #fff !important;
  background-color: #fff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.vd-page-bg .vd-tooltip-content {
  position: absolute !important;
  left: 50% !important;
  top: calc(100% + 8px) !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 140px !important;
  max-width: 220px !important;
  box-sizing: border-box !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition:
    opacity 0.16s ease,
    visibility 0.16s ease !important;
  z-index: 10002 !important;
}

.vd-page-bg .vd-tooltip-content::before {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  border-top: none !important;
  border-bottom: 6px solid #323232 !important;
  flex-shrink: 0 !important;
  margin: 0 0 -1px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.vd-page-bg .vd-tooltip-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4px 8px !important;
  margin: 0 !important;
  min-height: 36px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #323232 !important;
  background-color: #323232 !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 10px !important;
  line-height: 14px !important;
  color: #fff !important;
  text-align: center !important;
  word-wrap: break-word !important;
}

.vd-page-bg .vd-tooltip:hover .vd-tooltip-content,
.vd-page-bg .vd-tooltip.vd-tooltip-open .vd-tooltip-content {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .vd-page-bg .vd-tooltip-content {
    left: 50% !important;
    right: auto !important;
    top: calc(100% + 8px) !important;
    transform: translateX(-50%) !important;
  }

  .vd-page-bg .vd-titulo-etapa {
    font-size: 35px;
  }

  .vd-page-bg .vd-etapa-subtitulo,
  .vd-page-bg .vd-etapa3-subtitulo,
  .vd-page-bg .vd-etapa4-subtitulo {
    font-size: 24px;
  }

  .vd-page-bg #vd-etapa1 .vd-label {
    font-size: 24px;
  }

  .vd-page-bg .vd-revisao-card,
  .vd-page-bg .vd-revisao-eyebrow,
  .vd-page-bg .vd-revisao-meta-text,
  .vd-page-bg .vd-revisao-parcelas-text,
  .vd-page-bg .vd-revisao-card .vd-revisao-pergunta,
  .vd-page-bg .vd-revisao-card .vd-revisao-linha,
  .vd-page-bg .vd-contrato-card,
  .vd-page-bg .vd-contrato-card .vd-contrato-titulo,
  .vd-page-bg .vd-contrato-card .vd-contrato-texto,
  .vd-page-bg .vd-contrato-card .vd-contrato-link {
    font-size: 18px;
  }

  .vd-page-bg .vd-revisao-curso-titulo {
    font-size: 20px;
  }

  .vd-page-bg .vd-revisao-valor-preco {
    font-size: 22px;
  }

  .vd-page-bg .vd-revisao-cpf-pergunta {
    font-size: 16px;
  }

  .vd-page-bg .vd-requisitos-titulo {
    font-size: 16px;
  }

  .vd-page-bg .vd-requisitos-item-titulo,
  .vd-page-bg .vd-requisitos-item-desc {
    font-size: 14px;
  }
}

.vd-page-bg #vd-etapa4.vd-etapa-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vd-page-bg .vd-etapa4-cabecalho {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.vd-page-bg .vd-etapa4-titulo {
  text-align: center;
  max-width: 720px;
}

.vd-page-bg .vd-etapa4-icon {
  font-size: 32px;
}

.vd-page-bg .vd-etapa4-subtitulo {
  text-align: center;
  font-size: 30px;
  color: #5d5f69;
  margin: 0 auto;
  max-width: 720px;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: bold;
}

.vd-page-bg .vd-etapa4-revisao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.vd-page-bg .vd-revisao-cpf-pergunta {
  width: 100%;
  max-width: 580px;
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #5d5f69;
}

.vd-page-bg .vd-revisao-cpf-group {
  width: 100%;
  max-width: 580px;
  margin: 0;
}

.vd-page-bg #vd-etapa4 .vd-revisao-cpf-input {
  max-width: 580px;
  border: 1px solid rgba(140, 82, 255, 0.2);
}

.vd-page-bg #vd-etapa4 .vd-input.vd-input-invalid,
.vd-page-bg #vd-etapa4 .vd-input.vd-input-invalid:focus,
.vd-page-bg #vd-etapa4 .vd-input.vd-input-invalid:focus-visible {
  box-sizing: border-box;
  padding: 25px 20px;
  min-height: 68px;
  border: 1px solid #f44336 !important;
  border-radius: 20px;
  background: #ffffff !important;
  color: #f44336;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  box-shadow: none !important;
  outline: none;
}

.vd-page-bg #vd-etapa4 .vd-field-error.vd-field-error-visible {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #f44336;
}

.vd-page-bg .vd-revisao-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  gap: 12px;
  width: 100%;
  max-width: 580px;
  min-height: 212px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 0;
}

.vd-page-bg .vd-requisitos-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  gap: 24px;
  width: 100%;
  max-width: 580px;
  background:
    linear-gradient(0deg, rgba(140, 82, 255, 0.1), rgba(140, 82, 255, 0.1)),
    #ffffff;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 20px;
}

.vd-page-bg .vd-requisitos-titulo {
  width: 100%;
  max-width: 520px;
  margin: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #2c194e;
}

.vd-page-bg .vd-requisitos-lista {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vd-page-bg .vd-requisitos-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.vd-page-bg .vd-requisitos-icone {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  background: rgba(140, 82, 255, 0.1);
  border-radius: 10px;
}

.vd-page-bg .vd-requisitos-icone svg {
  display: block;
  width: 24px;
  height: 24px;
}

.vd-page-bg .vd-requisitos-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.vd-page-bg .vd-requisitos-item-titulo {
  margin: 0;
  width: 100%;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #2c194e;
}

.vd-page-bg .vd-requisitos-item-desc {
  margin: 0;
  width: 100%;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #2c194e;
}

.vd-page-bg .vd-revisao-eyebrow {
  width: 100%;
  max-width: 436px;
  margin: 0;
  padding: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #8c52ff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-page-bg .vd-revisao-curso-titulo {
  width: 100%;
  max-width: 436px;
  margin: 0;
  padding: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #2c194e;
}

.vd-page-bg .vd-revisao-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 436px;
}

.vd-page-bg .vd-revisao-meta-text {
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #5d5f69;
}

.vd-page-bg .vd-revisao-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5d5f69;
  flex-shrink: 0;
}

.vd-page-bg .vd-revisao-line {
  width: 100%;
  max-width: 436px;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(140, 82, 255, 0.5);
}

.vd-page-bg .vd-revisao-valor-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 436px;
}

.vd-page-bg .vd-revisao-parcelas-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #5d5f69;
}

.vd-page-bg .vd-revisao-valor-preco {
  margin: 0;
  flex-shrink: 0;
  font-family:
    "Satoshi",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: #2c194e;
}

@media (min-width: 769px) {
  .vd-page-bg .vd-etapa4-revisao {
    width: 100%;
    margin-right: 0;
  }

  .vd-page-bg .vd-etapa4-contrato {
    width: 100%;
    margin-right: 0;
  }

  .vd-page-bg .vd-etapa4-contrato .vd-contrato-card {
    width: 40%;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .vd-page-bg .vd-etapa4-revisao,
  .vd-page-bg .vd-etapa4-contrato,
  .vd-page-bg .vd-etapa4-contrato .vd-contrato-card {
    width: 100%;
  }

  .vd-page-bg .vd-requisitos-card {
    padding: 24px 20px;
  }

  .vd-page-bg .vd-requisitos-item {
    align-items: flex-start;
  }
}

.vd-page-bg .vd-revisao-pergunta {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0 0 20px;
}

.vd-page-bg .vd-revisao-lista {
  margin: 0;
  padding: 0;
}

.vd-page-bg .vd-revisao-linha {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
}

.vd-page-bg .vd-revisao-linha dt {
  margin: 0;
  font-weight: 500;
  color: #555;
  min-width: 80px;
}

.vd-page-bg .vd-revisao-linha dd {
  margin: 0;
  color: #333;
}

.vd-page-bg .vd-btn-confirmar {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  background: #6b4ce6 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vd-page-bg .vd-btn-confirmar-icon {
  width: 20px;
  height: 20px;
}

/* Card contrato de matrícula */
.vd-page-bg .vd-contrato-card {
  margin-bottom: 24px;
}

.vd-page-bg .vd-contrato-titulo {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px;
}

.vd-page-bg .vd-contrato-texto {
  font-size: 16px;
  color: #555;
  margin: 0 0 16px;
  line-height: 1.45;
}

.vd-page-bg .vd-contrato-link-wrap {
  margin: 0;
}

.vd-page-bg .vd-contrato-link {
  color: #6b4ce6;
  font-weight: 600;
  text-decoration: underline;
}

.vd-page-bg .vd-contrato-link:hover {
  color: #5a3dd4;
}

.vd-page-bg .vd-contrato-acao {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.vd-page-bg .vd-contrato-card-pending {
  opacity: 0.55;
}

.vd-page-bg .vd-contrato-card-pending .vd-contrato-link {
  pointer-events: none;
}

.vd-page-bg .vd-revisao-confirmada {
  margin-top: 16px;
  padding: 30px 24px;
  border-radius: 16px;
  background: rgba(140, 82, 255, 0.2);
  border: 1px solid rgba(140, 82, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  color: #392269;
  text-align: center;
}
