* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
a {
    text-decoration: none;
    color: #fff;
}
/*CABEÇALHO*/
header {
    width: 100%;
    height: auto;
}
#cabecalho {
    display: flex;
    flex-direction: row;
    padding: 10px;
    background-color: #d4ac4c;
}
#logo img {
    width: 125px;
    height: auto;
}
.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menu ul, 
.menu li {
    list-style: none;
}
.menu ul {
    display: flex;
}
.menu ul li {
    margin: 10px 10px;
    padding: 0px 10px;
}
.menu li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 20px;
    height: 70px;
}
.menu li a:hover {
    color: #685427;
}

/*CORPO*/

ol li {
    font-weight: bold;
    margin: 30px 0px;
}
ol ul li {
    font-weight: lighter;
}

/*Junte-se*/
#junte-se {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 100px;
}
#junte-se .avaliacoes {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#junte-se .avaliacoes a {
    color: #111;
    font-weight: bold;
    background-image: linear-gradient(#685427, #ffd390, #685427);
    min-width: 210px;
    padding: 10px 20px;
    border: 3px solid #745f2e;
    margin: 5px;
}
#junte-se h2 {
    font-size: 20px;
}
#junte-se a:hover {
    background-image: linear-gradient(#685427, #b89058, #685427);
}

/*Footer*/

footer {
    background-color: #d4ac4c;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 100px;
}
footer #footer-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
    width: 100%;
    height: auto;
    margin: 30px 0px;
}
footer .a {
    width: 190px;
}
footer .a .ref {
    margin-top: 10px;
}
footer .a p a:hover {
    text-decoration: underline;
}
footer .texto-footer {
    width: 100%;
    height: auto;
    margin: 5px;
}
footer .texto-footer h1 {
    font-size: 15px;
    color: #fff;
}
footer .texto-footer p {
    font-size: 12px;
    padding: 0;
    margin: 3px 0 ;
    color: #fff;
}
footer .footer_copy {
    font-size: 12px;
    margin-top: 10px;
    padding-left: 1px;
}
footer h2 {
    font-size: 18px;
    margin: 30px 0px;
}
footer img {
    width: 40px;
    height: auto;
}
#contatos a {
    margin: 30px;
}
#contatos img {
    border-radius: 10px;
}


/*Copy*/
h6 {
    margin: 30px 0px;
}

.menuMobile {
    display: none;
    width: 40px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-right: 20px;
}
.mm_line {
    height: 3px;
    background-color: #333;
}

@media (max-width: 768px) {
    header {
        height: auto;
    }
    header #cabecalho {
        flex-direction: row;
        justify-content: space-between;
    }
    .menu nav ul {
        flex-direction: column;
        text-transform: uppercase;
        position:absolute;
        display: none;
        right: 0;
        width: 100%;
        background-color: #685427;
        border: 1px solid rgba(0, 0, 0, 0.9);
        border-radius: 10px;
    }
    .menuMobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
}
@media (max-width:413px) {
    .email {
        margin-top: 20px;
    }
}