/* VARIABLES Y RESET */
:root {
    --violeta: #4b38e3;
    --negro: #1e1e1e;
    --amarillo: #e9d346;
    --verde: #8ac07d;
    --rosado: #d498cf;
    --naranja: #d8813a;
    --blanco: #ffffff;
    --gris-f: #f8f9fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: 'Exo 2', sans-serif; color: var(--negro); background: var(--blanco); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.title-serif { font-family: 'Source Serif 4', serif; font-weight: 700; }
.text-center { text-align: center; }

/* REGLAS AGREGADAS PARA COLOR NARANJA E IMAGEN */
.text-naranja {
    color: var(--naranja);
    display: inline;
}

.image-wrapper {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Dinámico */
header {
    position: fixed;
    top: 0; width: 100%; padding: 25px 0;
    z-index: 1000; transition: all 0.4s ease;
}

header.scrolled {
    background: var(--blanco);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav { display: flex; justify-content: space-between; align-items: center; }
#navLogo { height: 50px; transition: 0.3s; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a { color: var(--blanco); text-decoration: none; margin-left: 30px; font-weight: 600; }
header.scrolled .nav-links a { color: var(--negro); }

.btn-nav { background: var(--amarillo); color: var(--negro) !important; padding: 10px 20px; border-radius: 5px; }


/* HEADER STICKY */
header {
    position: fixed;
    top: 0; width: 100%; padding: 20px 0;
    z-index: 1000; transition: all 0.4s ease;
}

header.scrolled {
    background: var(--blanco);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--blanco); transition: 0.4s; }
.logo span { color: var(--amarillo); }
header.scrolled .logo { color: var(--violeta); }
header.scrolled .logo span { color: var(--negro); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a, .btn-text { 
    color: var(--blanco); text-decoration: none; margin-left: 25px; 
    font-weight: 600; cursor: pointer; transition: 0.3s;
}
header.scrolled .nav-links li a, header.scrolled .btn-text { color: var(--negro); }

.btn-cta-nav {
    background: var(--amarillo); color: var(--negro) !important;
    padding: 10px 20px; border-radius: 5px; margin-left: 20px;
    box-shadow: 0 4px 10px rgba(233, 211, 70, 0.3);
}

.menu-icon { color: white; font-size: 1.5rem; display: none; cursor: pointer; }
header.scrolled .menu-icon { color: var(--negro); }

/* HERO SECTION (100vh) */
.hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; color: white;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('ICONPROFILELIKN.png'); /* TU IMAGEN */
    background-size: cover; background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(75, 56, 227, 0.85), rgba(75, 56, 227, 0.85));
    z-index: -1;
}

.hero-content { max-width: 800px; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--amarillo); }
.hero p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.9; }

.badge { background: var(--rosado); padding: 5px 15px; border-radius: 50px; font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; }

.btn-primary { 
    background: var(--amarillo); color: var(--negro); 
    padding: 16px 35px; border-radius: 8px; font-weight: 700; 
    text-decoration: none; transition: 0.3s; display: inline-block;
}
/* Botón de Bases en el Hero - Visible desde el inicio */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1); /* Fondo muy sutil */
    color: var(--blanco) !important;      /* Texto blanco */
    border: 2px solid var(--blanco);      /* Borde blanco grueso */
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--blanco);
    color: var(--violeta) !important; /* Cambia a violeta al pasar el mouse */
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Ajuste para el botón del Nav antes del scroll */
.btn-text {
    color: var(--blanco);
    border: 1px solid var(--blanco);
    padding: 8px 18px;
    border-radius: 5px;
    background: transparent;
    transition: 0.3s;
}

.btn-text:hover {
    background: var(--blanco);
    color: var(--violeta) !important;
}
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.7;
}
/* Fuerza visibilidad del botón 'Ver Bases' en el Nav al hacer scroll */
header.scrolled .btn-text {
    color: var(--negro) !important;
    border: 1px solid var(--negro);
    padding: 5px 15px;
    border-radius: 5px;
    background: rgba(0,0,0,0.05);
}

/* Sombreado profesional mejorado para tarjetas */
.t-card, .pillar {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover, .pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(75, 56, 227, 0.15); /* Sombra más intensa al pasar el mouse */
}
/* Sección de Propósito */
/* Aumentamos el padding general de las secciones para dar más aire */
section { 
    padding: 140px 0; /* Subimos de 100px a 140px para mayor separación */
}

/* Ajuste específico para la sección Propósito (About) */
.about-section {
    padding: 160px 0; /* Un poco más de espacio al inicio para separar del Hero */
    overflow: visible;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; /* Aumentamos el hueco entre texto e imagen */
    align-items: center;
}

/* Espaciado extra para el cronograma de fechas */
.mega-dates {
    padding: 140px 0;
    margin-top: 40px; /* Separación adicional de la sección anterior */
    background-color: var(--gris-f);
}

/* Restauración de la sección Metodología (Pilares) */
.pillars {
    padding: 140px 0;
    background-color: var(--blanco);
}

.pillars h2 {
    margin-bottom: 60px; /* Espacio entre el título y las tarjetas */
}

/* Títulos y Colores Oficiales */
.title-serif {
    font-family: 'Source Serif 4', serif;
    font-size: 2.8rem;
    color: #4b38e3; /* Violeta YEI */
}

.highlight-orange {
    color: #d8813a; /* Naranja YEI */
}

/* Columna Derecha: El Diseño de Impacto */
.visual-right {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
}

.purple-card {
    background-color: #4b38e3; /* Violeta YEI */
    width: 85%;
    padding: 60px 50px;
    border-radius: 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 15px;
}

.num {
    font-family: 'Source Serif 4', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #e9d346; /* Amarillo YEI */
    line-height: 1;
}

.desc {
    font-family: 'Exo 2', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Ajuste de la Imagen Flotante */
.image-wrapper {
    position: absolute;
    right: -64px; /* Hace que la imagen sobresalga un poquito */
    top: 50%;
    transform: translateY(-50%);
    width: 320px; /* Tamaño ideal para que encaje */
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.fit-img {
    width: 100%;
    height: auto;
    border-radius: 0; /* Mantiene el recorte original de la foto */
}

/* DISEÑO DE FECHAS ACTUALIZADO */
.mega-dates {
    padding: 100px 0;
    background-color: var(--gris-f);
}

.dates-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0;
    gap: 20px;
}

.date-group {
    flex: 1;
}

.date-tag {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tag-convocatoria {
    background-color: var(--naranja);
    color: white;
}

.tag-sesiones {
    background-color: var(--violeta);
    color: white;
}
/* AJUSTES PARA CRONOGRAMA DE 3 FASES */
.tag-resultados {
    background-color: var(--rosado); /* Color rosado de la paleta para diferenciar */
    color: white;
}

.dates-wrapper {
    display: flex;
    justify-content: space-between; /* Ajustado para 3 columnas */
    align-items: center;
    margin: 50px 0;
    gap: 15px;
}

.date-group {
    flex: 1;
    min-width: 250px; /* Asegura que el texto no se amontone */
}
/* SECCIÓN ROADMAP */
.roadmap {
    padding: 140px 0;
    background-color: var(--gris-f);
}

.timeline-container {
    position: relative;
    margin-top: 80px;
}

.timeline-line {
    position: absolute;
    top: 30px; /* Alineada al centro de los círculos */
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.t-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.t-number {
    width: 60px;
    height: 60px;
    background: var(--blanco);
    border: 2px solid var(--violeta);
    color: var(--violeta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    box-shadow: 0 0 0 10px var(--gris-f);
}

.t-card {
    background: var(--blanco);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
}

.t-card h4 {
    font-family: 'Source Serif 4', serif;
    font-size: 1.3rem;
    color: var(--negro);
    margin-bottom: 5px;
}

.t-date {
    font-weight: 700;
    color: var(--violeta);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.t-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Estado Activo (Paso 03) */
.t-step.active .t-number {
    background: var(--violeta);
    color: var(--blanco);
    box-shadow: 0 0 0 10px var(--gris-f), 0 8px 20px rgba(75, 56, 227, 0.3);
}

@media (max-width: 992px) {
    .timeline-line { display: none; }
    .timeline { flex-direction: column; gap: 40px; }
}

/* Ajuste responsivo para que las 3 fases se vean bien en celulares */
@media (max-width: 992px) {
    .dates-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .dates-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--violeta), transparent);
        margin: 0 auto;
    }
}

.giant-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Source Serif 4', serif;
    font-weight: 700;
}

.giant-numbers .number {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--negro);
    line-height: 1;
}

.giant-numbers .separator {
    font-size: 3rem;
    color: var(--rosado);
}

.date-info {
    margin-top: 15px;
    font-weight: 600;
    color: #666;
}

.dates-divider {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--violeta), transparent);
    opacity: 0.3;
}

.location-badge {
    margin-top: 40px;
    background: var(--negro);
    color: var(--blanco);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVO PARA CELULARES */
/* ============================================================
   RESPONSIVE FINAL: CORRECCIÓN DE CHOQUES Y POSICIÓN
   ============================================================ */

@media (max-width: 768px) {
    .metric {
        gap: 5px !important; /* Espacio mínimo para que queden pegados a los números */
    }
    
    .num {
        font-size: 2.2rem !important; /* Asegura que el número no sea tan gigante para dejar espacio al texto */
    }
    /* 1. BLOQUEO DE SCROLL LATERAL (Para que no se vea como en tu captura) */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }
    .menu-icon { 
        display: block !important; 
        z-index: 1100;
        position: relative;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Oculto inicialmente */
        width: 80%;
        height: 100vh;
        background: #4b38e3; /* Color violeta de tu marca */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-wrapper.active {
        right: 0; /* Se desliza hacia adentro */
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 30px;
    }

    .nav-links a {
        color: white !important;
        font-size: 1.5rem !important;
        margin: 0 !important;
        font-weight: 700;
    }

    /* 2. HEADER: Achicamos un poco el logo y limpiamos la 'x' */
    header { 
        padding: 10px 0 !important; 
    }
    #navLogo { 
        height: 60px !important; /* Logo más pequeño para que no pise nada */
    }
    
    /* Esto borra la 'x' que aparece en tus capturas */
    .close-menu, .nav-wrapper .close-menu { 
        display: none !important; 
    }

    /* 3. HERO: Bajamos el contenido para que el logo NO choque */
    .hero {
        padding-top: 100px !important; /* Espacio extra para que el logo respire */
        text-align: left !important;
        height: auto;
    }

    .badge {
        margin-top: 10px; /* Aleja el texto rosa del logo */
    }

    /* 4. PROPÓSITO: La niña AL LADO del cuadro (como pediste) sin salirse */
    .about-section .main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
        padding: 0 15px;
    }

    .visual-right {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center; /* Alinea caja y niña al centro vertical */
        justify-content: flex-start; /* Todo empieza desde la izquierda */
        margin-top: 40px;
        height: 300px; /* Espacio fijo para que no colapse */
    }
    .content-left {
    width: 100% !important;
    text-align: center !important; /* Esto centra el título y el párrafo */
    padding: 0 20px;
    margin-bottom: 30px;
}

    .content-left h2, .content-left p {
    text-align: center !important; /* Refuerza el centrado en los elementos internos */
}
    /* La Caja Morada */
    .purple-card {
        width: 75% !important; /* Más ancha para que quepan las letras */
        padding: 30px 20px !important;
        margin: 0 !important;
        border-radius: 20px !important;
        z-index: 1;
        position: relative;
    }

    /* La Niña: Al lado y ENCIMA del borde de la caja */
    .image-wrapper {
        position: absolute !important;
        width: 160px !important; /* Tamaño para que no tape todo */
        right: 0 !important; /* Pegada al borde derecho */
        top: 50%;
        transform: translateY(-50%); /* Centrada verticalmente respecto a la caja */
        z-index: 10; /* Esto la pone ENCIMA de la caja */
    }

    /* Ajuste de letras dentro de la caja para que no las tape la niña */
    .purple-card .card-content {
        max-width: 70%; /* Forzamos a que el texto se quede a la izquierda */
    }

    .num { font-size: 2.2rem !important; }
    .desc { font-size: 0.7rem !important; }

    /* 5. CRONOGRAMA: Centrado y ordenado */
    .mega-dates { 
        text-align: center !important; 
        padding: 40px 0;
    }
    
    .dates-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .dates-divider {
        width: 50px;
        height: 2px;
        background: var(--violeta);
        margin: 10px auto;
        display: block;
    }
}
/* Esto hace que el modal no se vea hasta que des clic */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.9); 
    z-index: 2000; 
}

.modal-content { 
    width: 90%; 
    max-width: 1000px; 
    margin: 50px auto; 
    background: white; 
    border-radius: 15px; 
    position: relative; 
    overflow: hidden; 
}

/* PILARES */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.pillar { padding: 50px 30px; background: white; border-radius: 15px; border-top: 8px solid; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.pillar i { font-size: 2.5rem; margin-bottom: 20px; color: var(--violeta); }
.pillar:hover { transform: translateY(-10px); }
.border-green { border-color: var(--verde); }
.border-pink { border-color: var(--rosado); }
.border-orange { border-color: var(--naranja); }

/* ROADMAP */
.timeline { display: flex; justify-content: space-between; margin-top: 60px; position: relative; }
.t-step { text-align: center; position: relative; flex: 1; }
.t-number { 
    width: 60px; height: 60px; background: var(--gris-f); border: 2px solid var(--violeta);
    border-radius: 50%; line-height: 60px; margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem;
}
.t-step.active .t-number { background: var(--violeta); color: white; box-shadow: 0 0 20px rgba(75, 56, 227, 0.4); }

/* TRUST SECTION */
.grid-trust { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.upc-logo { max-width: 250px; filter: grayscale(1); opacity: 0.6; }

/* MODAL */
.modal { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.9); z-index: 2000; 
}
.modal-content { width: 90%; max-width: 1000px; margin: 50px auto; background: white; border-radius: 15px; position: relative; overflow: hidden; }
.iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.close-modal { position: absolute; right: 20px; top: 10px; font-size: 40px; cursor: pointer; color: var(--negro); z-index: 10; }

/* WHATSAPP */
.wsp-float {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; 
    color: white; width: 60px; height: 60px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 100; transition: 0.3s;
}
.wsp-float:hover { transform: scale(1.1); }

/* FOOTER */
footer { background: var(--negro); color: white; padding: 60px 0; text-align: center; }
footer .logo { margin-bottom: 20px; display: block; }
.socials a { color: white; font-size: 1.5rem; margin: 0 15px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links { display: none; } /* Requeriría lógica para menú móvil */
    .grid-about, .grid-trust { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
    .dates-display { flex-direction: column; gap: 10px; }
    .timeline { flex-direction: column; gap: 40px; }
}
/* 3. TÍTULOS ESPECÍFICOS: NEGROS, NEGRITOS Y PEQUEÑOS */
    /* Nombres basados en tu index.html: .content-left, .pillars, .roadmap, .trust */
    .pillars h2, 
    .roadmap h2, 
    .trust h2,
    .mega-dates h2 {
        color: #000000 !important;   /* Negro puro */
        font-weight: 800 !important;  /* Negrita máxima */
        font-size: 1.6rem !important;  /* Tamaño reducido */
        text-align: center !important;
        -webkit-text-fill-color: #000000 !important; /* Elimina cualquier degradado */
        margin-bottom: 20px !important;
    }
/* --- ESTILOS PARA COMPUTADORA --- */
.mobile-only {
    display: none; /* Oculta secciones extra en PC */
}

.btn-cta-nav {
    background: var(--amarillo); /* Amarillo YEI */
    color: var(--negro) !important;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(233, 211, 70, 0.3);
}

/* --- AJUSTES EN EL RESPONSIVE (CELULAR) --- */
@media (max-width: 768px) {
    .pc-only {
        display: none !important; /* Oculta el 'Ver Bases' del nav en móvil */
    }

    .mobile-only {
        display: block !important; /* Muestra Cronograma y Redes en el menú móvil */
    }

    .nav-links .btn-cta-nav {
        background: transparent; /* En el menú móvil se ve como un link normal */
        color: white !important;
        padding: 0;
        margin: 0;
        box-shadow: none;
        font-size: 1.5rem; /* Tamaño coherente con los otros links móviles */
    }
}
/* --- ESTILOS DE RESALTE PARA PC --- */
.btn-amarillo {
    background: var(--amarillo) !important;
    color: var(--negro) !important;
}

.btn-naranja {
    border: 2px solid var(--naranja) !important;
    color: var(--blanco) !important;
}

header.scrolled .btn-naranja {
    color: var(--naranja) !important;
    border-color: var(--naranja) !important;
}

/* --- AJUSTES PARA EL MENÚ MÓVIL (RAYITAS) --- */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    /* Estilo especial para Postula aquí en Celular */
    .nav-links .btn-amarillo {
        background: var(--amarillo) !important;
        color: var(--negro) !important;
        padding: 12px 25px !important;
        border-radius: 8px !important;
        font-size: 1.3rem !important;
        width: 80%; /* Para que parezca un botón real en el menú */
        text-align: center;
    }

    /* Estilo especial para Ver Bases en Celular */
    .nav-links .btn-naranja {
        background: transparent !important;
        color: var(--amarillo) !important; /* Usamos amarillo o naranja para que brille */
        border: 2px solid var(--amarillo) !important;
        padding: 10px 20px !important;
        font-size: 1.2rem !important;
        width: 80%;
        margin-top: 10px;
    }
    
    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    /* 1. MENÚ MÓVIL TOTALMENTE CENTRADO */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #4b38e3; /* */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* ESTO CENTRA TODO EL CONTENIDO */
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centra los textos: Propósito, Proceso, etc. */
        text-align: center;
        gap: 20px;
        width: 100%;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        font-size: 1.6rem !important;
        font-weight: 700;
        color: white !important;
        margin: 0 !important;
    }

    /* 2. BOTONES DEL MENÚ CENTRADOS */
    .nav-links .btn-amarillo {
        background: #e9d346 !important; /* */
        color: #1e1e1e !important; /* */
        padding: 15px 30px !important;
        border-radius: 10px;
        width: 85% !important; /* Ancho consistente */
        max-width: 300px;
        margin-top: 20px !important;
    }

    .nav-links .btn-naranja {
        background: transparent !important;
        border: 2px solid #e9d346 !important; /* Amarillo para resaltar sobre violeta */
        color: #e9d346 !important;
        padding: 12px 30px !important;
        width: 85% !important;
        max-width: 300px;
        margin-top: 15px !important;
    }

    /* 3. MÉTRICAS: TEXTO PEGADO A LOS NÚMEROS */
    .metric {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 8px !important; /* Mínimo espacio entre número y texto */
        margin-bottom: 30px;
    }

    .num {
        font-size: 2.8rem !important; /* Tamaño equilibrado */
        min-width: 50px; /* Evita que el número empuje el texto */
    }

    .desc {
        text-align: left;
        line-height: 1.1;
        font-size: 0.75rem !important;
    }
}