/* ======================== */
/* TÍTULO MATRIZ CUENCA */
/* ======================== */
.titulo-seccion {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 28px;
  font-weight: bold;
}

/* ======================== */
/* CARRUSEL CORREGIDO Y LIMPIO */
/* ======================== */
.carrusel-viewport {
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 30px 0;
  position: relative;
}

.carrusel-track {
  display: flex;
  width: max-content;
  animation: moverCarrusel 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  margin-right: 20px;
}

.slide img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  background: white;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Animación infinita */
@keyframes moverCarrusel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pausa con hover */
.carrusel-viewport:hover .carrusel-track {
  animation-play-state: paused;
}

/* Responsive carrusel */
@media (max-width: 768px) {
  .slide img {
    width: 220px;
    height: 150px;
  }
}

/* ======================== */
/* TARJETAS DE CONTACTO INDIVIDUALES */
/* ======================== */
.contacto-tarjetas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.contacto-tarjetas .tarjeta {
  background-color: #003366;
  color: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-align: left;
  word-break: break-word;
}

.contacto-tarjetas .tarjeta:hover {
  transform: translateY(-5px);
}

.contacto-tarjetas i {
  font-size: 24px;
  color: #ffcc00;
}

/* Responsivo contacto */
@media (max-width: 768px) {
  .contacto-tarjetas {
    flex-direction: column;
    align-items: center;
  }

  .contacto-tarjetas .tarjeta {
    width: 100%;
    max-width: 400px;
    text-align: center;
    justify-content: center;
    padding: 15px;
  }

  .contacto-tarjetas .tarjeta p {
    font-size: 16px;
    word-wrap: break-word;
  }
}

/* ======================== */
/* OFERTA ACADÉMICA */
/* ======================== */
.oferta-academica {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.oferta-academica h3 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 20px;
}

.oferta-academica ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.oferta-academica li {
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-left: 20px;
  position: relative;
}

.oferta-academica li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #007acc;
  position: absolute;
  left: 0;
}

/* Responsive oferta académica */
@media (max-width: 768px) {
  .oferta-academica ul {
    text-align: center;
  }

  .oferta-academica li {
    text-align: left;
  }
}

/* ======================== */
/* UBICACIÓN EN DOS COLUMNAS */
/* ======================== */
.ubicacion-seccion {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #ffffff;
  gap: 20px;
}

.columna {
  flex: 1 1 300px;
}

.columna.izquierda {
  display: flex;
  align-items: center;
  justify-content: center;
}

.columna.izquierda h3 {
  font-size: 24px;
  color: #003366;
}

.columna.derecha iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive ubicación */
@media (max-width: 768px) {
  .columna.izquierda,
  .columna.derecha {
    flex: 1 1 100%;
    text-align: center;
  }

  .columna.izquierda h3 {
    margin-bottom: 20px;
  }
}
