:root{
  --navy-900:#13233D;
  --navy-800:#173456;
  --navy-700:#1D4068;
  --navy-600:#2C5C94;
  --navy-500:#3D74B5;
  --navy-400:#5B93D1;
  --navy-glow:#6FA8E0;
  --bg:#F4F6F9;
  --card:#FFFFFF;
  --text:#101826;
  --text-muted:#5B6573;
  --line:#E3E7ED;
  --success:#1E8E5A;
  --success-bg:#E6F4EC;
  --danger:#C53A3A;
  --danger-bg:#FBEAEA;
  --orange:#E0692E;
  --orange-bg:#FCEADB;
  --gold:#C99A45;
  --radius:16px;
  --shadow:0 8px 24px rgba(11,22,38,0.08);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

.app-shell{
  max-width:560px;
  margin:0 auto;
  min-height:100vh;
  background:var(--bg);
  display:flex;
  flex-direction:column;
}

/* ---------- header / progress ---------- */
.app-header{
  position:sticky;
  top:0;
  z-index:20;
  background:var(--bg);
  padding:18px 20px 10px;
}
.app-header.hidden{display:none;}
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-bottom:12px;
  font-weight:700;
  letter-spacing:0.3px;
  color:var(--navy-700);
}
.logo-icon{font-size:18px;}
.logo-text strong{color:var(--navy-500);}

.progress-wrap{transition:opacity .25s ease;}
.progress-wrap.hidden{opacity:0;visibility:hidden;height:0;margin:0;}
.progress-track{
  width:100%;
  height:7px;
  background:#E3E8F0;
  border-radius:6px;
  overflow:hidden;
}
.progress-fill{
  height:100%;
  width:0%;
  border-radius:6px;
  background:linear-gradient(90deg,var(--navy-500),var(--navy-glow));
  transition:width .5s cubic-bezier(.4,0,.2,1);
  box-shadow:0 0 8px rgba(61,107,179,0.5);
}

.back-btn{
  position:absolute;
  left:18px;
  top:18px;
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:var(--card);
  border:1px solid var(--line);
  cursor:pointer;
  font-size:16px;
  color:var(--navy-700);
}

/* ---------- main / steps ---------- */
.app-main{
  flex:1;
  padding:8px 20px 110px;
  position:relative;
}

.step{
  animation:stepIn .35s ease both;
  padding-top:18px;
}
@keyframes stepIn{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

.eyebrow{
  text-align:center;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--navy-500);
  text-transform:uppercase;
  margin-bottom:6px;
}
.headline{
  text-align:center;
  font-size:25px;
  font-weight:800;
  line-height:1.3;
  color:var(--text);
  margin:0 0 8px;
}
.headline .accent{color:var(--navy-500);}
.subline{
  text-align:center;
  font-size:15px;
  color:var(--text-muted);
  margin:0 0 18px;
  line-height:1.5;
}
.highlight-tag{
  display:inline-block;
  background:#FCEFD0;
  color:#7A5B12;
  font-weight:700;
  font-size:13px;
  padding:4px 10px;
  border-radius:6px;
}

.hero-img-wrap{
  margin:0 0 18px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-img-wrap img{display:block;width:100%;height:auto;}

/* ---------- placeholder images ---------- */
.img-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  background:linear-gradient(135deg,var(--navy-700),var(--navy-500));
  color:#fff;
  text-align:center;
  padding:18px;
  font-size:12.5px;
  font-weight:600;
  line-height:1.4;
}
.img-placeholder .ph-icon{font-size:26px;opacity:.85;}
.img-placeholder small{display:block;font-weight:400;opacity:.75;font-size:11px;margin-top:2px;}

.ph-hero{aspect-ratio:4/3;border-radius:var(--radius);}
.ph-square{aspect-ratio:1/1;border-radius:14px;}
.ph-portrait{aspect-ratio:4/5;border-radius:14px;}
.ph-tall{aspect-ratio:3/4;border-radius:14px;}
.ph-news{aspect-ratio:16/9;border-radius:14px;}
.ph-coach{aspect-ratio:708/1079;border-radius:14px;}
.ph-wide{aspect-ratio:16/9;border-radius:var(--radius);}
.ph-banner{aspect-ratio:3/1;border-radius:14px;}

/* ---------- options ---------- */
.options{display:flex;flex-direction:column;gap:10px;margin-bottom:18px;}
.options.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.options.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;}

.option-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  cursor:pointer;
  transition:all .15s ease;
  font-size:15px;
  font-weight:500;
  color:var(--text);
  user-select:none;
}
.option-card:hover{border-color:var(--navy-400);transform:translateY(-1px);}
.option-card:active{transform:scale(.98);}
.option-card.selected{
  border-color:var(--navy-500);
  background:#EEF3FA;
  box-shadow:0 0 0 3px rgba(28,58,102,0.12);
}
.option-card .opt-emoji{font-size:20px;flex-shrink:0;}
.option-card .opt-radio,
.option-card .opt-check{
  width:20px;height:20px;flex-shrink:0;
  border-radius:50%;
  border:2px solid #C7CDD6;
  position:relative;
  transition:all .15s ease;
}
.option-card .opt-check{border-radius:6px;}
.option-card.selected .opt-radio,
.option-card.selected .opt-check{
  border-color:var(--navy-500);
  background:var(--navy-500);
}
.option-card.selected .opt-radio::after{
  content:'';
  position:absolute;inset:4px;
  border-radius:50%;
  background:#fff;
}
.option-card.selected .opt-check::after{
  content:'✓';
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:13px;font-weight:700;
}
.option-card .opt-label{flex:1;}
.option-card .opt-trail-emoji{font-size:18px;}

/* image options (body shapes) */
.option-card.img-option{
  flex-direction:column;
  padding:0;
  overflow:hidden;
  align-items:stretch;
  text-align:center;
}
.option-card.img-option .asset-slot{border-radius:0;}
.option-card.img-option .opt-label{
  padding:10px 8px 12px;
  font-size:13.5px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.option-card.img-option .opt-radio{position:absolute;}

/* text input */
.text-input{
  width:100%;
  padding:16px 18px;
  border-radius:14px;
  border:1.5px solid var(--line);
  font-size:16px;
  font-family:inherit;
  margin-bottom:18px;
  background:var(--card);
  color:var(--text);
}
.text-input:focus{outline:none;border-color:var(--navy-500);box-shadow:0 0 0 3px rgba(28,58,102,0.12);}

/* ---------- buttons ---------- */
.btn{
  display:block;
  width:100%;
  padding:15px 20px;
  border-radius:9px;
  border:none;
  font-size:15.5px;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  text-align:center;
  letter-spacing:.2px;
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease, opacity .2s ease;
}
.btn-primary{
  background:var(--navy-600);
  color:#fff;
  box-shadow:0 6px 16px rgba(20,40,74,0.22);
}
.btn-primary:active{transform:scale(.985);}
.btn-primary:disabled{opacity:.4;cursor:not-allowed;box-shadow:none;}
.btn-buy{
  background:linear-gradient(135deg,#1E8E5A,#27AE6E);
  color:#fff;
  box-shadow:0 10px 26px rgba(30,142,90,0.42);
}
.btn-buy:active{transform:scale(.985);}
.btn-ghost{
  background:transparent;
  color:var(--navy-500);
  border:1.5px solid var(--line);
}
.btn-pulse{animation:pulse 2.2s infinite;}
@keyframes pulse{
  0%,100%{box-shadow:0 10px 24px rgba(20,40,74,0.28);}
  50%{box-shadow:0 10px 30px rgba(20,40,74,0.5);}
}
.btn-buy.btn-pulse{animation:pulseGreen 2.2s infinite;}
@keyframes pulseGreen{
  0%,100%{box-shadow:0 10px 24px rgba(30,142,90,0.32);}
  50%{box-shadow:0 10px 30px rgba(30,142,90,0.55);}
}

/* ---------- authority screen ---------- */
.avatar-cluster{
  position:relative;
  width:min(78vw, 280px);
  height:min(78vw, 280px);
  margin:10px auto 22px;
}
.avatar-ring{
  position:absolute;
  border:1.5px dashed #CBD3DF;
  border-radius:50%;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.avatar-ring.r1{width:100%;height:100%;}
.avatar-ring.r2{width:67.8%;height:67.8%;}
.avatar-face{
  position:absolute;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy-500),var(--navy-300,#3D6BB3));
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  box-shadow:0 4px 12px rgba(11,22,38,0.25);
  border:2px solid #fff;
}
.avatar-face.center{
  width:34.3%;height:34.3%;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-size:clamp(20px, 8vw, 32px);
  z-index:3;
}
.time-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--success-bg);
  color:var(--success);
  font-weight:700;
  font-size:13.5px;
  padding:10px 14px;
  border-radius:10px;
  margin:0 auto 22px;
  max-width:fit-content;
}

/* ---------- info blocks (reveals / breaks) ---------- */
.info-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  margin-bottom:16px;
}
.alert-box{
  border-radius:14px;
  padding:14px 16px;
  text-align:center;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.5;
}
.alert-box.danger{background:var(--danger-bg);color:var(--danger);}
.alert-box.success{background:var(--success-bg);color:var(--success);}
.alert-box u{text-decoration:underline;}

.stat-line{
  display:flex;
  align-items:baseline;
  gap:6px;
  font-size:15px;
  margin-bottom:10px;
  line-height:1.5;
}
.stat-line b{
  background:#FCEFD0;
  padding:1px 6px;
  border-radius:5px;
}
.stat-num{font-weight:800;color:var(--navy-600);}

.chart-box{margin:16px 0 20px;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:14px 14px 6px;box-shadow:var(--shadow);}
.chart-box svg{display:block;width:100%;height:auto;}
.chart-labels{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:var(--text-muted);
  margin-top:4px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:16px 0;
}
.benefit-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  text-align:center;
}
.benefit-card .b-title{
  font-weight:700;
  color:var(--navy-600);
  background:#FCEFD0;
  display:inline-block;
  padding:2px 8px;
  border-radius:6px;
  margin-bottom:6px;
  font-size:13.5px;
}
.benefit-card .b-desc{font-size:12.5px;color:var(--text-muted);line-height:1.4;}

.check-list{list-style:none;padding:0;margin:14px 0 20px;display:flex;flex-direction:column;gap:8px;}
.check-list li{display:flex;align-items:center;gap:8px;font-weight:700;font-size:14.5px;}

/* ---------- loading / transition ---------- */
.loading-step{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.loading-row{
  display:flex;
  justify-content:space-between;
  font-weight:700;
  font-size:15px;
  margin-bottom:8px;
}
.loading-track{
  width:100%;height:10px;
  background:#E3E8F0;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:18px;
}
.loading-track .fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--navy-500),var(--navy-glow));
  border-radius:8px;
  transition:width .15s linear;
}
.loading-sub{
  text-align:center;
  color:var(--danger);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.news-insert{margin-top:22px;}
.news-card{
  background:var(--card);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.news-card .news-top{
  background:#F4EEDD;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:800;
  font-family:Georgia,'Times New Roman',serif;
  border-bottom:1px solid #E5DBC0;
}
.news-card .news-body{padding:14px 16px;}
.news-card .news-headline{
  font-family:Georgia,'Times New Roman',serif;
  font-size:17px;
  font-weight:700;
  line-height:1.35;
  margin-bottom:10px;
}
.news-card .news-headline u{text-decoration:underline;}

/* ---------- testimonials ---------- */
.testi-wrap{margin-top:22px;}
.testi-track{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:4px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{display:none;}
.testi-card{
  scroll-snap-align:start;
  flex:0 0 86%;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.testi-carousel{margin-top:22px;}
.testi-carousel-viewport{overflow:hidden;border-radius:14px;box-shadow:var(--shadow);}
.testi-carousel-track{
  display:flex;
  width:100%;
  transition:transform .55s ease-in-out;
}
.testi-slide{flex:0 0 100%;min-width:0;}
.testi-dots{display:flex;justify-content:center;align-items:center;gap:7px;margin-top:12px;}
.testi-dots .dot{
  width:7px;height:7px;
  border-radius:50%;
  background:#CBD3DF;
  transition:background .3s ease, transform .3s ease;
}
.testi-dots .dot.active{background:var(--navy-500);transform:scale(1.35);}

/* ---------- VSL / offer ---------- */
.vsl-page{
  min-height:calc(100vh - 24px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 0;
}
.vsl-wrap{
  width:min(92vw, 380px);
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:var(--shadow);
  position:relative;
}
.vsl-frame{
  width:100%;
  aspect-ratio:9/16;
  position:relative;
  background:linear-gradient(180deg,#10121A,#000);
}
.vsl-frame video{
  width:100%;height:100%;
  object-fit:contain;
  display:block;
}
.vsl-frame .vsl-placeholder{
  position:absolute;inset:0;
  z-index:1;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:#fff;
  text-align:center;
  padding:24px;
  gap:10px;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
}
.vsl-frame .vsl-placeholder .ph-icon{font-size:34px;}
.vsl-cover{
  position:absolute;inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:rgba(7,12,22,0.5);
  cursor:pointer;
  transition:opacity .35s ease, visibility 0s;
}
.vsl-cover.hidden{opacity:0;visibility:hidden;pointer-events:none;}
.vsl-sound-icon{
  width:64px;height:64px;
  border-radius:50%;
  background:rgba(255,255,255,0.16);
  border:2px solid rgba(255,255,255,0.85);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  color:#fff;
  animation:soundPulse 1.7s infinite;
}
@keyframes soundPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,0.35);}
  50%{box-shadow:0 0 0 14px rgba(255,255,255,0);}
}
.vsl-cover-text{
  color:#fff;
  font-size:13.5px;
  font-weight:600;
  text-align:center;
  padding:0 28px;
}
.vsl-progress-bar{
  width:min(92vw, 380px);
  height:5px;
  margin:0 auto;
  border-radius:6px;
  background:#E3E8F0;
  overflow:hidden;
}
.vsl-progress-bar .fill{
  height:100%;
  width:0%;
  background:var(--danger);
  transition:width .25s linear;
}
.vsl-cta{
  width:min(92vw, 380px);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .5s ease, transform .5s ease, visibility 0s;
}
.vsl-cta.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.vsl-viewers-pill{
  width:fit-content;
  max-width:92vw;
  margin:-4px auto 0;
  text-align:center;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  color:var(--navy-700);
  font-size:12px;
  font-weight:700;
  padding:7px 14px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform:translateY(4px);
  transition:opacity .5s ease, transform .5s ease, visibility 0s;
}
.vsl-viewers-pill.show{opacity:1;visibility:visible;transform:translateY(0);}
.vsl-viewers-pill .dot{
  width:7px;height:7px;border-radius:50%;
  background:#39D67A;
  box-shadow:0 0 0 0 rgba(57,214,122,0.6);
  animation:viewerPulse 1.8s infinite;
}
@keyframes viewerPulse{
  0%{box-shadow:0 0 0 0 rgba(57,214,122,0.6);}
  70%{box-shadow:0 0 0 6px rgba(57,214,122,0);}
  100%{box-shadow:0 0 0 0 rgba(57,214,122,0);}
}
.vsl-cta-strong{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  background:linear-gradient(135deg,#1E8E5A,#27AE6E);
  box-shadow:0 10px 26px rgba(30,142,90,0.42);
  padding:14px 18px;
}
.vsl-cta-title{font-size:15.5px;font-weight:800;color:#fff;letter-spacing:.2px;}
.vsl-cta-sub{font-size:11.5px;font-weight:600;color:rgba(255,255,255,0.88);}

.offer-block{
  animation:stepIn .5s ease both;
  margin-top:4px;
}

/* ---------- pantalla de revelación animada del descuento ---------- */
.reveal-page{
  min-height:calc(100vh - 24px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:24px 0;
}
.reveal-eyebrow{
  font-size:15px;
  font-weight:800;
  color:var(--navy-600);
  text-align:center;
  margin:0;
  letter-spacing:.3px;
}
.reveal-ticket{
  width:min(86vw, 320px);
  border-radius:20px;
  overflow:visible;
  background:#fff;
  box-shadow:0 16px 40px rgba(20,40,74,0.22);
  transform:scale(.55) rotate(-6deg);
  opacity:0;
  transition:transform .65s cubic-bezier(.34,1.56,.64,1), opacity .5s ease;
}
.reveal-ticket.show{
  transform:scale(1) rotate(0deg);
  opacity:1;
}
.reveal-ticket-top{
  background:linear-gradient(135deg,var(--navy-700),var(--navy-500));
  border-radius:20px 20px 0 0;
  padding:26px 16px 22px;
  text-align:center;
  color:#fff;
}
.reveal-ticket-percent{font-size:42px;font-weight:800;letter-spacing:.5px;}
.reveal-ticket-percent-sub{font-size:13px;font-weight:700;letter-spacing:1px;opacity:.9;margin-top:2px;}
.reveal-ticket-perforation{
  position:relative;
  height:0;
  border-top:2px dashed #D8DEE8;
  margin:0 14px;
}
.reveal-ticket-perforation .hole{
  position:absolute;
  top:-8px;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--bg);
  box-shadow:inset 0 0 0 1px #E3E7ED;
}
.reveal-ticket-perforation .hole.left{left:-22px;}
.reveal-ticket-perforation .hole.right{right:-22px;}
.reveal-ticket-bottom{
  background:#fff;
  border-radius:0 0 20px 20px;
  padding:20px 18px 24px;
  text-align:center;
}
.reveal-applied{
  display:inline-block;
  background:var(--success-bg);
  color:var(--success);
  font-weight:800;
  font-size:15px;
  padding:11px 20px;
  border-radius:10px;
}
.reveal-sub{
  width:min(86vw, 320px);
  text-align:center;
  font-size:14px;
  line-height:1.55;
  color:var(--text-muted);
  margin:0;
}
.price-box{
  border:1.5px solid var(--navy-400);
  border-radius:12px;
  overflow:hidden;
  margin-bottom:10px;
  box-shadow:var(--shadow);
}
.price-top-bar{
  background:var(--navy-600);
  color:#fff;
  text-align:center;
  font-weight:700;
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
  padding:7px;
}
.price-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 16px;
  background:var(--card);
}
.price-old{
  text-decoration:line-through;
  color:var(--danger);
  font-size:15px;
  font-weight:600;
}
.price-promo{display:flex;flex-direction:column;align-items:flex-end;}
.price-off-badge{
  background:#FFE3C2;
  color:#9A5A14;
  font-size:10px;
  font-weight:800;
  padding:2px 6px;
  border-radius:5px;
  margin-bottom:2px;
}
.price-new{font-size:26px;font-weight:800;color:var(--navy-700);line-height:1;}
.price-per{font-size:10.5px;color:var(--text-muted);}

.section-title{
  text-align:center;
  font-weight:800;
  color:var(--navy-700);
  font-size:21px;
  line-height:1.3;
  letter-spacing:.2px;
  margin:36px 0 16px;
}
.includes-list{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:9px;}
.includes-list li{
  display:flex;
  gap:9px;
  font-size:15px;
  line-height:1.48;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:10px;
  padding:11px 13px;
}

.coach-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:22px 18px;
  box-shadow:var(--shadow);
  margin:8px 0 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.coach-photo-wrap{
  width:clamp(120px, 34vw, 168px);
  margin:0 auto;
  border-radius:20px;
  overflow:hidden;
  border:3px solid var(--gold);
  box-shadow:var(--shadow);
  flex-shrink:0;
}
.coach-photo-wrap .ph-coach{border-radius:0;}
.coach-card-body p{font-size:14.5px;line-height:1.6;color:var(--text);margin:7px 0;text-align:left;}
.coach-card-body p b{color:var(--navy-600);}

.sticky-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:30;
  background:linear-gradient(180deg,rgba(244,246,249,0),var(--bg) 30%);
  padding:14px 20px 18px;
  display:flex;
  justify-content:center;
}
.sticky-cta .btn{max-width:520px;}

footer.placeholder-note{
  text-align:center;
  font-size:11px;
  color:var(--text-muted);
  margin-top:8px;
}

@media (max-width:380px){
  .headline{font-size:22px;}
  .app-main{padding-left:16px;padding-right:16px;}
  .options.grid-3{gap:7px;}
  .option-card.img-option .opt-label{font-size:12.5px;padding:8px 6px 10px;}
  .price-body{padding:9px 12px;}
  .price-new{font-size:23px;}
}

/* ============================================================
   PÁGINA DE OFERTA LARGA — bloques nuevos
   ============================================================ */

/* saludo + dolor/promesa */
.offer-top{margin-bottom:6px;}
.pain-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  margin-top:14px;
  box-shadow:var(--shadow);
}
.pain-card-title{font-weight:700;font-size:16px;margin:0 0 10px;color:var(--text);}
.pain-list{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:9px;}
.pain-list li{font-size:15px;line-height:1.48;color:var(--text);}
.pain-card-promise{
  font-size:15px;
  line-height:1.6;
  color:var(--navy-700);
  background:#EEF3FA;
  border-radius:10px;
  padding:13px 14px;
  margin:0;
}

/* headline emocional de apertura */
.offer-emotional{text-align:center;margin:22px 0 6px;}
.offer-emotional-headline{
  font-size:25px;
  font-weight:800;
  line-height:1.32;
  color:var(--navy-800);
  margin:0 0 8px;
}
.offer-emotional-headline .accent{color:var(--navy-500);}
.offer-emotional-sub{
  font-size:15.5px;
  font-weight:600;
  color:var(--text-muted);
  margin:0;
}

/* contador de urgencia */
.urgency-banner{
  background:linear-gradient(135deg,var(--orange),#C53A3A);
  border-radius:14px;
  padding:16px 16px;
  text-align:center;
  color:#fff;
  margin:26px 0;
  box-shadow:0 8px 20px rgba(224,105,46,0.3);
}
.urgency-label{font-weight:800;font-size:14.5px;letter-spacing:.3px;margin-bottom:7px;}
.urgency-timer{font-size:28px;font-weight:800;letter-spacing:1px;font-family:'Inter',monospace;}
.urgency-sub{font-size:12px;opacity:.92;margin-top:5px;}

/* comparativo SIN / CON */
.comparison-title{
  text-align:center;
  font-weight:800;
  font-size:20px;
  line-height:1.3;
  color:var(--navy-800);
  margin:32px 0 16px;
}
.comparison-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:30px;}
.comparison-col{border-radius:16px;padding:18px 13px;border:2px solid var(--line);}
.comparison-col.without{background:#FBEAE5;border-color:#E8B9AC;}
.comparison-col.with{background:var(--success-bg);border-color:#9FD6BA;}
.comparison-head{font-weight:800;font-size:15.5px;text-align:center;margin-bottom:14px;line-height:1.3;}
.comparison-col.without .comparison-head{color:var(--danger);}
.comparison-col.with .comparison-head{color:var(--success);}
.comparison-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:11px;}
.comparison-list li{display:flex;align-items:flex-start;gap:6px;font-size:13.5px;line-height:1.42;}
.comparison-list li span:last-child{flex:1;min-width:0;}
.comparison-col.without .comparison-list li{color:#8A4A3D;}
.comparison-col.with .comparison-list li{color:#1F6B49;}
.ic-no, .ic-yes{font-size:16px;font-weight:800;flex-shrink:0;line-height:1.42;}
.ic-no{color:var(--danger);}
.ic-yes{color:var(--success);}

/* card de oferta rico */
.big-offer-card{
  border-radius:18px;
  overflow:hidden;
  margin:28px 0;
  box-shadow:0 0 0 1.5px var(--navy-400), 0 12px 32px rgba(45,92,148,0.28);
}
.big-offer-flag{
  background:var(--navy-600);
  color:#fff;
  text-align:center;
  font-weight:800;
  font-size:13px;
  padding:10px;
  letter-spacing:.3px;
}
.big-offer-spots{
  background:#FFF4E0;
  color:#9A5A14;
  text-align:center;
  font-weight:700;
  font-size:12.5px;
  padding:8px 10px;
  border-bottom:1px dashed #F0D8A8;
}
.big-offer-spots b{font-weight:800;}
.big-offer-body{
  background:var(--card);
  padding:18px 16px;
  text-align:center;
  position:relative;
}
.big-offer-stack{
  font-size:12.5px;
  font-weight:700;
  color:var(--navy-600);
  background:#EEF3FA;
  border-radius:8px;
  padding:6px 10px;
  display:inline-block;
  margin-bottom:8px;
}
.big-offer-off{
  position:absolute;
  top:12px;right:12px;
  background:var(--orange);
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:4px 10px;
  border-radius:8px;
}
.big-offer-old{font-size:13.5px;color:var(--text-muted);margin-bottom:4px;}
.big-offer-old span{text-decoration:line-through;color:var(--danger);font-weight:600;}
.big-offer-new{font-size:44px;font-weight:800;color:var(--navy-700);line-height:1;margin:4px 0;}
.big-offer-newsub{font-size:12.5px;color:var(--text-muted);margin-bottom:8px;}
.big-offer-savings{
  display:inline-block;
  background:var(--success-bg);
  color:var(--success);
  font-weight:700;
  font-size:12.5px;
  padding:4px 10px;
  border-radius:8px;
  margin-bottom:10px;
}
.big-offer-secure{font-size:11.5px;color:var(--text-muted);margin-bottom:14px;}
.big-offer-body .btn{margin:0;}

/* selos de medios de pago */
.payment-badges{display:flex;justify-content:center;align-items:center;gap:8px;margin:12px 0 4px;}
.pay-badge{
  display:flex;align-items:center;justify-content:center;
  height:24px;padding:0 10px;
  border-radius:5px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:800;font-size:10.5px;letter-spacing:.4px;
  box-shadow:0 1px 3px rgba(11,22,38,0.08);
}
.pay-badge.visa{color:#1A1F71;font-style:italic;}
.pay-badge.amex{color:#016FD0;}
.pay-badge.mc{width:44px;gap:0;}
.mc-circle{width:15px;height:15px;border-radius:50%;display:inline-block;}
.mc-circle.red{background:#EB001B;margin-right:-6px;z-index:1;}
.mc-circle.yellow{background:#F79E1B;opacity:.9;}

/* bonos */
.bonus-list{display:flex;flex-direction:column;gap:12px;margin-top:14px;margin-bottom:12px;}
.bonus-card{
  background:var(--card);
  border:1.5px solid var(--success-bg);
  border-radius:14px;
  padding:15px 15px;
  box-shadow:var(--shadow);
}
.bonus-card-top{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;}
.bonus-name{font-weight:700;font-size:14.5px;color:var(--navy-700);flex:1;min-width:0;}
.bonus-gratis{
  background:var(--success);
  color:#fff;
  font-weight:800;
  font-size:11px;
  padding:3px 9px;
  border-radius:7px;
  flex-shrink:0;
}
.bonus-desc{font-size:13.5px;line-height:1.5;color:var(--text-muted);margin:0 0 7px;}
.bonus-value{font-size:13px;color:var(--text);}
.bonus-value-strike{text-decoration:line-through;color:var(--danger);font-weight:700;}
.bonus-total{
  text-align:center;
  font-weight:800;
  color:var(--success);
  background:var(--success-bg);
  border-radius:10px;
  padding:12px;
  font-size:14.5px;
  margin-bottom:28px;
}

/* resumen de la oferta */
.summary-card{
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  margin-top:14px;
  box-shadow:var(--shadow);
}
.summary-row{font-size:14px;line-height:1.65;color:var(--text);padding:4px 0;border-bottom:1px dashed var(--line);}
.summary-row:last-of-type{border-bottom:none;}
.summary-total-row, .summary-today-row{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:10px;
  font-weight:700;
  font-size:14px;
}
.summary-total-old{text-decoration:line-through;color:var(--danger);}
.summary-today-row{
  background:var(--success-bg);
  border-radius:8px;
  padding:8px 10px;
  margin-top:6px;
}
.summary-today-new{color:var(--success);font-size:20px;font-weight:800;}

/* garantía */
.guarantee-card{
  background:linear-gradient(135deg,#FCF6E8,#F4F6F9);
  border:1.5px solid var(--gold);
  border-radius:var(--radius);
  padding:30px 20px 26px;
  text-align:center;
  margin:32px 0;
}
.guarantee-seal{width:150px;height:150px;margin:0 auto 20px;position:relative;}
.guarantee-seal svg{width:100%;height:100%;display:block;filter:drop-shadow(0 8px 16px rgba(20,40,74,0.22));}
.guarantee-seal-text{
  position:absolute;top:38%;left:50%;
  transform:translate(-50%,-50%);
  color:#fff;
  font-weight:800;
  font-size:18px;
  line-height:1.22;
  letter-spacing:.5px;
  text-align:center;
}
.guarantee-seal-ribbon{
  position:absolute;left:50%;top:75%;
  transform:translate(-50%,-50%) rotate(-3deg);
  background:var(--danger);
  color:#fff;
  font-weight:800;
  font-size:10.5px;
  letter-spacing:.4px;
  padding:6px 13px;
  border-radius:3px;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
  white-space:nowrap;
}
.guarantee-seal-ribbon::before, .guarantee-seal-ribbon::after{
  content:'';
  position:absolute;
  top:100%;
  width:0;height:0;
  border-style:solid;
}
.guarantee-seal-ribbon::before{
  left:0;
  border-width:5px 5px 0 0;
  border-color:#8E1A1A transparent transparent transparent;
}
.guarantee-seal-ribbon::after{
  right:0;
  border-width:5px 0 0 5px;
  border-color:#8E1A1A transparent transparent transparent;
}
.guarantee-title{font-weight:800;font-size:20px;margin:0 0 12px;letter-spacing:.2px;color:var(--navy-800);}
.guarantee-title .accent-green{color:var(--success);}
.guarantee-title .accent-navy{color:var(--navy-700);}
.guarantee-text{font-size:14.5px;line-height:1.62;color:var(--text);margin:0;}
.guarantee-text .t-danger{color:var(--danger);}

/* placeholders de depoimentos (capturas de WhatsApp) — uno abajo del otro */
.testi-placeholder-grid{display:flex;flex-direction:column;gap:16px;margin:16px 0 10px;}
.ph-testi-vertical{aspect-ratio:9/16;border-radius:14px;font-size:13px;padding:14px;}
.ph-testi-vertical .ph-icon{font-size:26px;}

/* carrusel de 10 testimonios en texto */
.long-testi-carousel{margin:22px 0 12px;}
.long-testi-viewport{overflow:hidden;border-radius:14px;}
.long-testi-track{display:flex;transition:transform .55s ease-in-out;}
.long-testi-slide{
  flex:0 0 100%;
  min-width:0;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 18px;
  box-shadow:var(--shadow);
  text-align:center;
}
.long-testi-stars{color:#F0B429;font-size:17px;margin-bottom:9px;}
.long-testi-name{font-weight:700;font-size:15px;color:var(--navy-700);margin-bottom:7px;}
.long-testi-text{font-size:14.5px;line-height:1.6;color:var(--text);font-style:italic;}
.long-testi-dots{display:flex;justify-content:center;gap:6px;margin-top:14px;}

/* FAQ acordeón */
.faq-list{display:flex;flex-direction:column;gap:9px;margin-top:14px;margin-bottom:26px;}
.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
}
.faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:15px 15px;
  font-weight:700;
  font-size:15px;
  color:var(--navy-700);
  cursor:pointer;
}
.faq-q-text{flex:1;min-width:0;}
.faq-chevron{font-size:16px;transition:transform .25s ease;color:var(--navy-400);flex-shrink:0;}
.faq-item.open .faq-chevron{transform:rotate(180deg);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-item.open .faq-answer{max-height:300px;}
.faq-answer p{font-size:13.5px;line-height:1.58;color:var(--text-muted);margin:0;padding:0 15px 15px;}

@media (max-width:380px){
  .comparison-title{font-size:17px;margin:26px 0 13px;}
  .comparison-grid{gap:7px;}
  .comparison-col{padding:13px 9px;}
  .comparison-head{font-size:13.5px;}
  .comparison-list li{font-size:12px;}
  .ic-no, .ic-yes{font-size:14px;}
  .big-offer-new{font-size:38px;}
  .urgency-timer{font-size:22px;}
  .offer-emotional-headline{font-size:21px;}
  .offer-emotional-sub{font-size:14px;}
  .section-title{font-size:18px;margin:28px 0 13px;}
  .guarantee-seal{width:120px;height:120px;}
  .guarantee-seal-text{font-size:14px;}
  .guarantee-seal-ribbon{font-size:9px;padding:5px 10px;}
  .testi-placeholder-grid{gap:7px;}
  .coach-card{padding:18px 14px;}
}
