.body {
    background-color: #FAFAFA;
}

.header {
    background: #000812;
}
.home-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 9vh;
    width: 100%;
    width: 100%;
    padding: 0 1rem;
}
.home {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.svg-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cor-svg {
    fill: #fff;
}
.svg-mundo {
    height: 30px;
    width: auto;
}
.nome-logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.titulo-link {
    text-decoration: none;
    color: #445ebf;
    font-size: 1.5rem;
}
.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}
.opcoes-a {
    color: #445ebf;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .25rem;
}
.svg-user {
    height: 25px;
    width: auto;
}
.sub-home {
    display: flex;
    justify-self: start;
    width: 100%;
    background: linear-gradient(135deg, #519cb6, #2e50ad);
}
.sub {
    display: grid;
    width: 100%;
    padding-top: 20px;
}
.container-rota {
    padding-left: 12rem;
    padding-bottom: 1rem;
}
.container-banner {
    display: flex;
    justify-content: start;
    height: 300px;
    width: 100%;
}
.container-img {
    justify-self: end;
}
.div-banner {
    display: grid;
    justify-content: space-around;
    justify-self: end;
    padding-left: 8rem;
    align-items: center;
}
.rota {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.titulo {
    display: flex;
    flex-direction: column;
}
.titulo-publicacao {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.sub-titulo-publicacao {
    color: #cbd5e1;
    font-size: 40px;
    font-weight: 400;
}
.usuario-logado {
    color: white;
}
.user-name * {
    pointer-events: none;
}
.caixa-usuario {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.botao-container {
    display: none;
}
.nav-responsiva{
    display: none;
}
@media (max-width: 978px) {
    .nav {
        display: none !important;
    }

    .botao-container {
        display: block;
    }
    .div-banner{
        padding-left: 3rem;
    }

    .artigo-filtro{
        padding: 1rem;
    }
}
@media (max-width: 768px) {
    .sub{
        height: 42vh;
    }
}

