:root {
  --black: #0B0B0D;
  --black-soft: #141416;
  --orange: #FF6B1A;
  --orange-dim: #C9531A;
  --blue: #2E9EFF;
  --cream: #F5F3EE;
  --ink: #14151A;
  --grey: #6B7280;
  --grey-light: #9AA0AC;
  --line: rgba(255,255,255,0.09);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; margin: 0; }
p { line-height: 1.6; margin: 0; }

.p-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.p-section { padding: 100px 0; }

.p-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--orange-dim);
  margin-bottom: 16px;
  text-align: center;
}
.p-eyebrow-light { color: var(--orange); }

.p-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.p-btn-primary { background: var(--orange); color: #fff; }
.p-btn-primary:hover { background: var(--orange-dim); transform: translateY(-1px); }
.p-btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.p-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* HEADER */
.p-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,13,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.p-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-back { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-family: var(--font-mono); }
.p-back:hover { color: #fff; }

/* HERO */
.p-hero {
  position: relative;
  background: var(--black);
}
.p-hero img { width: 100%; }
.p-hero-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}

/* QUE INCLUYE */
.p-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 26ch;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--ink);
}
.p-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.p-feature {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 16px 32px -22px rgba(0,0,0,0.35);
}
.p-feature-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.p-feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.p-feature p { color: var(--grey); font-size: 0.92rem; }
.p-feature-mentor {
  background: var(--black);
  border-color: rgba(255,255,255,0.08);
}
.p-feature-mentor h3 { color: #fff; }
.p-feature-mentor p { color: rgba(255,255,255,0.65); }
.p-feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.p-closing {
  max-width: 62ch;
  margin: 50px auto 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* LO QUE GANAS */
.p-ganas { background: #fff; }
.p-ganas-block { max-width: 780px; margin: 0 auto; }
.p-ganas-block h2 { margin-bottom: 24px; }
.p-ganas-intro h2 { text-align: center; }
.p-ganas-text {
  color: var(--grey);
  font-size: 1.02rem;
  max-width: 62ch;
  margin: 0 auto 16px;
}
.p-ganas-intro .p-ganas-text { text-align: center; }
.p-ganas-text strong { color: var(--ink); }
.p-ganas-text-center { text-align: center; margin-bottom: 8px; }
.p-ganas-divider {
  max-width: 120px;
  height: 2px;
  background: var(--orange);
  margin: 60px auto;
}
.p-ganas-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.p-ganas-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}
.p-ganas-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-weight: 700;
}
.p-ganas-quote {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 2px solid var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
}

/* RUTA */
.p-ruta { background: var(--black); position: relative; overflow: hidden; }
.p-ruta::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 600px; height: 600px;
  border: 60px solid rgba(255,107,26,0.06);
  border-radius: 50%;
}
.p-ruta::after {
  content: "";
  position: absolute;
  bottom: -25%; left: -10%;
  width: 400px; height: 400px;
  border: 40px solid rgba(46,158,255,0.05);
  border-radius: 50%;
}
.p-section h2.p-h2-light,
.p-h2-light { color: #fff; }
.p-ruta-lede {
  text-align: center;
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin: 0 auto 54px;
  position: relative;
}
.p-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.p-module {
  background: linear-gradient(165deg, #f6f7f9, #e7e9ee);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 2px 4px rgba(0,0,0,0.15),
    0 20px 36px -16px rgba(0,0,0,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.p-module:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 4px rgba(0,0,0,0.12),
    0 28px 46px -16px rgba(0,0,0,0.6);
}
.p-module-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--orange-dim);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.p-module h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 8px; }
.p-module-desc { color: var(--grey); font-size: 0.85rem; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(10,10,10,0.08); }
.p-module-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.p-module-list li { color: var(--ink); font-size: 0.84rem; line-height: 1.4; }
.p-module-list li::marker { color: var(--orange-dim); font-family: var(--font-mono); font-size: 0.78rem; }

/* VIDEOS */
.p-masterclass { max-width: 820px; margin: 0 auto 80px; text-align: center; }
.p-masterclass h2 { margin-bottom: 14px; }
.p-masterclass-lede { color: var(--grey); font-size: 1.02rem; max-width: 58ch; margin: 0 auto 34px; }
.p-masterclass-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5);
}
.p-masterclass-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.p-duration-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
}
.p-videos-eyebrow { margin-top: 10px; }

.p-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.p-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 10px;
  overflow: hidden;
}
.p-video-frame iframe, .p-video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.p-video-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.p-video-pending span {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.p-video-caption { margin-top: 12px; font-size: 0.88rem; color: var(--grey); }
.p-video-caption span { font-weight: 600; color: var(--ink); }

/* GARANTIA */
.p-garantia { background: var(--black-soft); }
.p-garantia-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.p-garantia-inner .p-eyebrow, .p-garantia-inner h2 { text-align: left; margin: 0 0 14px; }
.p-garantia-text { color: rgba(255,255,255,0.62); max-width: 48ch; }
.p-hotmart-logo {
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 24px;
}

/* CTA FINAL */
.p-cta { background: var(--black); text-align: center; }
.p-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.p-cta h2 { max-width: 22ch; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.p-cta-note { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* FOOTER */
.p-footer { background: var(--black); border-top: 1px solid var(--line); padding: 26px 24px; }
.p-footer-inner { max-width: var(--max); margin: 0 auto; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.p-footer-inner a { color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .p-features { grid-template-columns: repeat(2, 1fr); }
  .p-modules { grid-template-columns: repeat(2, 1fr); }
  .p-videos { grid-template-columns: 1fr; }
  .p-garantia-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .p-section { padding: 70px 0; }
  .p-features { grid-template-columns: 1fr; }
  .p-modules { grid-template-columns: 1fr; }
  .p-hero-actions { flex-direction: column; align-items: stretch; }
  .p-hero-actions .p-btn { text-align: center; justify-content: center; }
  .p-ganas-list { grid-template-columns: 1fr; }
}
