
/* Fuentes propias (variables, solo latín): antes venían de Google Fonts en 7 archivos por 2 dominios y bloqueaban el primer pintado ~2 s en mobile (06/09). */
@font-face{font-family:'Lora';font-style:normal;font-weight:400 700;font-display:swap;src:url(fonts/lora-normal.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Lora';font-style:italic;font-weight:400 700;font-display:swap;src:url(fonts/lora-italic.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url(fonts/inter-normal.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:100 900;font-display:swap;src:url(fonts/montserrat-normal.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}


  :root {
    --bg:     #FBF8F3;   /* página de Biblia */
    --bg-2:   #F2EAE0;   /* franjas alternadas */
    --ink:    #1C1917;
    --mute:   #6B6259;
    --line:   #E4DACB;
    --red:    #A8261B;   /* la túnica */
    --red-2:  #C0392B;
    --red-3:  #8E1E14;
    --red-wash: rgba(168,38,27,.08);
    --gold:   #C9A24B;   /* solo sello y ticks */
    --green:  #1F8F52;   /* solo badge de ahorro (y burbujas de WhatsApp) */
    --dark:   #141210;   /* pantallas de la app */
    --serif: 'Lora', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mont:  'Montserrat', 'Inter', Arial, sans-serif;
    --wrap: 680px;
    --r: 14px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--sans); font-size: 16px; line-height: 1.65;
    -webkit-font-smoothing: antialiased; overflow-x: clip;
  }
  img, svg { max-width: 100%; display: block; }
  img { height: auto; }
  a { color: var(--red); }
  h1, h2, h3, h4 { font-family: var(--serif); margin: 0; line-height: 1.18; color: var(--ink); font-weight: 700; text-align: center; }
  h1 { font-size: 30px; letter-spacing: -.01em; }
  h2 { font-size: 26px; }
  h3 { font-size: 19px; font-weight: 600; }
  p { margin: 0 0 14px; }
  p:last-child { margin-bottom: 0; }
  strong { font-weight: 700; }
  .red { color: var(--red); }
  .muted { color: var(--mute); }
  .wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; min-width: 0; }
  .section { padding: 48px 0; }
  .tint { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .head { text-align: center; margin-bottom: 26px; }
  .head p { color: var(--mute); margin-top: 10px; }
  .eyebrow {
    display: inline-block; font-family: var(--mont); font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--red); margin-bottom: 12px;
  }
  .center { text-align: center; }
  .lead { font-size: 17px; color: var(--mute); }

  /* ── botones (solo dos en toda la página + el cierre, mismo destino) ── */
  .btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; padding: 17px 20px; border-radius: 14px; border: 0; cursor: pointer;
    background: linear-gradient(180deg, var(--red-2), var(--red-3));
    color: #fff; text-decoration: none; text-align: center;
    font-family: var(--mont); font-weight: 900; font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(168,38,27,.28), inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(168,38,27,.36), inset 0 1px 0 rgba(255,255,255,.18); }
  .btn:active { transform: translateY(0); }
  .btn-sub { display: block; font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: 0; opacity: .9; margin-top: 4px; }
  .micro { text-align: center; color: var(--mute); font-size: 13px; margin-top: 12px; line-height: 1.5; }
  .micro b { color: var(--ink); font-weight: 600; }

  /* ── ticks (dorado chico) ── */
  .ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
  .ticks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
  .ticks svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; }

  /* ── barra ── */
  .topbar {
    background: var(--red); color: #fff; text-align: center; font-family: var(--mont);
    font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 9px 12px;
  }

  /* ── 1. hero ── */
  .hero { padding: 34px 0 40px; text-align: center; }
  .badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px;
    border: 1.5px solid var(--red); border-radius: 999px; background: var(--red-wash);
    color: var(--red); font-family: var(--mont); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    line-height: 1.35; text-align: left;
  }
  .hero .badge { display: inline-block; max-width: 92%; text-align: center; white-space: normal; line-height: 1.35; margin-left: auto; margin-right: auto; }
  .hero h1 { margin: 16px 0 12px; }
  .hero h1 .red { display: block; font-size: .54em; white-space: normal; letter-spacing: 0; margin-top: 12px; line-height: 1.3; }
  .hero h1 .red .mec { display: block; white-space: nowrap; }
  .hero .sub { color: var(--mute); font-size: 17px; margin-bottom: 22px; }
  .placa {
    margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 8px;
    font-family: var(--mont); font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  }
  .placa span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
  .placa svg { width: 13px; height: 13px; }

  /* marco de celular para las capturas de la app (hero y mecanismo) */
  .phone-frame { width: 300px; max-width: 100%; margin: 0 auto; border-radius: 36px; padding: 8px; background: #1c1917; box-shadow: 0 24px 50px rgba(28,25,23,.32), 0 0 0 1px rgba(0,0,0,.4); }
  .phone-frame img, .phone-frame video { width: 100%; height: auto; border-radius: 28px; display: block; background: #141210; }
  .hero .phone-frame { margin-top: 6px; }

  /* ── 2. para quién ── */
  .who { display: grid; gap: 16px; }
  @media (min-width: 640px) { .who { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
  .who-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
  .who-tag { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--red); padding: 16px 14px 12px; line-height: 1.25; text-align: center; }
  .ph { position: relative; background: #E9E1D6; overflow: hidden; }
  .ph::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #EDE5D9, #DED3C3); }
  .ph img { position: relative; width: 100%; height: 100%; object-fit: cover; }
  .who-card .ph { aspect-ratio: 16 / 10; width: 100%; max-height: none; border-radius: 0; }
  .who-card .ph img { object-position: 50% 30%; }
  .who-card p { padding: 12px 14px 16px; font-size: 15px; color: var(--ink); text-align: center; }
  .who-close { text-align: center; font-family: var(--serif); font-size: 19px; font-weight: 600; margin-top: 26px; }

  /* ── 3. problema ── */
  .scene { border-radius: var(--r); margin: 6px 0 14px; aspect-ratio: 16 / 9; }
  .prob h3 { font-size: 22px; margin: 30px 0 12px; }
  .prob p { font-size: 17px; margin-bottom: 20px; }
  .prob .chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 6px 0 16px; }
  .prob .chips span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 15px; color: var(--ink); }
  .prob .soft { font-size: 15.5px; color: var(--muted, #6B6259); text-align: center; margin: 0 0 18px; }
  .prob .lead { font-size: 18px; line-height: 1.6; text-align: center; max-width: 34ch; margin: 0 auto 26px; }
  .prob .key { font-weight: 700; font-size: 18px; text-align: center; margin: 4px 0 24px; }
  .ex { display: grid; gap: 10px; margin: 6px 0 20px; }
  @media (min-width: 520px) { .ex { grid-template-columns: 1fr 1fr; } }
  .ex-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; padding: 14px 16px; text-align: center; }
  .ex-card b { display: block; font-family: var(--serif); font-size: 19px; color: var(--red); margin-bottom: 4px; }
  .ex-card span { display: block; font-size: 15px; color: var(--ink); line-height: 1.45; }
  .quote {
    margin-top: 30px; padding: 24px 22px 20px; border: 1.5px solid var(--red); border-radius: var(--r);
    background: #fff; text-align: center; position: relative;
  }
  .quote::before {
    content: '“'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--red); background: var(--bg); padding: 0 8px;
  }
  .tint .quote::before { background: var(--bg-2); }
  .quote p { font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.45; }
  .quote cite { display: block; margin-top: 10px; font-style: normal; font-family: var(--mont); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 800; }

  /* ── 4. solución ── */
  .sol h2 { font-size: 34px; text-align: center; }
  .sol .grow { text-align: center; font-family: var(--serif); font-size: 20px; color: var(--mute); margin: 8px 0 26px; }
  .sol-cards { display: grid; gap: 14px; }
  @media (min-width: 640px) { .sol-cards { grid-template-columns: 1fr 1fr; } }
  .sol-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--r); padding: 20px 18px; }
  .sol-card h3 { margin-bottom: 12px; font-size: 20px; }
  .sol-card .end { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-family: var(--serif); font-style: italic; color: var(--mute); font-size: 15px; }
  .sol-close { text-align: center; font-family: var(--serif); font-size: 19px; font-weight: 600; margin-top: 26px; }

  /* ── 5. mecanismo ── */
  .mech h2 { text-align: center; font-size: 30px; }
  @media (min-width: 720px) { .mech h2 .red { white-space: nowrap; } }
  .rail-wrap { position: relative; }
  .rail {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 6px 18px 16px; margin: 0 -18px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail > * { scroll-snap-align: center; flex: 0 0 auto; }
  .rail-arrows { display: none; justify-content: center; gap: 10px; margin-top: 4px; }
  .rail-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--red); background: #fff; color: var(--red); font-size: 18px; cursor: pointer; display: grid; place-items: center; }
  @media (min-width: 720px) { .rail-arrows { display: flex; } }
  .screen { width: 270px; }
  .screen .phone-frame { width: 100%; }
  .screen .cap { font-size: 14px; color: var(--ink); margin-bottom: 10px; min-height: 66px; line-height: 1.45; text-align: center; }
  .screen .cap b { display: block; font-family: var(--mont); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .truth {
    margin: 30px 0 28px; text-align: center; font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.3; color: var(--red);
    padding: 22px 16px; border-top: 1.5px solid var(--red); border-bottom: 1.5px solid var(--red);
  }
  .tools { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  @media (min-width: 640px) { .tools { grid-template-columns: repeat(4, 1fr); } }
  .tool { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 12px; text-align: center; }
  .tool small { display: block; font-family: var(--mont); font-size: 10.5px; font-weight: 800; color: var(--red); letter-spacing: .1em; margin-bottom: 4px; }
  .tool b { display: block; font-family: var(--serif); font-size: 15px; line-height: 1.25; margin-bottom: 5px; }
  .tool span { font-size: 12.5px; color: var(--mute); line-height: 1.45; display: block; }
  .mech-line { text-align: center; color: var(--mute); font-size: 15px; margin: 22px 0 18px; }

  /* ── 6. WhatsApp modo oscuro ── */
  .wa {
    width: 280px; border-radius: 20px; overflow: hidden; background: #0b141a; color: #e9edef;
    border: 5px solid #101010; box-shadow: 0 16px 40px rgba(28,25,23,.35); font-family: var(--sans);
  }
  .wa-head { background: #1f2c34; display: flex; align-items: center; gap: 10px; padding: 9px 12px; }
  .wa-ava { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #fff; flex: 0 0 34px; }
  .wa-name { font-size: 14px; font-weight: 600; line-height: 1.2; }
  .wa-status { font-size: 11px; color: #8696a0; }
  .wa-body {
    padding: 12px 10px; display: grid; gap: 7px; min-height: 250px; align-content: start;
    background-color: #0b141a; background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px); background-size: 14px 14px;
  }
  .wa-date { justify-self: center; background: #182229; color: #8696a0; font-size: 11px; padding: 3px 8px; border-radius: 6px; margin-bottom: 2px; }
  .bub { max-width: 88%; padding: 6px 8px 5px; border-radius: 8px; font-size: 13px; line-height: 1.38; box-shadow: 0 1px .5px rgba(0,0,0,.3); }
  .bub.in { background: #202c33; justify-self: start; border-top-left-radius: 0; }
  .bub.out { background: #005c4b; justify-self: end; border-top-right-radius: 0; }
  .bub time { float: right; font-size: 10.5px; color: #8696a0; margin: 6px 0 0 8px; line-height: 1; display: inline-flex; align-items: center; gap: 3px; }
  .bub.out time { color: #9fd3c7; }
  .bub.out time svg { width: 14px; height: 10px; }
  .wa-foot { background: #1f2c34; padding: 7px 10px; display: flex; align-items: center; gap: 8px; }
  .wa-foot span { flex: 1; background: #2a3942; border-radius: 999px; padding: 6px 12px; font-size: 12px; color: #8696a0; }
  .wa-foot i { width: 28px; height: 28px; border-radius: 50%; background: #00a884; display: block; }
  .wa-note { text-align: center; color: var(--mute); font-size: 12.5px; margin-top: 8px; }
  .wa-shot { width: 260px; aspect-ratio: 640 / 1147; border-radius: 18px; box-shadow: 0 16px 40px rgba(28,25,23,.3); }
  @media (min-width: 720px) { .wa-shot { width: 290px; } }
  .tapa { aspect-ratio: 1 / 1; border-radius: 8px; }
  .mat { grid-template-columns: 150px 1fr; }
  .post .tapa { border-radius: 0; }

  /* ── 7. qué incluye ── */
  .mats { display: grid; gap: 12px; }
  .mat { display: grid; grid-template-columns: 124px 1fr; gap: 14px; align-items: start; padding: 12px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
  .cover {
    aspect-ratio: 3 / 4; border-radius: 6px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #2a241c, #15120e 60%, #1c1813);
    box-shadow: 4px 6px 16px rgba(28,25,23,.35), inset 3px 0 0 rgba(255,255,255,.05);
    display: flex; flex-direction: column; justify-content: space-between; padding: 8px 7px; min-width: 0;
  }
  .cover::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 1px; background: rgba(201,162,75,.4); }
  .cover::after { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(201,162,75,.3); border-radius: 3px; pointer-events: none; }
  .cover small { font-family: var(--mont); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 800; text-align: center; }
  .cover b { font-family: var(--serif); font-size: 10.5px; line-height: 1.2; color: #EAD9A8; text-align: center; font-weight: 700; padding: 0 3px; }
  .cover span { font-size: 7px; color: #8f8578; text-align: center; letter-spacing: .08em; text-transform: uppercase; }
  .cover.red { background: linear-gradient(160deg, #B22D21, #6E1710 60%, #8E1E14); }
  .cover.red::before { background: rgba(255,255,255,.35); }
  .cover.red::after { border-color: rgba(255,255,255,.35); }
  .cover.red small { color: #FBE3C8; } .cover.red b { color: #fff; } .cover.red span { color: #F1C9C2; }
  .mat h3 { font-size: 16px; margin-bottom: 5px; }
  .mat p { color: var(--mute); font-size: 14px; margin-bottom: 8px; }
  .helps { font-size: 13px; color: var(--ink); }
  .helps b { font-family: var(--mont); color: var(--red); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 10.5px; }
  .sub-title { font-family: var(--mont); font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 28px 0 12px; text-align: center; }
  .post { width: 272px; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
  .post-cover {
    aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 22px;
    background: radial-gradient(circle at 30% 20%, #2b241d, #141210 70%); position: relative;
  }
  .post-cover::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,162,75,.35); border-radius: 6px; }
  .post-cover small { font-family: var(--mont); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .post-cover b { font-family: var(--serif); font-size: 21px; line-height: 1.2; color: #F2EBDC; }
  .post-cover .rule { width: 34px; height: 2px; background: var(--red-2); margin-top: 12px; }
  .post-body { padding: 14px 14px 12px; flex: 1; display: flex; flex-direction: column; }
  .post-body h3 { font-size: 16px; margin-bottom: 6px; }
  .post-body p { font-size: 13.5px; color: var(--mute); margin-bottom: 10px; }
  .post-body .helps { margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line); }

  /* ── 8. oferta ── */
  .offer { padding: 52px 0 56px; }
  .offer h2 { text-align: center; margin-bottom: 14px; }
  .anchor { text-align: center; color: var(--mute); font-size: 15.5px; margin-bottom: 24px; }
  .anchor b { color: var(--ink); }
  .box { border: 2px solid var(--red); border-radius: 20px; background: #fff; overflow: hidden; box-shadow: 0 30px 70px rgba(168,38,27,.16); }
  .box-head { background: linear-gradient(180deg, var(--red-2), var(--red-3)); color: #fff; text-align: center; padding: 10px 12px; font-family: var(--mont); font-size: 11.5px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
  .box-in { padding: 22px 18px 24px; }
  .box h3 { font-size: 26px; text-align: center; margin-bottom: 4px; }
  .box .sub { text-align: center; color: var(--mute); font-size: 14px; margin-bottom: 18px; }
  .stack { width: 100%; border-collapse: collapse; font-size: 14px; }
  .stack td { padding: 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
  .stack td:last-child { text-align: right; white-space: nowrap; color: var(--mute); padding-left: 10px; font-family: var(--mont); font-weight: 700; font-size: 13px; }
  .stack tr.core td { font-weight: 600; }
  .stack tr.core td:last-child { color: var(--ink); }
  .stack tr.grp td { padding-top: 12px; padding-bottom: 2px; border-bottom: 0; font-family: var(--mont); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 800; }
  .stack tr.total td { border-bottom: 0; padding-top: 12px; font-weight: 700; font-size: 15px; }
  .stack tr.total td:last-child { color: var(--ink); font-size: 15px; }
  .stack small { display: block; color: var(--mute); font-size: 12px; font-weight: 400; margin-top: 1px; }
  .price { text-align: center; margin: 22px 0 18px; }
  .price .was { display: block; font-family: var(--mont); font-size: 16px; color: var(--mute); font-weight: 700; }
  .price .now { display: block; font-family: var(--mont); font-size: 54px; font-weight: 900; color: var(--red); line-height: 1; margin-top: 4px; letter-spacing: -.02em; }
  .price .once { display: block; font-size: 13px; color: var(--mute); margin-top: 8px; }
  .badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
  .pill { display: inline-block; padding: 6px 12px; border-radius: 999px; font-family: var(--mont); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
  .pill.green { background: rgba(31,143,82,.12); border: 1px solid rgba(31,143,82,.4); color: var(--green); }
  .pill.red { background: var(--red-wash); border: 1px solid var(--red); color: var(--red); }
  .offer .btn { margin-top: 18px; }
  .deliver { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 18px; }
  .deliver div { text-align: center; font-size: 11.5px; color: var(--mute); line-height: 1.35; }
  .deliver b { display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 6px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--mont); font-size: 12px; font-weight: 900; }
  .seals { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
  .seals span { font-size: 11.5px; color: var(--mute); border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px; display: inline-flex; align-items: center; gap: 5px; background: var(--bg); }
  .seals svg { width: 14px; height: 14px; }

  /* ── 9. garantía + FAQ + cierre ── */
  .guar { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; text-align: center; justify-items: center; }
  .guar-small { color: var(--mute); font-size: 12.5px; margin-top: 8px; }
  .seal {
    width: 116px; height: 116px; border-radius: 50%; position: relative; display: grid; place-items: center;
    background: radial-gradient(circle at 50% 38%, #E6C46A, var(--gold) 60%, #A8842F);
    box-shadow: 0 10px 30px rgba(201,162,75,.35), inset 0 0 0 4px rgba(255,255,255,.7), inset 0 0 0 6px var(--red);
    color: var(--red-3); text-align: center;
  }
  .seal::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px dashed var(--red); opacity: .6; }
  .seal b { display: block; font-family: var(--mont); font-size: 32px; font-weight: 900; line-height: 1; }
  .seal small { display: block; font-family: var(--mont); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
  .guar h2 { font-size: 24px; margin-bottom: 8px; }
  .guar p { color: var(--mute); font-size: 15px; text-align: left; }
  .guar .guar-small { text-align: center; }
  .faq { border: 1px solid var(--line); border-radius: var(--r); background: #fff; margin-bottom: 8px; overflow: hidden; }
  .faq summary { list-style: none; cursor: pointer; padding: 15px 16px; display: flex; gap: 12px; align-items: center; font-weight: 600; font-size: 15px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--red); margin-left: auto; transition: transform .2s; }
  .faq[open] summary svg { transform: rotate(45deg); }
  .faq div { padding: 0 16px 16px; color: var(--mute); font-size: 14.5px; }
  .final { padding: 52px 0; text-align: center; }
  .final h2 { margin-bottom: 20px; }
  footer { border-top: 1px solid var(--line); padding: 26px 0 40px; text-align: center; color: var(--mute); font-size: 12px; line-height: 1.6; }

  @media (min-width: 720px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    .section { padding: 60px 0; }
    .hero { padding: 48px 0 56px; }
    .btn { max-width: 520px; margin-left: auto; margin-right: auto; }
    .screen { width: 300px; }
    .wa { width: 300px; }
  }


  .ph-label{position:relative;display:grid;place-items:center;height:100%;min-height:90px;padding:14px;text-align:center;font-family:var(--mont);font-weight:700;font-size:11.5px;letter-spacing:.04em;color:#8a7a66}
  .hero-list{list-style:none;padding:0;margin:14px auto 18px;max-width:420px;text-align:left}
  .hero-list li{display:flex;gap:8px;align-items:flex-start;font-size:14.5px;line-height:1.45;margin:7px 0}
  .hero-list svg{flex:0 0 18px;width:18px;height:18px;margin-top:2px}
  /* las capturas de iMessage son 1170x1600: el carrusel de la española las forzaba a 9:16 y las cortaba de los costados */
  .wa-shot{aspect-ratio:1170/1600 !important;height:auto !important}
  .wa-shot img{object-fit:contain !important;height:auto !important}
  .who-card p b{display:block;font-family:var(--serif);font-size:17px;margin-bottom:4px;color:var(--ink,#1f1a17)}

:root{--mute:#62584f}h1,h2,h3,b{overflow-wrap:break-word}.who{grid-template-columns:1fr 1fr}.hero h1 .red{font-size:.64em}.stack td:first-child{text-align:left;white-space:normal}.app-screen{padding:22px 15px;background:#191611;border-radius:28px;color:#eee2ca;text-align:left}.app-brand{font:700 17px var(--serif);text-align:center;color:#e8d3a2;border-bottom:1px solid #66553a;padding-bottom:15px}.app-welcome{font:600 24px var(--serif);margin:22px 0 14px}.app-search{font-size:12px;border:1px solid #77603c;border-radius:9px;padding:12px;margin-bottom:20px;color:#eee2ca}.app-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}.app-tile{min-height:74px;padding:12px 9px;border:1px solid #65543a;border-radius:9px;background:linear-gradient(135deg,#463823,#201b14);font:600 13px var(--serif);display:flex;align-items:end}.app-nav{font-size:10px;text-align:center;border-top:1px solid #66553a;padding-top:18px;margin-top:22px;color:#e8d3a2}.app-caption{font-size:12px;color:var(--mute);margin:16px 0 22px}.mechanism{display:grid;gap:12px;margin-bottom:24px}.mechanism article{border:1px solid var(--line);border-left:4px solid var(--red);padding:18px;border-radius:12px;background:#fff}.mechanism h3{text-align:left;margin-bottom:8px;color:var(--red)}.hero-list li:before{content:'✓';color:#8b671e;font-weight:800}.mat img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:8px}.post img{width:100%;aspect-ratio:1;object-fit:cover}.post h3{text-align:left}.price .now{font-size:clamp(25px,7vw,54px);line-height:1.2}.stack td:last-child{font-size:11px}.faq summary:after{content:'+';margin-left:auto;color:var(--red)}.faq[open] summary:after{content:'−'}.who-card img{width:100%;aspect-ratio:16/10;object-fit:cover}.who-card h3{font-size:20px;color:var(--red);padding:14px}.section:focus{outline:none}@media(max-width:400px){.mat{grid-template-columns:88px 1fr;gap:10px}.who{grid-template-columns:1fr}.deliver{grid-template-columns:1fr 1fr;gap:18px}.sol h2{font-size:28px}}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.btn{transition:none}}

.app-tile{background-size:cover;background-position:center;text-shadow:0 1px 3px #000}.app-tile:nth-child(4n+1){background-image:linear-gradient(0deg,rgba(0,0,0,.92),rgba(0,0,0,.28)),url(img/mat-bosquejos-v2-320.webp)}.app-tile:nth-child(4n+2){background-image:linear-gradient(0deg,rgba(0,0,0,.92),rgba(0,0,0,.28)),url(img/bono-autoridad-v2-320.webp)}.app-tile:nth-child(4n+3){background-image:linear-gradient(0deg,rgba(0,0,0,.92),rgba(0,0,0,.28)),url(img/bono-visuales-v2-320.webp)}.app-tile:nth-child(4n+4){background-image:linear-gradient(0deg,rgba(0,0,0,.92),rgba(0,0,0,.28)),url(img/mat-calendario-v2-320.webp)}
