:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #111;
  --panel-soft: #171717;
  --text: #f8f7f4;
  --muted: #aaa8a3;
  --line: #2a2927;
  --red: #ef2332;
  --red-dark: #b90f1b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.minimal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px max(20px, calc((100vw - 1080px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, .94);
}
.page-enter { animation: pageEnter .55s ease-out both; }
.minimal-header img, footer img {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
}
.header-whatsapp {
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.vsl-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0 54px;
  text-align: center;
}
.hero-step {
  opacity: 0;
  animation: heroEnter .72s cubic-bezier(.2, .75, .25, 1) forwards;
}
.hero-step-1 { animation-delay: .08s; }
.hero-step-2 { animation-delay: .18s; }
.hero-step-3 { animation-delay: .31s; }
.hero-step-4 { animation-delay: .45s; }
.hero-step-5 { animation-delay: .62s; }
.qualifier, .eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}
h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: #cfcdc8;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

.vsl-shell {
  max-width: 860px;
  margin: 38px auto 0;
  padding: 10px;
  border: 1px solid #353330;
  border-radius: 8px;
  background: #0c0c0c;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .48);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.vsl-shell:hover {
  transform: translateY(-4px);
  border-color: #4a4743;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .58), 0 0 48px rgba(239, 35, 50, .09);
}
.vsl-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.78)),
    radial-gradient(circle at 50% 25%, #343434 0, #171717 42%, #0d0d0d 100%);
}
.vsl-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(#777 1px, transparent 1px), linear-gradient(90deg, #777 1px, transparent 1px);
  background-size: 54px 54px;
}
.vsl-placeholder::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -35%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .09), transparent);
  transform: skewX(-15deg);
  animation: vslSweep 5.5s ease-in-out infinite 1.2s;
}
.vsl-placeholder > div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  text-align: left;
}
.vsl-placeholder small {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.vsl-placeholder strong {
  display: block;
  max-width: 570px;
  font-size: clamp(18px, 3vw, 29px);
  line-height: 1.15;
}
.vsl-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 74px;
  height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 12px 34px rgba(239, 35, 50, .24);
}

.primary-cta, .submit-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--red);
  box-shadow: 0 16px 44px rgba(239, 35, 50, .24);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.primary-cta::after,
.submit-button::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 30%;
  background: rgba(255, 255, 255, .22);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.primary-cta:hover::after,
.submit-button:hover::after { left: 120%; }
.primary-cta:hover, .submit-button:hover { background: #ff3442; }
.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}
.proof-row strong { color: var(--text); }

.what-you-get {
  padding: 30px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
  text-align: center;
}
.what-you-get p { margin: 0 0 14px; color: var(--muted); }
.what-you-get div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.what-you-get span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.what-you-get span:hover { color: white; border-color: #4b4844; transform: translateY(-2px); }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .75, .25, 1);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.quote-section {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 88px;
}
.section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 18px;
  align-items: start;
}
.quote-form, .quote-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.quote-form { padding: clamp(20px, 4vw, 34px); }
.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #d0cec9;
  font-size: 13px;
  font-weight: 800;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #363532;
  border-radius: 5px;
  color: var(--text);
  background: #090909;
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 35, 50, .14);
}
.optional-fields {
  margin: 4px 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}
.optional-fields summary, .price-scale summary {
  color: #d9d6d1;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.optional-fields[open] summary { margin-bottom: 16px; }
.legal-check { grid-template-columns: 20px 1fr; align-items: start; }
.legal-check input { min-height: 0; margin-top: 2px; }
.submit-button { width: 100%; margin-top: 2px; }
.submit-button:disabled { opacity: .65; cursor: wait; }
#videoIaStatus { display: block; margin-top: 12px; color: var(--muted); text-align: center; }

.quote-summary {
  position: sticky;
  top: 20px;
  padding: 26px;
}
.summary-label { color: var(--red); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.quote-summary h3 {
  margin: 10px 0 6px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  overflow-wrap: anywhere;
}
.quote-summary h3.price-updated { animation: priceConfirm .42s ease-out; }
.quote-summary > p { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.summary-line, .scale-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.summary-line.accent { color: #ff5a66; }
.fineprint { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.price-scale { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.price-scale[open] summary { margin-bottom: 8px; }
.scale-row.is-active { color: #ff5a66; }
.custom-contact {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.custom-contact-kicker {
  color: #64df8d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.custom-contact h4 {
  margin: 8px 0 7px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.15;
}
.custom-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.whatsapp-custom-cta {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  margin-top: 15px;
  padding: 9px 14px;
  border: 1px solid #39dc77;
  border-radius: 6px;
  color: #062d17;
  background: #25d366;
  box-shadow: 0 15px 34px rgba(37, 211, 102, .16);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-custom-cta:hover {
  transform: translateY(-2px);
  background: #41df7c;
  box-shadow: 0 20px 40px rgba(37, 211, 102, .24);
}
.whatsapp-custom-cta small,
.whatsapp-custom-cta strong { display: block; }
.whatsapp-custom-cta small { font-size: 10px; font-weight: 750; }
.whatsapp-custom-cta strong { margin-top: 1px; font-size: 15px; }
.whatsapp-mark {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 2px solid #063b1d;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}
.video-ia-result-card {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(239, 35, 50, .5);
  border-radius: 6px;
  background: #160c0d;
}
.video-ia-result-card h3, .video-ia-result-card p { margin: 0; }
.video-ia-result-tag { color: #ff6b76; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.video-ia-result-amount { color: #ff5a66; font-size: 34px; font-weight: 900; }
.video-ia-pay-button {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  border-radius: 5px;
  color: white;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.video-ia-whatsapp-link { color: #ddd9d3; font-size: 12px; text-underline-offset: 4px; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(20px, calc((100vw - 1080px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050505;
  font-size: 12px;
}
footer p { margin: 0; }
footer a { color: var(--text); font-weight: 800; }

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vslSweep {
  0%, 12% { left: -35%; opacity: 0; }
  35% { opacity: 1; }
  58%, 100% { left: 118%; opacity: 0; }
}
@keyframes priceConfirm {
  0% { color: #ff6672; transform: scale(.97); }
  100% { color: var(--text); transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-step, .reveal-on-scroll { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .minimal-header { min-height: 66px; padding: 6px 14px; }
  .minimal-header img { width: 145px; height: 50px; }
  .header-whatsapp { font-size: 11px; }
  .vsl-hero { padding-top: 46px; }
  h1 { font-size: clamp(39px, 12vw, 56px); }
  .hero-lead { font-size: 17px; }
  .vsl-placeholder { min-height: 0; }
  .vsl-status { min-width: 60px; height: 38px; }
  .vsl-placeholder > div { right: 16px; bottom: 16px; left: 16px; }
  .primary-cta { width: 100%; }
  .proof-row { display: grid; gap: 8px; }
  .quote-layout, .form-row { grid-template-columns: 1fr; }
  .quote-summary { position: static; grid-row: 1; }
  .custom-contact h4 { font-size: 18px; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  footer img { width: 150px; height: 48px; }
}
