/* Stylesheet.Desmonte Legal */
@charset="UTF-8";

/* GERAL */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;
    background-size: cover;
}

header {
    padding: 20px;
    border-bottom: 2px solid #DE6C3C;
}

/* LOGOTIPO */

header img#logotipo {
    display: block;
    margin: 0 auto;
}

/* MENU DE NAVEGAÇÃO */

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #DE6C3C;
    padding: 10px;
}

nav#Menu a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 700;
    font-size: small;
    padding: 5px;
}

nav#Menu ul {
    display: flex;
    list-style: none;
    text-transform: uppercase;
    padding: 0;
}

nav#Menu li {
    background-color: #DE6C3C;
    padding: 5px;
    margin: 4px;
    transition: background-color .5s;
}

nav#Menu li:hover {
    background-color: #606060;
}

nav#Menu a:hover {
    color: #DE6C3C;
    text-decoration: underline;
}

/* CAIXAS */

section div.box {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    background-color: #e5e5e5;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

section div.box h1, section div.box h2 {
    text-align: center;
    color: #333;
    font-size: 1.8em;
    padding: 20px;
}

/* FOOTER */

footer, footer section, footer div, footer li {
    box-sizing: border-box;
}

footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer section {
    width: 100%;
}

@media screen and (max-width: 768px) {
    /* regras para telas menores (tablets, telefones) */
    nav {
        flex-direction: column;
    }

    nav#Menu ul {
        flex-direction: column;
        align-items: center;
    }

    section div.box {
        width: 80%;
    }
}