/* ==========================================================================
   Landing "Transforma tu voz en 8 semanas"
   Visual system: cream / navy / orange / gold  ·  Instrument Serif + Inter + Caveat
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;600;700&family=Caveat:wght@500&display=swap');

/* ── Reset & root tokens ───────────────────────────────────────────────── */
.landing-voz {
  --cream:           #fdf8f2;
  --cream-soft:      #faf2e3;
  --cream-card:      #fcf5e8;
  --cream-line:      #efe2c8;
  --navy:            #0c2548;
  --navy-2:          #1a3a66;
  --navy-soft:       #122f54;
  --ink:             #0c2548;
  --ink-2:           #2a3a55;
  --ink-mute:        #6a7390;
  --ink-onnavy:      #fdf8f2;
  --ink-onnavy-2:    #d6c5b0;
  --ink-onnavy-mute: #9aa3b8;
  --urgent:          #f03c00;
  --urgent-soft:     #ffeae0;
  --coral:           #f0857d;
  --gold:            #e1960f;
  --gold-2:          #c98208;
  --gold-soft:       #f0c25c;
  --gold-line:       rgba(225,150,15,.5);
  --gold-line-soft:  rgba(225,150,15,.3);

  --radius-card: 14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --font-display: "Instrument Serif","Cormorant Garamond",Georgia,serif;
  --font-body:    "Inter","Helvetica Neue",system-ui,sans-serif;
  --font-script:  "Caveat","Kalam",cursive;

  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.landing-voz *, .landing-voz *::before, .landing-voz *::after { box-sizing: border-box; }
.landing-voz p  { margin: 0; color: var(--ink-2); line-height: 1.6; }
.landing-voz h1,.landing-voz h2,.landing-voz h3 {
  margin: 0; font-family: var(--font-display);
  font-weight: 400; letter-spacing: -.005em; line-height: 1.05; text-wrap: balance;
}
.landing-voz h4 {
  margin: 0; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .01em; line-height: 1.2; text-transform: uppercase;
}
.landing-voz em.italic, .landing-voz .lp-italic {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
}
.landing-voz .lp-script {
  font-family: var(--font-script); font-weight: 500; letter-spacing: 0;
}
.landing-voz .lp-muted   { color: var(--ink-mute); }
.landing-voz .lp-gold    { color: var(--gold); }
.landing-voz .lp-red     { color: var(--urgent); }
.landing-voz b,.landing-voz strong { font-weight: 700; }

/* ── Section themes ────────────────────────────────────────────────────── */
.lp-section { position: relative; background: var(--cream); }
.lp-section.theme-navy {
  background: var(--navy);
  color: var(--ink-onnavy);
}
.lp-section.theme-navy h1,
.lp-section.theme-navy h2,
.lp-section.theme-navy h3,
.lp-section.theme-navy h4 { color: var(--ink-onnavy); }
.lp-section.theme-navy p  { color: var(--ink-onnavy-2); }

/* Decorative gold wave top-right (cream sections) */
.lp-section.theme-cream::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 180px; height: 140px;
  pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 220' fill='none' stroke='%23e1960f' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M280 30 C 230 20, 180 40, 130 50' opacity='.6'/%3E%3Cpath d='M280 60 C 220 50, 170 80, 110 90' opacity='.5'/%3E%3Cpath d='M280 95 C 220 90, 170 120, 110 135' opacity='.4'/%3E%3Cpath d='M280 130 C 230 130, 180 160, 130 175' opacity='.3'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: top right;
}

/* ── Container & section padding ──────────────────────────────────────── */
.lp-container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.lp-section-pad { padding-top: 60px; padding-bottom: 60px; }

@media (min-width: 768px) {
  .lp-container {
    max-width: 1280px;
    padding-left: 80px;
    padding-right: 80px;
  }
  .lp-section-pad { padding-top: 35px; padding-bottom: 35px; }
}

/* ── Typography scale ─────────────────────────────────────────────────── */
.landing-voz h1 { font-size: 44px; line-height: 1.05; }
.landing-voz h2 { font-size: 36px; line-height: 1.08; }
.landing-voz h3 { font-size: 24px; }
.landing-voz h4 { font-size: 14px; }
.landing-voz p  { font-size: 15px; }

@media (min-width: 768px) {
  .landing-voz h1 { font-size: 92px; }
  .landing-voz h2 { font-size: 64px; }
  .landing-voz h3 { font-size: 32px; }
  .landing-voz h4 { font-size: 18px; }
  .landing-voz p  { font-size: 18px; }
}

/* ── Stack utilities ──────────────────────────────────────────────────── */
.lp-stack-8  > * + * { margin-top: 8px; }
.lp-stack-12 > * + * { margin-top: 12px; }
.lp-stack-16 > * + * { margin-top: 16px; }
.lp-stack-20 > * + * { margin-top: 20px; }
.lp-stack-24 > * + * { margin-top: 24px; }
.lp-stack-32 > * + * { margin-top: 32px; }
.lp-stack-40 > * + * { margin-top: 40px; }
.lp-stack-56 > * + * { margin-top: 56px; }

/* ── Fancy gold divider  ─ ✦ ─ ───────────────────────────────────────── */
.lp-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 0 auto; color: var(--gold);
}
.lp-divider::before,.lp-divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--gold-line); max-width: 80px;
}
.lp-divider .spk { font-family: var(--font-display); font-size: 12px; line-height: 1; transform: translateY(-1px); }
.lp-divider.red { color: var(--urgent); }
.lp-divider.red::before,.lp-divider.red::after { background: rgba(240,60,0,.4); }

/* ── Dashed gold line ─────────────────────────────────────────────────── */
.lp-dashed {
  height: 1px; border: 0;
  background-image: linear-gradient(90deg,var(--gold-line) 50%,transparent 50%);
  background-size: 6px 1px;
}

/* ── Gold underline curl ──────────────────────────────────────────────── */
.lp-underline { display: inline-block; position: relative; }
.lp-underline::after {
  content: ""; position: absolute; left: 5%; right: 5%; bottom: -8px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none' fill='none' stroke='%23e1960f' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M2 4 Q 25 1, 50 4 T 98 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 100% 100%;
}

/* ── Cards ────────────────────────────────────────────────────────────── */
.lp-card-bordered {
  background: var(--cream-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-card);
  padding: 20px 16px;
}
@media (min-width: 768px) { .lp-card-bordered { padding: 28px 24px; } }

.lp-section.theme-navy .lp-card-bordered {
  background: rgba(253,248,242,.04);
  border-color: rgba(225,150,15,.55);
}

/* ── Circular icon containers ─────────────────────────────────────────── */
.lp-circle {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; flex-shrink: 0;
}
.lp-circle.navy    { background: var(--navy); color: var(--gold); }
.lp-circle.outline { background: var(--cream); border: 1.5px solid var(--gold); color: var(--navy); }
.lp-circle.coral   { background: var(--coral); color: #fff; font-family: var(--font-body); font-weight: 700; }
.lp-circle.orange  { background: var(--urgent); color: #fff; }
.lp-circle.gold-bg { background: var(--gold); color: var(--navy); }

.lp-section.theme-navy .lp-circle.outline { background: transparent; color: var(--gold); }

.lp-circle.sm { width: 36px; height: 36px; }
.lp-circle.md { width: 52px; height: 52px; }
.lp-circle.lg { width: 72px; height: 72px; }
.lp-circle.xl { width: 96px; height: 96px; }

/* ── Brush band ───────────────────────────────────────────────────────── */
.lp-brush {
  position: relative; display: inline-block;
  background: var(--navy); color: var(--ink-onnavy);
  padding: 10px 32px;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 50' preserveAspectRatio='none'%3E%3Cpath d='M 5 12 Q 0 18, 4 25 T 10 38 L 30 42 L 60 38 L 110 41 L 180 39 L 250 42 L 320 38 L 380 41 Q 396 38, 395 30 T 393 18 Q 396 10, 388 8 L 350 6 L 280 9 L 200 6 L 120 9 L 50 6 Q 15 4, 5 12 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; -webkit-mask-repeat: no-repeat;
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 50' preserveAspectRatio='none'%3E%3Cpath d='M 5 12 Q 0 18, 4 25 T 10 38 L 30 42 L 60 38 L 110 41 L 180 39 L 250 42 L 320 38 L 380 41 Q 396 38, 395 30 T 393 18 Q 396 10, 388 8 L 350 6 L 280 9 L 200 6 L 120 9 L 50 6 Q 15 4, 5 12 Z' fill='black'/%3E%3C/svg%3E");
          mask-size: 100% 100%; mask-repeat: no-repeat;
}
.lp-brush.gold { background: var(--gold); color: var(--navy); }

/* ── Pill ─────────────────────────────────────────────────────────────── */
.lp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--ink-onnavy);
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
}
.lp-pill.gold    { background: var(--gold); color: var(--navy); }
.lp-pill.outline { background: transparent; border: 1px solid var(--gold); color: var(--navy); }

/* ── Strike-through price ─────────────────────────────────────────────── */
.lp-strike {
  position: relative; display: inline-block;
  color: var(--urgent); font-family: var(--font-display); font-weight: 400;
}
.lp-strike::after {
  content: ""; position: absolute;
  left: -8%; right: -8%; top: 55%;
  height: 2px; background: var(--navy); transform: rotate(-12deg);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--urgent); color: #fff; border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
  font-size: 13px; padding: 16px 24px;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .15s ease;
  box-shadow: 0 12px 32px -12px rgba(240,60,0,.5);
  width: 100%;
}
.lp-btn:hover { transform: translateY(-1px); }
@media (min-width: 768px) {
  .lp-btn { font-size: 14px; padding: 18px 40px; min-width: 280px; width: auto; }
}
.lp-btn.navy { background: var(--navy); color: var(--cream); box-shadow: 0 12px 32px -12px rgba(12,37,72,.4); }

/* ── Image placeholder ────────────────────────────────────────────────── */
.lp-img {
  position: relative; width: 100%; overflow: hidden;
  background: repeating-linear-gradient(135deg,var(--cream-soft) 0 14px,#f1e6c8 14px 28px);
  border: 1px solid var(--cream-line);
  display: flex; align-items: center; justify-content: center;
}
.lp-img::after {
  content: attr(data-label);
  font-family: var(--font-body); font-size: 11px; letter-spacing: .14em;
  color: var(--gold); text-transform: uppercase;
  padding: 6px 12px; border: 1px dashed var(--gold);
  background: rgba(253,248,242,.9); border-radius: 4px;
}

/* ── Grids ────────────────────────────────────────────────────────────── */
.lp-grid-2 { display: grid; gap: 16px; grid-template-columns: 1fr; }
.lp-grid-3 { display: grid; gap: 14px; grid-template-columns: 1fr; }
.lp-grid-4 { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.lp-grid-2col-mobile { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }

@media (min-width: 768px) {
  .lp-grid-2       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-grid-3       { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .lp-grid-4       { grid-template-columns: repeat(4,1fr); gap: 20px; }
  .lp-grid-2col-mobile { grid-template-columns: repeat(3,1fr); gap: 22px; }
}

/* ── Text alignment helpers ───────────────────────────────────────────── */
.lp-text-center { text-align: center; }

/* ── Trust badges ─────────────────────────────────────────────────────── */
.lp-trust {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--navy); font-size: 13px;
}
@media (min-width: 768px) { .lp-trust { flex-direction: row; justify-content: center; gap: 28px; } }
.lp-trust span { display: inline-flex; gap: 8px; align-items: center; }
.lp-trust .ic  { color: var(--urgent); }

/* ==========================================================================
   Section-specific styles
   ========================================================================== */

/* ── S1 Hero ───────────────────────────────────────────────────────────── */
.lp-hero-img img { display: block; width: 100%; height: auto; }
.lp-hero-desktop { display: none; }
.lp-hero-mobile  { display: block; }
@media (min-width: 768px) {
  .lp-hero-desktop { display: block; }
  .lp-hero-mobile  { display: none; }
}

/* ── S2 — Pillar cards ────────────────────────────────────────────────── */
.lp-s2-grid { display: flex; flex-direction: column; gap: 20px; }
.lp-s2-sep  { display: none; }
@media (min-width: 768px) {
  .lp-s2-grid { flex-direction: row; gap: 0; align-items: stretch; }
  .lp-s2-grid > .lp-card-bordered { flex: 1 1 0; min-width: 0; }
  .lp-s2-sep  { display: flex; align-items: center; justify-content: center; padding: 0 16px; flex-shrink: 0; }
}

/* ── S5 — Numbered cards ──────────────────────────────────────────────── */
.lp-s5-card {
  position: relative; padding-top: 30px; text-align: center;
}
.lp-s5-num {
  position: absolute; top: -14px; left: 14px;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  border: 3px dashed var(--cream);
}
.lp-s5-icon {
  background: var(--cream-soft); border-radius: 999px;
  width: 60px; height: 60px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .lp-s5-icon { width: 76px; height: 76px; } }

/* ── S6 — Para ti si ──────────────────────────────────────────────────── */
.lp-s6-split { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .lp-s6-split { grid-template-columns: 1fr 1px 1fr; gap: 56px; align-items: start; }
}
.lp-s6-sep-line {
  display: none;
  width: 1px; background: var(--gold-line); min-height: 400px;
  position: relative; justify-self: center;
}
@media (min-width: 768px) { .lp-s6-sep-line { display: block; } }
.lp-s6-bullet {
  display: flex; gap: 14px; align-items: center;
  background: var(--cream-card); border: 1px solid var(--gold-line);
  border-radius: 999px; padding: 12px 18px;
}

/* ── S7 — Profesionales ───────────────────────────────────────────────── */
.lp-s7-bio {
  display: grid; gap: 20px;
  grid-template-columns: 120px 1fr; align-items: center; padding: 28px;
}
@media (min-width: 768px) { .lp-s7-bio { grid-template-columns: 150px 1fr; } }
.lp-s7-photo {
  border-radius: 999px; border: 2px solid var(--gold);
  width: 120px; height: 120px; overflow: hidden;
}
@media (min-width: 768px) { .lp-s7-photo { width: 150px; height: 150px; } }
.lp-s7-bottom { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .lp-s7-bottom { grid-template-columns: 1.4fr 1fr; } }

/* ── Bonus — split layout ─────────────────────────────────────────────── */
.lp-bonus-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .lp-bonus-split { grid-template-columns: 1.05fr 1fr; gap: 40px; } }

.lp-bonus-band {
  margin-top: 28px; background: var(--navy); border-radius: 999px;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--ink-onnavy);
}
@media (min-width: 768px) { .lp-bonus-band { padding: 18px 32px; } }

/* ── Bonus exclusive ──────────────────────────────────────────────────── */
.lp-bonus-exc-split { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 768px) { .lp-bonus-exc-split { grid-template-columns: 1.05fr 1fr; gap: 40px; } }

.lp-exc-items { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lp-exc-items { grid-template-columns: 1fr 1fr; } }

.lp-exc-band {
  margin-top: 28px; background: var(--navy); border-radius: 8px;
  padding: 14px 20px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: center; color: var(--ink-onnavy);
}
@media (min-width: 768px) {
  .lp-exc-band { grid-template-columns: auto 1fr auto; padding: 20px 32px; }
}

/* ── Price block (bonus) ──────────────────────────────────────────────── */
.lp-price-block {
  display: grid; gap: 12px; align-items: center;
  grid-template-columns: auto 1fr 1fr;
  padding: 14px;
}
@media (min-width: 768px) { .lp-price-block { grid-template-columns: auto 1fr 1fr 1.2fr; gap: 20px; padding: 22px; } }

.lp-price-block .free-label {
  grid-column: 1 / -1; text-align: center; margin-top: 8px;
}
@media (min-width: 768px) { .lp-price-block .free-label { grid-column: auto; margin-top: 0; } }

/* ── S12 — Todos los bonus ────────────────────────────────────────────── */
.lp-s12-cards { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lp-s12-cards { grid-template-columns: repeat(4,1fr); gap: 16px; } }

.lp-s12-summary {
  display: grid; gap: 12px; grid-template-columns: 1fr 1fr;
  background: var(--cream-card); border: 1px solid var(--gold-line);
  border-radius: 16px; padding: 18px;
}
@media (min-width: 768px) {
  .lp-s12-summary { grid-template-columns: repeat(4,1fr); gap: 18px; padding: 24px; }
}
.lp-s12-summary-cell {
  text-align: center; padding: 10px 6px;
}
@media (min-width: 768px) {
  .lp-s12-summary-cell {
    border-right: 1px dashed var(--gold-line); padding: 0 12px;
  }
  .lp-s12-summary-cell:last-child { border-right: none; }
}

/* ── S13 — Precios ────────────────────────────────────────────────────── */
.lp-s13-plans { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lp-s13-plans { grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: stretch; } }

.lp-plan-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--gold-line); border-radius: var(--radius-card);
  display: flex; flex-direction: column; background: var(--cream-card);
}
.lp-plan-card.featured {
  border-color: var(--gold); border-width: 2px;
  box-shadow: 0 24px 60px -28px rgba(225,150,15,.4);
}
.lp-plan-header {
  background: var(--navy); color: var(--ink-onnavy);
  padding: 14px 20px; text-align: center;
  font-weight: 700; font-size: 18px; letter-spacing: .06em;
}
.lp-plan-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column;
  gap: 16px; text-align: center; align-items: center;
}
@media (min-width: 768px) { .lp-plan-body { padding: 28px; } }
.lp-plan-ribbon {
  position: absolute; top: 14px; left: 0;
  background: var(--gold); color: var(--navy);
  padding: 5px 12px 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
  z-index: 2; line-height: 1.3;
}
.lp-plan-timeline {
  width: 100%; border: 1px solid var(--gold-line); border-radius: var(--radius-card);
  padding: 12px; display: grid; gap: 8px; align-items: center;
}

.lp-s13-stats { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lp-s13-stats { grid-template-columns: 1fr 1fr 1fr; gap: 18px; } }

.lp-stat-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 16px; align-items: center; padding: 20px;
}

/* ── CTA section ──────────────────────────────────────────────────────── */
.lp-cta-section {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  padding: 20px 20px; text-align: center;
}

/* ── Final CTA ────────────────────────────────────────────────────────── */
.lp-final-cta {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

/* ── Urgency band ─────────────────────────────────────────────────────── */
.lp-urgency {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: 14px; color: var(--navy);
}
@media (min-width: 768px) { .lp-urgency { font-size: 17px; } }

/* ── Eyebrow label ────────────────────────────────────────────────────── */
.lp-eyebrow {
  font-family: var(--font-body); text-transform: uppercase;
  letter-spacing: .18em; color: var(--navy); font-weight: 700; font-size: 13px;
}
