.pre-cadastro-page {
  min-height: 100vh;
  background: var(--paper);
}
[hidden] { display: none !important; }
.pre-cadastro-header {
  width: 92%;
  max-width: var(--container);
  margin: 14px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pre-cadastro-header .brand-logo { width: 204px; }
.pre-cadastro-back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.pre-cadastro-main {
  width: 92%;
  max-width: 720px;
  margin: 48px auto 90px;
}
.typeform-intro { margin-bottom: 28px; }
.typeform-intro h1 {
  max-width: 650px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: .9;
  letter-spacing: -.07em;
}
.typeform-intro h1 em { color: var(--orange); font-style: normal; }
.typeform-intro p { max-width: 560px; margin-top: 24px; color: var(--muted); line-height: 1.65; }
.typeform-draft-status { color: var(--orange-dark) !important; font-size: 13px; font-weight: 800; }
.typeform-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18,18,18,.08);
  animation: typeformCardIn .55s ease both;
}
.typeform-card::before {
  position: absolute;
  inset: -120px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,100,17,.10), rgba(241,100,17,0) 68%);
  content: '';
  pointer-events: none;
}
.secure-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 8px 14px;
  border: 1px solid #2c8a55;
  border-radius: 16px;
  background: #ecf8ef;
  color: #2c8a55;
  text-align: center;
}
.secure-banner svg { width: 22px; height: 22px; }
.secure-banner strong { display: block; font-size: 11px; color: #2c8a55; }
.typeform-progress { display: flex; gap: 7px; margin-bottom: 42px; }
.typeform-progress span { height: 4px; flex: 1; border-radius: 99px; background: #e7e2da; transition: background .25s ease; }
.typeform-progress span.is-active { background: var(--orange); animation: progressPulse 1.8s ease-in-out infinite; }
.typeform-step:not([hidden]) { animation: typeformStepIn .35s ease both; }
.typeform-step small.step-label { display: block; margin-bottom: 16px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.typeform-step h2 { max-width: 570px; font-size: clamp(22px, 2vw, 36px); line-height: .98; letter-spacing: -.055em; }
.typeform-card h2 { max-width: 100%; overflow-wrap: break-word; }
.typeform-step > p { margin-top: 14px; color: var(--muted); line-height: 1.6; }
.typeform-field { margin-top: 30px; }
.typeform-field label { display: block; margin-bottom: 10px; color: #56514b; font-size: 12px; font-weight: 800; }
.typeform-field input,
.typeform-field select,
.typeform-field textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid #d8d1c7;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}
.typeform-field input:focus,
.typeform-field select:focus,
.typeform-field textarea:focus { border-bottom-color: var(--orange); }
.typeform-field textarea { min-height: 110px; padding-top: 12px; resize: vertical; }
.typeform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.typeform-help { display: block; margin-top: 9px; color: #8d877f; font-size: 12px; line-height: 1.5; }
.typeform-choice-grid { display: grid; gap: 10px; margin-top: 28px; }
.typeform-choice { position: relative; display: block; }
.typeform-choice input { position: absolute; opacity: 0; pointer-events: none; }
.typeform-choice span { display: block; padding: 17px 18px; border: 1px solid var(--line); border-radius: 13px; color: #4d4842; font-size: 14px; font-weight: 750; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.typeform-choice input:checked + span { border-color: var(--orange); background: #fff4eb; color: var(--orange-dark); }
.typeform-summary { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.typeform-summary div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.typeform-summary span { color: var(--muted); }
.typeform-summary strong { text-align: right; }
.typeform-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 38px; }
.typeform-actions.has-two-buttons { justify-content: space-between; }
.typeform-actions .btn { min-width: 210px; }
.typeform-cancel { border: 0; background: transparent; color: var(--muted); font-size: 13px; font-weight: 750; cursor: pointer; }
.typeform-status { min-height: 22px; margin-top: 18px; color: #b22820; font-size: 13px; line-height: 1.5; }
.typeform-success { text-align: center; }
.typeform-success .success-mark { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 24px; border-radius: 50%; background: #e4f5ea; color: var(--green-dark); font-size: 29px; font-weight: 900; }
.typeform-success h2 { font-size: clamp(34px, 5vw, 54px); line-height: .94; letter-spacing: -.06em; }
.typeform-code { display: inline-block; margin: 26px 0 10px; padding: 12px 18px; border: 1px dashed var(--orange); border-radius: 10px; background: #fff8f2; color: var(--orange-dark); font-size: 22px; font-weight: 900; letter-spacing: .04em; }
.typeform-success p { color: var(--muted); line-height: 1.6; }
.typeform-success .btn { margin-top: 28px; }
.typeform-redirect-status { margin-top: 28px; color: var(--orange-dark) !important; font-weight: 800; }
.typeform-note { margin-top: 18px; color: #8d877f; font-size: 11px; line-height: 1.6; }
@keyframes typeformCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typeformStepIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes progressPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241,100,17,0); }
  50% { box-shadow: 0 0 0 5px rgba(241,100,17,.12); }
}
@media (prefers-reduced-motion: reduce) {
  .typeform-card,
  .typeform-step:not([hidden]),
  .typeform-progress span.is-active { animation: none !important; }
}
@media (max-width: 640px) {
  .pre-cadastro-header { width: min(100% - 34px, var(--container)); }
  .pre-cadastro-header .brand-logo { width: 174px; }
  .pre-cadastro-main { width: calc(100vw - 34px); max-width: calc(100vw - 34px); margin-top: 30px; }
  .typeform-intro, .typeform-card { width: 100%; max-width: 100%; min-width: 0; }
  .typeform-intro h1 { width: 100%; max-width: 100%; font-size: 43px; overflow-wrap: anywhere; }
  .typeform-card { padding: 28px 22px; border-radius: 20px; }
  .typeform-grid { grid-template-columns: 1fr; gap: 0; }
  .typeform-actions { align-items: stretch; flex-direction: column-reverse; }
  .typeform-actions .btn { width: 100%; }
  .typeform-summary div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .typeform-summary strong { text-align: left; }
}

p.step-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
