*{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* menuuuuuuuuuuu */
header {
    height: 100px;
    background-color: rgb(142, 53, 224);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: 0px 4px 3px rgba(120, 57, 179, .5);
}
.contenedor-header {
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.contenedor-header nav {
    display: flex;
    flex-wrap: wrap;     /* permite que se bajen en pantallas chicas */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px;
}
.contenedor-header nav a {
    text-decoration: none;
    color: white;
}
.logo {
    color: white; 
}
.link {
    color: white; 
}

 /* COMITENTE */
.comitente {
    margin: 40px auto; /* margen arriba/abajo y centrado horizontalmente */
    padding: 15px;
    max-width: 900px; /* limita el ancho para mejor lectura */
}
.comitente h1 {
  font-size: 2.5rem; /* tamaño grande para el título */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}
.comitente p {
 font-size: 1.1rem;
 line-height: 1.6;
 text-align: justify;
}
body {
  background-color: rgb(243, 232, 255);
 
}


/* equipo */
.equipo {
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
}

.equipo h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.equipo article {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.equipo figure {
  margin: 0;
  margin-right: 20px;
  flex-shrink: 0;
}

.equipo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.equipo div {
  flex: 1;
}

.equipo h3 {
  margin: 0;
  font-size: 1.4rem;
}

.equipo p {
  margin: 5px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.equipo a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: white;
  background-color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* footer */
footer {
  background-color: #6027a1;
  color: white;
  padding: 30px;
  margin-top: 40px;
  margin-top: 0;
  text-align: center;
  font-size: 0.9rem;
}

/* datos academicos */
.datos-academicos {
  background-color: #7a3cc0; 
  color: white;
  padding: 30px;
  margin-top: 30px;
}
.contenedor-academico {
  display: flex;
  gap: 30px; /* Espacio entre los ítems */
  justify-content: center; /* Centra horizontalmente */
  flex-wrap: wrap; 
  margin-bottom: 0;
}

.item-academico {
  flex: 1;
  width: 500px; 
  padding: 10px;
  text-align: center;
}

.item-academico img {
  max-width: 100%;
  height: auto;
}
.contenedor-academico ul li {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* plan */
.mvp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem; /* para separación */
}

.mvp-header img {
  max-width: 100%; 
  height: auto;
  margin-bottom: 1rem;
}
.imagenes-plan {
  display: flex;
  justify-content: center;
  gap: 2rem; /* espacio entre las imágenes */
  flex-wrap: wrap; /* para que se acomoden en pantallas pequeñas */
}

.imagenes-plan figure {
  margin: 0;
}

.imagenes-plan img {
  width: 800px; 
  height: auto;
}

.mvp-header { 
    margin: 40px auto; 
    padding: 20px;
}
.mvp-header h1 { /* titulo plan*/
  font-size: 2.5rem; /* tamaño grande para el título */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 768px) {
  .contenedor-header {
    flex-direction: column;
    align-items: center;
  }

  .contenedor-header nav {
    justify-content: center;
    gap: 10px;
  }

  .contenedor-header nav a {
    font-size: 1rem;
    padding: 8px;
  }
}
