:root{
    --height-nav: 67px;
}
*{
    box-sizing: border-box;
}
body,html{
    overflow-x: hidden;
    font-family: poppins;
    color: #212121;
    margin: 0;
}
body *{
    font-family: poppins;
}

.container{
    max-width: 1320px;
    padding: 12px;
    margin: 0 auto;
}

#btn-back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    background: var(--color-primary);
    color: var(--color-tertiary);
    z-index: 2;
    border: 0;
    cursor: pointer;
}

body > header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    height: var(--height-nav);
    transition: .3s;
}
body > header nav,
body > header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}
body > header nav ul li{
    list-style: none;
}
body > header nav svg{
    display: none;
    color: var(--color-primary);
}
body > header nav{
    height: 100%;
}
body > header nav .logo img{
    width: auto;
    height: 35px;
}
body > header nav ul li a{
    display: block;
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: .3s;
    color: var(--color-primary);
}
body > header nav ul li a:hover{
    color: var(--color-secondary);
}
body > header.bg{
    background: #fff;
}

body > main{
    margin-top: var(--height-nav);
}
body > main > .container{
    display: flex;
    align-items: start;
}
body > main > .container > .content{
    width: 75%;
    margin-right: 30px;
}
body > main aside{
    width: 25%;
}

.politica-privacidade{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 3;
    font-size: 14px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 15px;
}
.politica-privacidade button{
    cursor: pointer;
    background: 0;
    border: 1px solid #000;
    padding: 7px 15px;
}
.politica-privacidade a{
    color: #000;
}

#banner{
    margin-top: -67px;
}
#banner img{
    width: 100%;
}

.content .titulo{
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.content .titulo h2{
    margin: 0;
}
.content .titulo p{
    margin: 0;
    opacity: .7;
}
.content .artigos{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.content .artigos article{
    width: calc(33.3333% - 30px);
    margin: 15px;
    padding: 20px;
    border: 1px solid #f1f1f1;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05);
}
.content .artigos article header img{
    width: 100%
}
.content .artigos article main > div{
    opacity: .7;
    font-size: 12px;
}
.content .artigos article main > div svg{
    min-width: 13px;
    width: 13px;
    height: 13px;
    margin-right: 3px;
    margin-bottom: -1px;
}
.content .artigos article main h2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin: 0 0 6px;
}
.content .artigos article main h2 a{
    color: #212121;
    text-decoration: none;
}
.content .artigos article main p{
    margin: 0 0 20px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.content .artigos article main > a{
    display: inline-block;
    font-size: 14px;
    background: var(--color-primary);
    color: var(--color-tertiary);
    border: 1px solid var(--color-primary);
    padding: 10px 20px;
    text-decoration: none;
    transition: .3s;
}
.content .artigos article main > a:hover{
    background: 0;
    color: var(--color-primary);
}
.content .artigos article footer{
    margin-top: 20px;
}

.ver-mais{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.ver-mais button{
    display: inline-block;
    font-size: 14px;
    background: 0;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}
.ver-mais button:hover{
    background: var(--color-primary);
    color: var(--color-tertiary);
}

.artigo mark{
    background: #eee;
}
.artigo a{
    color: var(--color-primary)
}
.artigo p,
.artigo li{
    font-size: 14px;
}
.artigo img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
}
.artigo blockquote{
    border-left: 5px solid rgba(0, 0, 0, .05);
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
}

.content #capa{
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 50px;
    font-size: 14px;
}
.content #capa > .bg{
    background: #000;
    opacity: .5;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.content #capa > div:not(.bg){
    position: relative;
    z-index: 2;
    color: #fff;
    margin-top: 100px;
}
.content #capa > div:not(.bg) > div:first-child{
    font-size: 14px;
}
.content #capa > div:not(.bg) > div:first-child svg{
    min-width: 13px;
    width: 13px;
    height: 13px;
}
.content #capa h1{
    max-width: 80%;
    font-size: 40px;
    line-height: 50px;
    margin: 0;
}
.content #capa > div:not(.bg) > div:last-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.share ul{
    padding: 0;
    margin: 0;
}
.share li{
    list-style: none;
}
.share li:nth-child(1) a{
    background: #0866ff;
}
.share li:nth-child(2) a{
    background: #e60023;
}
.share li:nth-child(3) a{
    background: #1d9bf0;
}
.share li:nth-child(4) a{
    background: #007bb5;
}
.share li:nth-child(5) a{
    background: #12af0a;
}
.share li:nth-child(6) a{
    background: #2ca5e0;
}
.share li:nth-child(7) a{
    background: #48494b;
}

.content #capa .share{
    background: 0;
    border: 0;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.content #capa .share ul{
    background: #fff;
    display: flex;
    align-items: center;
}
.content #capa .share a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}
.content #capa .share ul{
    position: absolute;
    right: 100%;
    opacity: 0;
    transform: translateX(16px);
    transition: .3s;
}
.content #capa .share:hover ul{
    opacity: 1;
    transform: translateX(0);
}
.content #capa .share ul li svg{
    min-width: 16px;
    width: 16px;
    height: 16px;
}
.content #capa .share > span{
    font-weight: 500;
    display: flex;
    align-items: center;
}
.content #capa .share > span svg{
    margin-right: 3px;
}

.content div.share{
    text-align: center;
    margin: 40px 0 30px;
}
.content div.share h4{
    margin: 0 0 15px;
}
.content div.share ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.content div.share a{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.content div.share a svg{
    min-width: 20px;
    width: 20px;
    height: 20px;
}

#newsletter{
    margin-top: 30px;
}
#newsletter > div > div{
    background: #f5f5f5;
    text-align: center;
    padding: 0 20px 60px;
}
#newsletter > div > div > div{
    background: var(--color-primary);
    color: var(--color-tertiary);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -30px;
    margin: 0 auto;
}
#newsletter > div > div > div svg{
    width: 22px;
    height: 22px;
}
#newsletter span{
    display: block;
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 400;
}
#newsletter h2{
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 700;
}
#newsletter p{
    margin: 0 0 20px;
    font-size: 16px;
}
#newsletter form{
    display: flex;
    justify-content: center;
}
#newsletter form input{
    padding: 10px 20px;
    text-align: center;
    border: 1px solid rgb(224, 222, 222);
    font-size: 16px;
    background: #fff;
    width: 100%;
    max-width: 260px;
    outline: none !important;
}
#newsletter form button{
    background: var(--color-primary);
    color: var(--color-tertiary);
    border: 0;
    font-size: 12px;
    padding: 13px 30px;
    cursor: pointer;
    transition: .3s;
}
#newsletter form button:hover{
    background: var(--color-secondary);
}

body > footer{
    padding: 20px;
    text-align: center;
}
body > footer a{
    color: #000;
}

@media(max-width: 1400px){
    /*.container{
        max-width: 1140px;
    }*/
}
@media(max-width: 1200px){
    .container{
        max-width: 960px;
    }
}
@media(max-width: 992px){
    .container{
        max-width: 720px;
    }

    .content .artigos article {
        width: calc(50% - 30px);
    }
}
@media(max-width: 768px){
    .container{
        max-width: 540px;
    }

    body > header nav ul{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        max-height: calc(100vh - var(--height-nav));
        overflow: auto;
        background: var(--color-tertiary);
        color: #fff;
        border-top: 1px solid var(--color-primary);
        transition: .3s;
    }
    body > header nav ul.active{
        display: flex;
        box-shadow: 0 8px 15px 0px rgba(0,0,0,.1);
    }
    body > header nav svg{
        display: inline-block;
    }
    body > main > .container{
        flex-wrap: wrap;
    }
    body > main > .container > .content{
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    body > main aside{
        width: 100%;
    }

    .content .artigos article {
        width: calc(100% - 30px);
    }
    .content .artigos article main h2{
        font-size: 19px;
    }

    #newsletter h2{
        font-size: 34px;
    }
    #newsletter form{
        flex-wrap: wrap;
    }
    #newsletter form input{
        margin-bottom: 15px;
        max-width: 100%;
    }
    #newsletter form button{
        width: 100%;
    }

    body > footer{
        z-index: 3;
        position: relative;
        background: #fff;
    }
}
@media(max-width: 576px){
    .container{
        max-width: 100%;
    }

    .content #capa{
        padding: 20px;
    }
    .content #capa h1{
        max-width: 100%;
        font-size: 30px;
        line-height: 40px;
    }
    .content #capa .share > span{
        font-size: 0;
    }
}