/* =============================================================
   DECENTRALIZE — Landing Page CSS
   Paleta: #090909 fondo · #F7931A naranja BTC · #fff texto
   Tipografía: Space Grotesk (títulos) · Inter (cuerpo)
============================================================= */

/* ─── 1. RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colores */
  --bg:          #090909;
  --bg-2:        #0f0f0f;
  --bg-3:        #161616;
  --bg-4:        #1c1c1c;
  --orange:      #F7931A;
  --orange-dim:  #d4760c;
  --orange-glow: rgba(247, 147, 26, 0.12);
  --orange-glow2:rgba(247, 147, 26, 0.06);
  --white:       #ffffff;
  --gray-1:      #a1a1aa;
  --gray-2:      #71717a;
  --gray-3:      #3f3f46;
  --border:      rgba(255, 255, 255, 0.07);
  --border-o:    rgba(247, 147, 26, 0.25);

  /* Tipografía */
  --font-head:   'Space Grotesk', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  /* Espacios */
  --section-py:  clamp(80px, 10vw, 130px);
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   10px;

  /* Sombras / glow */
  --shadow-card: 0 1px 3px rgba(0,0,0,.6), 0 8px 32px rgba(0,0,0,.4);
  --glow-orange: 0 0 40px rgba(247,147,26,.35), 0 0 80px rgba(247,147,26,.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── 2. UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.text--orange { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: #ffaa3a;
  border-color: #ffaa3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247,147,26,.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--nav {
  padding: 10px 22px;
  font-size: .85rem;
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  border-radius: 50px;
}
.btn--nav:hover {
  background: #ffaa3a;
  transform: translateY(-1px);
}

.btn--large { padding: 18px 36px; font-size: 1.05rem; }
.btn--full  { width: 100%; justify-content: center; }
.mt-2       { margin-top: 1.5rem; }

/* Scroll animations — estado inicial (oculto) */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Sección — cabecera compartida */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-desc {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--gray-1);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 3. HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.scrolled {
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo-img {
  height: 42px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-1);
  text-decoration: none;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--bg-3);
  z-index: 200;
  padding: 72px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--border);
  transition: right .35s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--gray-1);
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu__overlay.visible { opacity: 1; pointer-events: all; }

/* ─── 4. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}

/* ─── Full-page particle canvas (fixed behind all content) ──── */
.bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Mobile: extra canvas-level opacity multiplier so symbols stay
   clearly in the background on real devices (GPU renders canvas
   shadowBlur much more intensely than simulators show).
   Combined with the desaturated #8B6914 colour in JS, the effective
   displayed alpha stays ≈ 0.15 — barely noticeable, never competing
   with text. Desktop is completely unaffected. */
@media (max-width: 768px) {
  .bg-canvas { opacity: 0.7; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(247,147,26,.06) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(9,9,9,0) 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: clamp(20px, 5vw, 60px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,147,26,.1);
  border: 1px solid var(--border-o);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: #f0c070;
  margin-bottom: 28px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--orange); }
  50%       { box-shadow: 0 0 20px var(--orange), 0 0 40px rgba(247,147,26,.4); }
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 26px;
}
/* Desktop: cap font size so "Tu dinero pierde valor" fits on one line */
@media (min-width: 1025px) {
  .hero__headline {
    font-size: clamp(2.4rem, 3.9vw, 3.15rem);
  }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-1);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--white); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.proof__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof__item strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.proof__item span {
  font-size: .78rem;
  color: var(--gray-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.proof__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Video VSL dentro del Hero */
.hero__vsl {
  width: 100%;
  max-width: 800px;
  margin-bottom: 44px;
}

.hero__vsl-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  opacity: .9;
}

.hero__vsl-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(247,147,26,.3),
    0 0 40px rgba(247,147,26,.2),
    0 0 90px rgba(247,147,26,.08),
    0 28px 60px rgba(0,0,0,.65);
  transition: box-shadow .4s ease, transform .4s ease;
}

.hero__vsl-frame:hover {
  box-shadow:
    0 0 0 1px rgba(247,147,26,.5),
    0 0 60px rgba(247,147,26,.3),
    0 0 120px rgba(247,147,26,.12),
    0 36px 72px rgba(0,0,0,.75);
  transform: translateY(-3px);
}

.hero__vsl-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: var(--gray-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray-3), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── 5. PAIN POINTS ─────────────────────────────────────────── */
.pain {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.pain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.pain__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pain__card:hover {
  border-color: var(--border-o);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.pain__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.pain__card p {
  font-size: .97rem;
  color: var(--gray-1);
  font-style: italic;
  line-height: 1.55;
}

.pain__answer-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 36px;
  border: 1px solid var(--border-o);
  border-radius: var(--radius);
  background: var(--orange-glow2);
}
.pain__answer-block p {
  font-size: 1.08rem;
  color: var(--gray-1);
  line-height: 1.7;
}

/* ─── 6. TRANSFORMACIÓN ─────────────────────────────────────── */
.transformation {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.transformation::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.transform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.transform__card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.transform__card:hover {
  border-color: var(--border-o);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.transform__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(247,147,26,.06);
  line-height: 1;
  user-select: none;
}
.transform__icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.transform__card h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.transform__card p { font-size: .94rem; color: var(--gray-1); line-height: 1.6; }

/* ─── 7. PRODUCTO / MÓDULOS ─────────────────────────────────── */
.product {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.modules {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.module {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.module::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .25s;
}
.module:hover {
  border-color: var(--border-o);
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
}
.module:hover::before { opacity: 1; }

.module__number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  opacity: .25;
  line-height: 1;
  padding-top: 6px;
  transition: opacity .25s;
}
.module:hover .module__number { opacity: .6; }

.module__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid var(--border-o);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.module__content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.module__content p {
  font-size: .95rem;
  color: var(--gray-1);
  margin-bottom: 16px;
  line-height: 1.65;
}
.module__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.module__points li {
  font-size: .82rem;
  color: var(--gray-2);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  transition: color .2s, border-color .2s;
}
.module:hover .module__points li {
  color: var(--gray-1);
  border-color: rgba(247,147,26,.15);
}

/* Stats del producto */
.product__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pstat {
  background: var(--bg-3);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border);
}
.pstat:last-child { border-right: none; }
.pstat__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.pstat__num small { font-size: .55em; }
.pstat__label { font-size: .8rem; color: var(--gray-2); }

/* ─── 8. BONUS / COMUNIDAD ──────────────────────────────────── */
.bonus {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bonus__glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(247,147,26,.07) 0%, transparent 70%);
  pointer-events: none;
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.bonus__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.bonus__card:hover {
  border-color: var(--border-o);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.bonus__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  color: var(--orange);
}
.bonus__card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.bonus__card p { font-size: .92rem; color: var(--gray-1); line-height: 1.6; }
.bonus__card strong { color: var(--white); }

.bonus__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.bonus__cta p { color: var(--gray-1); font-size: 1.05rem; }

/* ─── 9. SOBRE ALBERTO ──────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__image-col { position: relative; }

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.about__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gray-3);
  text-align: center;
  padding: 24px;
  min-height: 400px;
}
.about__placeholder p { font-size: .95rem; font-weight: 500; color: var(--gray-2); }
.about__placeholder small { font-size: .78rem; color: var(--gray-3); line-height: 1.5; }

.about__glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  background: var(--orange);
  filter: blur(40px);
  opacity: .15;
  pointer-events: none;
}

.about__float-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--bg-3);
  border: 1px solid var(--border-o);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.about__float-badge img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.about__float-badge span {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about__content { padding-top: 4px; }
.about__content .section-title { text-align: left; }
.about__content .section-eyebrow { display: block; }

.about__story {
  margin-top: 24px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__story p { font-size: .97rem; color: var(--gray-1); line-height: 1.75; }
.about__story strong { color: var(--white); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.about__stat {
  background: var(--bg-3);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.about__stat:last-child { border-right: none; }
.about__stat strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
}
.about__stat span { font-size: .78rem; color: var(--gray-2); line-height: 1.3; }

/* ─── 10. REDES SOCIALES ────────────────────────────────────── */
.social {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}
.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.social__card {
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px 32px;
  text-decoration: none;
  color: var(--white);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.social__card:hover {
  border-color: var(--border-o);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  color: var(--white);
}
.social__icon {
  color: var(--orange);
  margin-bottom: 4px;
}
.social__card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; }
.social__card p  { font-size: .85rem; color: var(--gray-2); }
.social__arrow   { font-size: .8rem; color: var(--orange); font-weight: 500; margin-top: 4px; }

/* ─── 11. TESTIMONIOS ───────────────────────────────────────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi__card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.testi__card:hover {
  border-color: var(--border-o);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.testi__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.testi__placeholder {
  width: 100%; height: 100%;
  min-height: 280px;
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-3);
  text-align: center;
  padding: 24px;
}
.testi__placeholder span { font-size: 2rem; }
.testi__placeholder p { font-size: .9rem; color: var(--gray-2); font-weight: 500; }
.testi__placeholder small { font-size: .73rem; color: var(--gray-3); line-height: 1.5; }

/* ─── 12. PRICING ───────────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* .pricing__canvas removed — replaced by full-page .bg-canvas */

.pricing__card {
  position: relative;
  max-width: 600px;
  margin: 0 auto 56px;
  background: var(--bg-2);
  border: 1px solid var(--border-o);
  border-radius: calc(var(--radius) * 1.5);
  padding: clamp(36px, 6vw, 56px);
  overflow: hidden;
}
.pricing__glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(circle, rgba(247,147,26,.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing__badge {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--border-o);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: #f0c070;
  margin-bottom: 28px;
  letter-spacing: .04em;
}

.pricing__name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing__sub { font-size: .9rem; color: var(--gray-1); margin-bottom: 28px; }

.pricing__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing__original {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gray-2);
  text-decoration: line-through;
  text-decoration-color: rgba(247,147,26,.6);
}
.pricing__current {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.pricing__symbol {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}
.pricing__amount {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.03em;
}
.pricing__note-small {
  font-size: .8rem;
  color: var(--gray-2);
  align-self: flex-end;
  padding-bottom: 8px;
}

.pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 28px 24px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.pricing__list li {
  font-size: .95rem;
  color: var(--gray-1);
  line-height: 1.4;
}

.pricing__cta { margin-bottom: 28px; }

.pricing__guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 20px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.guarantee__icon { font-size: 2rem; flex-shrink: 0; line-height: 1.2; }
.guarantee__text strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.guarantee__text p { font-size: .87rem; color: var(--gray-1); line-height: 1.55; }

.pricing__calendly-note {
  text-align: center;
  font-size: .88rem;
  color: var(--gray-2);
}
.pricing__calendly-note a {
  color: var(--orange);
  text-decoration: none;
}
.pricing__calendly-note a:hover { text-decoration: underline; }

.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.trust__item span { font-size: 1.6rem; }
.trust__item p { font-size: .78rem; color: var(--gray-2); line-height: 1.3; }

/* ─── 13. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 48px;
  align-items: start;
}
.footer__logo { height: 28px; width: auto; margin-bottom: 14px; }
.footer__tagline { font-size: .88rem; color: var(--gray-2); margin-bottom: 20px; }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  color: var(--gray-2);
  text-decoration: none;
  transition: color .2s;
  display: flex;
}
.footer__socials a:hover { color: var(--orange); }

.footer__links { display: flex; gap: 60px; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: .88rem;
  color: var(--gray-2);
  text-decoration: none;
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom p { font-size: .82rem; color: var(--gray-3); }
.footer__disclaimer { line-height: 1.55; }

/* ─── 14. RESPONSIVE ────────────────────────────────────────── */

/* Tablet grande → ≤1024px */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image-col { max-width: 400px; }
  .about__float-badge { right: 16px; }
  .about__content .section-title,
  .about__content .section-eyebrow { text-align: center; }
  .about__story { text-align: center; }
  .about__stats { max-width: 440px; margin-left: auto; margin-right: auto; }
  .about__content { display: flex; flex-direction: column; align-items: center; }
  .about__image-col { margin: 0 auto; }

  .bonus__grid { grid-template-columns: repeat(2, 1fr); }
  .product__stats { grid-template-columns: repeat(2, 1fr); }
  .pstat { border-bottom: 1px solid var(--border); }
  .pstat:nth-child(3), .pstat:nth-child(4) { border-bottom: none; }
}

/* Tablet → ≤768px */
@media (max-width: 768px) {
  .nav__links, .btn--nav:not(.nav__hamburger) { display: none; }
  .nav__hamburger { display: flex; }
  .btn--nav { display: none; }

  .hero__headline { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__proof { gap: 20px; }

  .module { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .module__number { font-size: 2rem; padding-top: 0; }

  .testi__grid { grid-template-columns: repeat(2, 1fr); }
  .social__grid { grid-template-columns: 1fr; max-width: 340px; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__links { gap: 32px; }

  .about__stats { grid-template-columns: 1fr; }
  .about__stat { border-right: none; border-bottom: 1px solid var(--border); }
  .about__stat:last-child { border-bottom: none; }
}

/* Móvil → ≤480px */
@media (max-width: 480px) {
  .transform__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: 1fr; }
  .product__stats { grid-template-columns: 1fr 1fr; }
  .testi__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .footer__links { flex-direction: column; gap: 24px; }
  .pricing__price-row { justify-content: center; }
  .hero__proof {
    flex-direction: column;
    align-items: flex-start;
  }
  .proof__divider { width: 40px; height: 1px; }
}
