@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Glass+Antiqua&display=swap');

:root {
    --cor0: #F7D500;
    --cor1: #ED7D3A;
    --cor2: #2FBF71;
    --cor3: #EF2D56;
    --cor4: #363537;
    --cor5: #FFFFFF;
    --cor6: #000000
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100vw;
    height: 100vh;
    font-weight: 600;
}

h1 { 
    font-family: "Glass Antiqua", serif;
    font-size: 2.5em;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: "Akaya Kanadaka", serif;
    font-size: 1.6em;
    padding: 20px 0px 0px 0px;
    margin-bottom: -10px;
}

header#cabecalho-principal {
    width: 100vw;
    /*border-bottom: 0.5px solid var(--cor4);*/
    padding: 15px 20px 0px 20px;
    position: fixed;
    top: 0px;
    background-color: var(--cor5);
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

header#cabecalho-principal > form {
    visibility: hidden;
    /*width: 0vw;*/
}

header#cabecalho-principal > div > span {
    font-size: 1.7em;
    padding: 2px;
}


main#index {
    padding: 10px;

    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}

main#index > article {
    width: 98vw;
    border-bottom: 0.5px solid var(--cor4);
    margin-top: 50px;

    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}

main#index > article#primeiro-artigo {
    margin-top: 90px;
}

main#index > article > header {
    width: 100%;
    padding: 12px;
    font-size: 0.9em;
    /*border: 1px solid red;*/

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

main#index > article > header > a {
    text-decoration: none;
    color: var(--cor6);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

main#index > article > header > a > img {
    border-radius: 50%;
    margin-right: 10px;
    width: 30px;
}

main#index > article > section > a  {
    /*border-radius: 5px;*/
    width: 100vw;
}

main#index > article > section > a > img {
    /*border-radius: 5px;*/
    width: 100vw;
}

main#index > article > aside.aside-principal {
    /*border: 2px solid red;*/
    width: 100%;
    padding: 0px 25px;
}

main#index > article > aside.aside-principal > section > div.icones {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

main#index > article > aside.aside-principal > section > div.icones > span.icones-reacao {
    flex: 0 0 50px;
}

main#index > article > aside.aside-principal > section > div.numeros {
    display: flex;
    flex-flow: row;
    align-items: center;
}

main#index > article > aside.aside-principal > section > div.numeros > span {
    font-size: 0.9em;

    flex: 0 0 55px;
}

main#index > article > aside.aside-principal > section > p {
    font-size: 0.9em;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 20px;
}

main#index > article > aside.aside-principal > aside > a {
    display: block;
    font-weight: normal;
    color: var(--cor1);
    text-decoration: none;
    margin-bottom: 15px;
}

main#index > aside#aside-pagination {
    margin-top: 50px;
    margin-bottom: 100px;
}

main#index > aside#aside-pagination > nav > ul {
    list-style-type: none;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
}

main#index > aside#aside-pagination > nav > ul > li > a {
    background-color: var(--cor0);
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0px 10px;
    color: var(--cor5);
    text-decoration: none;
}

main#index > aside#aside-pagination > nav > ul > li > a.ativo {
    background-color: var(--cor2);
}

footer {
    width: 100%;
    position: fixed;
    top: 94%;
    background-color: var(--cor5);
    padding: 10px;
    border-top: 0.5px solid var(--cor4);
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

footer > a {
    color: var(--cor4);
}

footer > a > span.descricao-icone {
    display: none !important;
}

img.membro-foto-perfil {
    width: 30px;
    border-radius: 50%
}

footer > a > span.aparece-desktop {
    content: ;
}

