.cuerpo-rotulo {
    margin: 0;
    padding: 0;
    background-color: #0d1013 !important;
    font-family: 'Segoe UI', Roboto, monospace;
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}


/* ====== NAVEGACIÓN TÉCNICA ====== */
.header-sistema {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    background: rgba(13, 16, 19, 0.85);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
    z-index: 100;
}


.meta-materia {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.tag-catedra {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}


.tag-comision {
    font-size: 0.75rem;
    font-family: monospace;
    color: #00f0ff; /* Cian neón */
    letter-spacing: 2px;
}


.nav-links {
    display: flex;
    gap: 30px;
}


.nav-item {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
}


.nav-item:hover {
    color: #ff007b; /* Tu Rosa */
    text-shadow: 0 0 8px rgba(255, 0, 123, 0.5);
    background: rgba(255, 0, 123, 0.05);
}


/* ====== MAQUETADO DEL BANNER (FOTO REFERENCIA) ====== */
.contenedor-banner-vivo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}


/* Replicamos las placas oscuras del fondo usando gradientes */
.contenedor-banner-vivo::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background:
        linear-gradient(135deg, #1c1f26 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, #1c1f26 25%, transparent 25%) -50px 0,
        radial-gradient(circle at 80% 50%, rgba(112, 0, 255, 0.15), transparent 40%),
        #0d1013;
    background-size: 100% 100%;
}


/* Filetes de luz cian en diagonal */
.lineas-fuga-cian {
    position: absolute;
    width: 200%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #00f0ff, #00f0ff 4px, transparent 4px, transparent 12px);
    top: 60%;
    left: -50%;
    transform: rotate(-25deg);
    opacity: 0.4;
    z-index: -1;
}


/* ====== TIPOGRAFÍA VN24 (COMPOSICIÓN FIEL) ====== */
.bloque-titulo-principal {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}


.sub-header-fadu {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: -10px;
}


/* ==========================================================================
   TIPOGRAFÍA VN24 FIEL AL BANNER_2: MASIVA, COMPACTA E ITALIZADA
   ========================================================================= */


/* Texto técnico superior de la FADU */
.sub-header-fadu {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: -5px;
    text-transform: uppercase;
}


/* El "VN" Blanco, gigante y ultra-compacto */
.sigla-vn-potente {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16rem !important; /* Peso visual masivo */
    font-weight: 900;
    color: #ffffff;
    line-height: 0.78; /* Hacemos que colapse hacia abajo como la foto */
    margin: 0;
    letter-spacing: -6px; /* Letras bien juntas */
    position: relative;
    text-transform: uppercase;
   
    /* El sutil pulso de sobrecarga que le habíamos armado */
    animation: sobrecargaElectrica 5s ease-in-out infinite;
}


/* El "24" en degradé, inclinado y desfasado en cian */
.numero-24-potente {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14.5rem !important;
    font-weight: 900;
    margin: -30px 0 0 0;
    line-height: 0.85;
    letter-spacing: -4px;
   
   
    background: linear-gradient(180deg, #b000ff 0%, #ff007b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
    position: relative;
    z-index: 4;
   
 
    transform: skewX(-10deg);
   
 
    filter: drop-shadow(-4px -4px 0px rgba(0, 240, 255, 0.95))
            drop-shadow(0px 8px 30px rgba(255, 0, 123, 0.6));
           
 
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);


    animation: sobrecargaElectrica 5s ease-in-out infinite;
    animation-delay: 0.1s;
}




.info-perfil-target h4, .banner-integrantes p {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}




.modulo-integrantes {
    background: rgba(24, 26, 31, 0.8);
    border: 2px solid #ff007b;
    box-shadow: 0 0 25px rgba(255, 0, 123, 0.25), inset 0 0 15px rgba(255, 0, 123, 0.1);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(6px);
}


.titulo-modulo {
    font-family: monospace;
    font-size: 0.8rem;
    color: #00f0ff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}


.grilla-botones-personales {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.btn-personal {
    display: flex;
    align-items: center;
    background: rgba(13, 16, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.15, 0.85, 0.45, 1);
}


.indicador-online {
    width: 8px;
    height: 8px;
    background-color: #ff007b;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 8px #ff007b;
    transition: background-color 0.3s ease;
}


.datos-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.datos-btn small {
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}


.datos-btn strong {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2px;
}


.flecha-link {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}


/* Efecto Hover estilo Hardware */
.btn-personal:hover {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}


.btn-personal:hover .indicador-online {
    background-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
}


.btn-personal:hover .flecha-link {
    color: #00f0ff;
    transform: translateX(4px);
}


/* ====== COPLE PARA TU FOOTER ORIGINAL ====== */
.tu-footer-viejo {
    /* Tu CSS viejo va a aplicar acá solo si coincide la clase */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    text-align: center;
    background-color: #090b0d;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
/* ==========================================================================
   FOOTER INSTITUCIONAL: UBA - FADU - CÁTEDRA OCAMPO
   ========================================================================= */


.footer-institucional-fadu {
    background-color: #090b0e !important; /* Un azul noche un pelito más oscuro para el cierre */
    border-top: 1px solid rgba(0, 240, 255, 0.15) !important; /* Filete cian sutil en sistema */
    padding: 50px 6% 30px 6% !important;
    box-sizing: border-box;
    width: 100%;
    margin-top: auto; /* Se clava abajo si el contenido es corto */
    position: relative;
    z-index: 10;
}


/* Grilla de 3 columnas para organizar la jerarquía de datos */
.footer-grid-datos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Columnas internas de texto */
.col-datos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Títulos de las columnas (Estilo código de sistema) */
.col-datos h3 {
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 800;
    color: #00f0ff; /* Tu Cian Neón de la imagen */
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}


/* Líneas de texto de los datos */
.col-datos p {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0;
    line-height: 1.4;
}


.col-datos p strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}


/* Resaltado especial para tu grupo de trabajo */
.resaltado-integrantes {
    font-weight: 600;
    line-height: 1.6 !important;
    color: #ffffff !important;
    border-left: 2px solid #ff007b; /* Detalle fucsia al costado de sus nombres */
    padding-left: 12px;
}


/* Separador horizontal técnico */
.separador-tecnico-footer {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 123, 0.2), transparent);
    margin: 40px 0 25px 0;
}


/* Bloque del texto legal inferior */
.footer-legal-descargo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}


.footer-legal-descargo p {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 0.7rem; /* Tamaño micro de marco regulatorio */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35) !important; /* Color apagado para que no distraiga */
    margin: 0;
}


/* Ajuste de responsive por si lo miran desde un celular */
@media (max-width: 768px) {
    .footer-institucional-fadu {
        padding: 40px 4% 20px 4% !important;
    }
    .footer-grid-datos {
        gap: 25px;
    }
    .footer-legal-descargo p {
        text-align: left;
    }
}


/* ==========================================================================
   MÓDULO DE TARJETAS AVANZADO: INSPIRADO EN LA ESTRUCTURA CÁTEDRA OCAMPO
   ========================================================================= */


.modulo-integrantes-avanzado {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 5;
}


.titulo-modulo-tecnico {
    font-family: monospace;
    font-size: 0.8rem;
    color: #ff007b; /* Tu rosa identitario */
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 0, 123, 0.4);
}


/* Grilla contenedora fluida */
.contenedor-tarjetas-fadu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}


/* ====== LA TARJETA INTERACTIVA (Efecto Hover Avanzado) ====== */
.tarjeta-perfil-link {
    display: flex;
    align-items: center;
    background: rgba(20, 24, 33, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    gap: 20px;
   
    /* Configuración para la transformación suave en el espacio */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
   
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* El sutil marco de luz de fondo que se enciende */
.capa-borde-neon {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 3;
}


/* ACCIÓN DE HOVER MACRO SOBRE LA TARJETA */
.tarjeta-perfil-link:hover {
    transform: translateY(-5px) scale(1.01); /* Pequeño salto controlado */
    border-color: rgba(0, 240, 255, 0.4); /* El cian técnico de la foto */
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15),
                0 0 20px rgba(255, 0, 123, 0.1);
}


.tarjeta-perfil-link:hover .capa-borde-neon {
    border-color: #00f0ff;
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.1);
}


/* ====== CONTENEDOR DE LA FUTURA FOTO (AVATAR) ====== */
.avatar-perfil-vacio {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 6px;
    background-color: #090b0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


/* Malla técnica milimetrada interna de la foto */
.malla-tecnica-foto {
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}


/* El cartelito interno de estado */
.status-foto {
    font-family: monospace;
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    letter-spacing: 1px;
    padding: 0 5px;
    z-index: 2;
    transition: color 0.4s ease;
}




.tarjeta-perfil-link:hover .avatar-perfil-vacio {
    border-color: #ff007b;
    background-color: #11141a;
}
.tarjeta-perfil-link:hover .malla-tecnica-foto {
    opacity: 1;
    background-image:
        linear-gradient(rgba(255, 0, 123, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 123, 0.15) 1px, transparent 1px);
}
.tarjeta-perfil-link:hover .status-foto {
    color: #ff007b;
    text-shadow: 0 0 5px rgba(255, 0, 123, 0.5);
}




.info-perfil-target {
    display: flex;
    flex-direction: column;
    z-index: 2;
}


.rol-sistema {
    font-family: monospace;
    font-size: 0.65rem;
    color: #00f0ff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}


.info-perfil-target h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    position: relative;
    transition: color 0.3s ease;
}


.link-tag-sub {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}




.tarjeta-perfil-link:hover .link-tag-sub {
    color: #ff007b;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 0, 123, 0.4);
}




.tarjeta-perfil-link:hover h4 {
    color: #ffffff;
}




@media (max-width: 480px) {
    .tarjeta-perfil-link {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }
    .contenedor-tarjetas-fadu {
        grid-template-columns: 1fr;
    }
}




.foto-perfil-real {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: grayscale(20%) brightness(0.95);
    transition: filter 0.4s ease, transform 0.4s ease !important;
    z-index: 1;
}




.tarjeta-perfil-link:hover .foto-perfil-real {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}
/* ==========================================================================
   NÚCLEO POTENCIADO VN24: ANIMACIÓN DE ENERGÍA PERIMETRAL Y PULSO ELÉCTRICO
   ========================================================================== */


.bloque-titulo-principal-avanzado {
    position: relative;
    padding: 40px 60px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* 1. EFECTO ALREDEDOR: Anillo orbital de escaneo técnico */
.anillo-escaneo-perimetral {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 240, 255, 0.25); /* Tu cian nítido */
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05), inset 0 0 20px rgba(0, 240, 255, 0.05);
    z-index: 1;
   
    /* Giro continuo para generar movimiento de entorno */
    animation: escaneoFugaOrbital 20s linear infinite;
    pointer-events: none;
}


/* Micro textos de código que orbitan alrededor del título */
.particulas-codigo-vuelo {
    position: absolute;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 900;
    color: #ff007b; /* Tu rosa */
    letter-spacing: 2px;
    opacity: 0.7;
    z-index: 2;
    animation: flotacionCodigo 4s ease-in-out infinite alternate;
}
.particulas-codigo-vuelo.v2 {
    color: #00f0ff;
    bottom: 10px;
    right: 20px;
    animation-delay: -2s;
}
.particulas-codigo-vuelo:not(.v2) {
    top: 10px;
    left: 20px;
}


/* Contenedor central inmóvil para que los textos no tiemblen al scrollear */
.contenedor-texto-puro {
    position: relative;
    z-index: 3;
    text-align: center;
}


.sub-header-fadu {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    display: block;
    margin-bottom: -10px;
    text-transform: uppercase;
}


/* 2. EL TÍTULO "VN": Pulso de energía cromática */
.sigla-vn-potente {
    font-size: 14rem !important;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -4px;
    position: relative;
   
    /* Animación de latigazo de señal */
    animation: sobrecargaElectrica 5s ease-in-out infinite;
}


/* 3. EL NÚMERO "24": Degradé furioso y desborde cian */
.numero-24-potente {
    font-size: 12rem !important;
    font-weight: 900;
    margin: -35px 0 0 0;
    line-height: 0.9;
    background: linear-gradient(180deg, #bd00ff 0%, #ff007b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 4;
   
    /* Sombra pesada idéntica a tu foto de referencia */
    filter: drop-shadow(0 8px 25px rgba(255, 0, 123, 0.6))
            drop-shadow(-5px -5px 0px #00f0ff);
           
    animation: sobrecargaElectrica 5s ease-in-out infinite;
    animation-delay: 0.1s; /* Desfase milimétrico para simular quiebre de señal */
}




/* ==========================================================================
   FOTOGRAMAS (KEYFRAMES) DE ACCIÓN POTENTE
   ========================================================================== */


/* Movimiento circular suave del anillo perimetral */
@keyframes escaneoFugaOrbital {
    0% { transform: rotate(0deg); border-color: rgba(0, 240, 255, 0.25); }
    50% { border-color: rgba(255, 0, 123, 0.35); } /* Cambia cromáticamente en el giro */
    100% { transform: rotate(360deg); border-color: rgba(0, 240, 255, 0.25); }
}


/* Flotación técnica de las etiquetas de datos */
@keyframes flotacionCodigo {
    0% { transform: translateY(0px) scale(0.95); opacity: 0.4; }
    100% { transform: translateY(-8px) scale(1); opacity: 0.9; text-shadow: 0 0 8px currentColor; }
}


/* Sobrecarga cíclica: El texto respira y cada tanto tira un latigazo de brillo */
@keyframes sobrecargaElectrica {
    0%, 88%, 93%, 97%, 100% {
        transform: scale(1) skew(0deg);
        filter: brightness(1);
    }
    90% {
        transform: scale(1.03) skew(2deg);
        filter: brightness(1.4); /* Explosión de luz neón */
    }
    95% {
        transform: scale(0.98) skew(-1deg);
        filter: brightness(1.2);
    }
}


/* ==========================================================================
   ACTUALIZACIÓN DE FONDO AVANZADO (MÁS LLAMATIVO Y EN SISTEMA 3D)
   ========================================================================== */


/* 1. Modificamos el contenedor base del fondo */
.contenedor-banner-vivo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    /* Bloqueamos desbordes para que las placas neón jueguen libres */
    overflow: hidden;
}


/* 2. Capa de relieves y gradiente de alto contraste (Estilo tu foto de referencia) */
.contenedor-banner-vivo::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -3;
   
   
    background:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 20px 20px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 20px 20px,
        /* Estructuras angulares oscuras que arman la planimetría */
        linear-gradient(135deg, #161920 12%, transparent 12%),
        linear-gradient(225deg, #111318 18%, transparent 18%),
        linear-gradient(45deg, #1a1d24 10%, transparent 10%),
        /* El núcleo azul noche profundo */
        #090b0e;
       
    opacity: 1;
}




.contenedor-banner-vivo::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
   
   
    background: radial-gradient(circle, rgba(255, 0, 123, 0.25) 0%, rgba(112, 0, 255, 0.15) 40%, transparent 70%),
                radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.15), transparent 50%);
               
    /* Animación potente de respiración eléctrica */
    animation: pulsoNeonFondo 6s ease-in-out infinite alternate;
    pointer-events: none;
}




.lineas-fuga-cian {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 20%;
    right: -250px;
    border-left: 4px solid #00f0ff;
    border-top: 4px solid #ff007b;  
    transform: rotate(45deg);
    background: #14171e;
    z-index: -1;
   
 
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.85),
                inset 5px 5px 20px rgba(0, 240, 255, 0.1);
    opacity: 0.85;
}


@keyframes pulsoNeonFondo {
    0% {
        transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
        filter: brightness(0.8) opacity(0.8);
    }
    50% {
        filter: brightness(1.3) opacity(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1) rotate(15deg);
        filter: brightness(0.9) opacity(0.9);
    }
}


/* ==========================================================================
   SISTEMA DE EYE TRACKER SIMULADO Y ONDA DE CHOQUE CIBERPUNK
   ========================================================================= */


/* Ocultamos el cursor original del sistema en toda la página para usar el técnico */
html, body, a, button {
    cursor: none !important;
}


/* Anillo exterior elástico (Fucsia Neón) */
.eye-tracker-core {
    width: 34px;
    height: 34px;
    border: 1.5px solid #ff007b;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Evita que moleste para hacer clicks */
    z-index: 9999;
    box-shadow: 0 0 12px rgba(255, 0, 123, 0.4), inset 0 0 6px rgba(255, 0, 123, 0.2);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}


/* Mira de fijación central (Punto Cian Nítido) */
.eye-tracker-mira {
    width: 6px;
    height: 6px;
    background-color: #00f0ff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 8px #00f0ff;
}


/* Micro-interacción: Cuando pasa por arriba de un botón, link o tarjeta */
a:hover ~ .eye-tracker-core,
button:hover ~ .eye-tracker-core,
.tarjeta-perfil-link:hover .eye-tracker-core {
    width: 46px;
    height: 46px;
    background-color: rgba(0, 240, 255, 0.05);
    border-color: #00f0ff; /* Cambia a cian en zonas de acción */
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}


/* Reacción visual del tracker al hacer click */
.eye-tracker-core.click-activo {
    transform: translate(-50%, -50%) scale(0.6);
    border-color: #ffffff;
    background-color: #ff007b;
}


/* ====== LA ONDA EXPANSIVA DE HARDWARE (IMPLOSIÓN) ====== */
.onda-choque-tracker {
    position: fixed;
    width: 10px;
    height: 10px;
    border: 3px solid #00f0ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
   
    /* Disparamos la animación de dispersión */
    animation: explosionElectrica 0.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}


@keyframes explosionElectrica {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
        border-color: #00f0ff;
        box-shadow: 0 0 10px #00f0ff;
    }
    50% {
        border-color: #ff007b;
        box-shadow: 0 0 20px #ff007b;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-color: transparent;
        box-shadow: 0 0 40px rgba(255, 0, 123, 0);
    }
}


/* ==========================================================================
   SECCIÓN GUÍA APP: MÓDULO DE INVESTIGACIÓN Y METADATOS TÉCNICOS
   ========================================================================= */


.seccion-guia-app {
    width: 100%;
    max-width: 1100px;
    margin: 80px auto 40px auto;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(17, 20, 27, 0.7); /* Traslúcido para que se vea el fondo 3D */
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    z-index: 5;
    position: relative;
}


/* Grilla principal de dos columnas */
.contenedor-grilla-app {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}


/* --- COLUMNA IZQUIERDA --- */
.bloque-encabezado-app {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.codigo-consola {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: #ff007b; /* Tu Rosa */
    letter-spacing: 2px;
    font-weight: 700;
}


.titulo-guia-app {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin: 10px 0;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.decoracion-vectorial-app {
    width: 60px;
    height: 4px;
    background-color: #00f0ff; /* Filete cian técnico */
    margin-top: 15px;
    box-shadow: 0 0 10px #00f0ff;
}


/* --- COLUMNA DERECHA --- */
.bloque-contenido-app {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.caja-tecnica-info {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
    transition: border-color 0.3s ease;
}


.caja-tecnica-info:hover {
    border-color: #ff007b; /* Se ilumina al pasar por encima */
}


.indicador-etiqueta {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    color: #00f0ff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}


.bloque-contenido-app p {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0;
    text-align: justify;
}


/* --- BARRA INFERIOR DE METADATOS --- */
.barra-metadatos-app {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #090b0e; /* Fondo ciego tipo consola */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
}


.item-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.item-meta small {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}


.item-meta span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffffff;
}


.fecha-resaltada {
    color: #00f0ff !important; /* Resalta la fecha en cian */
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}


/* Indicador de Estado con Luz Parpadeante */
.estado-desarrollo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff007b !important; /* Texto en rosa */
    text-shadow: 0 0 8px rgba(255, 0, 123, 0.3);
}


.led-parpadeante {
    width: 8px;
    height: 8px;
    background-color: #ff007b;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff007b;
    animation: pulsoLedDesarrollo 1.5s ease-in-out infinite alternate;
}


/* ==========================================================================
   ANIMACIONES DE SEÑAL Y AJUSTE RESPONSIVE
   ========================================================================= */


@keyframes pulsoLedDesarrollo {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 12px #ff007b; }
}


/* Ajuste por si corrigen desde un iPad o Celular */
@media (max-width: 850px) {
    .contenedor-grilla-app {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .seccion-guia-app {
        padding: 25px;
        margin: 50px 15px 20px 15px;
    }
    .titulo-guia-app {
        font-size: 2.8rem;
    }
}


/* ==========================================================================
   CARTEL EN MARCHA CONSTANTE DE CRÉDITOS (HACIA LA DERECHA)
   ========================================================================= */


.contenedor-ticker-fadu {
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 0, 123, 0.2);
    border-bottom: 1px solid rgba(255, 0, 123, 0.2);
    padding: 15px 0;
    overflow: hidden; /* Oculta todo lo que dobla fuera de la pantalla */
    position: relative;
    z-index: 4;
    margin-top: 40px;
    box-shadow: 0 0 25px rgba(255, 0, 123, 0.05);
}


/* Contenedor flexible de las dos tiras */
.cinta-desplazamiento-derecha {
    display: flex;
    width: max-content;
}


/* El bloque interno con los strings de texto */
.grupo-texto-ticker {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
   
    /* Disparamos la animación constante hacia la derecha */
    animation: marchaInfinitaDerecha 25s linear infinite;
    will-change: transform; /* Optimización de renderizado en placa de video */
}


/* Estilo tipográfico en sistema con banner_2 */
.grupo-texto-ticker span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}


/* Los separadores "//" van en el color cian del sistema */
.grupo-texto-ticker span:nth-child(even) {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
}


/* Interacción: si apoyan el mouse (o el tracker), el cartel se ralentiza */
.contenedor-ticker-fadu:hover .grupo-texto-ticker {
    animation-play-state: paused;
    cursor: cell; /* Cambia sutilmente el tipo de interacción */
}




/* ==========================================================================
   FOTOGRAMAS DEL MOVIMIENTO INVERSO (LOOP DE ENGANCHE)
   ========================================================================= */


@keyframes marchaInfinitaDerecha {
    0% {
        /* Arranca desfasado exactamente una tira a la izquierda */
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        /* Avanza de forma milimétrica hasta la posición cero */
        transform: translate3d(0%, 0, 0);
    }
}


/* ==========================================================================
   PANTALLA DE APERTURA (BOOT LOG INICIAL) - ESTILO COMPLETO VN24
   ========================================================================= */

.pantalla-carga-inicial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #090b0e; /* Tu fondo ciego ultra oscuro */
    z-index: 999999; /* Por encima de todo, incluso del eye tracker */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.6s ease;
}

/* El contenedor central de la terminal */
.contenedor-consola-boot {
    width: 100%;
    max-width: 650px;
    background: #111318;
    border: 1px solid rgba(255, 0, 123, 0.3); /* Filete fucsia sutil */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                inset 0 0 20px rgba(255, 0, 123, 0.05);
}

/* Cabecera Técnica de Ventana */
.terminal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.led-terminal {
    width: 8px;
    height: 8px;
    background-color: #ff007b;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff007b;
    animation: pulsoLedDesarrollo 1s ease-in-out infinite alternate;
}

.titulo-terminal {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
}

/* Líneas de log estilo hacker rápido */
.lineas-consola-log {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.linea-log {
    font-family: monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    /* Efecto cascada rápido de código */
    animation: despliegueLineaLog 0.3s ease-out forwards;
}

/* Moduladores de delays para que las líneas aparezcan una detrás de otra */
.linea-log:nth-child(2) { animation-delay: 0.15s; }
.linea-log:nth-child(3) { animation-delay: 0.3s; }
.linea-log:nth-child(4) { animation-delay: 0.45s; }
.linea-log:nth-child(5) { animation-delay: 0.6s; }
.linea-log:nth-child(6) { animation-delay: 0.75s; }

/* Sección central del porcentaje masivo */
.bloque-carga-progreso {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contador-porcentaje {
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -2px;
}

/* La barra de carga física */
.barra-progreso-externa {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.barra-progreso-interna {
    width: 0%; 
    height: 100%;
    background: linear-gradient(90deg, #ff007b 0%, #00f0ff 100%);
    box-shadow: 0 0 12px #00f0ff;
    transition: width 0.08s linear;
}


.status-acceso {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
}


.pantalla-abierta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Micro Animación para las líneas de código */
@keyframes despliegueLineaLog {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Container adaptable para el canvas de Figma */
.wrapper-figma-responsive {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Un pequeño sombreado neón para que se ensamble con tu paleta */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.05);
}


/* ==========================================================================
   ESTILOS PARA EL MOCKUP DEL RÓTULO
   ========================================================================= */
.contenedor-mockup-grupal {
    width: 100%;
    max-width: 600px; /* Evita que se estire demasiado en monitores gigantes */
    margin: 40px auto; /* Centra el bloque y le da aire arriba y abajo */
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.imagen-mockup {
    width: 100%;
    height: auto; /* Mantiene la proporción original de la imagen */
    display: block;
    object-fit: contain;
    /* Opcional: un sutil redondeado para suavizar los bordes si no tuviera fondo negro total */
    border-radius: 8px; 
}




