* {
    margin: 0;
    padding: 0;
}

body {
    background: #f1faee;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background: url("/images/bg.jpg") no-repeat center center;
    background-size: cover;
    flex: 1 0 auto;
    min-height: 80vh;
}

.nav_superior {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #23232e;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #f1faee;
    padding: 5px;
    min-height: 3vh;
    width: 100%;
}

.nav_superior div {
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}

.nav_superior a {
    transition: 0.3s;
}

.nav_superior a:hover {
    color: #b52e2c;
}

.mobile_item_softgraf {
    display: none;
}

.usuario {
    color: #f1faee;
}

.menu_nav a:hover {
    border-bottom: solid #b52e2c;
}

.rodape {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 15vh;
    background-color: #23232e;
    border-color: 0;
    color: #f1faee;
    border-width: thick;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
}

.endereco {
    width: 200px;
    height: 110px;
}

@media (max-width: 992px) {
    .logo_rodape,
    .logo_softgraf {
        display: none;
    }
    .mobile_item_softgraf {
        display: block;
    }
}

@media (max-width: 768px) {
    .email_superior {
        display: none;
    }
}

@media (max-width: 576px) {
    .endereco {
        display: none;
    }
}