/* ─── Variables de Diseño de la Hoja de Ruta ─────────────────── */
:root {
    --roadmap-glow-primary: rgba(0, 102, 255, 0.6);
    --roadmap-glow-secondary: rgba(162, 201, 255, 0.6);
    --roadmap-glow-tertiary: rgba(76, 214, 255, 0.6);
    --node-size: 130px; /* Tamaño protagonista */
}

/* ─── Typography & Utilities ─────────────────────────────────── */
.text-mono {
    font-family: var(--font-mono, 'IBM Plex Sans'), monospace;
    letter-spacing: 0.1em;
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-tertiary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-glow:hover {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.2);
    filter: brightness(1.1);
}

.btn--glow:hover {
    box-shadow: 0 0 30px var(--roadmap-glow-primary);
}

.margin-bottom-xxl { margin-bottom: 5rem; }

/* ─── Hero Section ────────────────────────────────────────────── */
.roadmap-hero {
    position: relative;
    padding: 10rem 0 8rem;
    overflow: hidden;
    background: #0A0A0A !important; /* Base sólida */
}

/* Capa de imagen de fondo */
.roadmap-hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25; /* Sutil pero visible */
    z-index: 0;
    pointer-events: none;
    filter: saturate(0.6) brightness(0.7) contrast(1.1);
}

/* Sincronización de capas: Overlay por debajo del contenido */
.roadmap-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, #0A0A0A 90%),
                linear-gradient(to bottom, transparent 60%, #0A0A0A 100%);
    z-index: 2; /* Encima de la imagen, pero debajo del texto */
    pointer-events: none;
}

.roadmap-hero .container {
    position: relative;
    z-index: 10 !important; /* MÁXIMA PRIORIDAD para el texto y botones */
}

.mesh-gradient {
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(76, 214, 255, 0.1) 0px, transparent 50%);
}

.roadmap-hero__grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 0;
}

.roadmap-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-full);
}

.roadmap-hero__badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

.roadmap-hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.roadmap-hero__highlight {
    color: #fb923c; /* Naranja VilaTec I.A. */
}

.roadmap-hero__desc {
    max-width: 48rem;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

/* ─── Timeline Section ────────────────────────────────────────── */
.roadmap-timeline-section {
    padding: 8rem 0;
    background-color: rgba(19, 19, 19, 0.5);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.roadmap-section-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #fb923c;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.roadmap-timeline-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    margin-top: 1rem;
    color: var(--color-muted);
}

.roadmap-legend-line {
    height: 1px;
    width: 3rem;
    background: var(--color-outline);
}

.roadmap-path {
    position: relative;
    max-width: 1200px;
    margin: 6rem auto 0;
}

/* Data Pipe (Línea animada gradiente) */
.roadmap-path__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px; 
    transform: translateX(-50%);
    background: linear-gradient(to bottom, 
        rgba(0, 102, 255, 0.2) 0%, 
        var(--color-primary) 20%, 
        var(--color-tertiary) 50%, 
        var(--color-secondary) 80%, 
        rgba(0, 102, 255, 0.2) 100%);
    background-size: 100% 300%;
    animation: dataFlow 4s linear infinite;
    opacity: 0.8;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

@keyframes dataFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

.roadmap-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    transition: opacity 0.8s ease;
}

.roadmap-step:last-child { margin-bottom: 0; }

/* Solo atenuamos el contenido (texto), el eje central debe estar vivo */
.roadmap-step--dimmed .roadmap-step__content { opacity: 0.3; }
.roadmap-step:hover .roadmap-step__content { opacity: 1; }

.roadmap-step__content, .roadmap-step__empty { width: 38%; transition: opacity 0.4s ease; }

@media (max-width: 900px) {
    .roadmap-step { 
        flex-direction: column !important; 
        align-items: center !important; 
        text-align: center;
        margin-bottom: 8rem;
        position: relative; /* Necesario para el posicionamiento del nodo */
    }
    .roadmap-path__line { left: 50%; transform: translateX(-50%); width: 4px; z-index: 1; }
    .roadmap-step__content, .roadmap-step__empty { width: 100% !important; position: relative; z-index: 5; }
    .roadmap-step__empty { display: none; }
    .roadmap-step__card { 
        padding: 2.5rem 1.5rem; 
        margin-top: 0; 
        text-align: left; 
        width: 100%;
        position: relative;
    }
}

/* Nodos Protagonistas */

.roadmap-step__node {
    width: var(--node-size);
    height: var(--node-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #0D0D0D;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* overflow: hidden; REMOVIDO para que se vean los efectos exteriores */
}

.roadmap-step:hover .roadmap-step__node {
    transform: translateX(-50%) scale(1.1);
    border-color: rgba(255,255,255,0.3);
    z-index: 20;
}

.icon-fase {
    font-size: 3.5rem !important;
    width: auto !important; /* LIBERAMOS el ancho fijo del Anti-FOUC */
    height: auto !important; /* LIBERAMOS el alto fijo del Anti-FOUC */
    overflow: visible !important; /* Evitamos que el Anti-FOUC lo corte */
    position: relative;
    z-index: 5;
    display: inline-block;
    transition: all 0.4s ease;
}

.roadmap-step:hover .icon-fase {
    filter: brightness(1.5) drop-shadow(0 0 15px currentColor);
}

@media (max-width: 900px) {
    .roadmap-step__node { 
        position: absolute !important; 
        bottom: -40px !important; 
        right: 0 !important;
        left: auto !important;
        transform: none !important; 
        width: 100px !important; 
        height: 100px !important; 
        z-index: 20;
        background: #0D0D0D;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    .roadmap-step:hover .roadmap-step__node { transform: scale(1.1) !important; }
    .icon-fase { font-size: 2.2rem !important; }
}

/* ─── Fase 01: Escaneo / Escritura ─────────────────────────── */
.node-fase-01 { overflow: hidden; } 
.node-fase-01 .node-fx-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 255, 0.9), transparent);
    height: 40%;
    top: -40%;
    width: 100%;
    animation: scanLine 2s linear infinite;
    z-index: 2;
}

@keyframes scanLine {
    0% { top: -40%; }
    100% { top: 100%; }
}

.node-fase-01 .icon-fase {
    animation: dataFlicker 3s infinite;
}

@keyframes dataFlicker {
    0%, 100% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 10px var(--color-primary)); }
    50% { opacity: 0.6; filter: brightness(1.8) drop-shadow(0 0 20px var(--color-primary)); }
}

/* ─── Fase 02: Hub Rotatorio (NUEVO) ─────────────────────── */
.node-fase-02 .node-fx-rotate {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(76, 214, 255, 0.4) 0%, transparent 75%);
    animation: pulseNode 3s ease-in-out infinite;
}

.node-fase-02 .icon-fase {
    animation: hubRotate 15s linear infinite;
}

@keyframes hubRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseNode {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* ─── Fase 03: Anillo de Seguridad (CORREGIDO) ───────────── */
.node-fase-03 { overflow: visible !important; }
.node-fase-03 .node-fx-ring {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border: 3px dashed var(--color-tertiary);
    border-radius: 50%;
    animation: shieldRotate 10s linear infinite; /* Rotación constante y suave */
    box-shadow: 0 0 20px rgba(76, 214, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

@keyframes shieldRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.roadmap-step:hover .node-fase-03 .node-fx-ring {
    animation-duration: 3s;
    border-style: solid;
    border-color: var(--color-secondary);
    box-shadow: 0 0 50px var(--color-secondary);
}

/* ─── Fase 04: Propulsión (SOSEGADO) ─────────────────────── */
.node-fase-04 { 
    overflow: visible !important; 
    animation: propulsionGlow 4s ease-in-out infinite; /* Más lento, más épico */
}

@keyframes propulsionGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); }
    50% { box-shadow: 0 0 80px rgba(0, 102, 255, 0.8); }
}

.node-fase-04 .node-fx-propulsion {
    position: absolute;
    bottom: -30px;
    left: -20%;
    width: 140%;
    height: 80px;
    background: radial-gradient(ellipse at bottom, var(--color-primary), transparent 80%);
    filter: blur(25px);
    animation: rocketHeat 2s ease-in-out infinite; /* Flujo más pausado */
    z-index: 1;
}

@keyframes rocketHeat {
    0%, 100% { transform: scaleY(0.6) translateY(0); opacity: 0.3; }
    50% { transform: scaleY(1.4) translateY(8px); opacity: 0.8; }
}

.roadmap-step:hover .node-fase-04 {
    animation-duration: 1s; /* En hover se activa un poco más, pero sin nerviosismo */
    box-shadow: 0 0 120px var(--color-primary);
}

/* Glows Base */
.node-primary { border: 2px solid var(--color-primary) !important; color: var(--color-primary); }
.node-tertiary { border: 2px solid var(--color-tertiary) !important; color: var(--color-tertiary); }
.node-secondary { border: 2px solid var(--color-secondary) !important; color: var(--color-secondary); }
.node-primary-solid { background: var(--color-primary) !important; color: #fff; }

.glow-neon { box-shadow: 0 0 30px var(--roadmap-glow-primary); }
.glow-neon-tertiary { box-shadow: 0 0 30px var(--roadmap-glow-tertiary); }
.glow-neon-secondary { box-shadow: 0 0 30px var(--roadmap-glow-secondary); }
.glow-neon-strong { box-shadow: 0 0 40px rgba(0, 102, 255, 0.8); }

/* Arreglo de Step Cards */
.roadmap-step__card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.roadmap-step:hover .roadmap-step__card {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.roadmap-step__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.roadmap-step__phase { font-size: 0.85rem; font-weight: 700; color: var(--color-primary); }
.roadmap-step__date {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    padding: 0.35rem 0.85rem; background: rgba(0, 102, 255, 0.15);
    color: var(--color-primary); border-radius: var(--radius-full);
    border: 1px solid rgba(0, 102, 255, 0.2);
}
.date-secondary { background: rgba(162, 201, 255, 0.1); color: var(--color-secondary); border-color: rgba(162, 201, 255, 0.2); }
.date-tertiary { background: rgba(76, 214, 255, 0.1); color: var(--color-tertiary); border-color: rgba(76, 214, 255, 0.2); }
.date-primary-solid { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

.roadmap-step__stack { margin-top: 2rem; padding: 1.25rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); }
.roadmap-step__stack-title { display: block; font-size: 0.65rem; color: var(--color-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 0.75rem; }
.roadmap-step__stack-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-tag { font-size: 0.7rem; padding: 0.3rem 0.6rem; background: rgba(255,255,255,0.05); border-radius: 4px; color: #fff; border: 1px solid rgba(255,255,255,0.08); }

/* ─── Sovereignty Ecosystem ─────────────────────────────────── */
.roadmap-ecosystem {
    padding: 10rem 0;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.roadmap-ecosystem__viz { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; margin-top: 4rem; z-index: 1; }
.roadmap-ecosystem__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.7; }
.svg-line { fill: none; stroke: var(--color-primary); stroke-width: 6; opacity: 0.5; }
.svg-particles { fill: none; stroke: #FFFFFF; stroke-width: 2.5; stroke-dasharray: 6 18; animation: dashParticle 2s linear infinite; }
.svg-particles--reverse { animation-direction: reverse; }
@keyframes dashParticle { to { stroke-dashoffset: -100; } }

.roadmap-ecosystem__nodes { position: relative; z-index: 10; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.eco-node { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 20; pointer-events: all; }
.eco-node--top-left { top: 15%; left: 22%; }
.eco-node--top-right { top: 15%; right: 22%; }
.eco-node--bottom { bottom: 5%; }

.eco-node__icon {
    width: 80px; height: 80px; background: #111;
    border: 1px solid rgba(0, 102, 255, 0.4); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1rem; box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}
.eco-node__icon span { 
    font-size: 2.5rem; 
    width: auto !important; 
    height: auto !important; 
    overflow: visible !important; 
}
.eco-node__label { font-size: 0.85rem; font-weight: 700; color: #fff; }

.eco-node--core { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 15; }
.eco-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.eco-ring--dashed { width: 320px; height: 320px; border: 2px dashed rgba(0, 102, 255, 0.3); animation: rotate 20s linear infinite; }
.eco-ring--dotted { width: 380px; height: 380px; border: 2px dotted rgba(76, 214, 255, 0.2); animation: rotateReverse 25s linear infinite; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.eco-core {
    width: 200px; height: 200px; 
    background: #0D0D0D; /* FONDO SÓLIDO para tapar los rayos */
    border: 2px solid var(--color-primary); border-radius: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 80px rgba(0, 102, 255, 0.4); position: relative;
    overflow: hidden; margin-bottom: 2rem;
    z-index: 10;
}
.eco-core__scanline {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(179, 197, 255, 0.6), transparent);
    top: -100%; animation: scan 2.5s linear infinite; z-index: 1;
}

.eco-core__content { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.eco-core__content span.material-symbols-outlined { 
    font-size: 4rem; 
    color: #fff; 
    margin-bottom: 0.5rem;
    width: auto !important; 
    height: auto !important; 
    overflow: visible !important;
}
.eco-core__label { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.eco-badge { 
    padding: 0.6rem 1rem; 
    background: #0D0D0D; 
    border: 1px solid rgba(34, 197, 94, 0.8); 
    border-radius: 1rem;
    z-index: 15;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    width: 160px; /* Más ancho para que quepa en dos líneas */
    text-align: center;
}
.eco-badge span { 
    color: #4ade80; 
    font-size: 0.7rem; 
    font-weight: 700; 
    line-height: 1.2;
    display: block;
}

/* ─── Sprint Cards Section ───────────────────────────────────── */
.roadmap-sprints {
    padding: 10rem 0;
    background-color: #0A0A0A;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.roadmap-sprints__grid { display: flex; flex-direction: column; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.sprint-card {
    position: relative; display: flex; align-items: center; padding: 4rem; gap: 4rem;
    overflow: hidden; transition: all 0.5s ease;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(140, 144, 161, 0.1);
}
@media (max-width: 768px) { .sprint-card { flex-direction: column; align-items: flex-start; padding: 2rem; gap: 1.5rem; } }

.sprint-card__big-num {
    position: absolute; right: -1rem; bottom: -2rem; font-size: 15rem; line-height: 1;
    font-weight: 900; color: rgba(255, 255, 255, 0.03); user-select: none;
    pointer-events: none; z-index: 0; transition: transform 0.5s ease, color 0.5s ease;
}
.sprint-card:hover .sprint-card__big-num { transform: scale(1.05) translateY(-10px); color: rgba(255, 255, 255, 0.05); }

.sprint-card__header { flex-shrink: 0; position: relative; z-index: 10; width: 180px; }
.sprint-card__badge { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.sprint-card__divider { width: 2px; height: 100px; background: rgba(255,255,255,0.1); position: relative; z-index: 10; }
@media (max-width: 768px) { .sprint-card__divider { width: 100%; height: 2px; } .sprint-card__header { width: 100%; } }
.sprint-card__text { flex-grow: 1; position: relative; z-index: 10; font-size: 1.1rem; line-height: 1.6; }

.border-glow-primary:hover { border-color: var(--color-primary); box-shadow: 0 0 40px rgba(0, 102, 255, 0.15); }
.border-glow-tertiary:hover { border-color: var(--color-tertiary); box-shadow: 0 0 40px rgba(76, 214, 255, 0.15); }
.border-glow-secondary:hover { border-color: var(--color-secondary); box-shadow: 0 0 40px rgba(162, 201, 255, 0.15); }

/* ─── Final CTA Section ───────────────────────────────────────── */
.roadmap-cta {
    padding: 12rem 0;
    background-color: rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-cta__glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 1000px; height: 1000px; background: rgba(0, 102, 255, 0.2);
    border-radius: 50%; filter: blur(150px); pointer-events: none; z-index: 0;
}

.roadmap-cta__box {
    padding: 8rem 4rem;
    background: rgba(0, 0, 0, 0.55); /* Fondo sólido y oscuro para contraste total */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    text-align: center; /* Aseguramos centrado de todo el contenido */
}

@media (max-width: 900px) {
    /* Ecosistema Responsivo Reestructurado (Compact Stable) */
    .roadmap-ecosystem__viz { height: 650px; margin-top: 3rem; position: relative; overflow: visible; }
    .roadmap-ecosystem__svg { 
        display: block !important; 
        position: absolute;
        inset: 0;
        width: 100%; 
        height: 100%; 
        z-index: 1;
        opacity: 0.6;
    }
    
    .roadmap-ecosystem__nodes { 
        position: absolute;
        inset: 0;
        z-index: 10;
    }
    
    /* Control de visibilidad de rayos SVG */
    .desktop-only-svg { display: none !important; }
    .mobile-only-svg { display: block !important; }

    /* NODOS JERÁRQUICOS */
    .eco-node { transform: scale(0.8); }
    
    /* 1. DATOS (ARRIBA) */
    .eco-node--top-left { 
        top: 50px !important; 
        left: 50% !important; 
        transform: translateX(-50%) scale(0.8) !important; 
    }
    
    /* 2. NÚCLEO (CENTRO) */
    .eco-node--core { 
        position: absolute !important;
        top: 50% !important; 
        left: 0 !important;
        right: 0 !important;
        width: 170px !important;
        margin-inline: auto !important;
        transform: translateY(-50%) scale(0.85) !important;
        z-index: 100 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .eco-core { width: 170px; height: 170px; margin-bottom: 1.5rem; flex-shrink: 0; }
    
    /* 3. USUARIOS e INFRAESTRUCTURA (ABAJO) */
    .eco-node--top-right { 
        top: auto !important;
        bottom: 50px !important; 
        left: 20% !important; 
        right: auto !important;
        transform: translateX(-50%) scale(0.8) !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    
    .eco-node--bottom { 
        top: auto !important;
        bottom: 50px !important; 
        left: 80% !important; 
        right: auto !important;
        transform: translateX(-50%) scale(0.8) !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .eco-node__icon { flex-shrink: 0; }

    /* Limpieza de anillos para no saturar */
    .eco-ring--dashed { width: 260px; height: 260px; }
    .eco-ring--dotted { width: 320px; height: 320px; opacity: 0.2; }

    .roadmap-hero__bg-image {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.55 !important;
        z-index: 0 !important;
        mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    }
}

@media (max-width: 650px) {
    .roadmap-cta__box { padding: 4rem 1.5rem; }
    .roadmap-cta__box h2 { 
        font-size: 2rem; 
        margin-bottom: 2rem !important; 
        line-height: 1.3;
        white-space: normal; /* Permite saltos de línea */
    }
    .roadmap-cta__box .btn { 
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto; 
        display: flex; 
        justify-content: center;
        padding-inline: 1rem;
        text-align: center;
        line-height: 1.4;
        height: auto;
        min-height: 4rem;
    }
}

.roadmap-cta__box h2 {
    margin-bottom: 2.5rem !important; /* Espacio de seguridad para la tipografía */
    line-height: 1.2;
}

.roadmap-cta__box p {
    margin-bottom: 3rem !important; /* Equilibrio con el botón inferior */
}
