@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

/* paleta de cores 
cor principal: azul  #0000cd 
cor corpo: #F2F2F2
*/

body {
    background-color: #F2F2F2;
}

p, li, a, h1, h2 {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    padding: 14px;
    background-color: #0000cd;
}

header > button {
    display: none;
    width: 50px;
    height: 50px;
    background: #CEF09D;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

header > button:hover {
    background-color: #d2f8d5;
}

button.btn-fechar {
    margin: 8px;
    padding: 10px;
    background-color: #025c42;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button.btn-fechar:hover {
    background-color: #02664a;
}

span.material-symbols-outlined {
    font-size: 2.5em;
}

nav {
    position: absolute;
    top: 0px;
    width: 100%;
    left: -100%;
    transition: all 0.5s;
}

nav > ul {
    list-style: none;
    text-align: center; 
}

nav > ul > li > a {
    display: block;
    padding: 12px;
    font-size: 1.03em;
    text-decoration: none;
    color: white;
    border: none;
    transition-duration: .4s;
}

nav > ul > li > a:hover {
    background-color: mintcream;
    color: rgb(10, 10, 10);
} 

.mostrar {
    left: 0%;
}

div.logo {
    padding: 22px 0px;
    background-color: #0000cd;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

div.logo > h2 {
    color: white;
    font-size: 2em;
    padding-bottom: 8px;
}

div.logo > img {
    border-radius: 5px;
}

main {
    margin: 0px 5px;
}

main ul, ol {
    list-style-position: inside;
    line-height: 1.8em;
    text-align: justify;
}

section {
    max-width: 82vw;
    min-width: 300px;
    margin: 10px auto;
    margin-bottom: 32px;
    padding: 25px;
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.356);
    border-radius: 10px;
}

section > h1 {
    font-weight: 400;
    font-style: italic;
    font-size: 1.7em;
    color: #193C40;
}

section > hr {
    width: 15%; 
    padding: 2px;
    margin-top: 5px;
    background-color: #04D939;
    border: none;
}

section > p {
    margin: 10px 0px;
    line-height: 1.8em;
    text-align: justify;
    font-size: 1.03em;
    text-indent: 30px;
}

section > h2 {
    margin: 8px 0px;
    color: #191970;
}

picture img {
    max-width: 100%;
    display: block;
    margin: 5px auto;
    border-radius: 8px;
}

div.container-bloco {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px; */
    /* background-color: rgb(237, 247, 242); */
}

.subclasse {
    padding: 10px;
    background-color: rgb(213, 223, 218);
}

div.bloco-conteudo {
    flex: 0 1 600px;
    margin-right: 10px;
}

div.bloco-conteudo > ul {
    list-style-type: '\2714\00A0';
}

div.bloco-conteudo > ul > li {
    font-size: 1.03em;
}

div.bloco-conteudo > ul > li::marker {
    color: #D92525;
    font-size: 1.2em;
}

div.bloco-destaque {
    flex: 0 1 450px;
    margin-left: 10px;
    /* background-color: blue; */
}

div.bloco-destaque > ul {
    list-style-type: '\2611\00A0';
}

div.bloco-destaque > ul > li::marker {
    color: #184C78;
    font-size: 1.21em;
}

div.bloco-categoria {
    flex: 0 1 450px;
    margin: 5px 0px;
    padding: 10px;
    background-color: #F5F5DC;
    border-radius: 5px;
}

div.bloco-categoria > h2 {
    color: red;
    padding-left: 12px;
}

div.bloco-categoria > ul {
    padding-left: 12px;
    color: rgb(245, 1, 1); 
}

div.bloco-categoria > ul > li > a {
    text-decoration: none;
    font-size: 1.04em;
    color: #191970;
}

div.bloco-categoria > ul > li > a:hover {
    color: #214001;
}

footer {
    background-color: #0000cd;
    padding: 20px;
}
  
footer > p {
    color: white;
    text-align: center;
}