@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/montserrat-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Permanent Marker';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/permanent-marker.woff2') format('woff2');
}

:root {
  --purple-1: #5C1638;
  --purple-2: #430F29;
  --purple-deep: #2A0A1C;
  --gold: #F2A900;
  --gold-deep: #C98600;
  --pink: #E8365C;
  --pink-deep: #B21F4C;
  --white: #FFFFFF;
  --off-white: #FAF8FB;
  --ink: #241A2E;
  --ink-soft: #5B4E68;
  --text-lav: #E7DEF0;
  --text-lav-dim: #C4B6D3;
  --border-soft: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(23,11,36,0.18);
  --radius: 14px;
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; }

.wordmark {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(232,54,92,0.35);
  letter-spacing: 0.5px;
  line-height: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(232,54,92,0.35);
}
.btn-white {
  background: #fff;
  color: var(--pink-deep);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #2A1900;
  box-shadow: 0 10px 24px rgba(242,169,0,0.35);
}
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 20px 36px; font-size: 16px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23,11,36,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.nav-logo { font-size: 20px; font-family: 'Permanent Marker', cursive; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--text-lav-dim);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 10px 20px; font-size: 12px; white-space: nowrap; }
.nav-toggle { display: none; }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(140% 100% at 20% 0%, var(--purple-1) 0%, var(--purple-2) 55%, var(--purple-deep) 100%);
  color: #fff;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/bg_pattern.png');
  background-repeat: repeat;
  background-size: 60px auto;
  opacity: 0.05;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.hero-wordmark { font-size: 34px; margin-bottom: 18px; }
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-lav-dim);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.hero-ctas-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}
.hero-ctas-secondary a {
  color: var(--text-lav-dim);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-ctas-secondary a:hover { color: #fff; }

.hero-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--border-soft);
  aspect-ratio: 16/9;
  cursor: pointer;
}
.hero-video img { width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.hero-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease;
}
.hero-video.is-playing .hero-play,
.hero-video.is-playing img { display: none; }
.hero-play span {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .2s ease;
}
.hero-video:hover .hero-play span { transform: scale(1.08); }
.hero-play svg { width: 24px; height: 24px; fill: var(--pink-deep); margin-left: 3px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--purple-deep);
  border-top: 1px solid var(--border-soft);
  padding: 26px 0;
}
.trust-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 220px;
  color: var(--text-lav-dim);
}
.trust-item svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--gold); }
.trust-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-item span { font-size: 12.5px; }

/* ===== SECTION GENERIC ===== */
.section { padding: 84px 0; }
.section-white { background: var(--white); }
.section-tint { background: #F6F1FA; }
.section-dark {
  background: linear-gradient(165deg, var(--purple-1), var(--purple-2));
  color: #fff;
}
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
}
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 15.5px; }
.section-dark .section-head p { color: var(--text-lav-dim); }

/* ===== PAIN SECTION ===== */
.pain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.pain-grid img { max-width: 320px; margin: 0 auto; }
.pain-copy h2 { font-size: 28px; font-weight: 800; margin-bottom: 18px; line-height: 1.3; }
.pain-copy p { margin-bottom: 14px; color: var(--ink-soft); font-size: 15.5px; }
.pain-copy strong { color: var(--pink-deep); }
.pain-labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #DCC9EA;
}
.pain-labels span { font-weight: 700; font-size: 13.5px; color: var(--purple-1); }

.transition-quote {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
  color: var(--purple-1);
}

/* ===== ICON LIST GRID (4 categories) ===== */
.icon-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-top: 10px;
}
.icon-list-item h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.icon-list-item ul { list-style: none; }
.icon-list-item li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.icon-list-item li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--pink); }

/* ===== TRILHA / JOURNEY ===== */
.journey-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.journey-track { position: sticky; top: 100px; }
.journey-track img { border-radius: 10px; }
.journey-steps { display: flex; flex-direction: column; gap: 28px; }
.journey-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--purple-1); }
.journey-step p { color: var(--ink-soft); font-size: 14.5px; }
.journey-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--pink); color: #fff; font-size: 12.5px; font-weight: 800;
  margin-right: 8px;
}
.journey-state {
  margin-top: 32px;
  background: #F6F1FA;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.journey-state strong { display: block; color: var(--purple-1); margin-bottom: 4px; }
.journey-state span { color: var(--ink-soft); font-size: 14px; }

/* ===== DELIVERABLES / STARS ===== */
.stars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin: 36px 0;
}
.star-item svg { width: 34px; height: 34px; color: var(--gold); margin: 0 auto 12px; }
.star-item span { font-size: 14px; font-weight: 700; color: #fff; }
.section-dark .stars-grid + p {
  text-align: center; max-width: 760px; margin: 0 auto; color: var(--text-lav-dim); font-size: 14.5px;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pink);
}
.benefit-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 10px; color: var(--purple-1); }
.benefit-card p { font-size: 14px; color: var(--ink-soft); }

/* ===== TESTIMONIALS CAROUSEL ===== */
.testi-carousel { position: relative; }
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.testi-track.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testi-card p { font-style: italic; font-size: 14.5px; color: var(--ink); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 13.5px; }
.testi-author span { font-size: 12px; color: var(--ink-soft); }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: #D9C7DE;
  transition: background .2s, transform .2s;
}
.testi-dots button.active { background: var(--pink); transform: scale(1.25); }

@media (max-width: 960px) {
  .testi-track { grid-auto-columns: calc((100% - 26px) / 2); }
}
@media (max-width: 640px) {
  .testi-track { grid-auto-columns: 88%; }
}

/* ===== BONUS ===== */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bonus-card {
  background: #FFF7EA;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.bonus-card.special { background: #FFF0F3; border-color: var(--pink); }
.bonus-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.bonus-card.special .bonus-tag { color: var(--pink-deep); }
.bonus-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.bonus-card p { font-size: 14px; color: var(--ink-soft); }

/* ===== OFFER ===== */
.offer-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 22px;
  padding: 52px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.offer-box .wordmark { font-size: 26px; margin-bottom: 14px; }
.offer-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: var(--purple-1); }
.offer-box > p { color: var(--ink-soft); margin-bottom: 26px; }
.price-old { color: #A79BB3; text-decoration: line-through; font-size: 15px; margin-bottom: 4px; }
.price-main { font-size: 44px; font-weight: 900; color: var(--pink-deep); line-height: 1; margin: 6px 0; }
.price-main span { font-size: 18px; font-weight: 700; vertical-align: middle; }
.price-cash { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }
.price-note { font-size: 11.5px; color: #A79BB3; margin-top: 10px; }

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 780px;
  margin: 40px auto 0;
}
.guarantee-banner .seal {
  flex-shrink: 0;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--gold);
  color: #2A1900;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 900; line-height: 1;
}
.guarantee-banner .seal span:first-child { font-size: 24px; }
.guarantee-banner .seal span:last-child { font-size: 9px; text-transform: uppercase; }
.guarantee-banner h3 { font-size: 17px; margin-bottom: 6px; }
.guarantee-banner p { font-size: 13.5px; color: var(--text-lav-dim); }

/* ===== PAIN QUESTIONS ===== */
.questions-list { max-width: 820px; margin: 0 auto; list-style: none; }
.questions-list li {
  padding: 14px 0;
  border-bottom: 1px solid #EEE3F4;
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
}
.questions-list li svg { width: 16px; height: 16px; flex-shrink: 0; position: absolute; left: 0; top: 19px; color: var(--pink); }
.questions-list li b { color: var(--ink); }

/* ===== BIO ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.bio-grid img { border-radius: 18px; }
.bio-copy .eyebrow { color: var(--gold); }
.bio-copy h2 { font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.bio-copy h3 { font-size: 16px; font-weight: 600; color: var(--text-lav-dim); margin-bottom: 18px; }
.bio-copy p { color: var(--text-lav-dim); font-size: 15px; margin-bottom: 14px; }
.bio-quote {
  font-size: 19px; font-weight: 700; color: #fff;
  margin-top: 18px; line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #EEE3F4;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-weight: 700;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item svg { width: 16px; height: 16px; color: var(--pink); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] svg { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 20px; color: var(--ink-soft); font-size: 14.5px; }
.faq-note { text-align: center; margin-top: 10px; font-size: 12.5px; color: #A79BB3; font-style: italic; }

/* ===== FOOTER ===== */
.footer {
  background: var(--purple-deep);
  color: var(--text-lav-dim);
  padding: 30px 0;
  text-align: center;
  font-size: 12.5px;
}
.footer img { height: 16px; margin: 10px auto 0; opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-video { order: -1; max-width: 460px; margin: 0 auto; }
  .pain-grid, .bio-grid { grid-template-columns: 1fr; }
  .pain-grid img, .bio-grid img { max-width: 260px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-track { position: static; max-width: 120px; }
  .icon-list-grid { grid-template-columns: 1fr; }
  .stars-grid, .benefits-grid, .testi-track, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .section { padding: 60px 0; }
  .stars-grid, .benefits-grid, .testi-track, .bonus-grid { grid-template-columns: 1fr; }
  .trust-flex { flex-direction: column; }
  .trust-item { flex: none; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 30px 24px; }
  .offer-box { padding: 36px 22px; }
}
