:root {
  --bg: #090707;
  --bg-soft: #130f10;
  --panel: #181314;
  --panel-2: #211718;
  --text: #fff7f3;
  --muted: #c8b8b4;
  --subtle: #8e7e7b;
  --line: rgba(255, 255, 255, 0.11);
  --red: #ef2d35;
  --red-2: #a50f19;
  --green: #24c267;
  --shadow: 0 24px 80px rgba(239, 45, 53, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.top-alert {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
}

.center {
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 45, 53, 0.24), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(239, 45, 53, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(105, 9, 16, 0.42), transparent 48%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 42px 0 84px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
  background: linear-gradient(180deg, #fff 0%, #ffbab0 58%, #ff3b42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy,
.lead,
.section-title p {
  color: var(--muted);
  font-size: 19px;
}

.hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
}

.vsl-card {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: var(--vsl-aspect, 640 / 1138);
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #000;
  box-shadow: var(--shadow);
}

.lazy-embed {
  position: relative;
  display: grid;
  place-items: center;
}

.lazy-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 45, 53, 0.34), transparent 28%),
    linear-gradient(145deg, #130809, #000);
}

.lazy-embed::after,
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.embed-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.embed-trigger {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 18px 50px rgba(239, 45, 53, 0.42);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.lazy-embed iframe,
.vsl-card iframe,
.lazy-embed > video,
.vsl-card > video {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: cover;
}

.adult-badge,
.offer-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.cta-block {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, #ff424a, #b60f1b);
  box-shadow: 0 16px 44px rgba(239, 45, 53, 0.34);
  color: #fff;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.button-xl {
  min-height: 62px;
  padding: 18px;
  font-size: 15px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 16px;
  color: var(--subtle);
  font-size: 13px;
}

.unlock-toast {
  position: fixed;
  right: 16px;
  bottom: 18px;
  left: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: none;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(12, 9, 10, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.unlock-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.unlock-toast strong,
.unlock-toast span {
  display: block;
}

.unlock-toast strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 15px;
}

.unlock-toast span {
  color: var(--muted);
  font-size: 13px;
}

.unlock-action {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  animation: unlockPulse 1100ms ease-in-out infinite;
}

.scroll-anchor {
  position: relative;
  top: -12px;
}

@keyframes unlockPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(239, 45, 53, 0.36);
  }

  50% {
    transform: translateY(4px);
    box-shadow: 0 0 0 8px rgba(239, 45, 53, 0);
  }
}

.delayed-content.is-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.delayed-content.is-visible {
  max-height: none;
  opacity: 1;
  transition: opacity 500ms ease;
}

.delayed-cta.is-hidden {
  display: none;
}

.delayed-cta.is-visible {
  display: block;
}

.section {
  padding: 64px 0;
}

.section-dark {
  background: #0d0b0c;
}

.section-gradient {
  background: linear-gradient(180deg, #0d0b0c, var(--bg));
}

.section-title {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(239, 45, 53, 0.36);
  border-radius: 999px;
  background: rgba(239, 45, 53, 0.1);
  color: #ff767d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title h2 em {
  color: var(--red);
  font-style: normal;
}

.grid {
  display: grid;
  gap: 14px;
}

.two {
  grid-template-columns: 1fr;
}

.three {
  grid-template-columns: 1fr;
}

.point,
.feature,
.bonus,
details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.point,
.feature {
  padding: 16px;
  color: #f4e9e6;
  font-weight: 700;
}

.bad::before {
  content: "× ";
  color: var(--red);
}

.good::before {
  content: "✓ ";
  color: var(--green);
}

.hot::before {
  content: "🔥 ";
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 30px;
}

.media-pair img,
.media-pair strong {
  min-height: 180px;
  border: 1px solid rgba(239, 45, 53, 0.28);
  border-radius: 14px;
}

.media-pair img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.media-pair strong {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(239, 45, 53, 0.13);
  color: #ffd0d2;
  font-size: 20px;
  text-align: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin: 32px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 45, 53, 0.24), transparent 34%),
    linear-gradient(145deg, #181111, #050505);
}

.video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.video-frame.square {
  aspect-ratio: 1;
  margin: 0;
}

.video-frame.square video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.modules img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.stack {
  display: grid;
  gap: 12px;
}

.testimonial-carousel {
  position: relative;
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 0 48px 34px;
}

.testimonial-videos {
  overflow: hidden;
  border-radius: 18px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 260ms ease;
  will-change: transform;
}

.testimonial-videos [data-slide] {
  flex: 0 0 78%;
  opacity: 0.62;
  transform: scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.testimonial-videos [data-slide].is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 17px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 9, 10, 0.88);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.carousel-dots span.is-active {
  width: 22px;
  background: var(--red);
}

.bonus {
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 45, 53, 0.16), rgba(255, 255, 255, 0.05));
}

.bonus small {
  color: #ff767d;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus p {
  color: var(--muted);
}

.bonus strong {
  color: var(--green);
  text-transform: uppercase;
}

.offer-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 45, 53, 0.2), transparent 35%),
    var(--bg);
}

.offer-wrap {
  display: flex;
  justify-content: center;
}

.offer-card {
  position: relative;
  width: min(620px, 100%);
  padding: 46px 28px 32px;
  border: 2px solid rgba(239, 45, 53, 0.52);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(90, 12, 18, 0.82), #111);
  box-shadow: var(--shadow);
  text-align: center;
}

.offer-card .offer-tag {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.crown {
  margin-bottom: 8px;
  color: #ff565d;
  font-size: 48px;
  line-height: 1;
}

.old-price {
  margin-top: 22px;
  color: var(--subtle);
}

.price {
  margin: 4px 0 8px;
  font-size: clamp(46px, 10vw, 74px);
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 22px;
  color: var(--muted);
}

.guarantee {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border: 2px solid rgba(36, 194, 103, 0.48);
  border-radius: 999px;
  background: rgba(36, 194, 103, 0.12);
  color: var(--green);
  font-size: 42px;
  font-weight: 900;
}

details {
  padding: 18px 20px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.objections-section {
  background: #050505;
}

.objections-list details {
  padding: 24px 26px;
  margin-bottom: 16px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #111113;
  border-radius: 14px;
}

.objections-list summary {
  position: relative;
  padding-right: 28px;
  list-style: none;
  font-size: 18px;
}

.objections-list summary::-webkit-details-marker {
  display: none;
}

.objections-list summary::after {
  content: "⌃";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.objections-list details:not([open]) summary::after {
  content: "⌄";
}

.objections-list details p {
  margin-top: 16px;
  color: #f0e7e4;
  font-size: 16px;
  line-height: 1.65;
}

.final-call {
  background: linear-gradient(180deg, var(--bg), rgba(105, 9, 16, 0.42));
}

.mini {
  margin-top: 16px;
  color: var(--subtle);
  font-size: 14px;
}

footer {
  padding: 34px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050404;
  color: var(--subtle);
  font-size: 12px;
  text-align: center;
}

footer p {
  margin-bottom: 6px;
}

/* Correção definitiva: depois do clique, some GIF e botão da VSL */
.vsl-card.vsl-started .embed-thumb,
.lazy-embed.vsl-started .embed-thumb,
.vsl-card.vsl-started .embed-trigger,
.lazy-embed.vsl-started .embed-trigger,
.vsl-card.vsl-started .vsl-toggle,
.lazy-embed.vsl-started .vsl-toggle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Mata qualquer botão antigo que tenha ficado salvo/cacheado */
.vsl-toggle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Depois que qualquer vídeo normal começar, remove o botão */
.video-frame.has-started .video-toggle,
.video-frame.has-started:hover .video-toggle,
.video-frame.has-started .video-toggle.is-playing {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.vsl-card.vsl-started::after,
.lazy-embed.vsl-started::after,
.video-frame.has-started::after {
  pointer-events: none !important;
}

@media (min-width: 640px) {
  .button,
  .button-xl {
    width: auto;
  }

  .button-xl {
    min-height: 66px;
    padding: 18px 30px;
    font-size: 18px;
  }

  .two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .media-pair {
    grid-template-columns: 1fr 1fr;
  }

  .modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 761px) {
  .top-alert {
    font-size: 14px;
  }

  .hero-inner {
    padding-top: 56px;
  }

  .section {
    padding: 82px 0;
  }

  .testimonial-carousel {
    width: min(520px, 100%);
    padding: 0 58px 34px;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .trust-line {
    gap: 8px 12px;
  }

  .unlock-toast {
    right: 18px;
    bottom: 18px;
    left: auto;
    max-width: min(360px, calc(100% - 32px));
  }
}

@media (min-width: 900px) {
  .three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}