body {
    font-family: "Moldiv Regular", sans-serif;
    background: #fffff8;
    color: #000000;
    margin: 0;
}


#logo img {
    width: 80px;
    height: auto;
    margin: 10px;
    display: block;
}




header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem; 
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5em;
    justify-content: flex-end;
    align-items: center;
}

header nav ul li a {
    color: #a8865f;
    text-decoration: none;
    padding: 0.25em 1em;
    display: inline-block;
}

header nav ul li a:hover {
    color: #85f11f;
    box-shadow: none;
}

main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}




.titulo-nombre h1 {
  padding-bottom: 1rem;
  font-size: 2.1rem;
  font-weight: 800;
  color: #85f11f;
  font-family: "Moldiv Regular", sans-serif;
  display: block;
  text-align: center; 
  margin: 0.5em auto 0 auto;
}

.presentacion article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}


.presentacion article > div h2 {
  padding-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #d98320;
}

.presentacion article > div h3 {
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

#fotoagus img { 
    max-width: 300px; 
    max-height: 300px; 
    width: 100%; 
    height: 500px; 
    object-fit: cover; 
    object-position: top; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-top: 5.5em; 
}




.academico article {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(22em, 100%), 1fr));
    gap: 2rem;
}

.academico article div {
    padding: 1rem;
    border: 1px solid #d98320;
    border-radius: 18px;
    background-color: #f0ece8;
}

.academico article div ul {
    list-style: none;
}

ul {
  list-style: none;
  margin: 1;
  padding-left: 0;
}




.equipo-container {
    display: grid;
    gap: 1rem; 
    grid-template-columns: repeat(auto-fit, minmax(min(10em, 100%), 1fr));
}

.card-equipo {
    flex: 1 1 300px;
    max-width: 300px;
    height: 450px;
    border: 1px solid #a8865f;
    border-radius: 1.2rem;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.card-equipo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 0.8rem;
}

.card-equipo:hover {
    box-shadow: 0px 6px 12px #a8865f (0,0,0,0.25);
}

.card-equipo h5 {
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: bold;
    color: #a8865f;
    text-transform: uppercase;
}

.card-equipo p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #000000;
}

.boton-equipo {
    display: inline-block;
    background: #a8865f;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.boton-equipo:hover {
    background: #85f11f;
}




.datos-academicos article > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(22em, 100%), 1fr));
  gap: 1.5rem;
}

.datos-academicos article > div > div {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  padding: 1rem;
  border: 1px solid #a8865f;
  border-radius: 1.2rem;
  background-color: #f0ece8;
}

.datos-academicos article img {
  width: 12rem;
  aspect-ratio: 2;
  object-fit: contain;
  background-color: #f0ece8;
  border-radius: 1.2rem;
}

.datos-academicos article ul {
  list-style: none;
}




footer {
  padding: 1rem;
  color: #f5f7f9;
  background-color: #a8865f;
  font-weight: 100;
  text-align: center;
}