/* ═══════════════════════════════════════════════════════════════
   VISION PAGE (vision.html)
   Specific Styles
   ═══════════════════════════════════════════════════════════════ */



/* Hero Visual & Layout */
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-layout { grid-template-columns: 5fr 7fr; } }
.hero-visual-container { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }



/* Micro-interactions */
.section-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.section-reveal.visible { opacity: 1; transform: translateY(0); }
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.hover-glow:hover { box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
.pulse-subtle { animation: pulse-subtle 2s infinite; }
@keyframes pulse-subtle { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.float { animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Ruta a la Excelencia Styles (Gantt reused in Vision) */
.gantt-bar { height: 100%; border-radius: 0.5rem; display: flex; align-items: center; padding: 0 0.75rem; position: relative; font-size: 0.7rem; }
.bar-blue { background-color: rgba(59, 130, 246, 0.2); border-color: rgba(59, 130, 246, 0.4); }
.bar-cyan { background-color: rgba(6, 182, 212, 0.2); border-color: rgba(6, 182, 212, 0.4); }
.bar-amber { background-color: rgba(245, 158, 11, 0.2); border-color: rgba(245, 158, 11, 0.4); }
.bar-yellow { background-color: rgba(234, 179, 8, 0.2); border-color: rgba(234, 179, 8, 0.4); }
.bar-purple { background-color: rgba(168, 85, 247, 0.2); border-color: rgba(168, 85, 247, 0.4); }
.bar-emerald { background-color: rgba(16, 185, 129, 0.2); border-color: rgba(16, 185, 129, 0.4); }
.bar-pink { background-color: rgba(236, 72, 153, 0.2); border-color: rgba(236, 72, 153, 0.4); }
.bar-red { background-color: rgba(239, 68, 68, 0.2); border-color: rgba(239, 68, 68, 0.4); }

/* Highlight Classes */
.highlight-ia-gold {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #EAB308 0%, #FCD34D 50%, #CA8A04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modals */
#modals-repository { display: none; }
.modal { display: none; }
.modal-overlay { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 100; 
    background: rgba(2, 6, 23, 0.95); 
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); 
    align-items: center; 
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-content { position: relative; z-index: 101; width: 100%; max-width: 80rem; max-height: 90vh; overflow-y: auto; margin: 2rem; }

/* Section Highlight Effects */
.highlight-pulse { animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3); }
    50% { opacity: 0.95; box-shadow: 0 0 25px 5px rgba(255, 215, 0, 0.25); }
}

.highlight-glow { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1); }
.highlight-border-pulse { animation: border-pulse 2.5s ease-in-out infinite; }
@keyframes border-pulse {
    0%, 100% { border-color: rgba(255, 215, 0, 0.3); }
    50% { border-color: rgba(255, 215, 0, 0.7); }
}
