:root {
  --bg: #070b18;
  --bg2: #0b1226;
  --card: rgba(255, 255, 255, 0.075);
  --card2: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #aab4d4;
  --cyan: #27e7ff;
  --purple: #8a4dff;
  --green: #7dffbd;
  --border: rgba(255,255,255,.14);
  --shadow: 0 30px 90px rgba(0,0,0,.38);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(138,77,255,.36), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(39,231,255,.23), transparent 30rem),
    linear-gradient(180deg, #050816 0%, #0b1021 45%, #050816 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }

.nav {
  position: sticky; top: 0; z-index: 99;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 7vw;
  background: rgba(5, 8, 22, .75);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.logo { font-weight: 900; letter-spacing: -.04em; font-size: 1.2rem; }
.logo span { color: var(--cyan); }
.nav nav { display: flex; gap: 24px; font-size: .92rem; color: var(--muted); }
.nav nav a:hover { color: var(--cyan); }

.section { padding: 96px 7vw; position: relative; }
.hero { min-height: 92vh; display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--cyan); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; font-weight: 900; margin-bottom: 18px; }
h1, h2, h3 { letter-spacing: -.055em; line-height: 1.02; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); max-width: 900px; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.5rem); }
h3 { font-size: 1.35rem; }
.subtitle { font-size: 1.2rem; max-width: 760px; margin: 28px 0; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 34px 0; }
.btn { display: inline-flex; justify-content: center; align-items: center; border-radius: 999px; padding: 16px 25px; font-weight: 900; transition: .25s ease; border: 1px solid var(--border); }
.btn.primary { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: white; box-shadow: 0 16px 45px rgba(39,231,255,.22); }
.btn.ghost { background: rgba(255,255,255,.06); }
.btn.big { width: 100%; padding: 20px 28px; font-size: 1.05rem; }
.btn:hover { transform: translateY(-3px); filter: brightness(1.1); }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row span, .pill { border: 1px solid var(--border); background: rgba(255,255,255,.07); border-radius: 999px; padding: 10px 14px; color: #dce6ff; font-size: .9rem; }

.hero-visual { perspective: 1000px; }
.product-card {
  min-height: 620px; border: 1px solid var(--border); border-radius: 34px; padding: 44px;
  background:
    radial-gradient(circle at 20% 15%, rgba(138,77,255,.45), transparent 15rem),
    radial-gradient(circle at 80% 55%, rgba(39,231,255,.32), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: var(--shadow); transform: rotateY(-8deg) rotateX(4deg);
  display: flex; flex-direction: column; justify-content: space-between;
}
.product-card .badge { align-self: flex-end; border: 1px solid rgba(39,231,255,.35); color: var(--cyan); padding: 8px 13px; border-radius: 999px; font-weight: 900; }
.product-card p { color: var(--cyan); font-weight: 900; letter-spacing: .22em; font-size: .72rem; }
.product-card h2 { font-size: 3.3rem; }
.product-card span { color: #dce6ff; font-weight: 700; }
.mock-box { background: rgba(255,255,255,.1); border: 1px solid var(--border); padding: 24px; border-radius: 18px; color: #dce6ff; }
.product-card small { color: var(--muted); }

.section-title { max-width: 860px; margin-bottom: 42px; }
.section-title p:not(.eyebrow) { margin-top: 20px; font-size: 1.1rem; }
.grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .benefit, .module, .price-card, .guarantee, .bonus-card, details {
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
  border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: 0 20px 70px rgba(0,0,0,.18);
}
.card h3, .benefit h3, .module h3 { margin-bottom: 12px; }
.preview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.checklist li { color: #dce6ff; background: rgba(255,255,255,.075); border: 1px solid var(--border); padding: 14px 16px; border-radius: 14px; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.preview-panel { border-radius: 30px; padding: 24px; background: linear-gradient(135deg, rgba(39,231,255,.16), rgba(138,77,255,.16)); border: 1px solid var(--border); }
.prompt-window { background: #0b1226; border: 1px solid var(--border); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.window-top { display: flex; gap: 8px; margin-bottom: 24px; }
.window-top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.25); }
.tag { color: var(--cyan); font-size: .75rem; letter-spacing: .18em; font-weight: 900; }
.prompt-window h3 { margin: 14px 0; font-size: 2rem; }
.mini-info { margin-top: 20px; padding: 16px; border-radius: 16px; background: rgba(39,231,255,.11); color: #eafcff; }
.modules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.module span, .benefit strong { color: var(--cyan); font-weight: 950; font-size: 1.4rem; display: inline-block; margin-bottom: 20px; }
.bonus-card { padding: 56px; background: radial-gradient(circle at top right, rgba(39,231,255,.2), transparent 20rem), linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); }
.bonus-card h2 { max-width: 980px; }
.bonus-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.bonus-list span { padding: 12px 16px; border-radius: 999px; background: rgba(39,231,255,.12); border: 1px solid rgba(39,231,255,.25); color: #eafcff; font-weight: 800; }
.audience-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pricing { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.price-card { border-color: rgba(39,231,255,.35); background: radial-gradient(circle at top, rgba(39,231,255,.2), transparent 16rem), rgba(255,255,255,.075); }
.old-price { text-decoration: line-through; margin-top: 28px; }
.price { color: var(--text); font-size: 5rem; font-weight: 950; letter-spacing: -.07em; line-height: 1; margin: 8px 0; }
.price-note { margin-bottom: 24px; }
.price-card small { display: block; margin-top: 16px; color: var(--muted); line-height: 1.6; }
.guarantee ul { margin-top: 20px; padding-left: 20px; color: #dce6ff; line-height: 2; }
.faq-list { display: grid; gap: 14px; }
summary { cursor: pointer; font-weight: 900; font-size: 1.08rem; }
details p { margin-top: 14px; }
.final-cta { text-align: center; }
.final-cta div { max-width: 900px; margin: auto; }
.final-cta p:not(.eyebrow) { max-width: 700px; margin: 24px auto; }
.footer { padding: 32px 7vw; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(26px); transition: .8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay { transition-delay: .14s; }

@media (max-width: 1100px) {
  .hero, .preview, .pricing { grid-template-columns: 1fr; }
  .modules, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .product-card { transform: none; min-height: 520px; }
}
@media (max-width: 720px) {
  .nav nav { display: none; }
  .section { padding: 72px 5vw; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .modules, .grid-4 { grid-template-columns: 1fr; }
  .bonus-card { padding: 28px; }
  .product-card { padding: 28px; }
  .product-card h2 { font-size: 2.4rem; }
  .price { font-size: 4rem; }
}


/* Botão Hotmart usando o visual da landing */
.custom-hotmart-checkout {
  cursor: pointer;
  text-align: center;
}

.custom-hotmart-checkout img {
  display: none !important;
}

/* Efeitos touch/premium: glow + tilt seguindo o mouse */
.touch-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color;
}

.touch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  background: radial-gradient(
    420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(39,231,255,.20),
    rgba(138,77,255,.13) 34%,
    transparent 64%
  );
  z-index: 0;
}

.touch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  background: linear-gradient(
    135deg,
    rgba(39,231,255,.42),
    transparent 28%,
    rgba(138,77,255,.38) 58%,
    transparent 82%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  z-index: 1;
}

.touch-card > * {
  position: relative;
  z-index: 2;
}

.touch-card:hover {
  border-color: rgba(39,231,255,.34);
  box-shadow:
    0 28px 90px rgba(0,0,0,.28),
    0 0 38px rgba(39,231,255,.10),
    0 0 62px rgba(138,77,255,.08);
}

.touch-card:hover::before,
.touch-card:hover::after {
  opacity: 1;
}

.btn,
.trust-row span,
.pill,
.checklist li,
.bonus-list span {
  position: relative;
  overflow: hidden;
}

.btn::before,
.trust-row span::before,
.pill::before,
.checklist li::before,
.bonus-list span::before {
  transition: .25s ease;
}

.trust-row span,
.pill,
.checklist li,
.bonus-list span,
.nav nav a {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.trust-row span:hover,
.pill:hover,
.checklist li:hover,
.bonus-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(39,231,255,.38);
  background: rgba(39,231,255,.10);
  box-shadow: 0 14px 38px rgba(39,231,255,.08);
}

.nav nav a {
  position: relative;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.nav nav a:hover::after {
  transform: scaleX(1);
}

@media (hover: none) {
  .touch-card:hover,
  .trust-row span:hover,
  .pill:hover,
  .checklist li:hover,
  .bonus-list span:hover {
    transform: none !important;
  }
}

.touch-glow:hover {
  border-color: rgba(39,231,255,.45) !important;

  box-shadow:
    0 0 0 1px rgba(39,231,255,.18),
    0 0 28px rgba(39,231,255,.18),
    inset 0 0 24px rgba(138,77,255,.10) !important;
}