.lead-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 160, 82, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(31, 61, 43, 0.45), transparent 32rem),
    var(--carbon);
}

.lead-header {
  align-items: center;
  border-bottom: 1px solid var(--soft-line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
}

.lead-header img {
  display: block;
  height: clamp(2.35rem, 4vw, 3.35rem);
  max-width: min(15rem, 55vw);
  object-fit: contain;
  width: auto;
}


.lead-main {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(20rem, 0.92fr) minmax(20rem, 34rem);
  margin: 0 auto;
  max-width: 1240px;
  min-height: calc(100dvh - 11rem);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.lead-intro {
  align-content: center;
  display: grid;
  gap: 1.2rem;
}

.lead-intro h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.lead-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.72;
  max-width: 35rem;
}

.lead-note {
  border-left: 2px solid var(--gold);
  display: grid;
  gap: 0.4rem;
  margin-top: clamp(0.8rem, 3vw, 2.5rem);
  max-width: 31rem;
  padding: 0.25rem 0 0.25rem 1.15rem;
}

.lead-note strong {
  color: var(--ivory);
}

.lead-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Imagem dos 3 veículos (PNG transparente) no topo da LP, com leve brilho. */
/* Veículos no topo da LP — limpo, com sombra natural que segue o contorno. */
.lead-hero-figure {
  margin: 0 0 clamp(1rem, 3vw, 1.6rem);
}

.lead-hero-img {
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
  height: auto;
  width: 100%;
}

.direct-hero .lead-hero-figure {
  margin-inline: auto;
  max-width: 38rem;
  width: 100%;
}

.questionnaire {
  align-self: center;
  background: var(--graphite);
  border: 1px solid var(--soft-line);
  border-top: 3px solid var(--green-soft);
  box-shadow: var(--shadow);
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.1rem);
}

.questionnaire-head {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.questionnaire-head div {
  display: grid;
  gap: 0.35rem;
}

.questionnaire-head p {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.questionnaire-head h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

#step-label {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 600;
}

.progress-track {
  background: rgba(243, 239, 231, 0.08);
  height: 2px;
  margin: 1.5rem 0 1.75rem;
}

#progress-bar {
  background: var(--gold);
  display: block;
  height: 100%;
  transition: transform 280ms ease;
  transform: scaleX(0.25);
  transform-origin: left;
}

.form-step {
  border: 0;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  color: var(--ivory);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
  padding: 0;
}

.form-step label:not(.choice):not(.consent) {
  display: grid;
  gap: 0.45rem;
}

.form-step label > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.form-step small {
  color: var(--gray);
  font-weight: 500;
}

input,
select,
textarea {
  background: var(--graphite-soft);
  border: 1px solid var(--soft-line);
  border-radius: 0;
  color: var(--ivory);
  font: inherit;
  min-height: 3.1rem;
  outline: none;
  padding: 0.78rem 0.9rem;
  transition:
    border 190ms ease,
    box-shadow 190ms ease;
  width: 100%;
}

textarea {
  min-height: 6.8rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--gray);
}

select option {
  background: var(--graphite);
  color: var(--ivory);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 82, 0.13);
}

.choice-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.choice {
  cursor: pointer;
  position: relative;
}

.choice input {
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.choice span {
  align-items: center;
  background: var(--graphite-soft);
  border: 1px solid var(--soft-line);
  color: var(--ivory) !important;
  display: flex;
  font-size: 1rem !important;
  justify-content: center;
  min-height: 3.4rem;
}

.choice input:checked + span {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.helper {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.consent {
  align-items: start;
  cursor: pointer;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1.1rem 1fr;
}

.consent input {
  accent-color: var(--gold);
  height: 1.05rem;
  margin-top: 0.22rem;
  min-height: 0;
  padding: 0;
  width: 1.05rem;
}

.consent span {
  line-height: 1.55;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.form-next,
.form-submit,
.form-back {
  border: 1px solid var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 3.25rem;
  padding: 0.8rem 1.1rem;
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.form-next,
.form-submit {
  background: var(--gold);
  color: var(--carbon);
  justify-self: end;
  margin-left: auto;
}

.form-back {
  background: transparent;
  border-color: var(--soft-line);
  color: var(--muted);
}

.form-next:hover,
.form-submit:hover {
  background: var(--gold-strong);
  transform: translateY(-2px);
}

.form-back:hover {
  border-color: var(--gold);
  color: var(--ivory);
}

.form-status {
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.7rem;
  min-height: 0;
  padding: 0 0 0 0.8rem;
}

.form-status:empty {
  display: none;
}

.lead-direct {
  margin: 0 auto;
  max-width: 760px;
  min-height: calc(100dvh - 11rem);
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.direct-hero {
  display: grid;
  gap: 1.35rem;
  place-content: center;
  text-align: center;
}

.direct-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  justify-self: center;
  line-height: 0.98;
  max-width: 18ch;
}

.direct-lede {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  justify-self: center;
  line-height: 1.7;
  max-width: 40rem;
}

.whatsapp-cta {
  align-items: center;
  background: var(--whatsapp);
  color: var(--carbon);
  display: inline-flex;
  gap: 0.9rem;
  justify-content: center;
  justify-self: center;
  margin-top: 0.6rem;
  min-height: 4rem;
  padding: 0.85rem 2rem;
  transition:
    background 220ms ease,
    transform 220ms ease;
  width: min(26rem, 100%);
}

.whatsapp-cta:hover {
  background: var(--whatsapp-strong);
  transform: translateY(-2px);
}

.whatsapp-cta:active {
  transform: translateY(1px);
}

.whatsapp-cta[aria-disabled="true"] {
  cursor: default;
}

.whatsapp-cta-icon {
  align-items: center;
  display: inline-flex;
  flex: none;
}

.whatsapp-cta-text {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.whatsapp-cta-text strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.whatsapp-cta-text small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
}

.whatsapp-note {
  color: var(--gold);
  font-size: 0.9rem;
  justify-self: center;
  line-height: 1.55;
  max-width: 30rem;
}

.whatsapp-note:empty {
  display: none;
}

.direct-points {
  border-top: 3px solid var(--green-soft);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  padding: clamp(1.5rem, 4vw, 2.2rem) 0 0;
  text-align: left;
}

.direct-points li {
  display: grid;
  gap: 0.35rem;
}

.direct-points strong {
  color: var(--ivory);
  font-size: 0.98rem;
}

.direct-points span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lead-footer {
  border-top: 3px solid var(--green-soft);
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 4vw, 4.5rem);
}

@media (max-width: 600px) {
  .lead-direct {
    min-height: auto;
    padding: 2.75rem 1rem 3rem;
  }

  .direct-points {
    gap: 1.1rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lead-main {
    gap: 2rem;
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .lead-header {
    padding: 0.85rem 1rem;
  }

  .lead-header img {
    height: 2.6rem;
    max-width: 12.8rem;
  }

  .return-link {
    font-size: 0.84rem;
    padding: 0.7rem 0.75rem;
  }

  .lead-main {
    padding: 2.5rem 1rem 3rem;
  }

  .lead-intro {
    gap: 1rem;
  }

  .lead-intro h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .questionnaire {
    padding: 1rem;
  }

  .questionnaire-head {
    align-items: start;
    flex-direction: column;
    gap: 0.6rem;
  }

  #step-label {
    border: 1px solid var(--soft-line);
    padding: 0.45rem 0.6rem;
  }

  .lead-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .lead-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .return-link {
    text-align: center;
    width: 100%;
  }

  .choice-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions {
    display: grid;
  }

  .form-next,
  .form-submit,
  .form-back {
    width: 100%;
  }

  .form-next,
  .form-submit {
    margin-left: 0;
  }
}
