/* ============================================================
 * Readify Estrena — landing del plan "libros nuevos"
 * Paleta dominante: verde/ámbar (plan de editoriales aliadas)
 * ============================================================ */

.readify-page-estrena { background: var(--rdfy-cream); }

.readify-page-estrena .e-section-h {
    font-family: var(--rdfy-f-display);
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
}
.readify-page-estrena .e-section-lead {
    font-size: 18px;
    color: var(--rdfy-ink-muted);
    max-width: 580px;
    line-height: 1.55;
}

/* ═══════════════ HERO ═══════════════ */
.readify-page-estrena .e-hero {
    padding: 180px 48px 120px;
    max-width: 1440px; margin: 0 auto;
    position: relative;
}
.readify-page-estrena .e-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 84vh;
}
.readify-page-estrena .e-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px 8px 14px;
    background: rgba(46, 74, 34, 0.1);
    border: 1px solid rgba(46, 74, 34, 0.25);
    color: var(--rdfy-verde);
    border-radius: 999px;
    font-family: var(--rdfy-f-ui);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 36px;
}
.readify-page-estrena .e-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rdfy-verde);
    box-shadow: 0 0 0 3px rgba(46, 74, 34, 0.18);
    animation: e-pulse 2.5s ease-in-out infinite;
}
@keyframes e-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46, 74, 34, 0.18); }
    50%      { box-shadow: 0 0 0 6px rgba(46, 74, 34, 0.08); }
}
.readify-page-estrena .e-display {
    font-family: var(--rdfy-f-display);
    font-size: clamp(52px, 7.2vw, 112px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin-bottom: 32px;
}
.readify-page-estrena .e-lead {
    font-size: 20px;
    line-height: 1.55;
    color: var(--rdfy-ink-muted);
    max-width: 520px;
    margin-bottom: 52px;
    font-weight: 400;
}
.readify-page-estrena .e-hero-ctas {
    display: flex; gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.readify-page-estrena .e-hero-meta {
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid var(--rdfy-line);
    display: flex; gap: 48px;
    flex-wrap: wrap;
}
.readify-page-estrena .e-meta-k {
    font-size: 11px; color: var(--rdfy-ink-soft);
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 6px;
}
.readify-page-estrena .e-meta-v {
    font-family: var(--rdfy-f-display);
    font-size: 22px; font-weight: 600;
    color: var(--rdfy-ink);
    letter-spacing: -0.02em;
}

/* Hero visual */
.readify-page-estrena .e-hero-visual {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.readify-page-estrena .e-hero-visual::before {
    content: "";
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 74, 34, 0.11) 0%, transparent 65%);
    z-index: 0;
}
.readify-page-estrena .e-book-tower {
    position: relative;
    width: 420px;
    height: 520px;
    z-index: 1;
}
.readify-page-estrena .e-book {
    position: absolute;
    border-radius: 3px 8px 8px 3px;
    box-shadow:
        0 1px 2px rgba(28, 26, 22, 0.08),
        0 10px 22px -4px rgba(28, 26, 22, 0.18),
        0 28px 56px -12px rgba(28, 26, 22, 0.25);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.readify-page-estrena .e-book::before {
    content: "";
    position: absolute;
    right: -3px; top: 3px; bottom: 3px; width: 4px;
    background: linear-gradient(to right, rgba(255,255,255,0.8), #e8ddc7 40%, #d4c3a0);
    border-radius: 0 3px 3px 0;
    box-shadow: inset 1px 0 0 rgba(0,0,0,0.05);
}
.readify-page-estrena .e-book::after {
    content: "";
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.18);
}
.readify-page-estrena .e-book-inner {
    position: absolute; inset: 0;
    padding: 28px 24px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    color: rgba(255,255,255,0.92);
    font-family: var(--rdfy-f-display);
}
.readify-page-estrena .e-book-title {
    font-size: 22px; font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.readify-page-estrena .e-book-title em { color: var(--rdfy-terracota-soft); font-style: italic; }
.readify-page-estrena .e-book-author {
    font-size: 11px; font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.readify-page-estrena .e-book-line {
    width: 36px; height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 14px 0 12px;
}
.readify-page-estrena .e-book-badge {
    position: absolute;
    bottom: 24px; right: 20px;
    font-size: 9px; letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rdfy-ambar-soft);
    font-family: var(--rdfy-f-ui);
}
.readify-page-estrena .e-book-1 { width: 260px; height: 360px; top: 0;   left: 40px;  transform: rotate(-8deg); }
.readify-page-estrena .e-book-2 { width: 240px; height: 340px; top: 80px; left: 130px; transform: rotate(4deg); z-index: 2; }
.readify-page-estrena .e-book-3 { width: 230px; height: 320px; top: 190px; left: 70px; transform: rotate(-3deg); z-index: 3; }
.readify-page-estrena .e-book-1:hover { transform: rotate(-12deg) translateY(-12px); }
.readify-page-estrena .e-book-2:hover { transform: rotate(6deg) translateY(-12px); }
.readify-page-estrena .e-book-3:hover { transform: rotate(-5deg) translateY(-12px); }

.readify-page-estrena .e-book-ribbon {
    position: absolute;
    top: 40px; right: 20px;
    width: 16px; height: 140px;
    background: linear-gradient(to bottom, var(--rdfy-ambar-soft), var(--rdfy-ambar));
    z-index: 5;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    transform: rotate(4deg);
}
.readify-page-estrena .e-book-ribbon::after {
    content: ""; position: absolute; bottom: -10px; left: 0;
    width: 0; height: 0;
    border-left: 8px solid var(--rdfy-ambar);
    border-right: 8px solid var(--rdfy-ambar);
    border-bottom: 10px solid transparent;
}
.readify-page-estrena .e-book-seal {
    position: absolute;
    top: 30px; left: -10px;
    z-index: 6;
    color: var(--rdfy-ink);
    opacity: 0.8;
    transform: rotate(-12deg);
}
.readify-page-estrena .e-floating-note {
    position: absolute;
    bottom: 40px; right: -10px;
    z-index: 7;
    background: var(--rdfy-cream);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px -6px rgba(28, 26, 22, 0.15);
    border: 1px solid var(--rdfy-line);
    animation: e-bob 5s ease-in-out infinite;
}
@keyframes e-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.readify-page-estrena .e-note-k {
    font-size: 10px; color: var(--rdfy-verde);
    letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 700; margin-bottom: 4px;
}
.readify-page-estrena .e-note-v {
    font-family: var(--rdfy-f-display);
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--rdfy-ink);
}

/* ═══════════════ PROMESA ═══════════════ */
.readify-page-estrena .e-promise {
    padding: 140px 48px;
    background: var(--rdfy-cream-warm);
    border-top: 1px solid var(--rdfy-line);
    border-bottom: 1px solid var(--rdfy-line);
}
.readify-page-estrena .e-promise-inner {
    max-width: 980px; margin: 0 auto;
    text-align: center;
}
.readify-page-estrena .e-promise .rdfy-chapter-label { justify-content: center; }
.readify-page-estrena .e-promise .e-section-h {
    font-size: clamp(44px, 6vw, 84px);
}
.readify-page-estrena .e-promise .e-section-lead {
    font-family: var(--rdfy-f-display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--rdfy-ink);
    max-width: 820px;
    margin: 0 auto;
}

/* ═══════════════ INCLUYE ═══════════════ */
.readify-page-estrena .e-incluye {
    padding: 140px 48px;
    max-width: 1440px; margin: 0 auto;
}
.readify-page-estrena .e-incluye-header { max-width: 720px; margin-bottom: 80px; }
.readify-page-estrena .e-incluye-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--rdfy-line);
    border: 1px solid var(--rdfy-line);
    border-radius: 20px;
    overflow: hidden;
}
.readify-page-estrena .e-incluye-card {
    padding: 48px 44px;
    background: var(--rdfy-cream);
    min-height: 240px;
    position: relative;
    transition: background 0.25s ease;
}
.readify-page-estrena .e-incluye-card:hover { background: var(--rdfy-pergamino); }
.readify-page-estrena .e-incluye-n {
    font-family: var(--rdfy-f-display);
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rdfy-ambar);
    margin-bottom: 32px;
}
.readify-page-estrena .e-incluye-t {
    font-family: var(--rdfy-f-display);
    font-size: 30px; font-weight: 600;
    letter-spacing: -0.028em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.readify-page-estrena .e-incluye-d {
    font-size: 15px;
    color: var(--rdfy-ink-muted);
    line-height: 1.6;
    max-width: 420px;
}

/* ═══════════════ EDITORIALES ═══════════════ */
.readify-page-estrena .e-editoriales {
    padding: 140px 48px;
    background: var(--rdfy-pergamino);
    border-top: 1px solid var(--rdfy-line);
    border-bottom: 1px solid var(--rdfy-line);
}
.readify-page-estrena .e-editoriales-inner {
    max-width: 1280px; margin: 0 auto;
}
.readify-page-estrena .e-editoriales-list {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.readify-page-estrena .e-ed-item {
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--rdfy-cream);
    border: 1px solid var(--rdfy-line);
    font-family: var(--rdfy-f-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--rdfy-ink);
    transition: all 0.25s ease;
}
.readify-page-estrena .e-ed-item:hover {
    background: var(--rdfy-verde);
    color: var(--rdfy-cream);
    border-color: var(--rdfy-verde);
    transform: translateY(-2px);
}

/* ═══════════════ HOW-TO ═══════════════ */
.readify-page-estrena .e-howto {
    padding: 160px 48px;
    max-width: 1440px; margin: 0 auto;
}
.readify-page-estrena .e-howto-header { max-width: 620px; margin-bottom: 80px; }
.readify-page-estrena .e-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.readify-page-estrena .e-step {
    position: relative;
    padding-top: 24px;
    border-top: 2px solid var(--rdfy-ink);
}
.readify-page-estrena .e-step-n {
    font-family: var(--rdfy-f-display);
    font-size: 56px; font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--rdfy-terracota);
    margin-bottom: 24px;
}
.readify-page-estrena .e-step-t {
    font-family: var(--rdfy-f-display);
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
}
.readify-page-estrena .e-step-d {
    font-size: 14px;
    color: var(--rdfy-ink-muted);
    line-height: 1.55;
}

/* ═══════════════ PRICING ═══════════════ */
.readify-page-estrena .e-pricing {
    padding: 80px 48px 140px;
    max-width: 1280px; margin: 0 auto;
}
.readify-page-estrena .e-pricing-card {
    background: linear-gradient(135deg, #f2efe4 0%, var(--rdfy-cream) 100%);
    border: 1px solid var(--rdfy-line);
    border-radius: 24px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.readify-page-estrena .e-pricing-card::before {
    content: "";
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 74, 34, 0.1) 0%, transparent 70%);
}
.readify-page-estrena .e-pricing-left { position: relative; z-index: 1; }
.readify-page-estrena .e-pricing-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(46, 74, 34, 0.1);
    border: 1px solid rgba(46, 74, 34, 0.2);
    color: var(--rdfy-verde);
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.readify-page-estrena .e-dot-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rdfy-verde);
    animation: e-pulse 2.5s ease-in-out infinite;
}
.readify-page-estrena .e-pricing-h {
    font-family: var(--rdfy-f-display);
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 14px;
}
.readify-page-estrena .e-pricing-desc {
    font-size: 16px;
    color: var(--rdfy-ink-muted);
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 460px;
}
.readify-page-estrena .e-garantias {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.readify-page-estrena .e-garantia {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rdfy-ink);
}
.readify-page-estrena .e-garantia svg {
    color: var(--rdfy-verde);
    flex-shrink: 0;
}

.readify-page-estrena .e-pricing-right {
    position: relative; z-index: 1;
    text-align: center;
}
.readify-page-estrena .e-price-big {
    font-family: var(--rdfy-f-display);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    display: flex; align-items: flex-start;
    justify-content: center;
    gap: 4px;
}
.readify-page-estrena .e-currency {
    font-size: 32px;
    margin-top: 14px;
    opacity: 0.7;
}
.readify-page-estrena .e-price-num { font-size: 96px; }
.readify-page-estrena .e-price-per {
    font-size: 14px;
    color: var(--rdfy-ink-soft);
    margin-bottom: 32px;
    font-weight: 500;
}
.readify-page-estrena .e-pricing-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    margin-bottom: 14px;
}
.readify-page-estrena .e-price-note {
    font-size: 12px;
    color: var(--rdfy-ink-soft);
    font-style: italic;
}

/* ═══════════════ TESTIMONIOS ═══════════════ */
.readify-page-estrena .e-testimonials {
    padding: 140px 48px;
    max-width: 1440px; margin: 0 auto;
}
.readify-page-estrena .e-testi-header { max-width: 680px; margin-bottom: 72px; }
.readify-page-estrena .e-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.readify-page-estrena .e-testi-card {
    padding: 36px 32px;
    background: var(--rdfy-cream);
    border: 1px solid var(--rdfy-line);
    border-radius: 16px;
    min-height: 340px;
    display: flex; flex-direction: column;
    transition: all 0.3s ease;
}
.readify-page-estrena .e-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(28, 26, 22, 0.1);
    border-color: var(--rdfy-terracota-soft);
}
.readify-page-estrena .e-testi-stars {
    color: var(--rdfy-ambar);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 24px;
}
.readify-page-estrena .e-testi-quote {
    font-family: var(--rdfy-f-display);
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.018em;
    line-height: 1.45;
    margin-bottom: 28px;
    flex: 1;
}
.readify-page-estrena .e-testi-quote em { color: var(--rdfy-terracota); font-style: italic; }
.readify-page-estrena .e-testi-meta {
    display: flex; align-items: center; gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--rdfy-line-soft);
}
.readify-page-estrena .e-testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rdfy-f-display);
    font-weight: 600;
    color: var(--rdfy-cream);
    font-size: 17px;
}
.readify-page-estrena .e-testi-name {
    font-family: var(--rdfy-f-display);
    font-size: 16px; font-weight: 600;
    letter-spacing: -0.015em;
}
.readify-page-estrena .e-testi-role {
    font-size: 12px;
    color: var(--rdfy-ink-soft);
    margin-top: 2px;
}

/* ═══════════════ FAQ ═══════════════ */
.readify-page-estrena .e-faq {
    padding: 140px 48px;
    background: var(--rdfy-cream-warm);
    border-top: 1px solid var(--rdfy-line);
    border-bottom: 1px solid var(--rdfy-line);
}
.readify-page-estrena .e-faq-inner {
    max-width: 960px; margin: 0 auto;
}
.readify-page-estrena .e-faq-header { max-width: 640px; margin-bottom: 56px; }
.readify-page-estrena .e-faq-list {
    border-top: 1px solid var(--rdfy-line);
}
.readify-page-estrena .e-faq-item {
    border-bottom: 1px solid var(--rdfy-line);
}
.readify-page-estrena .e-faq-item summary {
    padding: 24px 0;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--rdfy-f-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--rdfy-ink);
    transition: color 0.2s ease;
}
.readify-page-estrena .e-faq-item summary::-webkit-details-marker { display: none; }
.readify-page-estrena .e-faq-item summary:hover { color: var(--rdfy-terracota); }
.readify-page-estrena .e-faq-caret {
    color: var(--rdfy-ink-soft);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.readify-page-estrena .e-faq-item[open] .e-faq-caret { transform: rotate(180deg); }
.readify-page-estrena .e-faq-body {
    padding: 0 0 28px;
    font-size: 16px;
    color: var(--rdfy-ink-muted);
    line-height: 1.7;
    max-width: 820px;
    animation: e-faq-fade 0.3s ease;
}
@keyframes e-faq-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ FINAL ═══════════════ */
.readify-page-estrena .e-final {
    padding: 160px 48px;
    background: var(--rdfy-ink);
    color: var(--rdfy-cream) !important;
    position: relative;
    overflow: hidden;
}
.readify-page-estrena .e-final::before {
    content: "";
    position: absolute;
    top: -300px; left: -300px;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 74, 34, 0.22) 0%, transparent 60%);
}
.readify-page-estrena .e-final::after {
    content: "";
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 96, 21, 0.15) 0%, transparent 60%);
}
.readify-page-estrena .e-final-inner {
    position: relative; z-index: 1;
    max-width: 900px; margin: 0 auto;
    text-align: center;
}
.readify-page-estrena .e-final-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rdfy-ambar-soft) !important;
    font-weight: 600;
    margin-bottom: 32px;
}
.readify-page-estrena .e-final h2 {
    font-family: var(--rdfy-f-display);
    font-size: clamp(48px, 6.6vw, 96px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
    color: var(--rdfy-cream) !important;
}
.readify-page-estrena .e-final h2 em { color: var(--rdfy-terracota-soft) !important; font-style: italic; }
.readify-page-estrena .e-final p {
    font-size: 19px;
    color: rgba(249, 247, 242, 0.72) !important;
    max-width: 540px;
    margin: 0 auto 52px;
    line-height: 1.55;
}
.readify-page-estrena .e-final-ctas {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}
.readify-page-estrena .e-btn-cream {
    background: var(--rdfy-cream);
    color: var(--rdfy-ink) !important;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--rdfy-f-ui);
    font-size: 15px; font-weight: 600;
    letter-spacing: -0.005em;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.2s;
}
.readify-page-estrena .e-btn-cream:hover { background: var(--rdfy-pergamino); transform: translateY(-2px); }
.readify-page-estrena .e-btn-outline {
    background: transparent;
    color: var(--rdfy-cream) !important;
    padding: 16px 32px;
    border: 1px solid rgba(249, 247, 242, 0.3);
    border-radius: 999px;
    font-family: var(--rdfy-f-ui);
    font-size: 15px; font-weight: 600;
    letter-spacing: -0.005em;
    transition: all 0.2s;
}
.readify-page-estrena .e-btn-outline:hover {
    border-color: var(--rdfy-cream);
    background: rgba(249, 247, 242, 0.08);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 960px) {
    .readify-page-estrena .e-hero {
        padding: 140px 24px 80px;
    }
    .readify-page-estrena .e-hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
    }
    .readify-page-estrena .e-hero-visual { height: 500px; }
    .readify-page-estrena .e-book-tower { transform: scale(0.85); }
    .readify-page-estrena .e-promise,
    .readify-page-estrena .e-incluye,
    .readify-page-estrena .e-editoriales,
    .readify-page-estrena .e-howto,
    .readify-page-estrena .e-pricing,
    .readify-page-estrena .e-testimonials,
    .readify-page-estrena .e-faq,
    .readify-page-estrena .e-final {
        padding-left: 24px; padding-right: 24px;
        padding-top: 100px; padding-bottom: 100px;
    }
    .readify-page-estrena .e-incluye-grid { grid-template-columns: 1fr; }
    .readify-page-estrena .e-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .readify-page-estrena .e-pricing-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
    .readify-page-estrena .e-garantias { grid-template-columns: 1fr; }
    .readify-page-estrena .e-testi-grid { grid-template-columns: 1fr; }
    .readify-page-estrena .e-hero-meta { gap: 28px; }
}
@media (max-width: 560px) {
    .readify-page-estrena .e-steps { grid-template-columns: 1fr; }
    .readify-page-estrena .e-price-num { font-size: 72px; }
}

/* ═══════════════ MODAL · PREVIEW DE CAJA ═══════════════ */
.readify-page-estrena .e-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.readify-page-estrena .e-modal.is-open {
    display: flex;
    opacity: 1;
}
.readify-page-estrena .e-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 26, 22, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.readify-page-estrena .e-modal-container {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--rdfy-cream);
    border-radius: 20px;
    padding: 64px 56px 48px;
    transform: translateY(24px) scale(0.98);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow:
        0 40px 80px -20px rgba(28, 26, 22, 0.45),
        0 0 0 1px rgba(28, 26, 22, 0.06);
}
.readify-page-estrena .e-modal.is-open .e-modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.readify-page-estrena .e-modal-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border: 1px solid var(--rdfy-line);
    background: var(--rdfy-cream);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--rdfy-ink);
    transition: all 0.2s ease;
    z-index: 2;
}
.readify-page-estrena .e-modal-close:hover {
    background: var(--rdfy-ink);
    color: var(--rdfy-cream);
    border-color: var(--rdfy-ink);
    transform: rotate(90deg);
}

.readify-page-estrena .e-modal-head {
    max-width: 620px;
    margin-bottom: 48px;
}
.readify-page-estrena .e-modal-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    background: rgba(46, 74, 34, 0.1);
    border: 1px solid rgba(46, 74, 34, 0.22);
    color: var(--rdfy-verde);
    border-radius: 999px;
    font-family: var(--rdfy-f-ui);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.readify-page-estrena .e-modal-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rdfy-verde);
    animation: e-pulse 2.5s ease-in-out infinite;
}
.readify-page-estrena .e-modal-head h2 {
    font-family: var(--rdfy-f-display);
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 20px;
}
.readify-page-estrena .e-modal-head h2 em { color: var(--rdfy-terracota); font-style: italic; }
.readify-page-estrena .e-modal-sub {
    font-size: 16px;
    color: var(--rdfy-ink-muted);
    line-height: 1.55;
    margin: 0;
}
.readify-page-estrena .e-modal-sub em { color: var(--rdfy-terracota); font-style: italic; font-weight: 500; }

.readify-page-estrena .e-modal-feature {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 36px;
    background: var(--rdfy-cream-warm);
    border-radius: 16px;
    margin-bottom: 48px;
    align-items: center;
}
.readify-page-estrena .e-modal-book-wrap {
    display: flex;
    justify-content: center;
}
.readify-page-estrena .e-modal-book {
    position: relative;
    width: 170px;
    height: 240px;
    border-radius: 2px 5px 5px 2px;
    box-shadow:
        0 1px 2px rgba(28, 26, 22, 0.08),
        0 8px 20px -4px rgba(28, 26, 22, 0.22),
        0 20px 40px -12px rgba(28, 26, 22, 0.3);
    transform: rotate(-4deg);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.readify-page-estrena .e-modal-book:hover { transform: rotate(0deg) translateY(-4px); }
.readify-page-estrena .e-modal-book::before {
    content: "";
    position: absolute;
    right: -3px; top: 3px; bottom: 3px; width: 4px;
    background: linear-gradient(to right, rgba(255,255,255,0.8), #e8ddc7 40%, #d4c3a0);
    border-radius: 0 3px 3px 0;
}
.readify-page-estrena .e-modal-book .e-book-inner {
    padding: 22px 18px;
    color: rgba(255,255,255,0.92);
    font-family: var(--rdfy-f-display);
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.readify-page-estrena .e-modal-book .e-book-title {
    font-size: 18px; font-weight: 600;
    line-height: 1.08; letter-spacing: -0.025em;
}
.readify-page-estrena .e-modal-book .e-book-title em { color: var(--rdfy-terracota-soft); font-style: italic; }
.readify-page-estrena .e-modal-book .e-book-line {
    width: 28px; height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 10px 0 8px;
}
.readify-page-estrena .e-modal-book .e-book-author {
    font-size: 10px; font-weight: 500;
    opacity: 0.75;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.readify-page-estrena .e-modal-book .e-book-badge {
    font-size: 8px; letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rdfy-ambar-soft);
    font-family: var(--rdfy-f-ui);
}

.readify-page-estrena .e-modal-book-info .e-modal-label {
    font-size: 10px; color: var(--rdfy-terracota);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; margin-bottom: 12px;
}
.readify-page-estrena .e-modal-book-info h3 {
    font-family: var(--rdfy-f-display);
    font-size: 32px; font-weight: 600;
    letter-spacing: -0.028em;
    line-height: 1; margin: 0 0 8px;
    color: var(--rdfy-ink);
}
.readify-page-estrena .e-modal-author {
    font-family: var(--rdfy-f-ui);
    font-size: 14px;
    color: var(--rdfy-ink-muted);
    margin: 0 0 18px;
    font-weight: 500;
}
.readify-page-estrena .e-modal-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 20px;
}
.readify-page-estrena .e-modal-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--rdfy-pergamino);
    color: var(--rdfy-ink);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.readify-page-estrena .e-modal-excerpt {
    font-size: 14px;
    color: var(--rdfy-ink-muted);
    line-height: 1.6;
    margin: 0 0 14px;
}
.readify-page-estrena .e-modal-why {
    font-size: 14px;
    color: var(--rdfy-ink);
    line-height: 1.55;
    margin: 0;
    padding: 14px 16px;
    background: var(--rdfy-cream);
    border-left: 3px solid var(--rdfy-terracota);
    border-radius: 3px;
}

.readify-page-estrena .e-modal-items-label {
    font-family: var(--rdfy-f-ui);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rdfy-ink-soft);
    margin-bottom: 20px;
}
.readify-page-estrena .e-modal-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.readify-page-estrena .e-modal-item {
    padding: 24px;
    background: var(--rdfy-cream);
    border: 1px solid var(--rdfy-line);
    border-radius: 12px;
    transition: all 0.25s ease;
}
.readify-page-estrena .e-modal-item:hover {
    border-color: var(--rdfy-terracota-soft);
    transform: translateY(-2px);
}
.readify-page-estrena .e-modal-item-icon {
    width: 44px; height: 44px;
    background: var(--rdfy-pergamino);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rdfy-ink);
    margin-bottom: 16px;
}
.readify-page-estrena .e-modal-item h4 {
    font-family: var(--rdfy-f-display);
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: var(--rdfy-ink);
}
.readify-page-estrena .e-modal-item p {
    font-size: 13px;
    color: var(--rdfy-ink-muted);
    line-height: 1.55;
    margin: 0;
}
.readify-page-estrena .e-modal-item p strong { color: var(--rdfy-ink); font-weight: 600; }

.readify-page-estrena .e-modal-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--rdfy-line);
    gap: 24px;
    flex-wrap: wrap;
}
.readify-page-estrena .e-modal-cta { font-size: 15px; padding: 14px 28px; }
.readify-page-estrena .e-modal-dismiss {
    background: transparent;
    border: none;
    color: var(--rdfy-ink-soft);
    font-family: var(--rdfy-f-ui);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--rdfy-line);
}
.readify-page-estrena .e-modal-dismiss:hover { color: var(--rdfy-ink); }

/* Modal responsive */
@media (max-width: 768px) {
    .readify-page-estrena .e-modal { padding: 12px; }
    .readify-page-estrena .e-modal-container {
        padding: 48px 24px 32px;
        max-height: 94vh;
        border-radius: 14px;
    }
    .readify-page-estrena .e-modal-close { top: 14px; right: 14px; width: 36px; height: 36px; }
    .readify-page-estrena .e-modal-feature {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 28px;
        text-align: center;
    }
    .readify-page-estrena .e-modal-tags { justify-content: center; }
    .readify-page-estrena .e-modal-items { grid-template-columns: 1fr; }
    .readify-page-estrena .e-modal-footer { flex-direction: column; align-items: stretch; }
    .readify-page-estrena .e-modal-cta { justify-content: center; text-align: center; }
}

/* Lock body scroll when modal open */
body.e-modal-open { overflow: hidden; }
