.hero-content {
  
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  background-color: transparent !important; /* Fuerza transparencia */
  box-shadow: none !important; /* Elimina sombras */
  padding: 0; /* Opcional: ajusta si necesitas espacio */
}

/* Hero About */
.hero-about {
  background-image: linear-gradient(rgba(0, 78, 137, 0.8), rgba(0, 78, 137, 0.6)), url('img/hero-about.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}




.hero-about .hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-about .hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Misión-Visión */
.mision-vision {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mv-card {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mv-card h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.mv-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.mv-details p {
  margin-bottom: 15px;
}

/* Timeline */
.timeline {
  padding: 80px 0;
  background-color: white;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.timeline-date {
  flex: 0 0 120px;
  height: 120px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Valores */
.valores {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.valor-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.valor-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary-color);
}

.valor-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}
.profesores {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.categorias-profesores {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.categoria-btn {
    padding: 10px 20px;
    background: #e0e0e0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.categoria-btn:hover {
    background: #d0d0d0;
}

.categoria-btn.active {
    background: #2c3e50;
    color: white;
}

.profesores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.profesor-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profesor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.profesor-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.area {
    display: block;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.formacion {
    margin: 0;
    padding-left: 20px;
    color: #34495e;
}

.formacion li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.emerito {
    border-left: 4px solid #f39c12;
}

.invitado {
    border-left: 4px solid #3498db;
}

.hidden {
    display: none;
}

.ver-mas-container {
    text-align: center;
    margin-top: 40px;
}

.ver-mas-btn {
    padding: 12px 30px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.ver-mas-btn:hover {
    background: #1a252f;
}

@media (max-width: 768px) {
    .profesores-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* Equipo */
.equipo {
  padding: 80px 0;
  background-color: white;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.equipo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.equipo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.equipo-img {
  height: 300px;
  overflow: hidden;
}

.equipo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipo-card:hover .equipo-img img {
  transform: scale(1.1);
}

.equipo-info {
  padding: 25px;
  text-align: center;
}

.equipo-info h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.equipo-info span {
  display: block;
  color: #777;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* CTA */
.cta {
  padding: 80px 0;
  background-image: linear-gradient(rgba(0, 78, 137, 0.9), rgba(0, 78, 137, 0.9)), url('img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  background-color: white;
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-cta-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-about {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-about .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-date {
    margin-bottom: 20px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-content {
    margin-left: 60px;
    text-align: left;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-about {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-about .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-about .hero-text p {
    font-size: 1.2rem;
  }
  
  .mv-card {
    padding: 25px;
  }
  
  .timeline-content {
    margin-left: 40px;
  }
}