/* ==========================================================================
   ISTCGE ASCEND - DESIGN SYSTEM & MAIN STYLES
   Línea gráfica oficial: Futurística / Tecnológica con tonos Neón en
   Azul (#0066FF), Amarillo (#FBBF24 / #FFD700) y Celeste / Cian (#00D2FF).
   Tipografías: Exo 2 y Ethnocentric.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Orbitron:wght@600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

@font-face {
  font-family: 'Ethnocentric';
  src: local('Ethnocentric'), local('EthnocentricRg-Regular'),
       url('https://fonts.cdnfonts.com/s/14883/Ethnocentric.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Neon & Cyber Colors */
  --neon-blue: #0066FF;
  --neon-blue-glow: rgba(0, 102, 255, 0.5);
  --neon-cyan: #00D2FF;
  --neon-cyan-glow: rgba(0, 210, 255, 0.55);
  --neon-yellow: #FBBF24;
  --neon-yellow-bright: #FFD700;
  --neon-yellow-glow: rgba(251, 191, 36, 0.55);
  
  /* Dark Cyber Navy Backgrounds */
  --bg-dark-950: #020612;
  --bg-dark-900: #050B17;
  --bg-dark-850: #0A1128;
  --bg-dark-800: #0F1E3D;
  --bg-dark-700: #142852;
  
  /* Light Section Contrast (Fondo Blanco) */
  --bg-light-white: #FFFFFF;
  --bg-light-surface: #F8FAFC;
  --text-dark-primary: #0A1128;
  --text-dark-muted: #475569;
  
  /* Buttons and Gradients */
  --btn-primary-gradient: linear-gradient(180deg, #1E6BFF 0%, #0048D9 100%);
  --btn-yellow-gradient: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
  --btn-cyan-gradient: linear-gradient(135deg, #00D2FF 0%, #0066FF 100%);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-silver: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  /* Glassmorphism */
  --glass-bg: rgba(10, 22, 50, 0.75);
  --glass-bg-hover: rgba(15, 34, 76, 0.9);
  --glass-card: rgba(13, 27, 62, 0.85);
  --glass-border: rgba(0, 210, 255, 0.25);
  --glass-border-yellow: rgba(251, 191, 36, 0.4);
  --glass-border-hover: rgba(0, 210, 255, 0.7);
  
  /* Box Shadows & Glows */
  --glow-blue: 0 0 35px rgba(0, 102, 255, 0.4);
  --glow-cyan: 0 0 30px rgba(0, 210, 255, 0.45);
  --glow-yellow: 0 0 25px rgba(251, 191, 36, 0.45);
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.75);
  
  /* Typography */
  --font-display: 'Ethnocentric', 'Orbitron', 'Exo 2', sans-serif;
  --font-heading: 'Exo 2', 'Space Grotesk', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-950);
  color: var(--text-silver);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 90% 25%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 65%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Cyber Grid effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(0, 210, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.font-display {
  font-family: var(--font-display);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #00D2FF 70%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-cyan-text {
  background: linear-gradient(135deg, #00D2FF 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-yellow-text {
  background: linear-gradient(135deg, #FFD700 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 102, 255, 0.18);
  border: 1px solid rgba(0, 210, 255, 0.45);
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.section-tag.tag-yellow {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--neon-yellow);
  color: var(--neon-yellow-bright);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.25);
}

.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ==========================================================================
   BUTTONS & UI CONTROLS (BLUE, YELLOW, CYAN NEON)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--btn-primary-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 22px rgba(0, 102, 255, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 210, 255, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #337AFF 0%, #0056FF 100%);
  box-shadow: 0 6px 30px rgba(0, 102, 255, 0.8), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--btn-yellow-gradient);
  color: #050B17;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  border: 1px solid #FFE066;
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #FFF080 0%, #F59E0B 100%);
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.75);
  transform: translateY(-2px);
}

.btn-outline-yellow {
  background: rgba(251, 191, 36, 0.05);
  color: var(--neon-yellow-bright);
  border: 1.5px solid var(--neon-yellow);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.25);
}

.btn-outline-yellow:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: #FFF080;
  color: #FFFFFF;
  box-shadow: var(--glow-yellow);
  transform: translateY(-2px);
}

.btn-outline-cyan {
  background: rgba(0, 210, 255, 0.06);
  color: var(--neon-cyan);
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.btn-outline-cyan:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}

.btn-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1.1rem 2.3rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (MATCHING FOTO 2)
   ========================================================================== */

.top-announcement-bar {
  background: linear-gradient(90deg, #020713 0%, #081635 50%, #020713 100%);
  border-bottom: 1px solid rgba(0, 210, 255, 0.3);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 60;
}

.top-announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-announcement-bar .btn-banner {
  display: inline-block;
  padding: 0.28rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #050B17;
  background: var(--btn-yellow-gradient);
  border-radius: 4px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.5);
}

.top-announcement-bar .btn-banner:hover {
  background: linear-gradient(135deg, #FFF080 0%, #F59E0B 100%);
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.8);
  transform: scale(1.03);
}

/* ==========================================================================
   NAVBAR & HEADER (MATCHING FOTO 2)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(5, 11, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(3, 8, 18, 0.98);
  border-bottom-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.4));
  transition: transform var(--transition-fast);
}

.navbar-logo:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-silver);
  position: relative;
  padding: 0.5rem 0;
  text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(0, 210, 255, 0.8);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #00D2FF);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-btn-contact {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-white);
  background: linear-gradient(180deg, #1E6BFF 0%, #0048D9 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.7);
  border-radius: 6px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.nav-btn-contact:hover {
  background: linear-gradient(180deg, #337AFF 0%, #0056FF 100%);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.8);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION (GIANT IMMERSIVE PRESENTATION)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 4.5rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: 
    radial-gradient(circle at 75% 40%, rgba(0, 102, 255, 0.25) 0%, transparent 65%),
    radial-gradient(circle at 20% 40%, rgba(0, 210, 255, 0.12) 0%, transparent 55%),
    var(--bg-dark-950);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 5;
}

.hero-content {
  z-index: 5;
}

.hero-tagline-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-institute-tag {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-silver);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-online-badge {
  background: rgba(0, 210, 255, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(0, 210, 255, 0.5);
  padding: 0.3rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.35);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-title-highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0, 210, 255, 0.7);
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-silver);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Giant Hero Visual (No Box Frame, Large Panoramic Impact) */
.hero-visual-giant-container {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-giant-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, rgba(0, 210, 255, 0.2) 50%, transparent 75%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.hero-giant-img {
  width: 100%;
  max-width: 740px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  filter: drop-shadow(0 0 35px rgba(0, 102, 255, 0.5)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform var(--transition-smooth);
}

.hero-giant-img:hover {
  transform: scale(1.02);
}

/* Floating UI Badges */
.floating-chip {
  position: absolute;
  background: rgba(5, 11, 23, 0.92);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 18px rgba(0, 210, 255, 0.35);
  animation: floatChip 4s ease-in-out infinite alternate;
  z-index: 6;
}

.floating-chip.top-left {
  top: -10px;
  left: 0px;
}

.floating-chip.bottom-right {
  bottom: -15px;
  right: 10px;
  border-color: var(--neon-yellow);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 18px rgba(251, 191, 36, 0.35);
  animation-delay: 2s;
}

.floating-chip i {
  color: var(--neon-cyan);
  font-size: 1rem;
}

.floating-chip.bottom-right i {
  color: var(--neon-yellow-bright);
}

@keyframes floatChip {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Value Proposition Bar */
.value-prop-strip {
  margin-top: 4.5rem;
  position: relative;
  z-index: 5;
}

.value-prop-card {
  background: rgba(10, 22, 50, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 14px;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  position: relative;
}

.value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, 0.35), transparent);
}

.value-icon {
  font-size: 1.8rem;
  color: var(--neon-cyan);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.6));
}

.value-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

/* ==========================================================================
   BANNER METODOLOGÍA (CON ICONOS SVG)
   ========================================================================== */

.pillars-section {
  padding: 5.5rem 0;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  background: var(--glass-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2.2rem 1.4rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan), 0 20px 30px rgba(0, 0, 0, 0.7);
  background: var(--glass-bg-hover);
}

.pillar-svg-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1.5px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
  transition: transform var(--transition-fast);
}

.pillar-card:hover .pillar-svg-icon-wrap {
  transform: scale(1.1) rotate(2deg);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
}

.pillar-svg-icon-wrap svg {
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   BANNER "DESDE DÓNDE QUIERES EMPEZAR" (FONDO BLANCO & ICONOS SVG)
   ========================================================================== */

.starting-point-light-section {
  background: var(--bg-light-white);
  color: var(--text-dark-primary);
  padding: 6rem 0;
  position: relative;
  border-top: 4px solid var(--neon-blue);
  border-bottom: 4px solid var(--neon-cyan);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.starting-point-light-section .section-title {
  color: var(--text-dark-primary);
}

.starting-point-light-section .section-subtitle {
  color: var(--text-dark-muted);
}

.starting-point-light-section .section-tag {
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: none;
}

.routes-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.route-light-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 30, 80, 0.08);
  position: relative;
}

.route-light-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.2);
}

.route-light-card.featured {
  border-color: var(--neon-blue);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.18);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
}

.route-svg-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #EFF6FF;
  border: 2px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: transform var(--transition-fast);
}

.route-light-card:hover .route-svg-icon-wrap {
  transform: scale(1.08);
  background: #DBEAFE;
  border-color: var(--neon-blue);
}

.route-svg-icon-wrap svg {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto;
}

.route-light-card .route-title {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark-primary);
}

.route-light-card .route-highlight {
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.route-light-card .route-body {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.route-light-card .route-features-list li {
  color: #334155;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.route-light-card .route-features-list li i {
  color: var(--neon-blue);
}

/* ==========================================================================
   BANNER OFERTA ACADÉMICA (FOTOGRAFÍAS CENTRADAS Y VISIBLES)
   ========================================================================== */

.careers-section {
  padding: 5.5rem 0;
  position: relative;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.career-card {
  background: var(--glass-card);
  border-radius: 24px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  position: relative;
  border: 1.5px solid var(--glass-border);
}

.career-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.4), var(--card-shadow);
}

.career-photo-banner {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: #020713;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0 auto;
  transition: transform var(--transition-smooth);
}

.career-card:hover .career-photo-banner img {
  transform: scale(1.06);
}

.career-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 11, 23, 0.15) 0%, rgba(5, 11, 23, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem 2rem;
}

.career-photo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(5, 11, 23, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.45);
}

.career-header-art {
  padding: 1.75rem 2.25rem 1rem 2.25rem;
  position: relative;
  z-index: 2;
}

.career-degree-tag {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.career-name {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.career-tagline {
  font-size: 1.05rem;
  color: #CBD5E1;
  font-weight: 600;
  font-style: italic;
}

.career-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--glass-border);
}

.career-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.career-spec-item {
  text-align: center;
}

.career-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.career-spec-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
}

.career-topics-list {
  margin-bottom: 2.5rem;
}

.career-topics-list h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--neon-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.career-topics-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.career-topics-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-silver);
}

.career-topics-list li i {
  color: var(--neon-cyan);
  font-size: 0.85rem;
}

.career-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.career-comparator-cta {
  margin-top: 3.5rem;
  text-align: center;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ==========================================================================
   COMPARATIVA: CONVENCIONAL VS ECOSISTEMA ASCEND
   ========================================================================== */

.comparison-section {
  padding: 5.5rem 0;
  position: relative;
}

.comparison-wrapper {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comp-col {
  padding: 3rem 2.5rem;
}

.comp-col.convencional {
  background: rgba(5, 11, 23, 0.6);
  border-right: 1px solid var(--glass-border);
}

.comp-col.ascend {
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, rgba(10, 22, 50, 0.85) 100%);
  position: relative;
}

.comp-col-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.comp-col-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
}

.comp-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.comp-item-icon.cross {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-item-icon.check {
  background: rgba(0, 210, 255, 0.2);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.comp-item-text {
  color: var(--text-silver);
  line-height: 1.5;
}

.comp-footer-action {
  text-align: center;
  padding: 2rem;
  background: rgba(3, 8, 20, 0.7);
  border-top: 1px solid var(--glass-border);
}

/* ==========================================================================
   FEATURES 6 GRID (BENEFICIOS / PROPUESTAS)
   ========================================================================== */

.features-6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-6-card {
  background: var(--glass-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-smooth);
}

.feature-6-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.feat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 102, 255, 0.2);
  border: 1.5px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.feat-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.feat-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HOMOLOGACIÓN (RUTA PRIORITARIA) & PREDIAGNÓSTICO INTERACTIVO
   ========================================================================== */

.homologation-section {
  padding: 5.5rem 0;
  position: relative;
}

.homologation-badge-priority {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(217, 119, 6, 0.3) 100%);
  border: 1px solid var(--neon-yellow);
  color: #FDE68A;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  box-shadow: var(--glow-yellow);
}

.homologation-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.homologation-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-fast);
}

.step-card:hover {
  border-color: var(--neon-cyan);
  background: var(--glass-bg-hover);
  transform: translateX(6px);
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0052D4, #4364F7);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.homologation-calculator-card {
  background: linear-gradient(180deg, rgba(13, 27, 62, 0.9) 0%, rgba(5, 11, 23, 0.95) 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 0 35px rgba(0, 102, 255, 0.25), var(--card-shadow);
}

.calc-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.calc-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.calc-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-silver);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(5, 11, 23, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  background: rgba(10, 22, 50, 0.95);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300D2FF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.calc-result-box {
  display: none;
  margin-top: 1.75rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.18);
  border: 1.5px solid rgba(0, 210, 255, 0.5);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.calc-result-box.active {
  display: block;
}

.calc-score-val {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 18px rgba(0, 210, 255, 0.7);
}

.calc-disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   TEST VOCACIONAL INTERACTIVO
   ========================================================================== */

.vocational-test-section {
  padding: 5.5rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
}

.test-container-box {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}

.test-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.test-progress-fill {
  height: 100%;
  width: 16.6%;
  background: linear-gradient(90deg, #0052D4, #00D2FF, #FFD700);
  border-radius: 9999px;
  transition: width var(--transition-smooth);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.test-step-card {
  display: none;
  animation: fadeIn 0.4s ease;
}

.test-step-card.active {
  display: block;
}

.test-question-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.test-question-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.test-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.test-option-btn {
  background: rgba(5, 11, 23, 0.75);
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-silver);
  font-size: 1rem;
  text-align: left;
  width: 100%;
}

.test-option-btn:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 102, 255, 0.2);
  color: #FFFFFF;
  transform: translateX(4px);
}

.test-option-btn.selected {
  border-color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.25);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.35);
}

.test-opt-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0, 210, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.test-option-btn.selected .test-opt-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* ==========================================================================
   WEBINARS & TALLERES
   ========================================================================== */

.webinars-section {
  padding: 5.5rem 0;
  position: relative;
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.webinar-card {
  background: var(--glass-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.webinar-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.webinar-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #00122e;
}

.webinar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.webinar-card:hover .webinar-thumb img {
  transform: scale(1.05);
}

.webinar-live-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(239, 68, 68, 0.9);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.webinar-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: pulse 1.5s infinite;
}

.webinar-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.webinar-date {
  font-size: 0.82rem;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.webinar-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  line-height: 1.35;
}

.webinar-speaker {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CURSOS & MICROCREDENCIALES
   ========================================================================== */

.courses-section {
  padding: 5.5rem 0;
  position: relative;
}

.courses-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  background: rgba(10, 22, 50, 0.65);
  border: 1px solid var(--glass-border);
  color: var(--text-silver);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 102, 255, 0.3);
  border-color: var(--neon-cyan);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.4);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background: var(--glass-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.course-category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(0, 210, 255, 0.15);
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */

.testimonials-section {
  padding: 5.5rem 0;
  position: relative;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--glass-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: rgba(0, 210, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-silver);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.45);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.author-career {
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

/* ==========================================================================
   CTA STRIP / BANNER
   ========================================================================== */

.cta-banner-section {
  padding: 4.5rem 0;
  position: relative;
}

.cta-banner-box {
  background: linear-gradient(135deg, rgba(0, 82, 212, 0.45) 0%, rgba(67, 100, 247, 0.25) 50%, rgba(5, 11, 23, 0.95) 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.45);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 102, 255, 0.35), var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.cta-ticker-pills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* ==========================================================================
   FORMULARIO DE CAPTACIÓN / ADMISIÓN
   ========================================================================== */

.lead-form-section {
  padding: 5.5rem 0;
  position: relative;
}

.lead-form-info,
.homologation-info {
  display: flex;
  flex-direction: column;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.lead-form-card {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 210, 255, 0.4);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.3), var(--card-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-check input[type="checkbox"] {
  accent-color: var(--neon-blue);
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  cursor: pointer;
}

/* ==========================================================================
   FAQ & PREGUNTAS FRECUENTES
   ========================================================================== */

.faq-section {
  padding: 5.5rem 0;
  position: relative;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   DETAILED SUBPAGE COMPONENTS (METRICS, CURRICULUM, CORPORATE PLANS)
   ========================================================================== */

.stats-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.stat-box {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.stat-box:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
  transform: translateY(-4px);
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--neon-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-num.yellow {
  color: var(--neon-yellow-bright);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.semester-block {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.semester-block:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.semester-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.semester-tag {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-transform: uppercase;
}

.semester-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.course-unit-pill {
  background: rgba(5, 11, 23, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-silver);
}

.course-unit-pill i {
  color: var(--neon-cyan);
}

.corporate-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3.5rem 0;
}

.corporate-plan-card {
  background: var(--glass-card);
  border: 1.5px solid var(--glass-border);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.corporate-plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.corporate-plan-card.popular {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 35px rgba(251, 191, 36, 0.35);
  background: linear-gradient(180deg, rgba(20, 35, 70, 0.9) 0%, rgba(10, 22, 50, 0.95) 100%);
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.plan-highlight {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-silver);
}

.plan-features-list li i {
  color: var(--neon-cyan);
  margin-top: 0.2rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--glass-card);
}

.comp-table th, .comp-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.comp-table th {
  background: rgba(5, 11, 23, 0.9);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comp-table td {
  font-size: 0.92rem;
  color: var(--text-silver);
}

.comp-table tr:hover td {
  background: rgba(0, 102, 255, 0.1);
}

/* Sub-landing Page Hero Styles */
.subpage-hero {
  padding: 4.5rem 0 3.5rem 0;
  background: radial-gradient(circle at 50% 20%, rgba(0, 102, 255, 0.22) 0%, transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.subpage-hero-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.subpage-hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-silver);
  max-width: 820px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER & LEGAL
   ========================================================================== */

.site-footer {
  background: #020612;
  border-top: 1px solid rgba(0, 210, 255, 0.3);
  padding: 4.5rem 0 2rem 0;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 18, 0.88);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-dark-850);
  border: 1.5px solid rgba(0, 210, 255, 0.5);
  border-radius: 24px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(0, 102, 255, 0.4);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #F87171;
}

/* ==========================================================================
   FLOATING ADVISOR CTA WIDGET (+593 99 911 5216)
   ========================================================================== */

.floating-advisor-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, #00C853 0%, #009624 100%);
  color: #FFFFFF;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-smooth);
}

.floating-advisor-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(0, 200, 83, 0.75);
}

.floating-advisor-btn i {
  font-size: 1.4rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: rgba(10, 22, 50, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 210, 255, 0.4);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 0.3s ease;
  font-size: 0.92rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
