body{
    background-color: lightgoldenrodyellow;
    color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
}

header, footer{
    display: block;
    box-sizing: border-box;
    background-color: black;
    text-align: center;
    color: white;
    box-shadow: 0 4px 4px gray;
}

a{ /*rotulo*/
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

header a{ /*VM02*/
    text-decoration: none;
    color: gray;
    font-weight: bold;
}

.contenedora{
    max-width: 65rem;
    margin-inline: auto;
    padding: 1rem;
}

#logo img{
    display: grid;
    align-content: center;
    height: 50%;
    width: 50%;
}

header .contenedora{
    display: flex;
    justify-content:space-between ;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

header .menu{ /*vm02-mapa-plan-webapp*/
    display: flex;
    flex-direction: row;
    gap: 2em;
    list-style: none;
    padding-top: 5rem;
    font-size: 1.25em;    
}

.nav{
    display: block;
}

.menu-btn{
    display: none;
}

header nav a{ /*vm02-mapa-plan-webapp*/
    display: block;
    color: white;
}

.comitente{
    font-size: 1.25rem;
}

.comitente h4{
    margin-block-end: 0;
    font-size: smaller;
    font-weight: normal;
    line-height: 1;
}

.section {
    display: block;
    padding-block-end: 2rem;
}

h4{
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    font-weight: bold;
}

.titulo{
    display: flex;
    align-items: center;
    background-color: rgb(44, 44, 44);
    height: 1.50em;
    padding-inline-start: 1rem
}

h1, h2, h3{
    color:white;
    line-height: 1;
}

h1{
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    font-weight: bold;
}

p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    text-align: justify;
    font-size: medium;
}

h2{
    display: flex;
    align-items: center;
    font-size: 1.25em;
    margin-block-start: 0.50em;
    margin-block-end: 0.50em;
    font-weight: bold;
}

.rotulo .materias > ul{
    display: block;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
    align-items: center;
    gap: 1rem;
    background-color: rgb(211, 211, 211, 0.40);
    padding: 1em;
    border-radius: 0.25em;
}

ul, ol{
    list-style: none;
    padding: 0;
}

.equipo img {
    background: rgb(209, 209, 151);
    width: 8em;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 4px 4px gray;
}

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

.equipo_articulos article{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgb(255, 255, 134, 0.40);
    padding: 1em;
    border-radius: 0.25em;
}

.equipo_articulos h3{
    color: black;
}