:root {
  --bg: #070909;
  --panel: #111515;
  --txt: #f6f8f5;
  --muted: #aeb8b1;
  --green: #00e110;
  --green2: #00f572;
  --line: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(760px, calc(100% - 40px));
}
.site-header {
  height: 82px;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.brand img {
  display: block;
  width: 130px;
  max-height: 52px;
  object-fit: contain;
}
.header-note {
  font-size: 15px;
  color: var(--muted);
}
.intro {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: 30px 0 100px;
  overflow: hidden;
}
.intro-glow {
  position: absolute;
  inset: -220px -200px auto;
  height: 700px;
  background: radial-gradient(
    ellipse at 51% 20%,
    rgba(0, 225, 16, 0.19),
    transparent 58%
  );
  pointer-events: none;
}
.intro:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 114, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 114, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}
.intro .container {
  position: relative;
}
.intro-copy {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 43px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.live-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--green2);
  box-shadow: 0 0 18px var(--green2);
}
h1,
h2,
p {
  margin: 0;
}
h1 {
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 780;
  margin: 14px auto 15px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--green2);
}
.intro-copy {
  margin-bottom: 30px;
}
.intro-copy p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin: auto;
}
.video-wrap {
  max-width: 970px;
  margin: auto;
  border: 1px solid rgba(0, 245, 114, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: #0b0f0d;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.52),
    0 0 80px rgba(0, 225, 16, 0.055);
}
.video-topline {
  height: 53px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.video-topline span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.play-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green2);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0;
}
.video-topline-right {
  color: #a8b9ab;
  font-size: 11px;
}
.video-frame {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 25px;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(0, 245, 114, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #08120c, #070909 65%, #0b1910);
  color: var(--txt);
  text-align: center;
  transition: opacity 0.25s;
}
.video-cover:hover {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(0, 245, 114, 0.27),
      transparent 36%
    ),
    linear-gradient(135deg, #08120c, #070909 65%, #0b1910);
}
.video-cover img {
  width: 165px;
  max-height: 70px;
  object-fit: contain;
}
.video-cover-kicker {
  font-size: 12px;
  color: var(--green2);
  font-weight: 800;
  letter-spacing: 0.13em;
}
.video-cover-play {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green);
  color: #061008;
  font-size: 28px;
  box-shadow:
    0 0 0 12px rgba(0, 245, 114, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.3);
}
.video-cover strong {
  font-size: clamp(18px, 2.4vw, 25px);
  letter-spacing: -0.025em;
}
.video-footer {
  min-height: 48px;
  padding: 13px 24px 16px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.video-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 3px;
  width: 100%;
  overflow: hidden;
}
.video-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green2));
  transition: width 0.5s;
}
.video-footer a {
  color: var(--green2);
  font-size: 13px;
}
.video-footer a:hover {
  text-decoration: underline;
}
.intro-next {
  text-align: center;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.intro-next > span {
  color: var(--muted);
  font-size: 15px;
}
.button {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
input:focus-visible,
.text-button:focus-visible {
  outline: 2px solid var(--green2);
  outline-offset: 4px;
}
.button-primary {
  background: var(--green);
  color: #061008;
  box-shadow: 0 12px 30px rgba(0, 225, 16, 0.19);
}
.button-primary:hover {
  background: var(--green2);
  box-shadow: 0 16px 36px rgba(0, 225, 16, 0.28);
}
.button-primary:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.button-quiet {
  background: rgba(255, 255, 255, 0.08);
  color: var(--txt);
}
.quiz-section,
.result-section {
  padding: 95px 0 115px;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 225, 16, 0.1), transparent 350px),
    var(--bg);
}
.step-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 75px;
  color: #76847a;
}
.step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.step b {
  font: inherit;
}
.step.active {
  color: var(--green2);
}
.step.done {
  color: var(--muted);
}
.quiz-head {
  text-align: center;
  margin: 0 auto 47px;
}
.quiz-head h2,
.result-container h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 18px auto;
}
.quiz-head p,
.result-container > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: auto;
}
#leadForm {
  background: linear-gradient(
    140deg,
    rgba(17, 21, 21, 0.97),
    rgba(10, 15, 12, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.015em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid label {
  font-size: 15px;
  color: var(--txt);
  font-weight: 600;
}
.form-grid label span {
  color: var(--green2);
}
.form-grid label.wide {
  grid-column: 1/-1;
}
.form-grid input {
  display: block;
  width: 100%;
  margin-top: 9px;
  background: #0a0e0c;
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 13px;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 16px;
}
.form-grid input:focus {
  border-color: rgba(0, 245, 114, 0.55);
  outline: 0;
}
.form-grid input::placeholder {
  color: #748078;
}
.form-next {
  width: 100%;
  margin-top: 27px;
}
.question {
  margin: 0 0 25px;
}
.question > span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choices label {
  position: relative;
  cursor: pointer;
}
.choices input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.choices label span {
  display: block;
  background: #0b100d;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 17px;
  font-size: 15px;
  color: var(--muted);
  transition: 0.18s;
}
.choices label:hover span {
  border-color: rgba(0, 245, 114, 0.45);
  color: var(--txt);
}
.choices input:checked + span {
  border-color: var(--green2);
  background: rgba(0, 245, 114, 0.11);
  color: var(--txt);
}
.choices input:focus-visible + span {
  outline: 2px solid var(--green2);
  outline-offset: 3px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 28px;
  cursor: pointer;
}
.consent input {
  width: 19px;
  height: 19px;
  accent-color: var(--green);
  flex: none;
  margin: 3px 0 0;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
}
.form-actions .button-primary {
  flex: 1;
}
.form-error {
  color: #ffb7a8;
  font-size: 15px;
  margin-top: 18px;
}
.result-container {
  text-align: center;
}
.result-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: var(--green);
  color: #061008;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 15px 45px rgba(0, 225, 16, 0.24);
}
.result-container h2 {
  max-width: 690px;
}
.result-prompt {
  margin: 40px auto 18px !important;
  color: var(--txt) !important;
  font-weight: 700;
}
.result-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 23px;
  padding: 25px;
  min-height: 228px;
  background: var(--panel);
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.option:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 114, 0.5);
  background: #132018;
}
.option-symbol {
  display: grid;
  place-items: center;
  background: rgba(0, 245, 114, 0.14);
  color: var(--green2);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 22px;
}
.option strong {
  font-size: 20px;
  line-height: 1.2;
}
.option small {
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 260px;
}
.option-arrow {
  position: absolute;
  right: 25px;
  bottom: 23px;
  color: var(--green2);
  font-size: 24px;
}
.text-button {
  border: 0;
  background: none;
  color: var(--muted);
  text-decoration: underline;
  font-size: 15px;
  margin-top: 28px;
}
.text-button:hover {
  color: var(--txt);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 20px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.site-footer img {
  width: 100px;
  max-height: 40px;
  object-fit: contain;
}
.site-footer span {
  font-size: 15px;
  color: var(--muted);
}
.site-footer small {
  font-size: 13px;
  color: #819087;
  max-width: 700px;
}
@media (max-width: 700px) {
  .site-header {
    height: 70px;
  }
  .header-note {
    display: none;
  }
  .intro {
    padding: 22px 0 75px;
  }
  .intro-copy {
    margin-bottom: 25px;
  }
  .video-wrap {
    border-radius: 17px;
  }
  .video-topline {
    height: 45px;
    padding: 0 14px;
  }
  .video-topline-right {
    display: none;
  }
  .video-footer {
    padding: 11px 14px 14px;
  }
  .video-cover {
    gap: 8px;
    padding: 10px;
  }
  .video-cover img {
    width: 90px;
    max-height: 40px;
  }
  .video-cover-kicker {
    font-size: 9px;
  }
  .video-cover-play {
    height: 52px;
    width: 52px;
    font-size: 18px;
    box-shadow: 0 0 0 6px rgba(0, 245, 114, 0.1);
  }
  .video-cover strong {
    font-size: 15px;
  }
  .intro-next {
    gap: 16px;
  }
  .intro-next .button {
    width: 100%;
  }
  .step-row {
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 54px;
  }
  .step {
    font-size: 11px;
    gap: 5px;
  }
  .step b {
    display: block;
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  .quiz-section,
  .result-section {
    padding: 66px 0 85px;
  }
  #leadForm {
    padding: 24px;
    border-radius: 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .form-grid label.wide {
    grid-column: auto;
  }
  .choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .choices label span {
    text-align: center;
    padding: 12px 9px;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
  }
  .result-options {
    grid-template-columns: 1fr;
  }
  .option {
    min-height: 185px;
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }
  .container,
  .narrow {
    width: calc(100% - 28px);
  }
  .eyebrow {
    font-size: 11px;
  }
  .video-topline {
    font-size: 10px;
  }
  .quiz-head h2,
  .result-container h2 {
    font-size: 35px;
  }
  .choices {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Jornada em telas: o cabeçalho mantém a entrada do quiz acessível. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: rgba(7, 9, 9, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-cta {
  min-height: 44px;
  padding: 10px 17px;
  gap: 14px;
  font-size: 12px;
  white-space: nowrap;
}
body:not([data-view="intro"]) .header-cta {
  display: none;
}

.quiz-section,
.result-section {
  min-height: calc(100svh - 82px);
  padding: 68px 0 78px;
}
.quiz-section {
  align-content: center;
}
.quiz-section:not([hidden]) {
  display: grid;
}
.quiz-stage {
  text-align: center;
}
.quiz-stage h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.048em;
  margin: 18px auto 16px;
  max-width: 740px;
}
.quiz-subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 34px;
}
#leadForm {
  max-width: 620px;
  margin: auto;
  text-align: left;
  padding: 38px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quiz-step:not([hidden]) {
  animation: quizReveal 0.32s ease both;
}
@keyframes quizReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.field-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.field-label span {
  color: var(--green2);
}
.field-label input {
  display: block;
  width: 100%;
  min-height: 62px;
  margin-top: 12px;
  padding: 16px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a0e0c;
  color: var(--txt);
  font-size: 17px;
}
.field-label input:focus {
  outline: 0;
  border-color: var(--green2);
}
.field-label input::placeholder {
  color: #748078;
}
.field-label input:-webkit-autofill {
  -webkit-text-fill-color: var(--txt);
  box-shadow: 0 0 0 1000px #0a0e0c inset;
}
.choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.choices label {
  display: block;
}
.choices label span {
  padding: 16px 19px;
  font-size: 16px;
  text-align: left;
}
.quiz-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.quiz-actions .button-primary {
  flex: 1;
}
.quiz-privacy {
  font-size: 15px;
  color: var(--muted);
  margin: 22px auto 0;
  max-width: 600px;
}
.result-section:not([hidden]) {
  display: grid;
  align-content: center;
}
.option:hover,
.option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 114, 0.5);
  background: #132018;
}

@media (max-width: 900px) {
  .header-note {
    display: none;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 70px;
    padding-inline: 14px;
  }
  .brand img {
    width: 112px;
  }
  .header-cta {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 11px;
    gap: 7px;
  }
  .quiz-section,
  .result-section {
    min-height: calc(100svh - 70px);
    padding: 42px 0 60px;
  }
  .quiz-stage h2 {
    font-size: clamp(34px, 8vw, 44px);
  }
  .quiz-subtitle {
    margin-bottom: 25px;
  }
  #leadForm {
    padding: 24px;
  }
  .choices {
    grid-template-columns: 1fr;
  }
  .choices label span {
    text-align: left;
    padding: 15px 17px;
  }
  .quiz-actions {
    flex-direction: column-reverse;
  }
  .quiz-actions .button {
    width: 100%;
  }
  .field-label input {
    min-height: 58px;
  }
}
@media (max-width: 390px) {
  .header-cta {
    font-size: 10px;
    padding: 8px 10px;
  }
  .brand img {
    width: 104px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-step:not([hidden]) {
    animation: none;
  }
}
