/* ===================== SESIÓN 1: HERO ESCRITORES ===================== */
.writers-hero {
    min-height: 80vh;
    width: 100%;
    padding: 8rem 1.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(180, 220, 255, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(200, 180, 255, 0.22), transparent 55%),
                #05060a;
    color: #f9fbff;
    box-sizing: border-box;
}

.writers-hero-inner {
    max-width: 900px;
    text-align: left;
    position: relative;
}

.writers-hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 1.5rem;
}

.writers-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.writers-hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 540px;
    opacity: 0.9;
    margin: 0 0 2.5rem;
}

/* Subrayado dinámico sutil bajo el subtítulo */
.writers-hero-accent {
    display: block;
    width: 110px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7ac9ff, #c89bff);
    position: relative;
    overflow: hidden;
}

.writers-hero-accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: translateX(-100%);
    animation: writers-hero-accent-glow 2.8s infinite ease-in-out;
}

@keyframes writers-hero-accent-glow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    60% {
        transform: translateX(120%);
        opacity: 0.8;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Responsivo básico */
@media (max-width: 768px) {
    .writers-hero {
        padding: 6rem 1.5rem 4rem;
    }

    .writers-hero-inner {
        text-align: left;
    }
}

/* ===================== SESIÓN 2: PROBLEMA REAL DE LOS ESCRITORES ===================== */

.writers-pain {
    width: 100%;
    padding: 6.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background: #f4f6fb;
    display: flex;
    justify-content: center;
    color: #0b0d14;
}

.writers-pain-inner {
    max-width: 980px;
}

/* CABECERA */
.writers-pain-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.writers-pain-header p {
    font-size: 1.02rem;
    opacity: 0.78;
    max-width: 520px;
    margin-bottom: 3rem;
}

/* CUERPO: COLUMNA + PUNTOS */
.writers-pain-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 2.2rem;
    align-items: stretch;
}

/* COLUMNA VERTICAL (COLUMNA “COLUMNA VERTEBRAL”) */
.pain-spine {
    position: relative;
    width: 32px;
    display: flex;
    justify-content: center;
}

.spine-line {
    position: relative;
    width: 2px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7cbcff, #c49bff);
    opacity: 0.8;
    overflow: hidden;
}

.spine-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    transform: translateY(-100%);
    animation: spineGlow 3.4s infinite ease-in-out;
}

@keyframes spineGlow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translateY(120%);
        opacity: 0;
    }
}

/* LISTA DE PROBLEMAS */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.pain-item {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: flex-start;
}

.pain-node {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0, #8bc4ff 40%, #b88fff 100%);
    box-shadow:
        0 0 0 4px rgba(123, 193, 255, 0.25),
        0 0 16px rgba(75, 145, 230, 0.5);
    margin-top: 0.35rem;
}

.pain-item p {
    font-size: 1.02rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CONCLUSIÓN */
.writers-pain-conclusion {
    margin-top: 3rem;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 640px;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .writers-pain {
        padding: 5.5rem 1.5rem 5.5rem;
    }

    .writers-pain-body {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.5rem;
    }

    .pain-spine {
        display: none;
    }
}


/* ===================== SESIÓN 3: PROPUESTA COOBOOK ===================== */

.writers-proposal {
    width: 100%;
    padding: 7rem 1.5rem 7rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top right, rgba(120, 190, 255, 0.16), transparent 55%),
        radial-gradient(circle at bottom left, rgba(180, 150, 255, 0.16), transparent 55%),
        #05060a;
    color: #f6f8ff;
    display: flex;
    justify-content: center;
}

.writers-proposal-inner {
    max-width: 980px;
}

.writers-proposal-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.writers-proposal-core {
    font-size: clamp(1.25rem, 2vw, 1.4rem);
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 1.2rem;
}

.writers-proposal-sub {
    font-size: 1.02rem;
    opacity: 0.8;
    max-width: 680px;
    margin-bottom: 3.2rem;
}

/* Pilares */
.writers-proposal-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.proposal-pillar {
    position: relative;
    padding: 2.2rem 1.8rem 2.1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 60%),
                linear-gradient(135deg, rgba(12, 16, 32, 0.9), rgba(6, 8, 18, 0.96));
    overflow: hidden;
}

/* Órbita decorativa minimal (sin ser caja clásica) */
.pillar-orbit {
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    border: 1px solid rgba(140, 200, 255, 0.07);
    opacity: 0.7;
    transform: scale(0.9) translate3d(0,0,0);
    animation: pillarOrbitPulse 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pillarOrbitPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.85;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.55;
    }
}

.proposal-pillar h3 {
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    opacity: 0.95;
}

.proposal-pillar p {
    position: relative;
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Sutil efecto al pasar el ratón */
.proposal-pillar:hover {
    border-color: rgba(180, 220, 255, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .writers-proposal {
        padding: 6rem 1.5rem 6rem;
    }

    .writers-proposal-pillars {
        grid-template-columns: 1fr;
    }
}
/* ===================== SESIÓN 4: TÍTULO FUNCIONES REVOLUCIONARIAS ===================== */

.writers-revolution-title {
    width: 100%;
    padding: 6rem 1.5rem 3rem;
    background:
        linear-gradient(to bottom, rgba(10, 12, 22, 0.05), rgba(10, 12, 22, 0)),
        #fefefe;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.writers-revolution-title-inner {
    max-width: 900px;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Línea luminosa bajo el título */
.writers-revolution-title-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, #6bb7ff, #b993ff);
    border-radius: 999px;
    animation: revLinePulse 4s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes revLinePulse {
    0% { transform: scaleX(0.6); opacity: 0.6; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.6); opacity: 0.6; }
}

.rev-title {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #0a0d14;
    line-height: 1.25;
}
/* ========== SESIÓN 4 · SUB BLOQUE 4.1: PROTECCIÓN EDITORIAL TOTAL ========== */

.writers-revolution-protection {
    width: 100%;
    padding: 3.5rem 1.5rem 6rem;
    box-sizing: border-box;
    background: #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-revolution-protection-inner {
    max-width: 980px;
}

/* Cabecera */
.rev-protection-header {
    margin-bottom: 2.8rem;
    max-width: 700px;
}

.rev-protection-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.7rem;
}

.rev-protection-header p {
    font-size: 1.02rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Grid de elementos */
.rev-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.3rem 2.5rem;
}

/* Tarjeta sin caja clásica, con órbita decorativa */
.rev-protection-item {
    position: relative;
    padding: 1.8rem 1.6rem 1.7rem;
    border-radius: 1.3rem;
    background:
        radial-gradient(circle at top left, rgba(120, 190, 255, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(190, 160, 255, 0.08), transparent 55%),
        #f6f7fc;
    overflow: hidden;
}

/* Órbita + núcleo (sin parecer un simple icono) */
.rev-protection-orbit {
    position: absolute;
    top: -28%;
    right: -18%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(115, 180, 255, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0.5;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    animation: revProtectionOrbit 10s ease-in-out infinite;
}

.rev-protection-core {
    position: absolute;
    inset: 32%;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 40%, #b694ff 100%);
    opacity: 0.55;
}

@keyframes revProtectionOrbit {
    0%   { transform: scale(1) rotate(0deg); opacity: 0.55; }
    50%  { transform: scale(1.08) rotate(6deg); opacity: 0.85; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
}

.rev-protection-item h4 {
    position: relative;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    z-index: 1;
}

.rev-protection-item p {
    position: relative;
    font-size: 0.97rem;
    line-height: 1.65;
    opacity: 0.9;
    z-index: 1;
}

/* Hover sutil */
.rev-protection-item:hover {
    box-shadow: 0 18px 38px rgba(9, 11, 30, 0.16);
    transform: translateY(-2px);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .rev-protection-grid {
        grid-template-columns: 1fr;
    }

    .writers-revolution-protection {
        padding: 3rem 1.5rem 5rem;
    }
}
/* ========== SESIÓN 4 · SUB BLOQUE 4.2: EDITOR DE MANUSCRITOS PROFESIONAL ========== */

.writers-revolution-editor {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    box-sizing: border-box;
    background: #f5f7fc;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-revolution-editor-inner {
    max-width: 1040px;
}

/* Cabecera */
.rev-editor-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.rev-editor-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

.rev-editor-header p {
    font-size: 1.02rem;
    line-height: 1.65;
    opacity: 0.85;
}

/* Layout general */
.rev-editor-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 2.6rem;
    align-items: flex-start;
}

/* Eje lateral “técnico” */
.rev-editor-axis {
    position: relative;
    width: 46px;
    min-height: 100%;
    display: flex;
    justify-content: center;
}

.rev-editor-axis-line {
    position: absolute;
    width: 2px;
    inset-block: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #6fb8ff, #c39bff);
    border-radius: 999px;
    opacity: 0.9;
}

.rev-editor-axis-label {
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
    top: 50%;
    transform: translateY(-50%);
}

/* Lista de features */
.rev-editor-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.3rem 2.5rem;
}

/* Bloques sin “caja tradicional” */
.rev-editor-feature {
    position: relative;
    padding: 1.9rem 1.7rem 1.7rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.98));
    box-shadow: 0 10px 26px rgba(18, 24, 48, 0.06);
    overflow: hidden;
}

/* Banda superior tipo “tag” */
.rev-editor-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(112, 182, 255, 0.1);
    border: 1px solid rgba(112, 182, 255, 0.35);
    margin-bottom: 0.9rem;
    opacity: 0.9;
}

/* Resaltado lateral sutil */
.rev-editor-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    width: 3px;
    height: 64%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #6fb8ff, #c39bff);
    opacity: 0.7;
}

/* Halo suave */
.rev-editor-feature::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -18%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.18), transparent 70%);
}

/* Títulos y texto */
.rev-editor-feature h4 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.rev-editor-feature p {
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hover */
.rev-editor-feature:hover {
    box-shadow: 0 18px 38px rgba(18, 24, 48, 0.12);
    transform: translateY(-2px);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .rev-editor-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2rem;
    }

    .rev-editor-axis {
        display: none;
    }

    .rev-editor-features {
        grid-template-columns: 1fr;
    }

    .writers-revolution-editor {
        padding: 4.5rem 1.5rem 5.5rem;
    }
}
/* ========== SESIÓN 4 · SUB BLOQUE 4.3: INTELIGENCIA NARRATIVA OFFLINE ========== */

.writers-revolution-narrative {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left, rgba(90, 150, 255, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(180, 150, 255, 0.16), transparent 60%),
        #060812;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-revolution-narrative-inner {
    max-width: 1080px;
}

/* Cabecera */
.rev-narrative-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.rev-narrative-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.rev-narrative-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general: texto + mapa */
.rev-narrative-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: 3rem;
    align-items: stretch;
}

/* Columna de texto */
.rev-narrative-explainer {
    font-size: 0.99rem;
}

.rev-narrative-intro {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.8rem;
}

.rev-narrative-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rev-narrative-bullets li {
    position: relative;
    line-height: 1.7;
    opacity: 0.9;
    padding-left: 1.5rem;
}

.rev-narrative-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(115, 184, 255, 0.6);
}

.rev-narrative-bullets strong {
    font-weight: 600;
}

/* Columna del mapa narrativo */
.rev-narrative-map {
    position: relative;
    min-height: 280px;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 70%),
        linear-gradient(135deg, rgba(8, 10, 22, 0.9), rgba(7, 9, 20, 0.98));
    overflow: hidden;
    padding: 2.2rem 2.1rem;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.55);
}

/* Líneas de conexión “en red” */
.rev-narrative-map::before,
.rev-narrative-map::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(130, 190, 255, 0.35);
    opacity: 0.6;
}

.rev-narrative-map::before {
    inset: 12% 20%;
    transform: rotate(-7deg);
}

.rev-narrative-map::after {
    inset: 23% 14%;
    transform: rotate(8deg);
}

/* Nodos narrativos */
.rev-narrative-node {
    position: absolute;
    min-width: 120px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(5, 7, 16, 0.88);
    border: 1px solid rgba(162, 208, 255, 0.55);
    backdrop-filter: blur(6px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 0 18px rgba(72, 140, 230, 0.5);
}

/* Etiquetas */
.node-label {
    white-space: nowrap;
}

/* Posicionamiento de cada nodo */
.node-main {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0.7rem 1.3rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, #7fbaff, #b995ff);
    color: #050712;
    box-shadow:
        0 0 28px rgba(127, 186, 255, 0.7),
        0 0 60px rgba(185, 149, 255, 0.7);
}

.node-scenes {
    top: 14%;
    left: 18%;
}

.node-characters {
    top: 18%;
    right: 10%;
}

.node-timeline {
    bottom: 20%;
    left: 14%;
}

.node-consistency {
    bottom: 16%;
    right: 12%;
}

.node-semantic {
    top: 52%;
    right: 6%;
}

/* Animación sutil de “latido” para los nodos secundarios */
.rev-narrative-node:not(.node-main) {
    animation: revNodePulse 5.5s ease-in-out infinite;
}

@keyframes revNodePulse {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.85; }
    50%  { transform: translate(0, -2px) scale(1.03); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
}

/* Responsive */
@media (max-width: 960px) {
    .rev-narrative-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.5rem;
    }

    .writers-revolution-narrative {
        padding: 4.8rem 1.5rem 5.8rem;
    }

    .rev-narrative-map {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .rev-narrative-map {
        padding: 1.9rem 1.6rem;
    }

    .rev-narrative-node {
        font-size: 0.65rem;
        min-width: 100px;
    }
}
/* ========== SESIÓN 4 · SUB BLOQUE 4.4: CONTROL ABSOLUTO DEL MANUSCRITO ========== */

.writers-revolution-control {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    box-sizing: border-box;
    background:
        linear-gradient(to bottom, rgba(8, 12, 28, 0.04), rgba(8, 12, 28, 0)),
        #f6f8fd;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-revolution-control-inner {
    max-width: 1040px;
}

/* Cabecera */
.rev-control-header {
    max-width: 720px;
    margin-bottom: 2.8rem;
}

.rev-control-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.rev-control-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Panel de control (filas) */
.rev-control-panel {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Cada fila */
.rev-control-row {
    position: relative;
    padding: 1.6rem 1.8rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
    box-shadow: 0 12px 30px rgba(20, 26, 48, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    column-gap: 1.8rem;
    align-items: flex-start;
    overflow: hidden;
}

/* Halo decorativo sutil */
.rev-control-row::after {
    content: "";
    position: absolute;
    right: -18%;
    top: -40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115, 185, 255, 0.16), transparent 70%);
}

/* “Píldora” de título */
.rev-control-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(112, 182, 255, 0.5);
    background: rgba(112, 182, 255, 0.06);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 1;
}

/* Punto “activo” */
.control-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(112, 182, 255, 0.7);
}

/* Texto de la etiqueta */
.control-label {
    white-space: nowrap;
}

/* Texto descriptivo */
.rev-control-text {
    position: relative;
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

/* Línea lateral de “estado” cuando se pasa el ratón */
.rev-control-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    width: 3px;
    height: 64%;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(111, 184, 255, 0.9), rgba(195, 155, 255, 0.9));
    opacity: 0;
    transform: translateX(-3px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* Hover */
.rev-control-row:hover {
    box-shadow: 0 18px 40px rgba(20, 26, 48, 0.14);
    transform: translateY(-2px);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.rev-control-row:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .rev-control-row {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0.9rem;
        padding: 1.4rem 1.4rem;
    }

    .rev-control-panel {
        gap: 1.5rem;
    }

    .writers-revolution-control {
        padding: 4.5rem 1.5rem 5.5rem;
    }
}
/* ========== SESIÓN 4 · SUB BLOQUE 4.5: HERRAMIENTAS DE ESCRITURA AVANZADAS ========== */

.writers-revolution-tools {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top right, rgba(110, 180, 255, 0.18), transparent 60%),
        #050711;
    display: flex;
    justify-content: center;
    color: #f6f8ff;
}

.writers-revolution-tools-inner {
    max-width: 1080px;
}

/* Cabecera */
.rev-tools-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.rev-tools-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.rev-tools-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general: órbita + grid */
.rev-tools-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: 2.8rem;
    align-items: center;
}

/* Órbita central */
.rev-tools-orbit {
    position: relative;
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Núcleo central */
.rev-tools-core {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 40%, #b995ff 100%);
    box-shadow:
        0 0 26px rgba(125, 190, 255, 0.8),
        0 0 60px rgba(185, 149, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #050711;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

/* Anillos */
.rev-tools-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(150, 205, 255, 0.45);
    pointer-events: none;
    transform-origin: center;
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation: toolsRing1 13s linear infinite;
}

.ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(150, 205, 255, 0.25);
    animation: toolsRing2 18s linear infinite;
}

@keyframes toolsRing1 {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.03); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes toolsRing2 {
    0%   { transform: rotate(0deg) scale(1.02); }
    50%  { transform: rotate(-180deg) scale(1.05); }
    100% { transform: rotate(-360deg) scale(1.02); }
}

/* Grid de herramientas */
.rev-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
}

/* Cada herramienta */
.rev-tools-item {
    position: relative;
    padding: 1.4rem 1.6rem 1.3rem;
    border-radius: 1.3rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(154, 205, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

/* Halo decorativo */
.rev-tools-item::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -45%;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.22), transparent 70%);
}

/* Títulos y texto */
.rev-tools-item h4 {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    z-index: 1;
}

.rev-tools-item p {
    position: relative;
    font-size: 0.96rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

/* Línea lateral sutil */
.rev-tools-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.65;
}

/* Hover */
.rev-tools-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .rev-tools-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.4rem;
    }

    .writers-revolution-tools {
        padding: 4.8rem 1.5rem 5.8rem;
    }

    .rev-tools-orbit {
        min-height: 230px;
    }
}

@media (max-width: 600px) {
    .rev-tools-core {
        width: 130px;
        height: 130px;
        font-size: 0.7rem;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 250px;
        height: 250px;
    }

    .rev-tools-item {
        padding: 1.25rem 1.3rem 1.2rem;
    }
}
/* ===================== SESIÓN 5: TÍTULO HERRAMIENTAS EDITORIALES ===================== */

.writers-editorial-title {
    width: 100%;
    padding: 6rem 1.5rem 3rem;
    background:
        linear-gradient(to bottom, rgba(10, 13, 24, 0.04), rgba(10, 13, 24, 0)),
        #ffffff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.writers-editorial-title-inner {
    max-width: 900px;
    position: relative;
    padding-bottom: 1.4rem;
}

/* Línea doble luminosa debajo del título */
.writers-editorial-title-inner::before,
.writers-editorial-title-inner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 180px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6bb7ff, #b993ff);
}

.writers-editorial-title-inner::before {
    bottom: 6px;
    opacity: 0.6;
}

.writers-editorial-title-inner::after {
    bottom: 0;
    animation: editorialLinePulse 4s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes editorialLinePulse {
    0%   { transform: scaleX(0.7); opacity: 0.6; }
    50%  { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.7); opacity: 0.6; }
}

.editorial-title {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #0a0d14;
    line-height: 1.25;
}
/* ========== SESIÓN 5 · SUB BLOQUE 5.1: MODO ENTREGA EDITORIAL ========== */

.writers-editorial-delivery {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    box-sizing: border-box;
    background:
        linear-gradient(to bottom, rgba(8, 12, 28, 0.04), rgba(8, 12, 28, 0)),
        #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-editorial-delivery-inner {
    max-width: 1040px;
}

/* Cabecera */
.rev-delivery-header {
    max-width: 740px;
    margin-bottom: 3rem;
}

.rev-delivery-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

.rev-delivery-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Grid */
.rev-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.4rem;
}

/* Item */
.rev-delivery-item {
    position: relative;
    padding: 1.7rem 1.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.98));
    border-radius: 1.4rem;
    box-shadow: 0 10px 28px rgba(18, 24, 48, 0.07);
    border-left: 3px solid transparent;
    transition: border-left-color 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

/* Línea de color animada a la izquierda */
.rev-delivery-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #6fb8ff, #bb94ff);
    opacity: 0.8;
    transform: translateX(-3px);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Halo */
.rev-delivery-item::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -35%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 185, 255, 0.18), transparent 70%);
}

/* Hover */
.rev-delivery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(18, 24, 48, 0.12);
}

.rev-delivery-item:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Títulos y texto */
.rev-delivery-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
}

.rev-delivery-item p {
    font-size: 0.97rem;
    line-height: 1.65;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

/* Responsive */
@media (max-width: 900px) {
    .rev-delivery-grid {
        grid-template-columns: 1fr;
    }

    .writers-editorial-delivery {
        padding: 4.5rem 1.5rem 5.5rem;
    }
}
/* ========== SESIÓN 5 · SUB BLOQUE 5.2: COMPARACIÓN DE VERSIONES ========== */

.writers-editorial-versions {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left, rgba(110, 180, 255, 0.12), transparent 60%),
        #f5f7fc;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-editorial-versions-inner {
    max-width: 1080px;
}

/* Cabecera */
.rev-versions-header {
    max-width: 740px;
    margin-bottom: 3rem;
}

.rev-versions-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

.rev-versions-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Layout general */
.rev-versions-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    column-gap: 2.8rem;
    align-items: flex-start;
}

/* Timeline */
.rev-versions-timeline {
    position: relative;
    padding-left: 2.2rem;
}

.version-line {
    position: absolute;
    left: 0.6rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #6fb8ff, #bb94ff);
    opacity: 0.8;
}

/* Cada paso */
.version-step {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.version-step:last-of-type {
    margin-bottom: 0;
}

/* Nodo */
.version-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.35rem;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(112, 182, 255, 0.7);
    opacity: 0.7;
}

.version-node-active {
    width: 14px;
    height: 14px;
    margin-top: 0.25rem;
    opacity: 1;
}

/* Contenido del paso */
.version-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.version-content p {
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Columna derecha: resumen */
.rev-versions-summary {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.rev-versions-card {
    position: relative;
    padding: 1.8rem 1.7rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.98));
    box-shadow: 0 10px 28px rgba(20, 26, 48, 0.07);
    overflow: hidden;
}

/* Segunda tarjeta, tono algo más técnico */
.rev-versions-card-secondary {
    background:
        radial-gradient(circle at top right, rgba(125, 190, 255, 0.16), transparent 65%),
        linear-gradient(135deg, rgba(252, 253, 255, 0.98), rgba(240, 244, 255, 0.98));
}

/* Halo decorativo */
.rev-versions-card::after {
    content: "";
    position: absolute;
    right: -25%;
    bottom: -45%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 185, 255, 0.18), transparent 70%);
}

/* Etiqueta */
.rev-versions-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.7rem;
}

/* Texto */
.rev-versions-text {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Hover tarjetas */
.rev-versions-card:hover {
    box-shadow: 0 16px 40px rgba(20, 26, 48, 0.12);
    transform: translateY(-2px);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .rev-versions-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.4rem;
    }

    .writers-editorial-versions {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 600px) {
    .rev-versions-timeline {
        padding-left: 1.8rem;
    }

    .version-line {
        left: 0.5rem;
    }
}
/* ========== SESIÓN 5 · SUB BLOQUE 5.3: CORRECCIÓN PROFESIONAL INTEGRADA ========== */

.writers-editorial-correction {
    width: 100%;
    padding: 5.2rem 1.5rem 6.2rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top right, rgba(120, 190, 255, 0.18), transparent 60%),
        #050711;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-editorial-correction-inner {
    max-width: 1080px;
}

/* Cabecera */
.rev-correction-header {
    max-width: 740px;
    margin-bottom: 3rem;
}

.rev-correction-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.rev-correction-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.rev-correction-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: 2.8rem;
    align-items: center;
}

/* Panel visual de “corrección” */
.rev-correction-panel {
    position: relative;
    height: 260px;
}

/* Capas */
.rev-correction-layer {
    position: absolute;
    inset: 0;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(10, 14, 32, 0.96), rgba(5, 8, 20, 0.98));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.layer-base {
    transform: translate(12px, 12px);
    opacity: 0.7;
}

.layer-highlight {
    inset: 0;
    border: 1px solid rgba(150, 205, 255, 0.5);
}

/* “Líneas de texto” */
.rev-correction-line {
    position: absolute;
    left: 16%;
    right: 14%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(240, 244, 255, 0.14), rgba(240, 244, 255, 0.4));
}

.line-1 {
    top: 32%;
}

.line-2 {
    top: 46%;
}

.line-3 {
    top: 60%;
    background: linear-gradient(90deg, rgba(255, 120, 120, 0.3), rgba(255, 255, 255, 0.6));
}

/* Badge “Offline Review” */
.rev-correction-badge {
    position: absolute;
    left: 18%;
    bottom: 22%;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(3, 6, 16, 0.9);
    border: 1px solid rgba(155, 210, 255, 0.8);
    display: inline-flex;
    gap: 0.45rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow:
        0 0 20px rgba(125, 190, 255, 0.8),
        0 18px 40px rgba(0, 0, 0, 0.9);
}

.rev-correction-badge span:last-child {
    opacity: 0.8;
}

/* Lista de funciones */
.rev-correction-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Item */
.rev-correction-item {
    position: relative;
    padding: 1.4rem 1.6rem 1.3rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(154, 205, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* Halo */
.rev-correction-item::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -35%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.22), transparent 70%);
}

/* Barra lateral */
.rev-correction-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.7;
}

/* Texto */
.rev-correction-item h4 {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    z-index: 1;
}

.rev-correction-item p {
    position: relative;
    font-size: 0.96rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

/* Hover */
.rev-correction-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.85);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .rev-correction-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.4rem;
    }

    .writers-editorial-correction {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 600px) {
    .rev-correction-panel {
        height: 230px;
    }

    .rev-correction-badge {
        left: 14%;
        bottom: 20%;
        font-size: 0.68rem;
    }

    .rev-correction-item {
        padding: 1.25rem 1.35rem 1.2rem;
    }
}
/* ========== SESIÓN 5 · SUB BLOQUE 5.4: EXPORTACIONES PROFESIONALES ========== */

.writers-editorial-export {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at bottom left, rgba(90, 150, 255, 0.18), transparent 55%),
        #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-editorial-export-inner {
    max-width: 1080px;
}

/* Cabecera */
.rev-export-header {
    max-width: 740px;
    margin-bottom: 3rem;
}

.rev-export-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.rev-export-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Layout general */
.rev-export-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: center;
}

/* Módulo visual */
.rev-export-module {
    position: relative;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centro */
.export-center {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7fbaff, #b995ff);
    box-shadow:
        0 0 28px rgba(127, 186, 255, 0.65),
        0 0 60px rgba(185, 149, 255, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #050711;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 3;
}

/* Burbujas exteriores */
.export-bubble {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(5, 7, 16, 0.88);
    border: 1px solid rgba(155, 210, 255, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: 0 0 18px rgba(72, 140, 230, 0.5);
    animation: bubbleFloat 7s ease-in-out infinite;
}

/* Posiciones */
.bubble-docx { top: 4%; left: 16%; animation-delay: 0s; }
.bubble-epub { top: 18%; right: 10%; animation-delay: 1s; }
.bubble-pdf  { bottom: 14%; left: 12%; animation-delay: 2s; }
.bubble-pack { bottom: 8%; right: 18%; animation-delay: 3s; }

/* Animación */
@keyframes bubbleFloat {
    0%   { transform: translateY(0) scale(1); opacity: 0.85; }
    50%  { transform: translateY(-6px) scale(1.05); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.85; }
}

/* Panel de detalles */
.rev-export-details {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.rev-export-item {
    position: relative;
    padding: 1.6rem 1.7rem 1.4rem;
    border-radius: 1.3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.98));
    box-shadow: 0 12px 30px rgba(18, 24, 48, 0.07);
    overflow: hidden;
}

/* Halo */
.rev-export-item::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -40%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.18), transparent 70%);
}

/* Títulos y texto */
.rev-export-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 1;
}

.rev-export-item p {
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Línea lateral */
.rev-export-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.75;
}

/* Hover */
.rev-export-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(18, 24, 48, 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .rev-export-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.4rem;
    }

    .writers-editorial-export {
        padding: 4.8rem 1.5rem 5.8rem;
    }

    .rev-export-module {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .export-center {
        width: 95px;
        height: 95px;
        font-size: 0.68rem;
    }

    .export-bubble {
        width: 75px;
        height: 75px;
        font-size: 0.66rem;
    }
}
/* ===================== SESIÓN 6 · BLOQUE MAESTRO: CONEXIÓN CON COoBOOK EDITORIAL ===================== */

.writers-ecosystem-master {
    width: 100%;
    padding: 7rem 1.5rem 5rem;
    background:
        radial-gradient(circle at center top, rgba(120, 190, 255, 0.12), transparent 70%),
        linear-gradient(to bottom, #04060f, #080a14);
    display: flex;
    justify-content: center;
    color: #e8ecff;
    box-sizing: border-box;
}

.writers-ecosystem-master-inner {
    max-width: 1080px;
}

/* Marco visual */
.ecosystem-master-frame {
    position: relative;
    padding: 4rem 2rem 3.6rem;
    text-align: center;
    border-radius: 2rem;
    background:
        linear-gradient(135deg, rgba(10, 14, 28, 0.72), rgba(5, 8, 20, 0.88));
    border: 1px solid rgba(140, 190, 255, 0.25);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.65),
        inset 0 0 25px rgba(120, 190, 255, 0.06);
}

/* Halo animado */
.ecosystem-master-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
    animation: ecosystemGlow 8s ease-in-out infinite;
    opacity: 0.28;
}

@keyframes ecosystemGlow {
    0%   { transform: translateX(-50%) scale(0.85); opacity: 0.22; }
    50%  { transform: translateX(-50%) scale(1); opacity: 0.32; }
    100% { transform: translateX(-50%) scale(0.85); opacity: 0.22; }
}

/* Título */
.ecosystem-master-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.4rem;
    color: #eef2ff;
}

/* Subtítulo */
.ecosystem-master-sub {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 720px) {
    .ecosystem-master-frame {
        padding: 3rem 1.5rem 3rem;
    }

    .ecosystem-master-title {
        font-size: 1.9rem;
    }

    .ecosystem-master-sub {
        font-size: 1rem;
    }

    .ecosystem-master-glow {
        width: 340px;
        height: 340px;
    }
}
/* ========== SESIÓN 6 · SUB BLOQUE 6.1: ENVÍO DIRECTO DEL MANUSCRITO ========== */

.writers-editorial-send {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left, rgba(120, 190, 255, 0.16), transparent 60%),
        #050711;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-editorial-send-inner {
    max-width: 1080px;
}

/* Cabecera */
.send-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.send-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.send-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.send-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 2.8rem;
    align-items: center;
}

/* Columna izquierda: flujo */
.send-flow {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1fr);
    column-gap: 1.8rem;
    align-items: center;
}

/* “Dispositivo” */
.send-device {
    position: relative;
    border-radius: 1.8rem;
    padding: 0.5rem;
    background: linear-gradient(145deg, #131725, #050711);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.8),
        inset 0 0 18px rgba(150, 205, 255, 0.08);
}

.send-device-screen {
    border-radius: 1.4rem;
    padding: 1.4rem 1.5rem 1.2rem;
    background: radial-gradient(circle at top, rgba(240, 244, 255, 0.12), transparent 70%);
    border: 1px solid rgba(150, 205, 255, 0.35);
}

/* Etiqueta superior */
.send-device-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1.1rem;
}

/* “Botón” visual */
.send-device-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(6, 10, 26, 0.9);
    border: 1px solid rgba(145, 205, 255, 0.9);
    box-shadow:
        0 0 18px rgba(127, 186, 255, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.85);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.send-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(127, 186, 255, 0.9);
}

.send-action-text {
    white-space: nowrap;
}

/* Lista de pasos */
.send-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(200, 215, 255, 0.18);
    padding-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.send-steps li {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.86;
    position: relative;
    padding-left: 1.1rem;
}

.send-steps li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    opacity: 0.9;
}

/* Flecha central */
.send-arrow {
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7fbaff, #b995ff);
    position: relative;
    opacity: 0.9;
}

.send-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    border-top: 2px solid #bfe0ff;
    border-right: 2px solid #bfe0ff;
    transform: translateY(-50%) rotate(45deg);
}

/* Destino */
.send-destination {
    position: relative;
    padding: 1.7rem 1.6rem 1.5rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(127, 186, 255, 0.2), transparent 70%),
        linear-gradient(135deg, rgba(10, 14, 30, 0.96), rgba(5, 8, 20, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.55);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
}

/* Tag destino */
.send-destination-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

/* Texto destino */
.send-destination-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Columna derecha: detalles */
.send-details {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.send-detail-item {
    position: relative;
    padding: 1.5rem 1.6rem 1.4rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(154, 205, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    overflow: hidden;
}

/* Halo */
.send-detail-item::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -40%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.22), transparent 70%);
}

/* Barra lateral */
.send-detail-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.7;
}

/* Texto */
.send-detail-item h4 {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    z-index: 1;
}

.send-detail-item p {
    position: relative;
    font-size: 0.96rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

/* Hover */
.send-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.9);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .send-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-editorial-send {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 720px) {
    .send-flow {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.8rem;
    }

    .send-arrow {
        width: 60px;
        height: 2px;
        justify-self: center;
    }
}
/* ========== SESIÓN 6 · SUB BLOQUE 6.2: REVISIÓN EDITORIAL SEGURA (BIDIRECCIONAL) ========== */

.writers-editorial-review {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at bottom right, rgba(120, 190, 255, 0.18), transparent 60%),
        #080a14;
    display: flex;
    justify-content: center;
    color: #f3f5ff;
}

.writers-editorial-review-inner {
    max-width: 1080px;
}

/* Cabecera */
.review-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.review-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.review-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 2.4rem;
    align-items: center;
}

/* Lados */
.review-side {
    position: relative;
    padding: 1.8rem 1.6rem 1.6rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top, rgba(250, 250, 255, 0.08), transparent 70%),
        linear-gradient(135deg, rgba(12, 16, 32, 0.96), rgba(6, 9, 24, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

/* Etiquetas lado */
.review-side-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.1rem;
}

/* Bubble principal */
.review-bubble {
    position: relative;
    padding: 1.3rem 1.4rem 1.2rem;
    border-radius: 1.3rem;
    background:
        linear-gradient(135deg, rgba(18, 22, 44, 0.98), rgba(10, 14, 30, 0.98));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
    border-left: 2px solid rgba(127, 186, 255, 0.85);
    overflow: hidden;
}

.review-bubble::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -40%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
}

.review-bubble-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.review-bubble-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Nota lateral (lado editorial) */
.review-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.3rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.review-note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(127, 186, 255, 0.9);
}

/* Lista lado autor */
.review-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.review-list li {
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    padding-left: 1.2rem;
}

.review-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
}

/* Canal central */
.review-channel {
    position: relative;
    width: 110px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-channel-line {
    position: absolute;
    width: 2px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.9;
    overflow: hidden;
}

.review-channel-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    transform: translateY(-100%);
    animation: reviewChannelFlow 3.6s infinite ease-in-out;
}

@keyframes reviewChannelFlow {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(120%); opacity: 0; }
}

/* Tag canal */
.review-channel-tag {
    position: relative;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 10, 26, 0.96);
    border: 1px solid rgba(155, 210, 255, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    box-shadow:
        0 0 18px rgba(127, 186, 255, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.9);
}

/* Hover sutil en los lados */
.review-side:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 1040px) {
    .review-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.4rem;
    }

    .review-channel {
        height: 120px;
        width: 100%;
    }

    .review-channel-line {
        height: 2px;
        width: 100%;
    }

    .review-channel-line::after {
        height: 100%;
        width: 40%;
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
        transform: translateX(-100%);
        animation-name: reviewChannelFlowHorizontal;
    }

    @keyframes reviewChannelFlowHorizontal {
        0%   { transform: translateX(-100%); opacity: 0; }
        30%  { opacity: 1; }
        100% { transform: translateX(120%); opacity: 0; }
    }
}

@media (max-width: 720px) {
    .writers-editorial-review {
        padding: 4.8rem 1.5rem 5.8rem;
    }

    .review-side {
        padding: 1.6rem 1.4rem 1.4rem;
    }

    .review-bubble {
        padding: 1.15rem 1.2rem 1.1rem;
    }
}
/* ========== SESIÓN 6 · SUB BLOQUE 6.3: PIPELINE EDITORIAL COMPLETO ========== */

.writers-editorial-pipeline {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left, rgba(90, 150, 255, 0.18), transparent 60%),
        #f6f8ff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-editorial-pipeline-inner {
    max-width: 1080px;
}

/* Header */
.pipeline-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.pipeline-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.pipeline-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.pipeline-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: center;
}

/* Pipeline visual */
.pipeline-visual {
    position: relative;
    padding-left: 2rem;
}

.pipeline-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.pipeline-step:last-of-type {
    margin-bottom: 0;
}

/* Nodo */
.pipeline-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 14px rgba(112, 182, 255, 0.75);
    opacity: 0.75;
}

.pipeline-node-active {
    width: 16px;
    height: 16px;
    opacity: 1;
}

/* Conector */
.pipeline-connector {
    width: 2px;
    height: 38px;
    background: linear-gradient(to bottom, #84c2ff, #c5a1ff);
    margin-left: 6px;
    opacity: 0.8;
}

/* Texto paso */
.pipeline-step-text {
    font-size: 0.97rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Panel de detalles */
.pipeline-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.pipeline-card {
    position: relative;
    padding: 1.6rem 1.7rem 1.4rem;
    border-radius: 1.3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 245, 255, 0.98));
    box-shadow: 0 12px 32px rgba(18, 24, 48, 0.08);
    overflow: hidden;
}

/* Halo */
.pipeline-card::after {
    content: "";
    position: absolute;
    right: -22%;
    bottom: -40%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.20), transparent 70%);
}

/* Barra lateral */
.pipeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.75;
}

/* Títulos y texto */
.pipeline-card h4 {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    z-index: 1;
}

.pipeline-card p {
    position: relative;
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

/* Hover */
.pipeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(18, 24, 48, 0.14);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .pipeline-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-editorial-pipeline {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 600px) {
    .pipeline-visual {
        padding-left: 1.4rem;
    }

    .pipeline-node {
        width: 12px;
        height: 12px;
    }
}
/* ========== SESIÓN 6 · SUB BLOQUE 6.4: PUBLICACIÓN INTEGRADA ========== */

.writers-editorial-publication {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top right, rgba(120, 190, 255, 0.16), transparent 60%),
        #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-editorial-publication-inner {
    max-width: 1080px;
}

/* Cabecera */
.pub-header {
    max-width: 780px;
    margin-bottom: 3rem;
}

.pub-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.pub-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Layout general */
.pub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: center;
}

/* Columna izquierda */
.pub-left {
    font-size: 0.98rem;
}

.pub-intro {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.6rem;
}

/* Checklist */
.pub-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.pub-checklist li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.7rem;
    align-items: flex-start;
    line-height: 1.7;
    opacity: 0.9;
}

.pub-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 14px rgba(112, 182, 255, 0.7);
}

/* Columna derecha: tarjeta del libro */
.pub-right {
    display: flex;
    justify-content: center;
}

.pub-book-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 1.8rem;
    padding: 1.8rem 1.7rem 1.6rem;
    background:
        radial-gradient(circle at top left, rgba(127, 186, 255, 0.18), transparent 70%),
        linear-gradient(135deg, rgba(10, 14, 30, 0.97), rgba(5, 8, 20, 0.99));
    border: 1px solid rgba(150, 205, 255, 0.5);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
    color: #f5f7ff;
    overflow: hidden;
}

/* Halo decorativo */
.pub-book-card::after {
    content: "";
    position: absolute;
    right: -22%;
    bottom: -40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.25), transparent 70%);
}

/* Cabecera de estado */
.pub-book-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
}

.pub-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fffa7 45%, #54d47c 100%);
    box-shadow: 0 0 14px rgba(120, 230, 160, 0.9);
}

/* Cuerpo principal */
.pub-book-main {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    column-gap: 1.4rem;
    margin-bottom: 1.6rem;
}

/* “Portada” */
.pub-book-cover {
    border-radius: 1rem;
    padding: 1rem 0.9rem;
    background:
        linear-gradient(145deg, #7fbaff, #b995ff);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(185, 149, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.3rem;
}

.pub-book-title {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.92;
}

.pub-book-author {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* Meta */
.pub-book-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.pub-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pub-meta-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.pub-meta-value {
    opacity: 0.95;
}

.pub-meta-link {
    opacity: 0.9;
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* Opciones inferiores */
.pub-book-options {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200, 220, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pub-option-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pub-option-label {
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0.78;
}

/* Tags */
.pub-option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pub-tag {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(155, 210, 255, 0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    opacity: 0.75;
}

.pub-tag-active {
    background: rgba(250, 252, 255, 0.95);
    color: #050711;
    opacity: 1;
}

/* Toggle POD */
.pub-pod-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.4rem;
    border-radius: 999px;
    background: rgba(5, 8, 20, 0.9);
    border: 1px solid rgba(155, 210, 255, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    box-shadow:
        0 0 18px rgba(127, 186, 255, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.85);
}

.pub-pod-knob {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b995ff 100%);
}

.pub-pod-text {
    opacity: 0.92;
}

/* Hover general tarjeta */
.pub-book-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .pub-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-editorial-publication {
        padding: 4.8rem 1.5rem 5.8rem;
    }

    .pub-right {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .pub-book-main {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1rem;
    }

    .pub-book-card {
        padding: 1.6rem 1.4rem 1.4rem;
    }
}
/* ========== SESIÓN 7 · BLOQUE MAESTRO: CONEXIÓN CON COoBOOK PARTNERS (TU RED PROFESIONAL) ========== */

.writers-partners-master {
    width: 100%;
    padding: 7rem 1.5rem 5rem;
    background:
        radial-gradient(circle at center bottom, rgba(120, 190, 255, 0.14), transparent 70%),
        linear-gradient(to bottom, #050711, #0a0d19);
    display: flex;
    justify-content: center;
    color: #eef2ff;
    box-sizing: border-box;
}

.writers-partners-master-inner {
    max-width: 1080px;
}

/* Marco visual */
.partners-master-frame {
    position: relative;
    padding: 4rem 2rem 3.6rem;
    text-align: center;
    border-radius: 2rem;
    background:
        linear-gradient(135deg, rgba(8, 10, 22, 0.82), rgba(5, 7, 18, 0.88));
    border: 1px solid rgba(140, 190, 255, 0.25);
    overflow: hidden;
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.75),
        inset 0 0 25px rgba(120, 190, 255, 0.06);
}

/* Halo animado */
.partners-master-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
    animation: partnersGlow 9s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes partnersGlow {
    0%   { transform: translateX(-50%) scale(0.85); opacity: 0.22; }
    50%  { transform: translateX(-50%) scale(1); opacity: 0.3; }
    100% { transform: translateX(-50%) scale(0.85); opacity: 0.22; }
}

/* Título */
.partners-master-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.4rem;
    color: #eef2ff;
}

/* Subtítulo */
.partners-master-sub {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 720px) {
    .partners-master-frame {
        padding: 3rem 1.5rem 3rem;
    }

    .partners-master-title {
        font-size: 1.9rem;
    }

    .partners-master-sub {
        font-size: 1rem;
    }

    .partners-master-glow {
        width: 340px;
        height: 340px;
    }
}
/* ========== SESIÓN 7 · SUB BLOQUE 7.1: MARKETPLACE PROFESIONAL INTEGRADO ========== */

.writers-partners-marketplace {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at center left, rgba(120, 190, 255, 0.15), transparent 70%),
        #0a0d19;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-partners-marketplace-inner {
    max-width: 1080px;
}

/* Header */
.market-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.market-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.market-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout */
.market-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    column-gap: 3rem;
    align-items: flex-start;
}

/* Izquierda */
.market-info {
    font-size: 0.98rem;
}

.market-intro,
.market-sub-intro {
    opacity: 0.9;
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

.market-list,
.market-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.market-list li,
.market-features li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.88;
}

.market-list li::before,
.market-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    opacity: 0.9;
}

/* Derecha: tarjetas */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.market-card {
    position: relative;
    padding: 1.6rem 1.4rem 1.4rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(155, 210, 255, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.market-card-glow {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -40%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
    z-index: 0;
}

/* Card elements */
.market-card-header {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.market-card-meta {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.9rem;
}

.market-card-section {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}

.market-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.market-value {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-top: 0.15rem;
}

.market-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(170, 200, 255, 0.18);
    margin: 0.9rem 0;
}

.market-card-contract {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Hover */
.market-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.92);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .market-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.8rem;
    }

    .writers-partners-marketplace {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}
/* ========== SESIÓN 7 · SUB BLOQUE 7.2: COMPARTICIÓN SEGURA POR CAPÍTULOS ========== */

.writers-partners-sharing {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top right, rgba(120, 190, 255, 0.14), transparent 65%),
        #050711;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-partners-sharing-inner {
    max-width: 1080px;
}

/* Cabecera */
.sharing-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.sharing-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.sharing-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.sharing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: flex-start;
}

/* Columna izquierda: casos de uso */
.sharing-cases {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sharing-case-card {
    position: relative;
    padding: 1.6rem 1.7rem 1.4rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(155, 210, 255, 0.32);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.85);
    overflow: hidden;
}

.sharing-case-card::after {
    content: "";
    position: absolute;
    right: -22%;
    bottom: -40%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
}

.sharing-case-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.sharing-case-card p {
    position: relative;
    z-index: 1;
    font-size: 0.96rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Hover */
.sharing-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.95);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Columna derecha: controles */
.sharing-controls {
    position: relative;
    padding: 1.9rem 1.8rem 1.7rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top, rgba(250, 250, 255, 0.08), transparent 70%),
        linear-gradient(135deg, rgba(10, 14, 30, 0.96), rgba(5, 8, 20, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.45);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

/* Halo */
.sharing-controls::after {
    content: "";
    position: absolute;
    right: -26%;
    top: -40%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.2), transparent 70%);
}

/* Título controles */
.sharing-controls-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Lista de controles */
.sharing-controls-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sharing-controls-list li {
    position: relative;
}

/* Badge */
.sharing-badge {
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(155, 210, 255, 0.9);
    background: rgba(3, 6, 16, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sharing-controls-list p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .sharing-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-partners-sharing {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 600px) {
    .sharing-case-card,
    .sharing-controls {
        padding: 1.5rem 1.4rem 1.3rem;
    }
}
/* ========== SESIÓN 7 · SUB BLOQUE 7.3: SISTEMA DE ENTREGAS Y FEEDBACK ========== */

.writers-partners-delivery {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at bottom left, rgba(120, 190, 255, 0.16), transparent 65%),
        #0a0d19;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-partners-delivery-inner {
    max-width: 1080px;
}

/* Cabecera */
.delivery-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.delivery-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.delivery-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout */
.delivery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: center;
}

/* Columna izquierda: visual */
.delivery-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 1.8rem;
    align-items: center;
}

/* Tarjeta Partner */
.delivery-partner-card {
    position: relative;
    padding: 1.7rem 1.6rem 1.5rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(8, 11, 24, 0.98));
    border: 1px solid rgba(155, 210, 255, 0.35);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.delivery-partner-card::after {
    content: "";
    position: absolute;
    right: -24%;
    bottom: -40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
}

.delivery-partner-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.6rem;
}

.delivery-partner-role {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    opacity: 0.88;
    margin-bottom: 1.1rem;
}

/* Botón de subida */
.delivery-upload-pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(155, 210, 255, 0.9);
    background: rgba(3, 6, 16, 0.95);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow:
        0 0 18px rgba(127, 186, 255, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.9);
}

.delivery-upload-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 12px rgba(127, 186, 255, 0.9);
}

.delivery-partner-note {
    position: relative;
    z-index: 1;
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Canal seguro */
.delivery-secure-channel {
    position: relative;
    width: 110px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-secure-line {
    position: absolute;
    width: 2px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.9;
    overflow: hidden;
}

.delivery-secure-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    transform: translateY(-100%);
    animation: deliveryFlow 3.4s infinite ease-in-out;
}

@keyframes deliveryFlow {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(120%); opacity: 0; }
}

.delivery-secure-tag {
    position: relative;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(5, 8, 20, 0.96);
    border: 1px solid rgba(155, 210, 255, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    box-shadow:
        0 0 18px rgba(127, 186, 255, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.9);
}

/* Tarjeta e-reader */
.delivery-device-card {
    position: relative;
    padding: 1.7rem 1.6rem 1.5rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(250, 250, 255, 0.08), transparent 70%),
        linear-gradient(135deg, rgba(10, 14, 30, 0.96), rgba(5, 8, 20, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.45);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.delivery-device-card::after {
    content: "";
    position: absolute;
    left: -22%;
    bottom: -40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.18), transparent 70%);
}

.delivery-device-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.7rem;
}

.delivery-device-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.delivery-device-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
}

.delivery-device-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
}

/* Hover tarjetas visuales */
.delivery-partner-card:hover,
.delivery-device-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.98);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Columna derecha: garantías */
.delivery-guarantees {
    position: relative;
    padding: 1.9rem 1.8rem 1.7rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top, rgba(250, 250, 255, 0.06), transparent 70%),
        linear-gradient(135deg, rgba(12, 16, 34, 0.96), rgba(6, 9, 24, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.4);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

/* Halo */
.delivery-guarantees::after {
    content: "";
    position: absolute;
    right: -24%;
    top: -40%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.2), transparent 70%);
}

/* Título */
.delivery-guarantees-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Lista de garantías */
.delivery-guarantees-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.delivery-guarantees-list li h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.delivery-guarantees-list li p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 1040px) {
    .delivery-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-partners-delivery {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 840px) {
    .delivery-visual {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.8rem;
    }

    .delivery-secure-channel {
        width: 100%;
        height: 120px;
    }

    .delivery-secure-line {
        height: 2px;
        width: 100%;
    }

    .delivery-secure-line::after {
        height: 100%;
        width: 40%;
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
        transform: translateX(-100%);
        animation-name: deliveryFlowHorizontal;
    }

    @keyframes deliveryFlowHorizontal {
        0%   { transform: translateX(-100%); opacity: 0; }
        30%  { opacity: 1; }
        100% { transform: translateX(120%); opacity: 0; }
    }
}

@media (max-width: 600px) {
    .delivery-partner-card,
    .delivery-device-card,
    .delivery-guarantees {
        padding: 1.5rem 1.4rem 1.3rem;
    }
}
/* ========== SESIÓN 7 · SUB BLOQUE 7.4: PAGOS AND CONTRATOS INTEGRADOS ========== */

.writers-partners-payments {
    width: 100%;
    padding: 5.5rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at top left, rgba(90, 150, 255, 0.16), transparent 65%),
        #f6f8ff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-partners-payments-inner {
    max-width: 1080px;
}

/* Cabecera */
.pay-header {
    max-width: 780px;
    margin-bottom: 3rem;
}

.pay-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.9rem;
}

.pay-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.82;
}

/* Layout general */
.pay-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    align-items: flex-start;
}

/* Columna izquierda: wallets */
.pay-wallets {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.pay-wallet-card {
    position: relative;
    padding: 1.7rem 1.7rem 1.5rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(10, 14, 30, 0.97), rgba(5, 8, 20, 0.99));
    border: 1px solid rgba(150, 205, 255, 0.5);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.9);
    color: #f5f7ff;
    overflow: hidden;
}

.pay-wallet-card-secondary {
    background:
        radial-gradient(circle at top left, rgba(127, 186, 255, 0.16), transparent 70%),
        linear-gradient(135deg, rgba(12, 16, 32, 0.97), rgba(6, 9, 24, 0.99));
}

.pay-wallet-glow {
    position: absolute;
    right: -24%;
    bottom: -42%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 186, 255, 0.22), transparent 70%);
    z-index: 0;
}

.pay-wallet-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.55rem;
}

.pay-wallet-role {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    opacity: 0.88;
    margin-bottom: 1rem;
}

/* Filas */
.pay-wallet-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.7rem;
}

.pay-wallet-tag {
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0.75;
}

.pay-wallet-value {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 0.15rem;
}

/* Nota */
.pay-wallet-note {
    position: relative;
    z-index: 1;
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-top: 0.6rem;
}

/* Hover */
.pay-wallet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Columna derecha: contratos y trazabilidad */
.pay-contracts {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Bloque Smart Contracts */
.pay-contracts-block {
    padding: 1.7rem 1.7rem 1.5rem;
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.98));
    box-shadow: 0 14px 36px rgba(18, 24, 48, 0.12);
    position: relative;
    overflow: hidden;
}

.pay-contracts-block::after {
    content: "";
    position: absolute;
    right: -22%;
    bottom: -40%;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 190, 255, 0.20), transparent 70%);
}

.pay-contracts-block h4 {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pay-contracts-block p {
    position: relative;
    z-index: 1;
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0.7rem;
}

.pay-contracts-block ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 1rem;
}

.pay-contracts-block ul li {
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Grid de ítems inferiores */
.pay-contracts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
}

@media (min-width: 720px) {
    .pay-contracts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pay-contracts-item {
    position: relative;
    padding: 1.3rem 1.3rem 1.2rem;
    border-radius: 1.2rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 255, 0.98));
    box-shadow: 0 10px 26px rgba(18, 24, 48, 0.10);
}

/* Chip */
.pay-chip {
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(120, 180, 255, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pay-contracts-item p {
    font-size: 0.94rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Frase final */
.pay-final-line {
    margin-top: 0.6rem;
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.92;
}

/* Responsive */
@media (max-width: 960px) {
    .pay-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2.6rem;
    }

    .writers-partners-payments {
        padding: 4.8rem 1.5rem 5.8rem;
    }
}

@media (max-width: 600px) {
    .pay-wallet-card {
        padding: 1.5rem 1.4rem 1.3rem;
    }

    .pay-contracts-block {
        padding: 1.5rem 1.4rem 1.3rem;
    }

    .pay-contracts-item {
        padding: 1.2rem 1.2rem 1.1rem;
    }
}
/* ========== SESIÓN 8 · BLOQUE: FLUJO COMPLETO DEL AUTOR DENTRO DE COoBOOK ========== */

.writers-flow-master {
    width: 100%;
    padding: 6.5rem 1.5rem 7rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at center top, rgba(120, 190, 255, 0.18), transparent 65%),
        #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-flow-master-inner {
    max-width: 1080px;
}

/* Header */
.flow-header {
    text-align: center;
    margin-bottom: 3.8rem;
}

.flow-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}

.flow-header p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.82;
}

/* Steps */
.flow-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-left: 2.2rem;
}

/* Línea vertical */
.flow-steps::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(to bottom, #7fbaff, #b995ff);
    opacity: 0.8;
}

/* Step individual */
.flow-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.flow-step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #7fbaff 45%, #b894ff 100%);
    box-shadow: 0 0 14px rgba(112, 182, 255, 0.8);
    margin-top: 0.35rem;
}

.flow-step-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.flow-step-content p {
    font-size: 0.98rem;
    opacity: 0.90;
    line-height: 1.65;
}

/* Frase final */
.flow-final-line {
    margin-top: 3.8rem;
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Responsive */
@media (max-width: 720px) {
    .writers-flow-master {
        padding: 5.2rem 1.5rem 6rem;
    }

    .flow-steps {
        padding-left: 1.6rem;
    }

    .flow-steps::before {
        left: 0.45rem;
    }
}
/* ========== SESIÓN 9 · BLOQUE: COMPARATIVA · COOBOOK VS E-READERS TRADICIONALES ========== */

.writers-compare {
    width: 100%;
    padding: 6rem 1.5rem 6.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at bottom right, rgba(120, 190, 255, 0.15), transparent 60%),
        #ffffff;
    display: flex;
    justify-content: center;
    color: #050711;
}

.writers-compare-inner {
    max-width: 1080px;
}

/* Header */
.compare-header {
    text-align: center;
    margin-bottom: 3.4rem;
}

.compare-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.compare-header p {
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.75;
    opacity: 0.82;
}

/* Tabla */
.compare-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

/* Filas */
.compare-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
    padding: 1.3rem 1.5rem;
    border-radius: 1.3rem;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(18, 24, 48, 0.09);
    border: 1px solid rgba(170, 200, 255, 0.28);
}

/* Encabezados */
.compare-head {
    background:
        radial-gradient(circle at top left, rgba(127, 186, 255, 0.22), transparent 70%),
        linear-gradient(135deg, rgba(245, 248, 255, 0.98), rgba(230, 236, 255, 0.98));
    box-shadow: 0 14px 36px rgba(18, 24, 48, 0.14);
    border: 1px solid rgba(155, 210, 255, 0.45);
    font-weight: 600;
}

/* Columnas */
.compare-col {
    font-size: 0.96rem;
    line-height: 1.6;
    opacity: 0.92;
}

.compare-col-aspect {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.compare-col-coobook {
    color: #0a0d19;
}

.compare-col-basic {
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 860px) {
    .compare-row {
        grid-template-columns: 1fr;
        row-gap: 0.6rem;
        text-align: left;
    }

    .compare-head {
        grid-template-columns: 1fr;
    }
}

/* ========== SESIÓN 10 · FAQ PARA ESCRITORES (DISEÑO NUEVO) ========== */

.writers-faq-v3 {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    box-sizing: border-box;
    background: #ffffff;                /* Fondo totalmente blanco */
    display: flex;
    justify-content: center;
    color: #0f172a;                     /* Azul muy oscuro, alto contraste */
}

.writers-faq-v3-inner {
    max-width: 880px;                   /* Más estrecho para lectura cómoda */
}

/* Cabecera */
.writers-faq-v3-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.writers-faq-v3-header h2 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.writers-faq-v3-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Lista */
.writers-faq-v3-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Ítem */
.faq-v3-item {
    border-bottom: 1px solid #e5e7eb;   /* Línea separadora simple */
    padding: 0.2rem 0;
}

/* Quitamos marcador por defecto */
.faq-v3-item summary {
    list-style: none;
}

.faq-v3-item summary::-webkit-details-marker {
    display: none;
}

/* Cabecera pregunta */
.faq-v3-item summary {
    cursor: pointer;
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-v3-question {
    font-size: 1.02rem;
    font-weight: 600;
}

/* Icono grande + / - */
.faq-v3-icon {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    color: #0ea5e9;
    flex-shrink: 0;
}

/* Respuesta */
.faq-v3-answer {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #374151;
    padding: 0 0 0.9rem;
    max-width: 72ch;
}

/* Estado abierto: cambiamos el icono a "–" solo con CSS */
.faq-v3-item[open] .faq-v3-icon::before {
    content: "–";
}
.faq-v3-item[open] .faq-v3-icon {
    color: #0369a1;
}

/* Hover suave sobre la fila de la pregunta */
.faq-v3-item summary:hover {
    background-color: #f9fafb;
}

/* Responsive */
@media (max-width: 640px) {
    .writers-faq-v3 {
        padding: 4rem 1.2rem 5rem;
    }

    .faq-v3-question {
        font-size: 1rem;
    }

    .faq-v3-answer {
        font-size: 0.96rem;
    }
}







/* ========== SESIÓN 11 · BLOQUE FINAL + CTA ========== */

.writers-final-cta {
    width: 100%;
    padding: 6.5rem 1.5rem 7.5rem;
    box-sizing: border-box;
    background:
        radial-gradient(circle at center, rgba(120, 190, 255, 0.14), transparent 65%),
        #0a0d19;
    display: flex;
    justify-content: center;
    color: #f5f7ff;
}

.writers-final-cta-inner {
    max-width: 1080px;
}

/* Header */
.final-cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.final-cta-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.final-cta-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Grid */
.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}

@media (max-width: 780px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Ítems */
.final-cta-item {
    position: relative;
    padding: 2rem 2rem 1.9rem;
    border-radius: 1.6rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 34, 0.97), rgba(6, 9, 22, 0.98));
    border: 1px solid rgba(150, 205, 255, 0.35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-cta-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
}

/* Halo */
.cta-glow {
    position: absolute;
    right: -22%;
    bottom: -42%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 190, 255, 0.22), transparent 70%);
    z-index: 0;
}

.final-cta-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.final-cta-item p {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.88;
}

/* Responsive */
@media (max-width: 600px) {
    .final-cta-item {
        padding: 1.7rem 1.6rem 1.6rem;
    }
}
/* ========== SESIÓN 12 · BLOQUE FINAL: RESERVA TU E-READER ========== */

.writers-reserve {
    width: 100%;
    padding: 6rem 1.5rem 7rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #0f172a;
}

.writers-reserve-inner {
    max-width: 720px;
}

/* Título */
.reserve-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Subtítulo */
.reserve-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.8rem;
}

/* Botón CTA */
.reserve-btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 999px;
    background: #0ea5e9;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.reserve-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}