/* SESIÓN 1 — HERO COOBOOK EDITORIAL (CSS) */

.ced-hero {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-hero__inner {
    max-width: 1150px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Columna de texto */

.ced-hero__copy {
    position: relative;
}

.ced-hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.7rem;
}

.ced-hero__title {
    position: relative;
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #020617;
    margin-bottom: 1.1rem;
}

.ced-hero__title-glow {
    position: absolute;
    inset: auto 18% -0.65rem 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(56, 189, 248, 0),
        rgba(56, 189, 248, 0.9),
        rgba(129, 140, 248, 0.9),
        rgba(56, 189, 248, 0));
    box-shadow:
        0 0 18px rgba(56, 189, 248, 0.85),
        0 0 28px rgba(129, 140, 248, 0.8);
    opacity: 0.9;
    animation: ced-hero-glow 3.8s ease-in-out infinite;
}

.ced-hero__subtitle {
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.ced-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.ced-hero__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.ced-hero__note {
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* Columna visual */

.ced-hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
}

/* Orbe central */

.ced-hero__orb {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 20%, #e0f2fe, transparent 58%),
        radial-gradient(circle at 75% 80%, #ddd6fe, transparent 60%),
        radial-gradient(circle at 50% 50%, #0f172a, #020617);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.5),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

/* Núcleo interno */

.ced-hero__orb-core {
    position: absolute;
    inset: 24%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 20%, #e0f2fe, #a5b4fc);
    box-shadow:
        0 0 22px rgba(129, 140, 248, 0.8),
        0 0 0 1px rgba(226, 232, 240, 0.85);
}

/* Anillos */

.ced-hero__orb-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    mix-blend-mode: screen;
}

.ced-hero__orb-ring--outer {
    inset: 12% 4%;
    transform: rotate(18deg);
    animation: ced-hero-ring-outer 14s linear infinite;
}

.ced-hero__orb-ring--inner {
    inset: 30% 14%;
    transform: rotate(-24deg);
    animation: ced-hero-ring-inner 11s linear infinite;
}

/* Nodos */

.ced-hero__node {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f9fafb, #38bdf8);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.ced-hero__node--top {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.ced-hero__node--left {
    bottom: 18%;
    left: 12%;
}

.ced-hero__node--right {
    bottom: 18%;
    right: 12%;
}

/* Leyenda */

.ced-hero__legend {
    width: 100%;
    max-width: 320px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
}

.ced-hero__legend-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
    align-items: flex-start;
}

.ced-hero__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 0.2rem;
}

.ced-hero__legend-dot--ai {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.ced-hero__legend-dot--chain {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.ced-hero__legend-dot--eco {
    background: linear-gradient(135deg, #f97316, #facc15);
}

.ced-hero__legend-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Animaciones */

@keyframes ced-hero-glow {
    0%, 100% {
        opacity: 0.45;
        transform: scaleX(0.9);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes ced-hero-ring-outer {
    0% {
        transform: rotate(18deg);
    }
    100% {
        transform: rotate(378deg);
    }
}

@keyframes ced-hero-ring-inner {
    0% {
        transform: rotate(-24deg);
    }
    100% {
        transform: rotate(-384deg);
    }
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.8rem;
    }

    .ced-hero__visual {
        order: -1;
    }
}

@media (max-width: 640px) {
    .ced-hero {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-hero__orb {
        width: 200px;
        height: 200px;
    }

    .ced-hero__tags {
        flex-direction: column;
    }
}
/* SESIÓN 2 — ANÁLISIS INICIAL CON IA (CSS) */

.ced-ia {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-ia__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-ia__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-ia__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-ia__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-ia__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-ia__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: flujo */

.ced-ia__flow {
    position: relative;
    padding-left: 2.4rem;
}

.ced-ia__flow-line {
    position: absolute;
    top: 0.3rem;
    bottom: 0.3rem;
    left: 0.9rem;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(148, 163, 184, 0.1),
        rgba(148, 163, 184, 0.9),
        rgba(148, 163, 184, 0.1)
    );
    opacity: 0.9;
}

.ced-ia__step {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.ced-ia__step:last-child {
    margin-bottom: 0;
}

.ced-ia__step-marker {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #eff6ff, #6366f1);
    box-shadow:
        0 0 14px rgba(129, 140, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0b1120;
}

.ced-ia__step-body {
    background: #f9fafb;
    border-radius: 16px;
    padding: 0.9rem 1rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-ia__step-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-ia__step-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Columna derecha: coste y garantías */

.ced-ia__side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
}

.ced-ia__card {
    position: relative;
    padding: 1.2rem 1.3rem 1.3rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.ced-ia__card--fee::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -26px;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    opacity: 0.5;
    transform: rotate(18deg);
    pointer-events: none;
}

.ced-ia__card--guarantee::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    opacity: 0.45;
    pointer-events: none;
}

.ced-ia__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 0.45rem;
}

.ced-ia__card-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-ia__card-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0.2rem 0 0;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-ia__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-ia__flow {
        padding-left: 1.9rem;
    }

    .ced-ia__flow-line {
        left: 0.7rem;
    }
}

@media (max-width: 640px) {
    .ced-ia {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-ia__card {
        border-radius: 18px;
    }

    .ced-ia__step-body {
        border-radius: 14px;
    }
}

/* SESIÓN 3 — RUTAS A / B / C (CSS) */

.ced-routes {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-routes__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-routes__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-routes__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-routes__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-routes__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-routes__layout {
    margin-top: 2.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
}

/* Tarjetas de ruta */

.ced-routes__card {
    position: relative;
    padding: 1.4rem 1.3rem 1.5rem;
    border-radius: 22px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 44px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transform-origin: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

/* Auroras decorativas por ruta */

.ced-routes__card--a::before,
.ced-routes__card--b::before,
.ced-routes__card--c::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -26px;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    opacity: 0.5;
    pointer-events: none;
}

.ced-routes__card--a::before {
    border: 1px solid rgba(129, 140, 248, 0.5);
}

.ced-routes__card--b::before {
    border: 1px solid rgba(56, 189, 248, 0.5);
}

.ced-routes__card--c::before {
    border: 1px solid rgba(52, 211, 153, 0.5);
}

/* Badge ruta */

.ced-routes__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0f172a;
    background: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.ced-routes__card--a .ced-routes__badge {
    color: #312e81;
    background: #e0e7ff;
    border-color: rgba(129, 140, 248, 0.7);
}

.ced-routes__card--b .ced-routes__badge {
    color: #0e7490;
    background: #e0f2fe;
    border-color: rgba(56, 189, 248, 0.7);
}

.ced-routes__card--c .ced-routes__badge {
    color: #065f46;
    background: #dcfce7;
    border-color: rgba(52, 211, 153, 0.7);
}

/* Títulos y textos */

.ced-routes__label {
    font-size: 0.98rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 0.3rem;
}

.ced-routes__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0.2rem 0 0.4rem;
}

/* Lista de características */

.ced-routes__list {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.4rem;
}

.ced-routes__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
    align-items: flex-start;
    font-size: 0.86rem;
    line-height: 1.7;
    color: #4b5563;
}

.ced-routes__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-top: 0.3rem;
}

/* Colores de puntos por ruta */

.ced-routes__dot--deep {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.ced-routes__dot--balanced {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.ced-routes__dot--light {
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

/* Texto de cierre de cada tarjeta */

.ced-routes__foot {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin-top: auto;
}

/* Hover */

.ced-routes__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Nota final */

.ced-routes__note {
    margin-top: 2rem;
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: center;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-routes__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .ced-routes__layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-routes {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-routes__card {
        border-radius: 20px;
    }
}

/* SESIÓN 4 — ACTIVACIÓN DE LA OBRA (CSS) */

.ced-activate {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-activate__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-activate__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-activate__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-activate__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-activate__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-activate__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 2.6rem;
    align-items: flex-start;
}

.ced-activate__column {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Token visual 1 KYMIAR */

.ced-activate__token {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
}

.ced-activate__token-orb {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 20%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 75% 80%, #dbeafe, transparent 60%),
        radial-gradient(circle at 50% 50%, #0f172a, #020617);
    box-shadow:
        0 24px 46px rgba(15, 23, 42, 0.5),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.ced-activate__token-core {
    position: absolute;
    inset: 26%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 20%, #eff6ff, #93c5fd);
    box-shadow:
        0 0 18px rgba(59, 130, 246, 0.9),
        0 0 0 1px rgba(226, 232, 240, 0.9);
}

.ced-activate__token-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.6);
    mix-blend-mode: screen;
}

.ced-activate__token-ring--outer {
    inset: 12% 6%;
    transform: rotate(18deg);
    animation: ced-activate-ring-outer 14s linear infinite;
}

.ced-activate__token-ring--inner {
    inset: 32% 18%;
    transform: rotate(-24deg);
    animation: ced-activate-ring-inner 11s linear infinite;
}

.ced-activate__token-label {
    position: absolute;
    inset: auto 14% 18% 14%;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    background: radial-gradient(circle at 20% 30%, #eff6ff, #1d4ed8);
    box-shadow:
        0 0 12px rgba(59, 130, 246, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.ced-activate__token-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Bloque de proceso de activación */

.ced-activate__block {
    padding: 1.2rem 1.3rem 1.3rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-activate__block-title {
    font-size: 0.96rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.ced-activate__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
}

.ced-activate__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
}

.ced-activate__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 0.35rem;
}

.ced-activate__bullet--id {
    background: linear-gradient(135deg, #4f46e5, #a5b4fc);
}

.ced-activate__bullet--chain {
    background: linear-gradient(135deg, #22c55e, #86efac);
}

.ced-activate__bullet--catalog {
    background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
}

/* Tarjetas laterales */

.ced-activate__card {
    position: relative;
    padding: 1.2rem 1.3rem 1.3rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.ced-activate__card::before {
    content: "";
    position: absolute;
    top: -32px;
    right: -24px;
    width: 110px;
    height: 110px;
    border-radius: 32px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    opacity: 0.55;
    pointer-events: none;
}

.ced-activate__card--light::before {
    border-color: rgba(34, 197, 94, 0.4);
}

.ced-activate__card-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-activate__card-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0.2rem 0 0;
}

/* Nota al pie */

.ced-activate__footnote {
    margin-top: 2.1rem;
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: center;
}

/* Animaciones */

@keyframes ced-activate-ring-outer {
    0% {
        transform: rotate(18deg);
    }
    100% {
        transform: rotate(378deg);
    }
}

@keyframes ced-activate-ring-inner {
    0% {
        transform: rotate(-24deg);
    }
    100% {
        transform: rotate(-384deg);
    }
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-activate__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-activate__token {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
    }

    .ced-activate__token-text {
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .ced-activate {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-activate__card,
    .ced-activate__block {
        border-radius: 18px;
    }
}
/* SESIÓN 5 — VENTANA DE DESCUBRIMIENTO 24H (CSS) */

.ced-discovery {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-discovery__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-discovery__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-discovery__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-discovery__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-discovery__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout */

.ced-discovery__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 2.6rem;
    align-items: flex-start;
}

/* Columna izquierda */

.ced-discovery__left {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Reloj */

.ced-discovery__clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.ced-discovery__clock-face {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 20%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 75% 80%, #dbeafe, transparent 60%),
        radial-gradient(circle at 50% 50%, #020617, #020617);
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.ced-discovery__clock-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    mix-blend-mode: screen;
}

.ced-discovery__clock-ring--outer {
    inset: 12% 8%;
    transform: rotate(18deg);
    animation: ced-discovery-ring-outer 16s linear infinite;
}

.ced-discovery__clock-ring--inner {
    inset: 30% 20%;
    transform: rotate(-26deg);
    animation: ced-discovery-ring-inner 13s linear infinite;
}

.ced-discovery__clock-center {
    position: absolute;
    inset: 44% 44%;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 30%, #e5e7eb, #9ca3af);
    box-shadow:
        0 0 10px rgba(148, 163, 184, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* Agujas (estáticas visualmente, animadas suavemente) */

.ced-discovery__clock-hand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 50% 100%;
    border-radius: 999px;
    background: #e5e7eb;
    box-shadow: 0 0 6px rgba(148, 163, 184, 0.9);
}

.ced-discovery__clock-hand--hours {
    width: 3px;
    height: 36%;
    transform: translateX(-50%) translateY(-90%) rotate(40deg);
    opacity: 0.9;
}

.ced-discovery__clock-hand--minutes {
    width: 2px;
    height: 46%;
    transform: translateX(-50%) translateY(-96%) rotate(120deg);
    opacity: 0.9;
}

.ced-discovery__clock-text {
    font-size: 0.86rem;
    line-height: 1.7;
    color: #4b5563;
    text-align: center;
    max-width: 260px;
}

/* Bloque de aclaración */

.ced-discovery__pillblock {
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-discovery__pill-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-discovery__pill-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Columna derecha */

.ced-discovery__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Tarjetas de funcionamiento */

.ced-discovery__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.ced-discovery__card {
    padding: 1rem 1.05rem 1.15rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-discovery__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-discovery__card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.ced-discovery__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Nota final */

.ced-discovery__note {
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: left;
}

/* Animaciones */

@keyframes ced-discovery-ring-outer {
    0% {
        transform: rotate(18deg);
    }
    100% {
        transform: rotate(378deg);
    }
}

@keyframes ced-discovery-ring-inner {
    0% {
        transform: rotate(-26deg);
    }
    100% {
        transform: rotate(-386deg);
    }
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-discovery__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-discovery__left {
        align-items: center;
        text-align: center;
    }

    .ced-discovery__pillblock {
        max-width: 360px;
    }

    .ced-discovery__note {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .ced-discovery__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-discovery {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-discovery__card {
        border-radius: 16px;
    }
}
/* SESIÓN 6 — CAPACIDADES INTELIGENTES TRAS LA PUBLICACIÓN (CSS) */

.ced-intel {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-intel__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-intel__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-intel__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-intel__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-intel__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-intel__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: halo central */

.ced-intel__core {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.ced-intel__halo {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 20%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 75% 80%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 50% 50%, #020617, #020617);
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

/* Capas de halo */

.ced-intel__halo-layer {
    position: absolute;
    inset: 16% 9%;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    mix-blend-mode: screen;
}

.ced-intel__halo-layer--one {
    animation: ced-intel-halo-one 14s linear infinite;
}

.ced-intel__halo-layer--two {
    inset: 32% 20%;
    animation: ced-intel-halo-two 11s linear infinite;
}

/* Centro del halo */

.ced-intel__halo-center {
    position: absolute;
    inset: 34% 34%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 30%, #e5e7eb, #93c5fd);
    box-shadow:
        0 0 18px rgba(129, 140, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ced-intel__halo-center-text {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: #0b1120;
}

/* Nodos alrededor */

.ced-intel__halo-node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f9fafb, #38bdf8);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ced-intel__halo-node--top {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.ced-intel__halo-node--left {
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
}

.ced-intel__halo-node--right {
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

.ced-intel__halo-node--bottom {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.ced-intel__halo-label {
    position: absolute;
    transform: translateY(155%);
    white-space: nowrap;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    opacity: 0.85;
}

/* Texto bajo halo */

.ced-intel__core-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 320px;
}

/* Columna derecha: detalle */

.ced-intel__detail {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Filas de tarjetas */

.ced-intel__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.ced-intel__card {
    padding: 1.1rem 1.15rem 1.25rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-intel__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-intel__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-intel__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Franja inferior */

.ced-intel__strip {
    margin-top: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-intel__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-intel__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-intel__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Animaciones */

@keyframes ced-intel-halo-one {
    0% {
        transform: rotate(12deg);
    }
    100% {
        transform: rotate(372deg);
    }
}

@keyframes ced-intel-halo-two {
    0% {
        transform: rotate(-24deg);
    }
    100% {
        transform: rotate(-384deg);
    }
}

/* Hover sutil tarjetas */

.ced-intel__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-intel__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-intel__core-text {
        max-width: 360px;
    }
}

@media (max-width: 780px) {
    .ced-intel__row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-intel {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-intel__card,
    .ced-intel__strip {
        border-radius: 16px;
    }

    .ced-intel__halo {
        width: 210px;
        height: 210px;
    }
}
/* SESIÓN 7 — MODELO HÍBRIDO DE PUBLICACIÓN (CSS) */

.ced-hybrid {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-hybrid__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-hybrid__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-hybrid__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-hybrid__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-hybrid__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-hybrid__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: escala vertical */

.ced-hybrid__scale {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: flex-start;
}

.ced-hybrid__scale-track {
    position: relative;
    width: 72px;
    height: 270px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #e5e7eb, transparent 60%),
                radial-gradient(circle at 70% 100%, #e0f2fe, transparent 60%),
                #020617;
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 10px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.ced-hybrid__scale-fill {
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(
        to top,
        rgba(34, 197, 94, 0.15),
        rgba(56, 189, 248, 0.65),
        rgba(129, 140, 248, 0.95)
    );
    box-shadow:
        0 0 18px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.7);
}

/* Nodos de ruta en la escala */

.ced-hybrid__scale-node {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 30%, #f9fafb, #60a5fa);
    box-shadow:
        0 0 12px rgba(59, 130, 246, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ced-hybrid__scale-node--c {
    bottom: 14%;
}

.ced-hybrid__scale-node--b {
    bottom: 50%;
}

.ced-hybrid__scale-node--a {
    top: 14%;
}

.ced-hybrid__scale-tag {
    position: absolute;
    left: 130%;
    white-space: nowrap;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    background: rgba(249, 250, 251, 0.95);
    border-radius: 999px;
    padding: 0.18rem 0.6rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.ced-hybrid__scale-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 290px;
}

/* Columna derecha: detalle */

.ced-hybrid__detail {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Filas y tarjetas */

.ced-hybrid__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.ced-hybrid__card {
    padding: 1.1rem 1.15rem 1.25rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-hybrid__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-hybrid__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-hybrid__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Franja inferior */

.ced-hybrid__strip {
    margin-top: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-hybrid__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-hybrid__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-hybrid__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Hover tarjetas */

.ced-hybrid__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-hybrid__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-hybrid__scale {
        align-items: center;
        text-align: center;
    }

    .ced-hybrid__scale-text {
        max-width: 360px;
    }

    .ced-hybrid__scale-tag {
        left: 120%;
    }
}

@media (max-width: 780px) {
    .ced-hybrid__row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-hybrid {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-hybrid__card,
    .ced-hybrid__strip {
        border-radius: 16px;
    }

    .ced-hybrid__scale-track {
        width: 64px;
        height: 250px;
    }
}
/* SESIÓN 8 — REGALÍAS Y TRANSPARENCIA (CSS) */

.ced-royalties {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-royalties__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-royalties__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-royalties__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-royalties__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-royalties__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-royalties__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: barra de auditoría */

.ced-royalties__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Barra y flujo de auditoría */

.ced-royalties__audit {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
}

.ced-royalties__audit-bar {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 82px;
    border-radius: 999px;
    padding: 14px 18px;
    background:
        radial-gradient(circle at 0% 50%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 100% 50%, #e0f2fe, transparent 60%),
        #020617;
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ced-royalties__audit-track {
    position: absolute;
    inset: 34px 22px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: inset 0 0 0 1px rgba(31, 41, 55, 0.9);
}

/* Flujo de datos */

.ced-royalties__audit-flow {
    position: absolute;
    inset: 37px 24px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        rgba(22, 163, 74, 0.2),
        rgba(56, 189, 248, 0.9),
        rgba(129, 140, 248, 0.95),
        rgba(56, 189, 248, 0.9),
        rgba(22, 163, 74, 0.2)
    );
    background-size: 220% 100%;
    animation: ced-royalties-flow 8s linear infinite;
    box-shadow:
        0 0 18px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.8);
}

/* Nodos Venta / Blockchain / Autor */

.ced-royalties__audit-node {
    position: absolute;
    top: 18px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f9fafb, #38bdf8);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ced-royalties__audit-node--sale {
    left: 18px;
}

.ced-royalties__audit-node--chain {
    left: 50%;
    transform: translateX(-50%);
}

.ced-royalties__audit-node--author {
    right: 18px;
}

.ced-royalties__audit-label {
    position: absolute;
    top: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    white-space: nowrap;
}

/* Texto auditoría */

.ced-royalties__audit-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 360px;
}

/* Bloque de nota izquierda */

.ced-royalties__note-block {
    padding: 1.05rem 1.15rem 1.2rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-royalties__note-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-royalties__note-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Columna derecha: tarjetas y franja inferior */

.ced-royalties__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Grid de tarjetas */

.ced-royalties__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.ced-royalties__card {
    padding: 1.1rem 1.15rem 1.25rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-royalties__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-royalties__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-royalties__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Franja inferior */

.ced-royalties__strip {
    margin-top: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-royalties__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-royalties__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-royalties__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Hover tarjetas */

.ced-royalties__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Animaciones */

@keyframes ced-royalties-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-royalties__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-royalties__left {
        align-items: center;
        text-align: center;
    }

    .ced-royalties__audit-text,
    .ced-royalties__note-block {
        max-width: 380px;
    }
}

@media (max-width: 780px) {
    .ced-royalties__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-royalties {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-royalties__card,
    .ced-royalties__strip,
    .ced-royalties__note-block {
        border-radius: 16px;
    }

    .ced-royalties__audit-bar {
        max-width: 320px;
        height: 78px;
    }
}

/* SESIÓN 8.1 — DETALLE DE REGALÍAS POR RUTA (CSS) */

.ced-royalties-tiers {
    padding: 4.5rem 1.5rem 5.2rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-royalties-tiers__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-royalties-tiers__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-royalties-tiers__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-royalties-tiers__title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-royalties-tiers__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout */

.ced-royalties-tiers__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: barras comparativas */

.ced-royalties-tiers__left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ced-royalties-tiers__bar-block {
    padding: 1.2rem 1.1rem 1.2rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-royalties-tiers__bar-row {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 3fr) auto;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 0.65rem;
}

.ced-royalties-tiers__bar-row:last-child {
    margin-bottom: 0;
}

.ced-royalties-tiers__bar-row--trad .ced-royalties-tiers__bar-label {
    color: #9ca3af;
}

.ced-royalties-tiers__bar-label {
    font-size: 0.86rem;
    color: #4b5563;
}

.ced-royalties-tiers__bar-track {
    position: relative;
    width: 100%;
    height: 9px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.ced-royalties-tiers__bar {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(0);
    animation: ced-royalties-tiers-fill 1.8s ease forwards;
}

/* Porcentajes: ajusta width según % real que quieras */

.ced-royalties-tiers__bar--trad {
    width: 20%;
    background: linear-gradient(90deg, #9ca3af, #d1d5db);
}

.ced-royalties-tiers__bar--a {
    width: 70%;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
}

.ced-royalties-tiers__bar--b {
    width: 85%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.ced-royalties-tiers__bar--c {
    width: 90%;
    background: linear-gradient(90deg, #a855f7, #38bdf8);
}

.ced-royalties-tiers__bar-percent {
    font-size: 0.84rem;
    color: #111827;
    font-weight: 500;
}

.ced-royalties-tiers__note {
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
    max-width: 360px;
}

/* Columna derecha */

.ced-royalties-tiers__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ced-royalties-tiers__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.ced-royalties-tiers__card {
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-royalties-tiers__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-royalties-tiers__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-royalties-tiers__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Franja inferior */

.ced-royalties-tiers__strip {
    margin-top: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-royalties-tiers__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-royalties-tiers__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-royalties-tiers__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Animación barras */

@keyframes ced-royalties-tiers-fill {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Hover cards */

.ced-royalties-tiers__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-royalties-tiers__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-royalties-tiers__note {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .ced-royalties-tiers {
        padding: 4rem 1.2rem 4.6rem;
    }

    .ced-royalties-tiers__bar-block,
    .ced-royalties-tiers__card,
    .ced-royalties-tiers__strip {
        border-radius: 16px;
    }

    .ced-royalties-tiers__bar-row {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 3fr) auto;
    }
}

/* SESIÓN 8.2 — PAGOS AUTOMÁTICOS Y SMART CONTRACTS (CSS) */

.ced-pay {
    padding: 4.8rem 1.5rem 5.4rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-pay__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-pay__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-pay__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-pay__title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-pay__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-pay__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: flujo visual */

.ced-pay__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.ced-pay__flow {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 20%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 92% 82%, #e0f2fe, transparent 60%),
        #020617;
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nodos */

.ced-pay__node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ced-pay__node-core {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f9fafb, #38bdf8);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.ced-pay__node-core--contract {
    background: radial-gradient(circle at 30% 30%, #f9fafb, #6366f1);
    box-shadow:
        0 0 18px rgba(129, 140, 248, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.ced-pay__node-core--author {
    background: radial-gradient(circle at 30% 30%, #f9fafb, #22c55e);
    box-shadow:
        0 0 16px rgba(34, 197, 94, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.ced-pay__node-core--platform {
    background: radial-gradient(circle at 30% 30%, #f9fafb, #a855f7);
}

.ced-pay__node-core--eco {
    background: radial-gradient(circle at 30% 30%, #f9fafb, #4ade80);
}

.ced-pay__node-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    white-space: nowrap;
}

.ced-pay__node-sub {
    font-size: 0.7rem;
    color: #9ca3af;
    max-width: 120px;
    text-align: center;
}

/* Posiciones de nodos */

.ced-pay__node--reader {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.ced-pay__node--contract {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ced-pay__node--author {
    right: 16px;
    top: 28%;
}

.ced-pay__node--platform {
    right: 20%;
    bottom: 20%;
}

.ced-pay__node--eco {
    right: 4%;
    bottom: 40%;
}

/* Pulsos */

.ced-pay__pulse {
    position: absolute;
    top: 50%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #6366f1);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
    transform: translateY(-50%);
    opacity: 0.9;
    animation: ced-pay-pulse 3.2s ease-in-out infinite;
}

.ced-pay__pulse--one {
    left: 52px;
    right: 52px;
}

.ced-pay__pulse--two {
    left: 52px;
    right: 52px;
    animation-delay: 1.4s;
}

/* Split líneas desde el smart contract */

.ced-pay__split {
    position: absolute;
    right: 58px;
    top: 50%;
    width: 80px;
    height: 80px;
    transform: translateY(-50%);
}

.ced-pay__split-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    opacity: 0.85;
}

.ced-pay__split-line--left {
    width: 64px;
    top: 18px;
    left: 6px;
    transform: rotate(-22deg);
}

.ced-pay__split-line--center {
    width: 70px;
    top: 40px;
    left: 6px;
}

.ced-pay__split-line--right {
    width: 60px;
    top: 60px;
    left: 6px;
    transform: rotate(22deg);
}

/* Texto bajo el diagrama */

.ced-pay__flow-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 360px;
}

/* Columna derecha */

.ced-pay__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ced-pay__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.ced-pay__card {
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-pay__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-pay__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-pay__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Franja inferior */

.ced-pay__strip {
    margin-top: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-pay__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-pay__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-pay__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Animaciones */

@keyframes ced-pay-pulse {
    0% {
        opacity: 0.2;
        box-shadow: 0 0 4px rgba(56, 189, 248, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 14px rgba(56, 189, 248, 0.9);
    }
    100% {
        opacity: 0.2;
        box-shadow: 0 0 4px rgba(56, 189, 248, 0.4);
    }
}

/* Hover cards */

.ced-pay__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-pay__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-pay__left {
        align-items: center;
        text-align: center;
    }

    .ced-pay__flow-text {
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .ced-pay {
        padding: 4.2rem 1.2rem 4.8rem;
    }

    .ced-pay__flow {
        width: 240px;
        height: 240px;
        border-radius: 24px;
    }

    .ced-pay__card,
    .ced-pay__strip {
        border-radius: 16px;
    }
}
/* SESIÓN 8.3 — Nuevo diseño premium para retiros */

.ced-withraw2 {
    padding: 5rem 1.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-withraw2__inner {
    max-width: 1150px;
    width: 100%;
}

/* Header */
.ced-withraw2__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ced-withraw2__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: #64748b;
}

.ced-withraw2__title {
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0.6rem 0;
}

.ced-withraw2__subtitle {
    color: #475569;
    font-size: 0.96rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Panel general */
.ced-withraw2__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Terminal de conversión */
.ced-withraw2__terminal {
    background: #0f172a;
    padding: 1.8rem;
    border-radius: 18px;
    color: #e2e8f0;
    box-shadow:
        0 25px 45px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(30, 41, 59, 1);
    position: relative;
}

.ced-withraw2__terminal-title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ced-withraw2__terminal-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.ced-withraw2__label {
    font-size: 0.82rem;
    color: #94a3b8;
}

.ced-withraw2__value {
    font-size: 0.9rem;
    font-weight: 500;
}

.ced-withraw2__value--big {
    font-size: 1.2rem;
    color: #38bdf8;
}

.ced-withraw2__terminal-row--highlight span {
    color: #38bdf8;
}

.ced-withraw2__terminal-separator {
    width: 100%;
    height: 1px;
    background: #334155;
    margin: 1rem 0;
}

/* Info a la derecha */
.ced-withraw2__info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ced-withraw2__info-box {
    background: #f8fafc;
    border: 1px solid rgba(203, 213, 225, 0.95);
    padding: 1.3rem 1.4rem;
    border-radius: 16px;
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.ced-withraw2__info-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.ced-withraw2__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ced-withraw2__list li {
    padding: 0.25rem 0;
    font-size: 0.87rem;
    color: #475569;
}

/* Footer */
.ced-withraw2__footer {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    background: #f1f5f9;
    border: 1px solid #d1d5db;
    border-radius: 14px;
}

.ced-withraw2__dot {
    width: 10px;
    height: 10px;
    background: #38bdf8;
    border-radius: 50%;
}

.ced-withraw2__footer-text {
    font-size: 0.85rem;
    color: #475569;
}

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


/* SESIÓN 8.4 — LIBROS FÍSICOS ÚNICOS (CSS) */

.ced-unique {
    padding: 4.8rem 1.5rem 5.4rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-unique__inner {
    max-width: 1150px;
    width: 100%;
}

/* Header */

.ced-unique__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-unique__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-unique__title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-unique__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout */

.ced-unique__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: libro visual */

.ced-unique__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.ced-unique__book {
    position: relative;
    width: 260px;
    height: 190px;
    border-radius: 18px;
    perspective: 900px;
}

/* Páginas */

.ced-unique__page {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    box-shadow:
        0 26px 40px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(148, 163, 184, 0.9);
    transform-origin: left center;
}

.ced-unique__page--front {
    transform: rotateY(-10deg) translateX(4px);
}

.ced-unique__page--back {
    transform: rotateY(0deg);
    opacity: 0.75;
}

/* QR */

.ced-unique__qr {
    position: absolute;
    bottom: 16px;
    right: 18px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 1px rgba(148, 163, 184, 0.9),
        0 8px 16px rgba(15, 23, 42, 0.5);
}

.ced-unique__qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    width: 80%;
    height: 80%;
}

.ced-unique__qr-grid span {
    display: block;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    opacity: 0.1;
    animation: ced-unique-qr 2.8s infinite ease-in-out alternate;
}

.ced-unique__qr-grid span:nth-child(3),
.ced-unique__qr-grid span:nth-child(6),
.ced-unique__qr-grid span:nth-child(11),
.ced-unique__qr-grid span:nth-child(14) {
    opacity: 0.9;
}

.ced-unique__hash-card {
    position: absolute;
    left: 16px;
    bottom: 20px;
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.92);
    box-shadow:
        0 12px 22px rgba(15, 23, 42, 0.7),
        0 0 0 1px rgba(148, 163, 184, 0.85);
}

.ced-unique__hash-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.1rem;
}

.ced-unique__hash-value {
    font-size: 0.76rem;
    color: #e5e7eb;
    white-space: nowrap;
}

.ced-unique__visual-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 340px;
    text-align: center;
}

/* Columna derecha */

.ced-unique__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ced-unique__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.ced-unique__card {
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-unique__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.5);
    opacity: 0.5;
    pointer-events: none;
}

.ced-unique__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-unique__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Strip */

.ced-unique__strip {
    margin-top: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-unique__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-unique__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #6366f1, #a5b4fc);
}

.ced-unique__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Animaciones */

@keyframes ced-unique-qr {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

/* Hover */

.ced-unique__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsive */

@media (max-width: 980px) {
    .ced-unique__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-unique__left {
        align-items: center;
        text-align: center;
    }

    .ced-unique__visual-text {
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .ced-unique {
        padding: 4.2rem 1.2rem 4.8rem;
    }

    .ced-unique__book {
        width: 230px;
        height: 170px;
    }

    .ced-unique__card,
    .ced-unique__strip {
        border-radius: 16px;
    }
}

/* SESIÓN 8.5 — ALCANCE GLOBAL E IDIOMAS (CSS) */

.ced-global {
    padding: 4.8rem 1.5rem 5.2rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-global__inner {
    max-width: 1150px;
    width: 100%;
}

/* Header */

.ced-global__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-global__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-global__title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-global__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout */

.ced-global__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 2.6rem;
    align-items: flex-start;
}

/* Columna izquierda: idiomas */

.ced-global__left {
    display: flex;
    flex-direction: column;
}

.ced-global__card {
    padding: 1.4rem 1.5rem 1.5rem;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-global__card-title {
    font-size: 0.96rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.ced-global__card-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

/* Chips de idiomas */

.ced-global__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.ced-global__chip {
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.78rem;
    color: #0f172a;
    background: #ffffff;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ced-global__chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(148, 163, 184, 0.6);
}

.ced-global__note {
    font-size: 0.86rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Columna derecha: regiones y publicidad interna */

.ced-global__right {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

/* Regiones */

.ced-global__regions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.ced-global__region {
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    padding: 1rem 1.1rem 1.15rem;
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.ced-global__region-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-global__region-text {
    font-size: 0.86rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.3rem;
}

.ced-global__region-countries {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
}

/* Strip final */

.ced-global__strip {
    margin-top: 0.4rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
}

.ced-global__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-global__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-global__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Hover */

.ced-global__region:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsive */

@media (max-width: 980px) {
    .ced-global__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }
}

@media (max-width: 640px) {
    .ced-global {
        padding: 4.2rem 1.2rem 4.8rem;
    }

    .ced-global__card,
    .ced-global__region,
    .ced-global__strip {
        border-radius: 16px;
    }
}

/* SESIÓN 9 — COMPROMISO ECOLÓGICO Y 1 % SOSTENIBLE (CSS) */

.ced-eco {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-eco__inner {
    max-width: 1150px;
    width: 100%;
}

/* Cabecera */

.ced-eco__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-eco__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-eco__title {
    font-size: clamp(1.9rem, 2.6vw, 2.25rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.9rem;
}

.ced-eco__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Layout principal */

.ced-eco__layout {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Columna izquierda: planeta / naturaleza tecnológica */

.ced-eco__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.ced-eco__planet {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 20%, #dcfce7, transparent 60%),
        radial-gradient(circle at 75% 80%, #e0f2fe, transparent 60%),
        radial-gradient(circle at 50% 50%, #022c22, #020617);
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

/* Núcleo planeta */

.ced-eco__planet-core {
    position: absolute;
    inset: 32% 26%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
    box-shadow:
        0 0 18px rgba(34, 197, 94, 0.9),
        0 0 0 1px rgba(226, 232, 240, 0.9);
}

/* Anillos */

.ced-eco__planet-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.6);
    mix-blend-mode: screen;
}

.ced-eco__planet-ring--one {
    inset: 16% 8%;
    transform: rotate(18deg);
    animation: ced-eco-ring-one 16s linear infinite;
}

.ced-eco__planet-ring--two {
    inset: 30% 18%;
    transform: rotate(-24deg);
    animation: ced-eco-ring-two 13s linear infinite;
}

/* Hojas estilizadas */

.ced-eco__leaf {
    position: absolute;
    width: 42px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.ced-eco__leaf--one {
    top: 18%;
    left: 16%;
    transform: rotate(-24deg);
}

.ced-eco__leaf--two {
    top: 18%;
    right: 16%;
    transform: rotate(24deg);
}

.ced-eco__leaf--three {
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

/* Destellos */

.ced-eco__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(190, 242, 100, 0.9);
    box-shadow:
        0 0 10px rgba(190, 242, 100, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    opacity: 0.8;
}

.ced-eco__spark--top {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.ced-eco__spark--left {
    left: 4%;
    top: 52%;
    transform: translateY(-50%);
}

.ced-eco__spark--right {
    right: 4%;
    top: 52%;
    transform: translateY(-50%);
}

.ced-eco__planet-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 320px;
}

/* Columna derecha */

.ced-eco__right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Filas de tarjetas */

.ced-eco__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.ced-eco__card {
    padding: 1.1rem 1.15rem 1.25rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.ced-eco__card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.45);
    opacity: 0.5;
    pointer-events: none;
}

.ced-eco__card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-eco__card-text {
    font-size: 0.87rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Badge 1 % */

.ced-eco__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #166534;
    background: #dcfce7;
    border: 1px solid rgba(74, 222, 128, 0.7);
    margin-bottom: 0.35rem;
}

/* Franja inferior */

.ced-eco__strip {
    margin-top: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
}

.ced-eco__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.4rem;
    align-items: flex-start;
}

.ced-eco__strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #a7f3d0);
}

.ced-eco__strip-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Hover tarjetas */

.ced-eco__card:hover {
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Animaciones */

@keyframes ced-eco-ring-one {
    0% {
        transform: rotate(18deg);
    }
    100% {
        transform: rotate(378deg);
    }
}

@keyframes ced-eco-ring-two {
    0% {
        transform: rotate(-24deg);
    }
    100% {
        transform: rotate(-384deg);
    }
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-eco__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-eco__left {
        align-items: center;
        text-align: center;
    }

    .ced-eco__planet-text {
        max-width: 360px;
    }
}

@media (max-width: 780px) {
    .ced-eco__row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ced-eco {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-eco__card,
    .ced-eco__strip {
        border-radius: 16px;
    }

    .ced-eco__planet {
        width: 210px;
        height: 210px;
    }
}
/* SESIÓN 10 — FAQ COOKBOOK EDITORIAL (CSS) */

.ced-faq {
    padding: 5rem 1.5rem 6rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-faq__inner {
    max-width: 1100px;
    width: 100%;
}

/* Header */
.ced-faq__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ced-faq__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.ced-faq__title {
    font-size: clamp(1.9rem, 2.6vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 1rem;
}

.ced-faq__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* FAQ LISTA */
.ced-faq__list {
    margin-top: 2.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Items */
.ced-faq__item {
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    position: relative;
    transition: all 0.25s ease;
}

/* Toggle invisible */
.ced-faq__toggle {
    display: none;
}

.ced-faq__question {
    display: block;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    position: relative;
    user-select: none;
}

/* Icono animado */
.ced-faq__question::after {
    content: "+";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #64748b;
    transition: transform 0.25s ease, color 0.25s ease;
}

.ced-faq__toggle:checked + .ced-faq__question::after {
    transform: translateY(-50%) rotate(45deg);
    color: #0f172a;
}

/* Respuesta */
.ced-faq__answer {
    max-height: 0;
    opacity: 0;
    padding: 0 1.5rem;
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.85;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.ced-faq__toggle:checked ~ .ced-faq__answer {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem;
}

/* Hover */
.ced-faq__item:hover {
    background: #ffffff;
    border-color: rgba(203, 213, 225, 1);
}

/* Responsive */
@media (max-width: 640px) {
    .ced-faq__question {
        font-size: 0.94rem;
    }
}
/* SESIÓN 11 — CIERRE INSTITUCIONAL (CSS) */

.ced-closing {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ced-closing__inner {
    max-width: 1150px;
    width: 100%;
}

/* Parte superior */

.ced-closing__top {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ced-closing__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.22rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0f172a;
    background: #e5e7eb;
    border: 1px solid rgba(209, 213, 219, 1);
    margin-bottom: 0.8rem;
}

.ced-closing__title {
    font-size: clamp(1.9rem, 2.7vw, 2.3rem);
    letter-spacing: -0.03em;
    color: #020617;
    margin-bottom: 0.8rem;
}

.ced-closing__text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
}

/* Middle layout */

.ced-closing__middle {
    margin-top: 2.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    gap: 2.6rem;
    align-items: flex-start;
}

/* Columna izquierda */

.ced-closing__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ced-closing__column-title {
    font-size: 0.96rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.ced-closing__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
}

.ced-closing__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #4b5563;
}

.ced-closing__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-top: 0.4rem;
    background: linear-gradient(135deg, #6366f1, #a5b4fc);
}

/* Columna derecha: panel */

.ced-closing__column--panel {
    align-items: stretch;
}

.ced-closing__panel {
    padding: 1.3rem 1.4rem 1.5rem;
    border-radius: 22px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow:
        0 18px 44px rgba(15, 23, 42, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo del panel */

.ced-closing__panel::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.4);
    opacity: 0.6;
    pointer-events: none;
}

.ced-closing__panel::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    opacity: 0.6;
    pointer-events: none;
}

/* Pills */

.ced-closing__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.ced-closing__pill {
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: #e5e7eb;
    color: #0f172a;
    white-space: nowrap;
}

.ced-closing__pill--trust {
    background: #e0f2fe;
    border-color: rgba(59, 130, 246, 0.7);
}

.ced-closing__pill--future {
    background: #eef2ff;
    border-color: rgba(129, 140, 248, 0.7);
}

.ced-closing__panel-text {
    font-size: 0.88rem;
    line-height: 1.9;
    color: #4b5563;
    margin: 0.35rem 0 0.2rem;
}

/* Bottom */

.ced-closing__bottom {
    margin-top: 3rem;
    text-align: center;
}

.ced-closing__accent {
    width: 110px;
    height: 3px;
    border-radius: 999px;
    margin: 0 auto 0.9rem;
    background: linear-gradient(90deg, #38bdf8, #6366f1, #22c55e);
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.8);
}

.ced-closing__bottom-text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

/* Hover panel */

.ced-closing__panel:hover {
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
}

/* Responsivo */

@media (max-width: 980px) {
    .ced-closing__middle {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ced-closing__panel {
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .ced-closing {
        padding: 4.4rem 1.2rem 4.8rem;
    }

    .ced-closing__panel {
        border-radius: 18px;
    }

    .ced-closing__pill-row {
        justify-content: flex-start;
    }

    .ced-closing__badge {
        font-size: 0.74rem;
    }
}