:root {
  --black: #050403;
  --black-soft: #11100d;
  --panel: #17120b;
  --panel-2: #21170d;
  --cream: #fff4df;
  --muted: #c9bca3;
  --gold: #efb500;
  --gold-soft: #ffd66b;
  --accent: #ff6b35;
  --accent-dark: #d94e22;
  --line: rgba(239, 181, 0, 0.26);
  --line-soft: rgba(255, 244, 223, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --display: "Montserrat", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.10), transparent 34%),
    linear-gradient(180deg, #050403 0%, #0b0804 46%, #171008 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 4, 3, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: calc(86svh - 68px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.86) 43%, rgba(5, 4, 3, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.10), rgba(5, 4, 3, 0.74));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: translateX(28%) scale(0.9);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 84px 28px 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: break-word;
}

h1 {
  max-width: 770px;
  font-size: 4.8rem;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.6rem;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #130903;
  box-shadow: 0 18px 50px rgba(255, 107, 53, 0.24);
}

.button.primary:hover {
  background: #ff7f4f;
}

.button.secondary,
.button.tertiary {
  border-color: var(--line);
  background: rgba(5, 4, 3, 0.56);
  color: var(--cream);
}

.button.tertiary {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.78rem;
}

.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-kpis span {
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-strip {
  width: min(100%, var(--max));
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 28px;
}

.signal-strip div {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.94);
  box-shadow: var(--shadow);
}

.signal-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.signal-strip span {
  color: var(--cream);
  font-size: 0.95rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 28px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.mapa-copy p,
.proof-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.quiz-panel,
.score-panel,
.result-panel,
.mapa-copy,
.mapa-visual,
.proof-photo,
.proof-card,
.ladder article,
.gargalo-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.055), transparent),
    rgba(17, 16, 13, 0.88);
}

.quiz-panel {
  padding: 30px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-track {
  height: 8px;
  margin: 14px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(5, 4, 3, 0.72);
}

.progress-bar {
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 220ms ease;
}

#questionTitle {
  min-height: 78px;
  margin-bottom: 24px;
  font-size: 1.85rem;
  line-height: 1.15;
}

.answers {
  display: grid;
  gap: 10px;
}

.answer-button {
  width: 100%;
  min-height: 58px;
  padding: 15px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.52);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.answer-button:hover,
.answer-button.selected {
  border-color: rgba(255, 107, 53, 0.84);
  background: rgba(255, 107, 53, 0.12);
}

.quiz-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.score-panel {
  position: sticky;
  top: 88px;
  padding: 22px;
}

.panel-label,
.mini-label {
  display: block;
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-list {
  display: grid;
  gap: 12px;
}

.score-meta {
  display: flex;
  justify-content: space-between;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
}

.score-meta strong {
  color: var(--gold-soft);
}

.score-bar {
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  background: rgba(255, 244, 223, 0.11);
}

.score-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 220ms ease;
}

.result-panel {
  margin-top: 18px;
  padding: 30px;
}

.result-panel.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.capture-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 18px;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.07), transparent 44%),
    rgba(17, 16, 13, 0.94);
}

.capture-panel.hidden {
  display: none;
}

.capture-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capture-copy h3 {
  font-size: 2rem;
  line-height: 1.08;
}

.capture-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  max-width: 560px;
}

.capture-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.34);
}

.capture-form label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capture-form input {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.62);
  color: var(--cream);
}

.capture-form input::placeholder {
  color: rgba(201, 188, 163, 0.7);
}

.result-main {
  max-width: 900px;
}

.result-main p:not(.eyebrow) {
  color: var(--muted);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.result-grid > div {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.38);
}

.result-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--cream);
}

.result-grid p {
  margin-top: 0;
  color: var(--muted);
}

.method-band {
  border-top: 1px solid var(--line-soft);
}

.gargalo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gargalo-grid article {
  min-height: 150px;
  padding: 20px;
}

.gargalo-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--display);
}

.gargalo-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mapa-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.mapa-copy,
.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.proof-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.06), transparent 42%),
    rgba(12, 10, 7, 0.94);
}

.proof-photo {
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.06), transparent 55%),
    rgba(12, 10, 7, 0.88);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.98;
}

.proof-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-name {
  display: grid;
  gap: 2px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.proof-name strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.proof-name span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-list {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(5, 4, 3, 0.34);
}

.proof-list h3 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 1.06rem;
  text-transform: uppercase;
}

.proof-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.proof-list li {
  position: relative;
  padding-left: 22px;
  color: var(--cream);
  font-size: 0.98rem;
}

.proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.price-box {
  display: grid;
  gap: 4px;
  margin: 26px 0 26px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 107, 53, 0.10);
}

.price-box span,
.price-box small {
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.mapa-visual,
.proof-photo {
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.mapa-visual img,
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ladder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ladder article {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 22px;
}

.ladder h3 {
  margin-top: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.ladder p {
  color: var(--muted);
  font-size: 0.94rem;
}

.ladder strong {
  display: none;
}

.ladder .button {
  width: 100%;
  margin-top: 16px;
}

.final-cta {
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 80px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.14), rgba(239, 181, 0, 0.10));
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  h1 {
    max-width: 690px;
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .quiz-shell,
  .capture-panel,
  .mapa-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .score-panel {
    position: static;
  }

  .gargalo-grid,
  .ladder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.68rem;
  }

  .nav a {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.36), rgba(5, 4, 3, 0.96) 52%, rgba(5, 4, 3, 0.98)),
      linear-gradient(90deg, rgba(5, 4, 3, 0.50), rgba(5, 4, 3, 0.20));
  }

  .hero-media img {
    object-position: 50% center;
    transform: translateX(24%) scale(0.9);
  }

  .hero-inner {
    padding: 230px 20px 42px;
  }

  h1 {
    font-size: 2.08rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  #questionTitle {
    min-height: auto;
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-kpis {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-kpis span {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0 20px;
  }

  .section {
    padding: 62px 20px;
  }

  .quiz-panel,
  .score-panel,
  .capture-panel,
  .result-panel,
  .mapa-copy,
  .proof-card {
    padding: 20px;
  }

  .capture-panel,
  .result-grid,
  .gargalo-grid,
  .ladder {
    grid-template-columns: 1fr;
  }

  .mapa-visual,
  .proof-photo {
    min-height: 280px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .topbar,
  .hero-inner,
  .signal-strip,
  .section,
  .final-cta,
  .footer {
    width: 100%;
    max-width: 390px;
    margin-left: 0;
    margin-right: 0;
  }

  .brand {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav {
    max-width: 350px;
  }

  .hero-inner > * {
    max-width: 350px;
  }

  h1 {
    font-size: 1.82rem;
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 0.94rem;
  }
}
