.la-universidad-page {
  padding-top: 0;
}

/* Hero Section */
.la-universidad-hero {
  background: linear-gradient(180deg, #3d1414 0%, #5f1e1e 50%, #3d1414 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.la-universidad-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.la-universidad-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 162, 16, 0.2);
  border: 1px solid rgba(232, 162, 16, 0.4);
  color: #e8a210;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.la-universidad-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.la-universidad-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8a210 0%, #d4950e 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Misión y Visión */
.mision-vision {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(95, 30, 30, 0.1);
  border-color: #e8a210;
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5f1e1e 0%, #7a2a2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  width: 32px;
  height: 32px;
  color: #e8a210;
}

.mv-card h3 {
  color: #5f1e1e;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mv-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Historia */
.historia-section {
  padding: 80px 0;
  background: #fff;
}

.historia-header,
.valores-header,
.autoridades-header,
.organigrama-header,
.infra-header {
  text-align: center;
  margin-bottom: 50px;
}

.historia-header h2,
.valores-header h2,
.autoridades-header h2,
.organigrama-header h2,
.infra-header h2 {
  color: #5f1e1e;
  font-size: 2rem;
  font-weight: 700;
}

.historia-header .section-badge,
.valores-header .section-badge,
.autoridades-header .section-badge,
.organigrama-header .section-badge,
.infra-header .section-badge {
  display: block;
  margin: 0 auto 16px;
}

.historia-content {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.historia-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.historia-timeline {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.historia-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, #5f1e1e, #e8a210, #5f1e1e);
  z-index: 0;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: #e8a210;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.timeline-year {
  display: block;
  color: #e8a210;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}

/* Valores */
.valores-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.valor-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(95, 30, 30, 0.12);
  border-color: #e8a210;
}

.valor-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8a210 0%, #d4950e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.valor-icon i {
  width: 28px;
  height: 28px;
  color: #fff;
}

.valor-card h4 {
  color: #5f1e1e;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.valor-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Autoridades */
.autoridades-section {
  padding: 80px 0;
  background: #fff;
}

.autoridades-header p {
  color: #666;
  font-size: 1rem;
  margin-top: 10px;
}

.autoridades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.autoridad-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.autoridad-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(95, 30, 30, 0.1);
  border-color: #e8a210;
}

.autoridad-img {
  width: 100px;
  height: 100px;
  background: #f5f5f5;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoridad-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.autoridad-card h4 {
  color: #5f1e1e;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.autoridad-card .cargo {
  color: #e8a210;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Organigrama */
.organigrama-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.organigrama-header p {
  color: #666;
  font-size: 1rem;
  margin-top: 10px;
}

.organigrama-content {
  max-width: 800px;
  margin: 0 auto;
}

.org-nivel {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.org-box {
  background: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #5f1e1e;
  font-weight: 600;
  color: #5f1e1e;
  font-size: 0.9rem;
}

.org-box.principal {
  background: linear-gradient(135deg, #5f1e1e 0%, #7a2a2a 100%);
  color: #e8a210;
  font-size: 1rem;
  padding: 20px 40px;
}

/* Infraestructura */
.infraestructura-section {
  padding: 80px 0;
  background: #fff;
}

.infra-header p {
  color: #666;
  font-size: 1rem;
  margin-top: 10px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.infra-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
}

.infra-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.infra-item:hover img {
  transform: scale(1.1);
}

.infra-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(95, 30, 30, 0.95), rgba(95, 30, 30, 0.7), transparent);
  color: #fff;
}

.infra-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.infra-info p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

/* CTA Section */
.cta-universidad {
  padding: 80px 0;
  background: linear-gradient(135deg, #5f1e1e 0%, #7a2a2a 100%);
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e8a210 0%, #d4950e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 162, 16, 0.4);
}

.cta-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .autoridades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .org-nivel {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .la-universidad-hero {
    padding: 100px 0 60px;
  }
  
  .la-universidad-hero h1 {
    font-size: 1.8rem;
  }
  
  .la-universidad-hero p {
    font-size: 1rem;
  }
  
  .mv-card {
    padding: 30px;
  }
  
  .historia-timeline {
    flex-direction: column;
    gap: 30px;
  }
  
  .historia-timeline::before {
    display: none;
  }
  
  .valores-grid {
    grid-template-columns: 1fr;
  }
  
  .autoridades-grid {
    grid-template-columns: 1fr;
  }
  
  .infra-grid {
    grid-template-columns: 1fr;
  }
  
  .infra-item {
    height: 200px;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .la-universidad-hero {
    padding: 90px 0 50px;
  }
  
  .la-universidad-hero h1 {
    font-size: 1.5rem;
  }
  
  .section-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
  
  .mv-card h3,
  .historia-header h2,
  .valores-header h2,
  .autoridades-header h2,
  .organigrama-header h2,
  .infra-header h2 {
    font-size: 1.3rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}