@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ESTILO GERAL */
body {
    background: #f4f4f4;
}

h3, h2, h1, p, a, li {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p, li {
    line-height: 1.8em;
    text-align: justify;
    font-size: 1em;
}

/* HEADER */
header {
    text-align: center;
    padding: 20px;
    background-color: #0B2559;
}

header h1 {
    padding: 8px 0px;
    color: white;
}

header > button {
    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: 12px;
    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: 10px;
    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%;
}

.picture {
    margin: 0px 8px;
}

picture img {
    max-width: 100%;
    display: block;
    margin: 12px auto;
    border-radius: 5px;
}

/* Layout */
.container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    padding: 0 10px;

}

/* Conteúdo principal */
.conteudo {
    flex: 3;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.conteudo h2 {
    margin: 8px 0px;
    color: #191970;
    line-height: 1.4em;
}

.conteudo p {
    margin: 10px 0px;
}

.conteudo ul li, .sidebar {
    list-style-position: inside;
}

.conteudo li::marker {
    color: #A62B1F;
    font-size: 1.2em;
}

.destaque {
    list-style-type: '\2714\00A0';
}

.destaque li::marker {
    color: #D92525;
    font-size: 1.2em;
}

/* Sidebar */
.sidebar {
    flex: 1;
    background: #eaeaea;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.sidebar h3 {
    font-size: 1.5em;
    color: #00747C;
}

.sidebar ul {
    list-style-type: none;
    margin: 20px 0px;
}

.sidebar ul li {
    margin-bottom: 5px;
}

.sidebar ul li a {
    display: block;
    padding: 10px;
    background-color: #038C3E;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.sidebar ul li a:hover {
    background-color: #3294d4; 
}

.img img {
    margin: 10px 0px;
    border-radius: 5px;
}

footer {
    padding: 20px;
    background-color: #0B2559;
}

footer p {
    color: white;
    text-align: center;
}

