* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
/* Fondo general */
body {
  background-color: #e6d9f2;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

/* Contenedor general  */
main {
  max-width: 600px;
  margin: 20px auto;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Logo DGPC  */
header img {
  display: block;
  margin: 20px 0 10px 20px;
  width: 120px;
}

/* Navegación (botones) */
nav ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 0;
}

nav ul li {
  margin-bottom: 8px;
}

nav ul li a {
  background-color: #b28ddf;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
}

nav ul li a:hover {
  background-color: #9a70d1;
}

/* Imagen de presentación */
main > section > img {
  border: 3px solid black;
  border-radius: 8px;
  max-width: 200px;
  display: block;
  margin: 20px auto;
}

/* Texto principal */
h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 22px;
}

h2 + p {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px;
  margin-top: 15px;
}

.destacado {
  font-weight: bold;
  color: #6b2fb5;
}

/* Materias favoritas */
h4 {
  padding: 0 20px;
  margin-bottom: 5px;
  text-align: left;
  font-size: 18px;
  text-decoration: underline;
  color: #ad7cf1;
}

.materias {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.materia {
  background-color: #d5bdf8;
  color: #3e2e66;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.materia:hover {
  background-color: #b28ddf;
  transform: scale(1.05);
}
article {
  margin-top: 30px;
}
/* Sección Equipo */
section#equipo {
  padding: 20px;
  text-align: center;
}

.equipo {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.equipo li {
  text-align: center;
  max-width: 130px;
}

/* Imagen cada integrante */
.equipo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Botones de integrantes */
.boton-equipo {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  background-color: #b28ddf;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.boton-equipo:hover {
  background-color: #9a70d1;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.boton-equipo:active {
  transform: scale(0.95);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Texto debajo del equipo */
.equipo-texto {
  text-align: center;
  font-size: 16px;
  color: #444;
  margin-top: 20px;
  font-style: italic;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
}