/* ============================================================
   LANDING PAGE — Bebé Dormido
   Extiende brand.css con estilos específicos de la sales letter.
   ============================================================ */

.lp{
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

.container--narrow{ max-width: 760px; margin: 0 auto; }
.section--cream-soft{ background: var(--cream-soft); }

/* ============================================================
   NAV
   ============================================================ */
.lp-nav{
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 6vw;
  background: rgba(250,245,234,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.lp-nav__brand{
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.lp-nav__brand svg{ color: var(--peach-deep); }
.lp-nav__word{
  font-family: var(--serif);
  font-size: 18px; font-weight: 400;
  letter-spacing: -.01em;
}
.lp-nav__word em{
  font-style: italic;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .005em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  line-height: 1;
}
.btn:hover{ transform: translateY(-2px); }
.btn__price{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  opacity: .85;
  padding-left: 12px;
  border-left: 1px solid currentColor;
}
.btn--small{ padding: 10px 18px; font-size: 13px; }
.btn--lg{ padding: 20px 34px; font-size: 18px; }
.btn--xl{ padding: 24px 40px; font-size: 20px; }
.btn--full{ width: 100%; }

.btn--primary{
  background: var(--peach-deep);
  color: var(--cream-soft);
  box-shadow: 0 10px 24px -10px rgba(201,125,82,.55);
}
.btn--primary:hover{ background: #B86E45; box-shadow: 0 14px 30px -10px rgba(201,125,82,.7); }

.btn--moon{
  background: var(--moon);
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(244,212,161,.4), 0 4px 10px -4px rgba(0,0,0,.2);
}
.btn--moon:hover{ background: #FADB9F; box-shadow: 0 18px 36px -12px rgba(244,212,161,.55); }

.btn--cream{
  background: rgba(244,212,161,.10);
  color: var(--moon);
  border-color: var(--moon);
  border-width: 1.5px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px -8px rgba(244,212,161,.35);
}
.btn--cream:hover{
  background: rgba(244,212,161,.22);
  box-shadow: 0 10px 24px -8px rgba(244,212,161,.5);
}

.btn--ghost{
  background: transparent;
  color: var(--peach-deep);
  border-color: var(--peach-deep);
  border-width: 1.5px;
}
.btn--ghost:hover{
  background: var(--peach-deep);
  color: var(--cream-soft);
}

/* Sticky bottom CTA on mobile */
.sticky-cta{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 49;
  padding: 12px 5vw calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(250,245,234,0) 0%, rgba(250,245,234,.96) 30%);
  display: none;
}
@media (max-width: 700px){
  .sticky-cta{ display: block; }
  body { padding-bottom: 88px; }
  .lp-nav .btn--ghost{ display: none; }
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero{
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, #1c2c4d 0%, var(--ink) 55%, #060d1f 100%);
  color: var(--cream);
  padding: clamp(80px, 14vw, 160px) 6vw clamp(60px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero__stars{ position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__stars span{
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  background: var(--moon); border-radius: 50%;
  box-shadow: 0 0 6px var(--moon);
  opacity: .55;
  animation: twinkle 4s ease-in-out infinite;
  animation-delay: var(--d);
}
.hero__inner{
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.hero__eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,236,221,.6);
  margin: 0 0 var(--r5);
}
.hero__eyebrow .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--moon);
  box-shadow: 0 0 8px var(--moon);
}
.hero__title{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(54px, 9vw, 124px);
  line-height: .95;
  letter-spacing: -.025em;
  margin: 0 0 var(--r4);
}
.hero__title em{
  font-style: italic;
  color: var(--moon);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  max-width: 620px;
  margin: var(--r4) auto 0;
  color: rgba(244,236,221,.78);
  font-weight: 300;
}
.hero__line{
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  margin: var(--r5) auto 0;
  color: var(--cream);
  letter-spacing: .005em;
}
.hero__cta{ margin-top: var(--r6); }

/* ============================================================
   2. VALIDACIÓN
   ============================================================ */
.validation{
  padding: clamp(80px, 12vw, 140px) 6vw;
  background: var(--cream);
}
.big-line{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 var(--r5);
  text-align: center;
}
.big-line em{
  font-style: italic;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lead{
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  margin: 0 0 var(--r4);
  color: var(--ink-soft);
  font-weight: 300;
  text-wrap: pretty;
}
.lead strong{ font-weight: 500; color: var(--ink); }
.lead em{ font-style: italic; color: var(--peach-deep); }
.lead--ink{ color: var(--ink); font-style: italic; }
.lead--soft{ color: var(--ink-mute); }
.rule{
  height: 1px;
  background: var(--line);
  border: 0;
  margin: var(--r5) auto;
  max-width: 60px;
}

/* ============================================================
   3. AMPLIFICAR
   ============================================================ */
.amplify{
  padding: clamp(80px, 12vw, 140px) 6vw;
}
.amplify .h-display{
  font-size: clamp(40px, 7vw, 76px);
  text-align: center;
  margin: var(--r3) 0 var(--r4);
}
.amplify .lead{ text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.amplify .eyebrow{ text-align: center; }

.cost-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--r4);
  margin: var(--r6) 0 var(--r5);
}
.cost{
  padding: var(--r5) var(--r4);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  position: relative;
}
.cost__num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--peach-deep);
  margin: 0 0 var(--r2);
}
.cost h3{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -.01em;
  margin: 0 0 var(--r3);
  line-height: 1.2;
}
.cost p{
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.cost p strong{ color: var(--ink); font-weight: 500; }
.cost p em{ font-style: italic; color: var(--peach-deep); }

@media (max-width: 760px){
  .cost-grid{ grid-template-columns: 1fr; }
}

.turn{
  text-align: center;
  padding: var(--r6) var(--r4);
  margin-top: var(--r5);
  position: relative;
}
.turn__moon{
  width: 56px; height: 56px;
  color: var(--peach-deep);
  margin: 0 auto var(--r3);
  opacity: .8;
}
.turn p{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
}
.turn p em{
  font-style: italic;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.turn__sub{
  font-family: var(--sans) !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  margin-top: var(--r3) !important;
  letter-spacing: .005em !important;
}

/* ============================================================
   4. SOLUCIÓN
   ============================================================ */
.solution{
  position: relative;
  padding: clamp(80px, 12vw, 160px) 6vw;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.solution__stars{ position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.solution__stars span{
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  background: var(--moon); border-radius: 50%;
  box-shadow: 0 0 6px var(--moon);
  opacity: .55;
  animation: twinkle 4s ease-in-out infinite;
  animation-delay: var(--d);
}
.solution .container{ position: relative; z-index: 2; }

.eyebrow--moon{ color: var(--moon); opacity: .85; }

.solution__top{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--r6);
  align-items: center;
  margin-bottom: var(--r6);
}
@media (max-width: 900px){
  .solution__top{ grid-template-columns: 1fr; gap: var(--r5); }
}

.h-display--inverse{
  color: var(--cream);
  font-size: clamp(60px, 10vw, 120px);
  line-height: .9;
  margin: 0 0 var(--r4);
}
.h-display--inverse em{ color: var(--moon); }

.solution__sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: rgba(244,236,221,.8);
  margin: 0 0 var(--r4);
  font-weight: 300;
}
.solution__body{
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,236,221,.78);
  margin: 0;
  max-width: 50ch;
}

/* Mockup */
.mockup{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--r5);
  padding: var(--r4) var(--r3);
}
.mockup::before{
  /* Halo dorado luna detrás del mockup — efecto "iluminado por la luna" */
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center,
    rgba(244,212,161,0.20) 0%,
    rgba(244,212,161,0.10) 28%,
    rgba(244,212,161,0.04) 50%,
    transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.mockup__shadow{
  position: absolute;
  bottom: -10px; left: 10%; right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

.pdf-cover--lg{
  max-width: 380px;
  width: 100%;
  aspect-ratio: 360 / 510;
  padding: 36px 32px;
  background: linear-gradient(160deg, #182947 0%, #0E1B33 60%, #060f24 100%);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.6),
    0 20px 40px -20px rgba(0,0,0,.5),
    0 0 80px -10px rgba(244,212,161,0.18),
    inset 0 1px 0 rgba(244,236,221,.10);
  border: 1px solid rgba(244,212,161,.28);
  z-index: 2;
  animation: mockup-float-main 7s ease-in-out infinite;
}
.mockup:hover .pdf-cover--lg{
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,.65),
    0 24px 48px -20px rgba(0,0,0,.55),
    0 0 120px -10px rgba(244,212,161,0.30),
    inset 0 1px 0 rgba(244,236,221,.14);
}

/* Bonus row debajo del mockup principal (rediseñado v4.2 para ver toda la oferta sin solapes) */
.mockup__bonus-row{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 380px;
}
.mockup__bonus{
  flex: 1 1 0;
  min-width: 0;
  max-width: 118px;
  aspect-ratio: 96 / 132;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(244,212,161,.26);
  box-shadow:
    0 14px 24px -10px rgba(0,0,0,.55),
    0 5px 10px -5px rgba(0,0,0,.4);
}
.mockup__bonus.is-landscape{ object-position: left center; }
.mockup__bonus--a{
  animation: mockup-float-a 6s ease-in-out infinite;
  animation-delay: -1s;
}
.mockup__bonus--b{
  animation: mockup-float-b 7s ease-in-out infinite;
  animation-delay: -2.5s;
}
.mockup__bonus--c{
  animation: mockup-float-c 5.5s ease-in-out infinite;
  animation-delay: -0.5s;
}

@keyframes mockup-float-main{
  0%, 100% { transform: rotate(-1.8deg) translateY(-2px); }
  50%      { transform: rotate(-0.4deg) translateY(-12px); }
}
@keyframes mockup-float-a{
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-6px); }
}
@keyframes mockup-float-b{
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-7px); }
}
@keyframes mockup-float-c{
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%      { transform: rotate(-1deg) translateY(-5px); }
}

/* Respeto a usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce){
  .pdf-cover--lg,
  .mockup__bonus--a,
  .mockup__bonus--b,
  .mockup__bonus--c{
    animation: none;
  }
  .pdf-cover--lg{ transform: rotate(-1.5deg) translateY(-6px); }
  .mockup__bonus--a{ transform: rotate(-2.5deg); }
  .mockup__bonus--b{ transform: rotate(1deg); }
  .mockup__bonus--c{ transform: rotate(-1.5deg); }
}

@media (max-width: 720px){
  .mockup{ gap: var(--r4); }
  .mockup__bonus-row{ max-width: 100%; gap: 10px; }
  .mockup__bonus{ max-width: 100px; }
}

/* Benefits */
.benefits{
  margin: var(--r7) 0 var(--r6);
  max-width: 760px;
}
.benefits__list{
  list-style: none;
  padding: 0; margin: var(--r4) 0 0;
  display: grid;
  gap: 14px;
}
.benefits__list li{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,236,221,.1);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(244,236,221,.92);
}
.benefits__list li em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--moon);
}
.check{
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  background: rgba(244,212,161,.12);
  border: 1px solid rgba(244,212,161,.3);
  color: var(--moon);
  border-radius: 50%;
  margin-top: 2px;
}
.check svg{ width: 14px; height: 14px; }

/* Diff row */
.diff-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--r4);
  margin: var(--r6) 0;
  padding: var(--r5) 0;
  border-top: 1px solid rgba(244,236,221,.12);
  border-bottom: 1px solid rgba(244,236,221,.12);
}
@media (max-width: 800px){ .diff-row{ grid-template-columns: 1fr; gap: var(--r4); } }

.diff{
  text-align: center;
  padding: var(--r3);
}
.diff__icon{
  width: 36px; height: 36px;
  color: var(--moon);
  margin: 0 auto var(--r3);
  opacity: .9;
}
.diff h4{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 var(--r2);
  letter-spacing: -.01em;
}
.diff p{
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,236,221,.7);
  margin: 0;
}
.diff p em{ font-style: italic; color: var(--moon); }

/* CTA block */
.cta-block{
  text-align: center;
  margin-top: var(--r5);
}
.cta-block__sub{
  margin: var(--r4) 0 0;
  font-size: 13px;
  color: rgba(244,236,221,.55);
  letter-spacing: .02em;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.cta-block__sub--center{ text-align: center; color: var(--ink-mute) !important; }
.bullet{ margin: 0 6px; opacity: .5; }
.cta-block__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  margin-right: 4px;
  opacity: .75;
  vertical-align: -2px;
}
.cta-block__icon svg{ width: 100%; height: 100%; }

/* ============================================================
   INVENTORY — Esto es lo que te llevas
   ============================================================ */
.inventory{
  margin: var(--r6) auto var(--r5);
  max-width: 920px;
  position: relative;
}
.inventory__head{
  text-align: center;
  margin-bottom: var(--r5);
}
.inventory__head .eyebrow{ display: block; margin-bottom: var(--r3); }
.inventory__title{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(32px, 5.4vw, 56px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--cream);
}
.inventory__title em{
  font-style: italic;
  color: var(--moon);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.inventory__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.inv{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--r3);
  align-items: start;
  padding: 22px var(--r4);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-m);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.45);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.inv:nth-child(even){
  background: var(--cream-soft);
}
.inv:hover{
  border-color: var(--peach-deep);
  background: var(--cream-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -16px rgba(0,0,0,.5);
}
.inv__icon{
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  background: var(--ink);
  border: 1px solid var(--ink-soft);
  border-radius: 12px;
  color: var(--moon);
  margin-top: 2px;
}
.inv__icon svg{ width: 24px; height: 24px; }
.inv__body h4{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.25;
  letter-spacing: -.005em;
  margin: 4px 0 8px;
  color: var(--ink);
}
.inv__body h4 em{
  font-style: italic;
  font-weight: 400;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.inv__body p{
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.inv__body p strong{ color: var(--ink); font-weight: 600; }
.inv__body p em{ font-style: italic; color: var(--peach-deep); }

.inv--bonus{
  background: linear-gradient(135deg, #FBE6CC 0%, var(--cream) 65%) !important;
  border-color: rgba(201,125,82,.4) !important;
}
.inv--bonus:hover{
  background: linear-gradient(135deg, #F8DCB9 0%, var(--cream-soft) 65%) !important;
  border-color: var(--peach-deep) !important;
}
.inv--bonus .inv__icon{
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  color: var(--cream-soft);
}
.inv__tag{
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream-soft);
  background: var(--peach-deep);
  border: 1px solid var(--peach-deep);
  padding: 3px 10px;
  border-radius: 999px;
  margin: 4px 0 10px;
}

.inventory__foot{
  text-align: center;
  margin: var(--r5) auto 0;
  max-width: 620px;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.4;
}
.inventory__foot strong{
  display: block;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -.005em;
  font-weight: 300;
}
.inventory__foot em{
  display: block;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--moon);
  opacity: .9;
}

@media (max-width: 600px){
  .inv{ grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 16px; }
  .inv__icon{ width: 36px; height: 36px; border-radius: 10px; }
  .inv__icon svg{ width: 18px; height: 18px; }
  .inv__body h4{ margin-top: 0; }
}

/* ============================================================
   VALUE LIST — checklist rápida (precio)
   ============================================================ */
.value-list{
  text-align: left;
  max-width: 520px;
  margin: 0 auto var(--r5);
}
.value-list__lead{
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  color: rgba(244,236,221,.78);
  margin: 0 0 var(--r3);
  font-weight: 300;
}
.value-list__lead strong{
  color: var(--moon);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.005em;
}
.value-list__items{
  list-style: none;
  padding: var(--r3) 0;
  margin: 0;
  border-top: 1px solid rgba(244,212,161,.18);
  border-bottom: 1px solid rgba(244,212,161,.18);
  display: grid;
  gap: 11px;
}
.value-list__items li{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244,236,221,.88);
}
.value-list__items li strong{ color: var(--cream); font-weight: 600; }
.value-list__items li em{ font-style: italic; color: var(--moon); }
.value-list__check{
  width: 20px; height: 20px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(244,212,161,.16);
  border: 1px solid rgba(244,212,161,.42);
  color: var(--moon);
  margin-top: 2px;
}
.value-list__check svg{ width: 12px; height: 12px; }
.value-list__foot{
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(244,236,221,.85);
  margin: var(--r4) 0 0;
  font-weight: 300;
  line-height: 1.4;
}
.value-list__foot em{ color: var(--moon); }

/* Bonus block dentro de price-card (Cambio v4.1) */
.value-list__bonus-lead{
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  color: rgba(244,236,221,.88);
  margin: var(--r4) auto var(--r3);
  font-weight: 300;
  line-height: 1.4;
  max-width: 440px;
}
.value-list__bonus-lead em{
  color: var(--peach-soft);
  font-style: italic;
  font-weight: 400;
}

.value-list__bonuses{
  list-style: none;
  padding: var(--r3) 0;
  margin: 0;
  display: grid;
  gap: 12px;
  border-top: 1px dashed rgba(233,165,123,.4);
  border-bottom: 1px dashed rgba(233,165,123,.4);
}
.value-list__bonuses li{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}
.value-list__bonus-icon{
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(233,165,123,.2);
  border: 1px solid rgba(233,165,123,.55);
  color: var(--peach-soft);
  margin-top: 1px;
  flex-shrink: 0;
}
.value-list__bonus-icon svg{ width: 14px; height: 14px; }
.value-list__bonus-body{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.value-list__bonus-body strong{
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: -.005em;
}
.value-list__bonus-meta{
  font-size: 12.5px;
  color: rgba(244,236,221,.55);
  letter-spacing: .005em;
}
.value-list__bonus-meta s{
  text-decoration-color: rgba(233,165,123,.7);
  text-decoration-thickness: 1px;
}
.value-list__bonus-meta em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--peach-soft);
  font-size: 14px;
  margin-left: 2px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -.005em;
}

/* ============================================================
   5. AUTORIDAD
   ============================================================ */
.authority{
  padding: clamp(80px, 12vw, 140px) 6vw;
  text-align: center;
}
.authority .eyebrow{ display: block; margin-bottom: var(--r3); }
.authority .h-display{
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 var(--r5);
  text-align: center;
}
.authority .lead{ text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

.authority-sources{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--r3);
  margin: var(--r6) 0;
}
@media (max-width: 800px){ .authority-sources{ grid-template-columns: 1fr; } }

.src{
  padding: var(--r4);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--cream-soft);
  text-align: left;
}
.src__num{
  font-family: var(--serif);
  font-style: italic;
  color: var(--peach-deep);
  font-size: 22px;
  margin: 0 0 6px;
}
.src__icon{
  width: 28px;
  height: 28px;
  color: var(--peach-deep);
  margin: 0 0 12px;
  display: block;
}
.src h4{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.src p{
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}

.not-this{
  margin-top: var(--r6);
  padding: var(--r5);
  border-radius: var(--radius-l);
  background: var(--ink);
  color: var(--cream);
  text-align: left;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.not-this h3{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 var(--r3);
  font-style: italic;
}
.not-this h3 strong{ color: var(--moon); font-weight: 400; }
.not-this ul{ list-style: none; padding: 0; margin: 0; }
.not-this li{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  border-top: 1px solid rgba(244,236,221,.1);
}
.not-this li:first-child{ border-top: 0; }
.not-this li span{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(244,236,221,.45);
}
.not-this li:last-child span{ color: var(--moon); opacity: 1; }
.not-this li em{ font-style: italic; color: var(--moon); }

/* ============================================================
   6. MITOS
   ============================================================ */
.myths{
  padding: clamp(80px, 12vw, 140px) 6vw;
}
.myths__head{
  text-align: center;
  margin-bottom: var(--r6);
}
.myths__head .eyebrow{ display: block; }
.myths__head .h-display{
  font-size: clamp(32px, 5.6vw, 56px);
  text-align: center;
}

.myth{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--r4);
  padding: var(--r5) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.myth:last-of-type{ border-bottom: 1px solid var(--line); }
.myth__num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--peach);
  line-height: .9;
  letter-spacing: -.02em;
}
.myth__rows{ display: grid; gap: var(--r3); }
.myth__row{
  padding: var(--r4);
  border-radius: var(--radius-m);
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--r3);
  align-items: start;
}
.myth__row p{ margin: 0; font-size: 16px; line-height: 1.6; }
.myth__row strong{ color: var(--ink); font-weight: 600; }
.myth__row em{ font-style: italic; color: var(--peach-deep); }

.myth__row--false{
  background: #FBEEE5;
  border: 1px solid rgba(201,125,82,.2);
}
.myth__row--false p{ font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink-soft); }

.myth__row--true{
  background: #F0F4EE;
  border: 1px solid rgba(138,162,144,.3);
}
.myth__row--true p{ color: var(--ink-soft); }

.tag{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  height: max-content;
  margin-top: 2px;
}
.tag--false{ background: var(--peach-deep); color: var(--cream-soft); }
.tag--true{ background: #6B8C72; color: var(--cream-soft); }

@media (max-width: 700px){
  .myth{ grid-template-columns: 1fr; gap: var(--r3); }
  .myth__num{ font-size: 40px; }
  .myth__row{ grid-template-columns: 1fr; gap: 10px; }
}

.myths__more{
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  margin: var(--r6) 0 0;
  font-weight: 300;
  line-height: 1.4;
}
.myths__more em{ color: var(--peach-deep); }

/* ============================================================
   7. PRECIO
   ============================================================ */
.price{
  position: relative;
  padding: clamp(80px, 12vw, 140px) 6vw;
  isolation: isolate;
}
.price .container{ position: relative; z-index: 2; }
.price .eyebrow{
  display: block;
  text-align: center;
  margin-bottom: var(--r5);
}

.anchor{
  text-align: center;
  margin-bottom: var(--r6);
}
.anchor__strike{
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: rgba(244,236,221,.55);
  margin: 0 0 var(--r3);
  text-decoration: line-through;
  text-decoration-color: var(--peach-deep);
  text-decoration-thickness: 2px;
  letter-spacing: -.01em;
}
.anchor__caption{
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(244,236,221,.7);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.5;
}

.price-card{
  background: linear-gradient(180deg, #19284a 0%, #0E1B33 100%);
  border: 1px solid rgba(244,212,161,.25);
  border-radius: var(--radius-l);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.5);
}
.price-card__eyebrow{
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,236,221,.6);
  margin: 0 0 var(--r3);
  font-weight: 600;
}
.price-card__amount{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(72px, 12vw, 140px);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--moon);
  margin: 0 0 var(--r3);
  display: inline-flex;
  align-items: baseline;
}
.price-card__cur{
  font-size: .55em;
  margin-right: 4px;
  color: rgba(244,212,161,.65);
}
.price-card__cop{
  font-family: var(--sans);
  font-size: .18em;
  letter-spacing: .2em;
  margin-left: 12px;
  color: rgba(244,236,221,.6);
  font-weight: 500;
  align-self: end;
  margin-bottom: 14px;
}
.price-card__compare{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cream);
  margin: 0 0 var(--r5);
  font-weight: 300;
}
.price-card__compare em{ color: var(--moon); }

.price-card__incl{
  list-style: none;
  padding: 0;
  margin: 0 0 var(--r5);
  text-align: left;
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
  border-top: 1px solid rgba(244,236,221,.12);
  border-bottom: 1px solid rgba(244,236,221,.12);
  padding: var(--r4) 0;
}
.price-card__incl li{
  font-size: 15px;
  color: rgba(244,236,221,.85);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}
.price-card__incl li::before{
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--moon);
  border-radius: 50%;
  opacity: .8;
}

.price-card__line{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(244,236,221,.85);
  margin: 0 0 var(--r5);
  font-weight: 300;
  line-height: 1.5;
}
.price-card__line em{ color: var(--moon); }

/* ============================================================
   8. GARANTÍA
   ============================================================ */
.guarantee{
  padding: clamp(80px, 12vw, 140px) 6vw;
}
.guarantee__card{
  text-align: center;
  background: linear-gradient(180deg, #F0F4EE 0%, var(--cream) 100%);
  border: 1px solid rgba(138,162,144,.3);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px);
  position: relative;
}
.guarantee__shield{
  width: 64px; height: 64px;
  color: #6B8C72;
  margin: 0 auto var(--r3);
}
.guarantee .eyebrow{
  color: #6B8C72;
  display: block;
  margin-bottom: var(--r3);
}
.guarantee .h-display{
  font-size: clamp(32px, 5.6vw, 52px);
  margin: 0 0 var(--r4);
  text-align: center;
}
.guarantee .h-display em{ color: #6B8C72; }
.guarantee .lead{ text-align: center; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ============================================================
   9. FINAL
   ============================================================ */
.final{
  position: relative;
  padding: clamp(100px, 14vw, 180px) 6vw;
  text-align: center;
  isolation: isolate;
}
.final .container{ position: relative; z-index: 2; }

.final__pre{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  color: rgba(244,236,221,.7);
  margin: 0 0 var(--r3);
  line-height: 1.4;
}
.final__pre--soft{
  color: rgba(244,236,221,.5);
  margin-bottom: var(--r6);
}
.final__title{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(56px, 10vw, 130px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0 0 var(--r4);
  color: var(--cream);
}
.final__title em{
  font-style: italic;
  color: var(--moon);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.final__sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(244,236,221,.75);
  margin: 0 0 var(--r6);
  font-weight: 300;
}

.final__trust{
  list-style: none; padding: 0;
  margin: var(--r5) 0 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: var(--r4);
  font-size: 13px;
  color: rgba(244,236,221,.65);
  letter-spacing: .04em;
}
.final__trust li{
  display: inline-flex; align-items: center; gap: 8px;
}
.final__trust svg{ width: 16px; height: 16px; opacity: .6; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-foot{
  padding: clamp(48px, 8vw, 80px) 6vw clamp(32px, 5vw, 48px);
  background: var(--cream-soft);
  text-align: center;
  border-top: 1px solid var(--line);
}
.lp-foot__brand{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: var(--r4);
  color: var(--ink);
}
.lp-foot__brand svg{ color: var(--peach-deep); }
.lp-foot__brand em{
  font-style: italic;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.legal{
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 760px;
  margin: 0 auto var(--r3);
}
.legal--small{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: var(--r4);
  opacity: .7;
}
.lp-foot__legal-links{
  font-size: 12px;
  letter-spacing: .04em;
  margin: 0 auto var(--r3);
  color: var(--ink-mute);
}
.lp-foot__legal-links a{
  color: var(--peach-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-foot__legal-links a:hover{ color: #B86E45; }
.lp-foot__legal-links .sep{ margin: 0 10px; color: var(--ink-mute); opacity: .5; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(244,212,161,.18);
  padding: 18px 5vw calc(18px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
  font-family: var(--sans);
  transform: translateY(100%);
  transition: transform .35s ease-out;
}
.cookie-banner.is-visible{ transform: translateY(0); }
.cookie-banner__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--r4);
}
.cookie-banner__copy{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244,236,221,.85);
  max-width: 720px;
}
.cookie-banner__copy strong{ color: var(--cream); font-weight: 600; }
.cookie-banner__copy a{
  color: var(--moon);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__copy a:hover{ color: #FADB9F; }
.cookie-banner__actions{
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-banner__btn{
  appearance: none;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
}
.cookie-banner__btn:active{ transform: translateY(1px); }
.cookie-banner__btn--accept{
  background: var(--moon);
  color: var(--ink);
}
.cookie-banner__btn--accept:hover{ background: #FADB9F; }
.cookie-banner__btn--reject{
  background: transparent;
  color: rgba(244,236,221,.85);
  border-color: rgba(244,236,221,.35);
}
.cookie-banner__btn--reject:hover{
  background: rgba(244,236,221,.06);
  border-color: rgba(244,236,221,.6);
  color: var(--cream);
}

@media (max-width: 720px){
  .cookie-banner__inner{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cookie-banner__copy{ font-size: 13px; }
  .cookie-banner__actions{ width: 100%; }
  .cookie-banner__btn{ flex: 1; padding: 13px 16px; }
}

/* When cookie banner is visible, lift the sticky CTA above it */
.cookie-banner.is-visible ~ .sticky-cta,
body.has-cookie-banner .sticky-cta{ display: none !important; }

/* ============================================================
   FUTURE PACING — pausa emocional antes del inventario (Cambio 1)
   ============================================================ */
.future-pacing{
  max-width: 580px;
  margin: var(--r6) auto var(--r5);
  padding: var(--r5) var(--r4) var(--r5);
  text-align: center;
  position: relative;
}
.future-pacing::before,
.future-pacing::after{
  content: "";
  display: block;
  width: 48px; height: 1px;
  background: rgba(244,212,161,.32);
  margin: 0 auto var(--r4);
}
.future-pacing::after{ margin: var(--r4) auto 0; }
.future-pacing p{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.5;
  color: rgba(244,236,221,.85);
  margin: 0 0 var(--r4);
  letter-spacing: -.005em;
  text-wrap: balance;
}
.future-pacing p:last-child{ margin-bottom: 0; }
.future-pacing p em{
  color: var(--moon);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.future-pacing__close{
  font-size: clamp(28px, 3.6vw, 36px) !important;
  color: var(--cream) !important;
  margin-top: var(--r5) !important;
  line-height: 1.3 !important;
}

/* ============================================================
   COST ICONS — íconos sutiles al lado del número (Cambio 5)
   ============================================================ */
.cost__head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--r2);
}
.cost__head .cost__num{ margin: 0; }
.cost__icon{
  width: 24px; height: 24px;
  color: var(--peach-deep);
  opacity: .42;
  flex-shrink: 0;
  transition: opacity .25s ease;
}
.cost:hover .cost__icon{ opacity: .7; }

/* ============================================================
   VALUE STACK — DotCom Secrets stack slide (Cambio 2)
   ============================================================ */
.value-stack{
  margin: var(--r6) auto var(--r5);
  max-width: 880px;
  position: relative;
}
.value-stack__head{
  text-align: center;
  margin-bottom: var(--r5);
}
.value-stack__head .eyebrow{ display: block; margin-bottom: var(--r3); }
.value-stack__title{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--cream);
}
.value-stack__title em{
  font-style: italic;
  color: var(--moon);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.value-stack__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.vs-item{
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--r4);
  align-items: center;
  padding: 22px var(--r4);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-m);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.45);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.vs-item:nth-child(even){
  background: var(--cream-soft);
}
.vs-item:hover{
  border-color: var(--peach-deep);
  background: var(--cream-soft);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -16px rgba(0,0,0,.55);
}

.vs-item__cover{
  width: 96px;
  aspect-ratio: 96 / 132;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(160deg, #182947 0%, #0E1B33 60%, #060f24 100%);
  box-shadow:
    0 18px 28px -12px rgba(14,27,51,.45),
    0 6px 12px -6px rgba(14,27,51,.3),
    inset 0 0 0 1px rgba(244,212,161,.22);
  position: relative;
}
.vs-item__cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.vs-item__cover img.is-landscape{ object-position: left center; }
.vs-item__cover img.is-missing{ visibility: hidden; }
.vs-item__cover::after{
  content: "Portada";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(244,212,161,.55);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.vs-item__cover:has(img.is-missing)::after,
.vs-item__cover:not(:has(img))::after{ opacity: 1; }

.vs-item__body{ min-width: 0; }
.vs-item__body h4{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.25;
  letter-spacing: -.005em;
  margin: 0 0 6px;
  color: var(--ink);
}
.vs-item__body h4 em{
  font-style: italic;
  font-weight: 400;
  color: var(--peach-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.vs-item__tag{
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream-soft);
  background: var(--peach-deep);
  border: 1px solid var(--peach-deep);
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: 3px;
}
.vs-item__body p{
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.vs-item__value{
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.vs-item__label{
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 2px;
}
.vs-item__price{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-mute);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: var(--peach-deep);
  text-decoration-thickness: 1.5px;
}
.vs-item__free{
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--peach-deep);
  letter-spacing: -.01em;
  margin-top: 4px;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.value-stack__totals{
  margin-top: var(--r5);
  padding: var(--r4) var(--r4) 0;
  text-align: center;
  border-top: 1px solid rgba(244,212,161,.18);
}
.value-stack__total{
  font-family: var(--serif);
  font-size: clamp(17px, 1.9vw, 21px);
  color: rgba(244,236,221,.5);
  margin: 0 0 var(--r3);
  font-weight: 300;
  letter-spacing: -.005em;
}
.value-stack__total span{
  font-style: italic;
  text-decoration: line-through;
  text-decoration-color: rgba(201,125,82,.7);
  text-decoration-thickness: 2px;
}
.value-stack__price{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: rgba(244,236,221,.92);
}
.value-stack__price strong{
  color: var(--moon);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.value-stack__compare{
  margin: 10px auto 0;
  max-width: 480px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.45;
  color: rgba(244,236,221,.78);
}

.value-stack__close{
  margin: var(--r5) auto 0;
  max-width: 560px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: rgba(244,236,221,.78);
  letter-spacing: -.005em;
  text-wrap: balance;
}
.value-stack__close em{
  color: var(--moon);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

@media (max-width: 720px){
  .vs-item{
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 16px;
    align-items: start;
  }
  .vs-item__cover{ width: 76px; }
  .vs-item__value{
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 90px;
    margin-top: -6px;
  }
  .vs-item__label{
    display: inline;
    margin-right: 8px;
  }
  .vs-item__price{ font-size: 14px; }
}

/* ============================================================
   GUARANTEE — promesa + cierre de confianza (Cambio 3)
   ============================================================ */
.guarantee__promise{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 8px;
  display: block;
  line-height: 1.3;
}
.guarantee__promise + .eyebrow{ margin-top: 0; }
.guarantee__close{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: var(--ink-mute);
  margin: var(--r4) auto 0;
  max-width: 480px;
  font-weight: 300;
  text-wrap: balance;
}
.guarantee__close em{
  font-style: italic;
  color: #6B8C72;
}

/* ============================================================
   TESTIMONIOS (07) — screenshots reales de Instagram
   ============================================================ */
.testimonials{
  padding: clamp(64px, 9vw, 120px) 0;
}
.testimonials__head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-wrap: balance;
}
.testimonials__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}
.testimonial{
  margin: 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(14px, 1.6vw, 22px);
  box-shadow:
    0 18px 40px -24px rgba(14, 27, 51, .22),
    0 2px 6px -2px rgba(14, 27, 51, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial:hover{
  transform: translateY(-4px);
  box-shadow:
    0 28px 50px -22px rgba(14, 27, 51, .28),
    0 4px 10px -2px rgba(14, 27, 51, .08);
}
.testimonial img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 880px){
  .testimonials__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: clamp(20px, 5vw, 28px);
  }
}
