/* ==================== ESTILOS INNOVACIÓN Y TECNOLOGÍA EDUCATIVA ==================== */

/* Hero Section */
.hero-innovacion {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-innovacion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-innovacion h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
}

.hero-innovacion p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Content Section */
.seccion-contenido {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.contenido-principal {
  max-width: 1200px;
  margin: 0 auto;
}

.innovacion-container {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Intro Section */
.intro-section {
  background: linear-gradient(135deg, #f8f9ff 0%, white 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary);
}

.intro-section p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

/* Ejes Section */
.ejes-section {
  margin-bottom: 4rem;
}

.ejes-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.ejes-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.eje-item {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.eje-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.eje-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.eje-header svg {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  flex-shrink: 0;
  color: white;
  display: block;
}

.eje-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.eje-content {
  padding: 2rem;
}

.eje-content > p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.eje-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eje-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eje-content ul li {
  font-size: 0.938rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.eje-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Proyectos Innovación Section */
.proyectos-innovacion {
  margin-bottom: 4rem;
}

.proyectos-innovacion h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.proyectos-innovacion h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.proyecto-innovador {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.proyecto-innovador:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.proyecto-innovador h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.proyecto-innovador p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.proyecto-detalles {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proyecto-detalles .badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  border-radius: 1rem;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proyecto-detalles .beneficiarios {
  font-size: 0.938rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Resultados Section */
.resultados-section {
  margin-bottom: 4rem;
}

.resultados-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.resultados-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.resultado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resultado-item {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
  transition: all 0.3s ease;
}

.resultado-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.35);
}

.resultado-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.resultado-item p {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
}

/* Alianzas Section */
.alianzas-section {
  background: linear-gradient(135deg, #f8f9ff 0%, white 100%);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

.alianzas-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.alianzas-section > p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.alianzas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.alianza-item {
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 0.5rem;
  font-size: 0.938rem;
  color: var(--gray-700);
  border-left: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.alianza-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .resultado-grid,
  .alianzas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-innovacion {
    padding: 4rem 0 3rem;
  }

  .hero-innovacion h1 {
    font-size: 2.25rem;
  }

  .hero-innovacion p {
    font-size: 1.125rem;
  }

  .innovacion-container {
    padding: 2rem 1.5rem;
  }

  .ejes-section h2,
  .proyectos-innovacion h2,
  .resultados-section h2 {
    font-size: 2rem;
  }

  .eje-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .eje-header svg {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .eje-header h3 {
    font-size: 1.25rem;
  }

  .proyecto-innovador {
    padding: 1.5rem;
  }

  .resultado-grid,
  .alianzas-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .resultado-item h4 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-innovacion h1 {
    font-size: 1.875rem;
  }

  .ejes-section h2,
  .proyectos-innovacion h2,
  .resultados-section h2 {
    font-size: 1.75rem;
  }

  .innovacion-container {
    padding: 1.5rem 1rem;
  }

  .eje-header,
  .proyecto-innovador {
    padding: 1rem;
  }
}
