/* CABECALHO */

#cabecalho #topo #logo {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 30px;
}

#cabecalho #topo {
    height: 300px;
}

.but-mobile {
    top: 290px;
}

#conteudo p {
    text-align: justify;
}


/* PESQUISA */

#form_pesquisa {
    margin-bottom: 50px;
}

#form_pesquisa fieldset {
    background-color: #EEE;
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 15px;
}

#form_pesquisa fieldset legend {
    font-weight: bold;
}

#form_pesquisa input,
#form_pesquisa select {
    background-color: #FFF;
    border-radius: 5px;
    border: 1px solid #DDD;
    margin-right: 10px;
    padding: 10px;
}

#form_pesquisa input#but-pesquisar {
    background-color: #F90;
    color: #FFF;
    cursor: pointer;
    border: none;
}

#form_pesquisa input#but-pesquisar:hover {
    background-color: #F60;
}


/* ARTIGOS */

.artigos h3 {
    border-bottom: 1px solid #000;
}

.artigos ul li {
    list-style: none !important;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.artigos li::before {
    color: #D00;
    margin-right: 10px;
    position: absolute;
    top: 5px;
    left: 0;
}

.artigos .autor {
    font-size: .875rem;
    color: #333;
    display: block;
}

.artigos .paginas {
    font-size: .75rem;
    color: #D00;
    display: block;
}



/* RESUMO */

.resumo h2 {
    font-size: 2rem;
}

.resumo #edicao {
    color: #D00;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.resumo #autor {
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.resumo #paginas {
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.resumo p {
    text-align: justify;
}

.resumo #but-artigo {
    text-align: center;
    border: 3px solid #D00;
    color: #D00;
    border-radius: 5px;
    display: block;
    max-width: 250px;
    margin: 50px auto 0;
    padding: 10px;
}

.resumo #but-artigo:hover {
    background-color: #D00;
    color: #FFF;
    text-decoration: none;
}

.resumo #but-artigo:before {
    margin-right: 10px;
}


/* REVISTAS */

#revistas ul li {
    list-style: none;
}

#revistas ul li a {
    color: #000;
    margin: 0 20px 20px 0;
    padding: 5px;
    float: left;
}

#revistas ul li a:hover {
    background: #DDD;
    text-decoration: none;
}

#revistas ul li a img {
    display: block;
    margin-bottom: 10px;
}


@media only screen and (max-width: 380px) {
    /* CABECALHO  */

    #cabecalho #topo {
        height: 230px;
    }

    .but-mobile {
        top: 220px;
    }

    /* PESQUISA */

    #form_pesquisa input,
    #form_pesquisa select {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    #form_pesquisa input#but-pesquisar {
        margin-bottom: 0;
    }
}