*{
  box-sizing: border-box;
  padding: 0;
  border: 0;
}

:root {
    font-family: "Libertinus Moni";
    background: antiquewhite;
    color:rgb(103, 126, 62);
}

.logo-dgpc{
    width: 80px;
    margin-top: 20px;
}

.contenedor-menu{
    background: rgb(218, 181, 87);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu{
    display: flex;
    gap: 15px;
    padding: 15px;
    margin: 0;
    list-style: none;
}

.boton_menu{
    padding: 5px 15px 5px 15px;
    border-radius: 50px;
    background: antiquewhite;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
    text-decoration: none;
    color: rgb(103, 126, 62);
}

nav{
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
}

h2{
    text-align: center;
    margin: 0 0 25px 0;
}

.principal{
    width: 80%;
    max-width: 1100px;
    margin: 2em auto;
    padding: 2em;
    background-color: #f5f5f5;
    border-radius: 25px;
    text-align: center;
}

.principal h1{
    color: rgb(103, 126, 62);
    font-size: 1.8rem;
    line-height: 1.1;
    max-width: 250px;
    margin: 0 auto .3em auto;
    text-align: center;
}

.principal h2{
    font-size: 1.1rem;
    width: 80%;
    margin: 0 auto 1em auto;
    text-align: center;
}

.principal p{
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.equipo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.equipo h2{
    margin: 0 0 25px 0;
    text-align: center;
}

.contenedor-equipo{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

article{
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 250px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.boton-rótulo {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    background-color: rgb(103, 126, 62);
    color: white;
}

.academicos h2{
    text-align: center;
    margin: 70px 0 30px 0;
}

.instituciones{
    width: 80%;
    max-width: 1100px;
    margin: 2em auto;
    padding: 2em;
    background-color: #f5f5f5;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instituciones figure{
    margin-bottom: 1rem;
}

.instituciones figure img{
     width: 110px;
    height: auto;
}

.instituciones h3{
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: .8rem;
    line-height: 1.2;
}

.instituciones ul{
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    width: 100%;
    max-width: none;
}

.instituciones div{
    width: 75%;
    max-width: 420px;
}

.instituciones h4, .instituciones h5, .instituciones ul li{
    text-align: left;
}

.instituciones a{
    display: inline-block;
    margin-top: 1.5rem;
    padding: .8rem 1.2rem;
    background-color: rgb(103, 126, 62);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: bold;
}

.instituciones a:hover{
    background-color: rgb(80,100,45);
}

footer{
    background-color: rgb(218, 181, 87);
    padding: 1.5em 1em;
}

footer p{
    color: rgb(67, 83, 41);
    width: 70%;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}