@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

.pv-white-page {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --surface-2: #F4F4F0;
  --surface-3: #EBEBE5;
  --text-main: #111827;
  --text-dim: #4B5563;
  --text-muted: #6B7280;
  
  --emerald: #047857;
  --emerald-dark: #065F46;
  --emerald-light: #ECFDF5;
  --emerald-border: #A7F3D0;
  --emerald-accent: #059669;

  --amber: #D97706;
  --amber-light: #FEF3C7;
  --amber-border: #FDE68A;

  --line: rgba(17, 24, 39, 0.08);
  --line-2: rgba(17, 24, 39, 0.16);

  --display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.pv-white-page * { box-sizing: border-box; }
.pv-white-page a { color: inherit; text-decoration: none; }
.pv-white-page img { max-width: 100%; display: block; }
.pv-white-page ::selection { background: var(--emerald-light); color: var(--emerald-dark); }
.pv-white-page a.btn, .pv-white-page button.btn { display: inline-block; text-decoration: none; text-align: center; }

.pv-white-page .wrap { max-width: 1140px; margin: 0 auto; padding: 0 34px; }
@media(max-width: 640px) {
  .pv-white-page .wrap { padding: 0 16px; }
}
.pv-white-page .eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.pv-white-page .eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--emerald);
}

.pv-white-page h1, .pv-white-page h2, .pv-white-page h3, .pv-white-page h4 {
  font-family: var(--display);
}

.pv-white-page h2.sh {
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--text-main);
}
.pv-white-page h2.sh .g { color: var(--emerald); }
.pv-white-page .sub { color: var(--text-muted); font-size: 15.5px; margin-top: 14px; max-width: 560px; }
.pv-white-page .section-head { max-width: 680px; margin-bottom: 52px; }
.pv-white-page section { padding: 80px 0; border-top: 1px solid var(--line); }

/* ---- HEADER ---- */
.pv-white-page header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.pv-white-page .hrow { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.pv-white-page .mark {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-main);
}
.pv-white-page .mark .g { color: var(--emerald); }
.pv-white-page nav { display: flex; gap: 32px; }
.pv-white-page nav a {
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  letter-spacing: .03em;
  transition: color .2s;
}
.pv-white-page nav a:hover { color: var(--emerald); }
.pv-white-page .h-cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--emerald);
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.25);
}
.pv-white-page .h-cta:hover { background: var(--emerald-dark); transform: translateY(-1px); }
@media(max-width: 900px) { .pv-white-page nav { display: none; } }

/* ---- HERO ---- */
.pv-white-page .hero { padding: 64px 0 76px; position: relative; overflow: hidden; border-top: none; }
.pv-white-page .hero::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 560px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(4, 120, 87, 0.09), transparent 65%);
}
.pv-white-page .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
@media(max-width: 900px) { .pv-white-page .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.pv-white-page h1 {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -.022em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--text-main);
}
.pv-white-page h1 .g { color: var(--emerald); }
.pv-white-page .lede { font-size: 16.5px; color: var(--text-dim); max-width: 490px; margin-bottom: 28px; line-height: 1.6; }

.pv-white-page .pricebar { display: flex; align-items: baseline; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.pv-white-page .p-now { font-weight: 800; font-size: 36px; letter-spacing: -.01em; color: var(--text-main); font-family: var(--display); }
.pv-white-page .p-was { font-family: var(--mono); font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.pv-white-page .p-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: var(--emerald-light);
  border: 1px solid var(--emerald-border);
  padding: 4px 10px;
  border-radius: 4px;
}
.pv-white-page .p-note { font-family: var(--mono); font-size: 12px; color: var(--text-muted); margin-bottom: 26px; }

.pv-white-page .btn {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--emerald);
  color: #ffffff;
  border: none;
  padding: 18px 34px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, background .22s;
  box-shadow: 0 10px 25px -5px rgba(4, 120, 87, 0.4);
}
.pv-white-page .btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(4, 120, 87, 0.5);
}

.pv-white-page .hero-assure { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.pv-white-page .hero-assure span { font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; }
.pv-white-page .hero-assure i { color: var(--emerald); font-style: normal; font-weight: 800; margin-right: 4px; }

/* Mockup Libro Hero */
.pv-white-page .book-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.pv-white-page .book-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  border: none;
  background: transparent;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 35px rgba(4, 120, 87, 0.12));
  animation: pv-hover-y 7s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes pv-hover-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---- STRIP DE 4 MÉTRICAS ---- */
.pv-white-page .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0; background: var(--surface); }
.pv-white-page .strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pv-white-page .strip-cell { padding: 30px 24px; border-left: 1px solid var(--line); }
.pv-white-page .strip-cell:first-child { border-left: none; }
.pv-white-page .strip-n { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--emerald); line-height: 1; margin-bottom: 8px; }
.pv-white-page .strip-l { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: .09em; text-transform: uppercase; }
@media(max-width: 760px) {
  .pv-white-page .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-white-page .strip-cell:nth-child(3) { border-left: none; }
  .pv-white-page .strip-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---- EL PROBLEMA (PULL QUOTE) ---- */
.pv-white-page .pull {
  font-weight: 700;
  font-size: clamp(23px, 3.2vw, 36px);
  line-height: 1.28;
  letter-spacing: -.01em;
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--text-main);
}
.pv-white-page .pull .g { color: var(--emerald); }
.pv-white-page .pnote { color: var(--text-dim); font-size: 15.5px; max-width: 640px; line-height: 1.7; }

/* ---- MATRIZ PARA QUIÉN / FILTRO ---- */
.pv-white-page .who { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; }
@media(max-width: 760px) { .pv-white-page .who { grid-template-columns: 1fr; } }
.pv-white-page .who-col { background: var(--surface); padding: 36px 32px; }
.pv-white-page .who-h { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 9px; }
.pv-white-page .who-h.yes { color: var(--emerald); }
.pv-white-page .who-h.no { color: var(--text-muted); }
.pv-white-page .who-li { display: flex; gap: 13px; padding: 11px 0; font-size: 14.5px; align-items: flex-start; color: var(--text-dim); }
.pv-white-page .who-li .m { flex-shrink: 0; font-family: var(--mono); font-size: 14px; font-weight: 700; }
.pv-white-page .who-col.yes .m { color: var(--emerald); }
.pv-white-page .who-col.no .m { color: #9CA3AF; }
.pv-white-page .who-disc { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ---- TARJETAS EDITORIALES LIMPIAS ---- */
.pv-white-page .editorial-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  max-width: 100%;
  box-sizing: border-box;
}
@media(max-width: 640px) {
  .pv-white-page .editorial-card {
    padding: 20px 16px;
  }
}

/* ---- SELLO GARANTÍA CIRCULAR ---- */
.pv-white-page .guar { background: var(--surface); border-top: 1px solid var(--emerald-border); border-bottom: 1px solid var(--emerald-border); }
.pv-white-page .guar-in { display: grid; grid-template-columns: 140px 1fr; gap: 40px; align-items: center; }
@media(max-width: 640px) { .pv-white-page .guar-in { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
.pv-white-page .seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  background: var(--emerald-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  margin: 0 auto;
}
.pv-white-page .seal .n { font-family: var(--display); font-weight: 800; font-size: 38px; color: var(--emerald); line-height: 1; }
.pv-white-page .seal .l { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--emerald-dark); }
.pv-white-page .guar h2 { font-family: var(--display); font-weight: 800; font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 10px; color: var(--text-main); }
.pv-white-page .guar p { color: var(--text-dim); font-size: 15px; max-width: 560px; }

/* ---- FAQ EDITORIAL CON ACORDEÓN ---- */
.pv-white-page .faq { max-width: 820px; }
.pv-white-page .fi { border-top: 1px solid var(--line); }
.pv-white-page .fi:last-child { border-bottom: 1px solid var(--line); }
.pv-white-page .fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-main);
}
.pv-white-page .fmk { font-family: var(--mono); font-size: 19px; color: var(--emerald); transition: transform .3s; flex-shrink: 0; font-weight: 700; }
.pv-white-page .fa { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.pv-white-page .fa p { padding: 0 0 22px; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; max-width: 660px; }
