/* =========================================
   1. VARIABLES GLOBALES Y CONFIGURACIÓN BASE
   ========================================= */
:root {
   --primary: #194239; 
   --primary-light: #235347; 
   --dark: #111111; 
   --white: #ffffff; 
   --text-color: #333333;
   
   /* Fondos Premium Modo Claro */
   --bg-light-soft: #fdfdfd; 
   --bg-light-accent: #eef3f1; 
   
   /* Colores Neón y Acentos */
   --neon: #00ff88; 
   --accent-gold: #d4af37; 
   --accent-blue: #007bff; 
   --accent-purple: #6f42c1;
   
   --border-light: rgba(25, 66, 57, 0.15); 
   --glow-shadow: 0 8px 30px rgba(0, 255, 136, 0.2); 
   --gold-glow: 0 0 15px rgba(212, 175, 55, 0.5);
   --blue-glow: 0 0 15px rgba(0, 123, 255, 0.4); 
   --purple-glow: 0 0 15px rgba(111, 66, 193, 0.4);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap'); 

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; max-width: 100%; } 

body { 
    scroll-behavior: smooth; color: var(--text-color); 
    background: linear-gradient(135deg, var(--bg-light-soft) 0%, var(--bg-light-accent) 100%); 
    background-attachment: fixed; overflow-x: hidden; 
} 

::-webkit-scrollbar { width: 10px; } 
::-webkit-scrollbar-track { background: var(--bg-light-accent); } 
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; } 
::-webkit-scrollbar-thumb:hover { background: var(--accent-purple); } 

.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; } 
.reveal.active { opacity: 1; transform: translateY(0); } 

.container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 20px 0; } 
.section-padding { padding: 40px 0; } 
.section-title { text-align: center; color: var(--accent-gold) !important; margin-bottom: 40px; font-size: 2.2rem; text-transform: uppercase; font-weight: bold; text-shadow: 0 2px 5px rgba(0,0,0,0.1); } 


/* =========================================
   2. NAVEGACIÓN DUAL (PC Y MÓVIL DECORADO)
   ========================================= */

/* --- ESTILO PARA COMPUTADORAS (Escritorio) --- */
.main-header {
    background: rgba(25, 66, 57, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Logo adaptable */
.logo-small {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.menu-toggle, .sidebar-lateral, .overlay-dark {
    display: none; 
}

.navbar {
    width: 100%;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.2);
}
.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    padding: 10px;
}
.navbar li a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.navbar li a:hover, .navbar li a.activo {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: var(--glow-shadow);
}

/* --- ESTILO PARA MÓVIL (Menú Lateral Decorado) --- */
@media screen and (max-width: 768px) {
    .navbar { display: none !important; } 

    .logo-small {
        height: 42px; /* Se adapta al tamaño del teléfono */
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 5001;
    }
    .menu-toggle .bar {
        height: 3px;
        width: 25px;
        background-color: var(--neon);
        margin: 3px 0;
        border-radius: 5px;
        transition: 0.4s;
    }

    /* Sidebar Decorado */
    .sidebar-lateral {
        display: flex;
        position: fixed;
        right: -100%; 
        top: 0;
        width: 280px; 
        height: 100vh;
        background: linear-gradient(135deg, rgba(11, 34, 24, 0.98), rgba(0, 0, 0, 0.98));
        backdrop-filter: blur(15px);
        z-index: 5000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 2px solid var(--neon);
        flex-direction: column;
        padding-top: 20px;
    }

    .sidebar-lateral.active {
        right: 0;
    }

    /* Capa oscura para cerrar al tocar fuera */
    .overlay-dark {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        z-index: 4500;
        display: none; /* Se activa con JS */
    }
    
    .overlay-dark.active {
        display: block;
    }

    .nav-links-sidebar {
        list-style: none;
        padding: 40px 20px;
    }
    .nav-links-sidebar li {
        margin-bottom: 25px;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s;
    }
    .sidebar-lateral.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links-sidebar a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        display: block;
        border-bottom: 1px solid rgba(0,255,136,0.1);
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 768px) {
    .timeline-vertical::after { left: 20px !important; transform: none !important; }
    .timeline-item { width: 100% !important; padding: 10px 10px 10px 45px !important; }
    .timeline-item.izquierda, .timeline-item.derecha { left: 0 !important; }
    .timeline-icon { left: 20px !important; transform: translateX(-50%) !important; }
}

/* =========================================
   3. HERO SECTION (BANNER CORREGIDO)
   ========================================= */
.hero-section { 
    /* Cambia 'inicio' por el nombre exacto de tu imagen si es necesario */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('imagenes/inicio'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    padding: 120px 20px; /* Aumentamos el padding para darle altura */
    text-align: center; 
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Altura mínima garantizada */
    width: 100%;
} 

.hero-container { 
    max-width: 900px; 
    margin: 0 auto; 
} 

.texto-destacado { 
    font-size: 3rem; 
    font-weight: 800; 
    color: var(--accent-purple); /* Color temático del DECE */
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
} 

.subtexto-hero { 
    font-size: 1.2rem; 
    color: var(--white); 
    font-weight: 400; 
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   4. TARJETAS GENERALES E INFO DECE
   ========================================= */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } 

.card-info, .eje-card-premium { background: var(--white); padding: 30px; border-radius: 15px; border-top: 5px solid var(--accent-purple); border-bottom: 2px solid var(--border-light); border-left: 1px solid rgba(25, 66, 57, 0.05); border-right: 1px solid rgba(25, 66, 57, 0.05); box-shadow: 0 8px 20px rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; cursor: pointer; position: relative; overflow: hidden; }
.card-info:hover, .eje-card-premium:hover { transform: translateY(-12px); box-shadow: 0 15px 30px rgba(111, 66, 193, 0.2); border-bottom-color: var(--accent-purple); }
.eje-icon-anim, .profile-icon { font-size: 3.5rem; margin-bottom: 15px; transition: 0.3s; color: var(--primary); }
.card-info:hover .profile-icon, .eje-card-premium:hover .eje-icon-anim { transform: scale(1.15); color: var(--accent-purple); }
.card-info h3, .eje-card-premium h3 { color: var(--primary) !important; margin-bottom: 12px; font-weight: 700; }
.card-info p, .eje-card-premium p { color: #444444 !important; }

/* =========================================
   5. EQUIPO DECE (DISEÑO VITRINA DE CRISTAL)
   ========================================= */
.jornada-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-left: 10px;
}

.jornada-indicator h3 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.pulse-icon {
    font-size: 1.5rem;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.dece-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.perfil-dece-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.perfil-dece-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(25, 66, 57, 0.15);
    background: var(--white);
}

/* Barra lateral de color */
.perfil-sidebar {
    width: 8px;
    height: 100%;
}
.perfil-sidebar.coord { background: var(--accent-purple); box-shadow: 2px 0 10px rgba(111, 66, 193, 0.3); }
.perfil-sidebar.analista { background: var(--accent-blue); box-shadow: 2px 0 10px rgba(0, 123, 255, 0.3); }

.perfil-info-content {
    padding: 25px;
    flex-grow: 1;
}

.perfil-info-content h4 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.perfil-cargo {
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfil-divider {
    height: 2px;
    width: 40px;
    background: var(--border-light);
    margin: 15px 0;
    transition: width 0.4s ease;
}

.perfil-dece-card:hover .perfil-divider {
    width: 100%;
    background: var(--neon);
}

.perfil-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Brillo interior al pasar el mouse */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}
.perfil-dece-card:hover .card-glow { opacity: 1; }

/* MODO OSCURO */
body.dark-mode .perfil-dece-card {
    background: rgba(30, 35, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .perfil-info-content h4 { color: white; }
body.dark-mode .perfil-desc { color: #a3b3bc; }
body.dark-mode .jornada-indicator h3 { color: var(--accent-gold); }

/* =========================================
   6. LÍNEA DE TIEMPO (RUTAS DE ACCIÓN)
   ========================================= */
.timeline-vertical { position: relative; max-width: 1000px; margin: 0 auto; padding: 20px 0; }
.timeline-item { padding: 10px 40px; position: relative; background: inherit; width: 50%; }
.timeline-item.izquierda { left: 0; } .timeline-item.derecha { left: 50%; }

.glass-timeline { padding: 25px; background: var(--white); border: 1px solid var(--border-light); border-radius: 15px; position: relative; box-shadow: 0 8px 20px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.glass-timeline:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(111, 66, 193, 0.2); border-color: var(--accent-purple); }

.anio-timeline { color: var(--accent-purple); font-size: 2.2rem; margin-bottom: 5px; font-family: 'Playfair Display', serif; font-weight: bold; }
.glass-timeline h4 { color: var(--primary); font-size: 1.3rem; margin-bottom: 10px; font-weight: bold; }
.glass-timeline p { color: #444444; font-size: 1rem; line-height: 1.6; margin-bottom: 15px; }

.timeline-vertical::after { content: ''; position: absolute; width: 4px; background-color: var(--accent-purple); top: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; height: 0; transition: height 2s ease-out; box-shadow: var(--purple-glow); }
.timeline-vertical.active::after { height: 100%; }

.timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; background-color: var(--white); border: 4px solid var(--accent-purple); top: 20px; border-radius: 50%; z-index: 1; box-shadow: 0 0 10px rgba(0,0,0,0.1); opacity: 0; transform: scale(0); transition: all 0.5s ease 0.3s; }
.timeline-item.izquierda::after { right: -10px; } .timeline-item.derecha::after { left: -10px; }
.timeline-item.active::after { opacity: 1; transform: scale(1); }
.timeline-item:hover::after { transform: scale(1.3); background-color: var(--accent-purple); border-color: var(--white); box-shadow: var(--purple-glow); }

/* =========================================
   7. VENTANAS MODALES Y BOTONES
   ========================================= */
.btn-interactivo { background: var(--primary); color: var(--white); padding: 10px 20px; border: 2px solid var(--primary); border-radius: 30px; font-size: 0.9rem; font-weight: bold; cursor: pointer; transition: 0.3s ease; display: inline-block; text-decoration: none; }
.btn-interactivo:hover { background: var(--accent-purple); color: var(--white); border-color: var(--accent-purple); box-shadow: var(--purple-glow); }

.modal-dece-tech { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(17, 17, 17, 0.85); backdrop-filter: blur(8px); }
.modal-contenido-tech { background: var(--white); margin: 10% auto; padding: 40px; border-radius: 20px; width: 90%; max-width: 550px; border-top: 8px solid var(--accent-purple); box-shadow: 0 10px 40px rgba(0,0,0,0.3); position: relative; animation: modalIn 0.4s ease-out; }
@keyframes modalIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cerrar-modal { position: absolute; top: 15px; right: 25px; font-size: 30px; font-weight: bold; cursor: pointer; color: var(--primary); transition: 0.2s; }
.cerrar-modal:hover { color: red; transform: scale(1.2); }
.modal-contenido-tech h2 { color: var(--primary) !important; font-weight: bold; }
.separador-neon { height: 4px; width: 80px; background: var(--accent-purple); margin: 15px 0; border-radius: 2px; }

/* =========================================
   8. MENÚ FLOTANTE LATERAL Y FOOTER
   ========================================= */
.menu-flotante-lateral { position: fixed; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 1000; }
.item-flotante { display: flex; align-items: center; flex-direction: row-reverse; position: relative; }
.boton-circulo { width: 45px; height: 45px; background-color: var(--primary); color: var(--white); border-radius: 50px 0 0 50px; display: flex; justify-content: center; align-items: center; font-size: 20px; cursor: pointer; transition: all 0.4s ease; opacity: 0.3; transform: translateX(25px); text-decoration: none;}

.item-flotante:nth-child(1):hover .boton-circulo { background-color: var(--accent-purple); color: white; opacity: 1; transform: translateX(-15px); border-radius: 50%; box-shadow: var(--purple-glow); }
.item-flotante:nth-child(2):hover .boton-circulo { background-color: var(--accent-blue); color: white; opacity: 1; transform: translateX(-15px); border-radius: 50%; box-shadow: var(--blue-glow); }

.panel-info { background-color: rgba(255, 255, 255, 0.95); color: #333; padding: 12px 18px; border-radius: 8px; border-left: 4px solid var(--primary); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); width: max-content; max-width: 250px; position: absolute; right: 70px; opacity: 0; visibility: hidden; transform: translateX(20px) scale(0.9); transition: all 0.3s ease; border: 1px solid var(--border-light); }
.panel-info h4 { color: var(--primary); margin-top: 0; margin-bottom: 5px; font-size: 16px; font-weight: bold;}
.item-flotante:hover .panel-info { opacity: 1; visibility: visible; transform: translateX(0) scale(1); }

.footer-main { background: var(--dark); color: #ccc; padding: 60px 20px 20px; margin-top: auto; border-top: 4px solid var(--accent-gold); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-col h4 { color: var(--accent-gold) !important; border-bottom: 2px solid var(--neon); display: inline-block; margin-bottom: 20px; padding-bottom: 5px; text-transform: uppercase;}
.footer-col ul { list-style: none; }
.footer-col a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--neon); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; font-size: 0.85rem; }

/* =========================================
   9. MEDIA QUERIES (RESPONSIVE MÓVIL)
   ========================================= */
@media screen and (max-width: 768px) {
    html, body { overflow-x: hidden !important; width: 100%; position: relative; }
    .header-text h1 { font-size: 1rem; } .header-text p { font-size: .7rem; }
    .hero-section { padding: 60px 15px; background-attachment: scroll; }
    .texto-destacado { font-size: 1.8rem; } .section-title { font-size: 1.6rem; margin-bottom: 25px; }
    
    .menu-toggle { display: flex; }
    .navbar ul { flex-direction: column; background-color: var(--primary); max-height: 0; overflow: hidden; transition: max-height .4s ease-out; padding: 0; gap: 0; }
    .navbar ul.active { max-height: 500px; padding: 10px 0; }
    .navbar li { width: 100%; text-align: center; border-top: 1px solid rgba(0,255,136,0.1); }
    .navbar li a { padding: 15px; display: block; border-radius: 0; }
    .navbar .dropdown-content { position: static; transform: none; box-shadow: none; background: rgba(0,0,0,0.2); min-width: 100%; border-top: none; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Línea de tiempo móvil */
    .timeline-vertical::after { left: 20px !important; transform: none !important; }
    .timeline-item { width: 100% !important; padding: 10px 10px 10px 45px !important; margin-bottom: 20px; }
    .timeline-item.izquierda, .timeline-item.derecha { left: 0 !important; }
    .timeline-item::after, .timeline-item.izquierda::after, .timeline-item.derecha::after { left: 10px !important; right: auto !important; }
    .timeline-item.izquierda .glass-timeline, .timeline-item.derecha .glass-timeline { transform: translateX(20px); }
    .glass-timeline { padding: 15px !important; } 
    .anio-timeline { font-size: 1.3rem !important; }
    .glass-timeline h4 { font-size: 1.1rem !important; }
    .glass-timeline p { font-size: 0.9rem !important; }
    
    .boton-circulo { width: 40px; height: 40px; font-size: 18px; transform: translateX(10px); }
    .panel-info { max-width: 180px; right: 55px; font-size: 0.8rem; }
    .panel-info h4 { font-size: 14px; }
}

/* =========================================
   10. MODO OSCURO (ESPECÍFICO DECE Y GLOBALES)
   ========================================= */
body.dark-mode { background: #0d1117 !important; color: #e6edf3 !important; }
body.dark-mode .main-header { background: rgba(13, 17, 23, 0.7) !important; border-bottom: 1px solid rgba(0, 255, 136, 0.15) !important; box-shadow: none !important; }
body.dark-mode .navbar ul { background: transparent !important; }
body.dark-mode .section-title { color: var(--accent-gold) !important; text-shadow: var(--gold-glow); }
body.dark-mode .hero-section { 
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('imagenes/inicio') !important; 
    background-size: cover !important;
}

/* Tarjetas Generales Info DECE */
body.dark-mode .card-info, body.dark-mode .eje-card-premium { background: rgba(30, 35, 40, 0.5) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important; }
body.dark-mode .card-info:hover, body.dark-mode .eje-card-premium:hover { background: rgba(40, 45, 50, 0.7) !important; border-color: var(--accent-purple) !important; box-shadow: 0 15px 30px rgba(111, 66, 193, 0.2) !important; }
body.dark-mode .card-info p, body.dark-mode .eje-card-premium p { color: #a3b3bc !important; }
body.dark-mode .card-info h3, body.dark-mode .eje-card-premium h3 { color: #ffffff !important; }

/* Acordeón DECE Dark Mode */
body.dark-mode .acordeon-dece { background: rgba(30, 35, 40, 0.6) !important; border-color: rgba(255,255,255,0.05) !important; box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important; }
body.dark-mode .acordeon-titulo { background: rgba(111, 66, 193, 0.1) !important; }
body.dark-mode .acordeon-titulo:hover { background: rgba(111, 66, 193, 0.2) !important; }
body.dark-mode .acordeon-titulo h3 { color: var(--white) !important; }
body.dark-mode .acordeon-contenido { border-top-color: rgba(255,255,255,0.05) !important; }

body.dark-mode .dece-profile-card { background: rgba(20, 25, 30, 0.8) !important; border-color: rgba(255,255,255,0.05) !important; }
body.dark-mode .dece-profile-card:hover { border-color: var(--accent-purple) !important; box-shadow: 0 10px 25px rgba(111, 66, 193, 0.2) !important; }
body.dark-mode .dece-avatar { background: #0d1117 !important; border-color: rgba(30, 35, 40, 1) !important; }
body.dark-mode .dece-card-body h4 { color: var(--white) !important; }
body.dark-mode .dece-card-body p { color: #a3b3bc !important; }
body.dark-mode .btn-contacto-dece:hover { color: #fff !important; }

/* Timeline Dark Mode */
body.dark-mode .glass-timeline { background: rgba(30, 35, 40, 0.5) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important; }
body.dark-mode .glass-timeline:hover { background: rgba(40, 45, 50, 0.7) !important; border-color: var(--accent-purple) !important; }
body.dark-mode .glass-timeline p { color: #a3b3bc !important; }
body.dark-mode .glass-timeline h4 { color: #ffffff !important; }
body.dark-mode .anio-timeline { color: var(--accent-purple) !important; text-shadow: var(--purple-glow); }
body.dark-mode .timeline-vertical::after { background-color: var(--accent-purple) !important; box-shadow: 0 0 10px rgba(111, 66, 193, 0.5) !important;}
body.dark-mode .timeline-item::after { background-color: var(--dark) !important; border-color: var(--accent-purple) !important; box-shadow: 0 0 15px rgba(111, 66, 193, 0.8) !important;}

/* Modales Dark Mode */
body.dark-mode .modal-contenido-tech { background: #0d1117 !important; border-top-color: var(--accent-purple) !important; border: 1px solid rgba(255,255,255,0.05); }
body.dark-mode .modal-contenido-tech p { color: #e6edf3 !important; }
body.dark-mode .modal-contenido-tech h2 { color: var(--white) !important; }
body.dark-mode .separador-neon { background: var(--accent-purple) !important; box-shadow: var(--purple-glow); }
/* =========================================
   11.ANIMACIÓN ESPECIAL PARA EL BANNER
   ========================================= */
.banner-animado {
    animation: entradaBanner 1.2s ease-out forwards;
    opacity: 0; /* Empieza invisible */
}

.banner-animado .hero-container {
    animation: entradaTexto 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Animación para el contenedor del fondo */
@keyframes entradaBanner {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animación para el texto que sube */
@keyframes entradaTexto {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
