

/* ELEMENTOS ESTRUTURAIS */

.img-bg {
    height: 100%;
    display: flex;
    overflow:hidden;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background-size: 140%;
    background-position: center;
    transition: all 1.5s;
}

.img-bg img {
    width: 100%;
    max-width: none;
    height: auto;
    display: none;
}

*:hover>.img-bg {
    background-size: 155%;
}

.barra .container {
    display: flex;
    justify-content: space-between;
}

.menu-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    display: flex;
    background-color: #fff;
    box-shadow: 1px 1px 5px #11111166;
}

.grid .card {
    flex-direction: column;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
    transition: background-color 1.2s, filter 1.5s;
    justify-content: space-between;
}

.grid .card:hover {
    background-color: #e4e8ef;
    filter: saturate(1.5);
}

.card .txt-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: left;
    justify-content: space-between;
}

a.card {
    color: var(--txtPadrao);
}

.card h3 {
    padding: 2rem 1.5rem;
}

.card .txt-card p {
    font-size: 1.7rem;
    padding: 0rem 1.5rem;
}

.card .txt-card .leia-mais {
    margin-top: 2rem;
    font-size: 1.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--txtClaro);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-transform: uppercase;
    transition: all 0.2s;
    height: 50px;
    text-align: center;
}

.card:hover .leia-mais {
    height: 65px;
    margin-top: calc(2rem - 15px);
    font-size: 1.7rem;
    filter: brightness(0.85) contrast(1.2);
}

.grid .card.duplo {
    width: 48.4%;
    flex-direction: row;
}

.grid .card.duplo>* {
    width: 50%;
}

.card .img-bg {
    height: 17rem;
}

.card.duplo .img-bg {
    height: 100%;
}

.grid .link a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 4px 4px 10px #aaa;
    height: 100%;
}

.grid .link a:hover {
    background-color: #fdfdfd;
    box-shadow: none;
    transform: scale(0.97);
}

.grid.botoes {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.grid.botoes .botao {
    width: 23.5%;
    margin-bottom: 2rem;
    margin-right: 2%;
    background-color: var(--btBusca);
    display: flex;
    height: 6rem;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.3s;
}

.grid.botoes .botao:nth-of-type(4n) {
    margin-right: 0;
}

.grid.botoes .botao:hover {
    background-color: var(--corVideo);
}

.grid.botoes .botao a {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 15%;
    justify-content: center;
    align-items: center;
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    color: var(--txtClaro);
    text-transform: uppercase;
    text-align: center;
}

.botao.secao {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 4.5rem;
    text-transform: uppercase;
    font-size: 2.5rem;
    background-color: transparent;
    color: var(--txtClaro);
    border: solid 2px var(--txtClaro);
    transition: all 0.5s;
    margin: 4rem auto 2rem auto;
}

.botao.secao:hover {
    padding: 1.5rem 10rem;
}

.interna {
    background-color: var(--fundoGeral);
    font-size: 1.8rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    color: #686868;
    width: 75%;
    margin: 0 auto 2rem auto;
    font-size: 1.5rem;
}

.breadcrumbs>* {
    margin: 0 1.5rem;
}

.breadcrumbs>*:first-child {
    margin-left: 0;
}

.breadcrumbs .atual {
    color: #307193;
}

.breadcrumbs a {
    color: #828282;
}

.breadcrumbs a:hover {
    color: var(--txtPadrao);
}

.interna .conteudo {
    background-color: var(--fundoGeral);
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5rem;
}

.conteudo .cabecalho {
    margin: 0 auto 2rem auto;
    width: 70%;
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem; 
}

.cabecalho .barra.share,
.cabecalho .data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cabecalho .barra.share {
    width: 40%;
}

.cabecalho .barra.share .tit-share  {
    margin-right: 3rem;
}

.conteudo .corpo {
    font-size: 1.8rem;
    line-height: 1.5;
    background-image: linear-gradient(to bottom, var(--fundoGeral) 25rem, #fff 25rem);
    padding: 0 9.5%;
    padding-bottom: 5rem;
}

.corpo .img-artigo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height:65.5rem; 
    overflow: hidden;
    background-size: 120%;
    transition: 8s;
    background-position: center;
}

.page .corpo .img-artigo {
    margin-bottom: 3rem;
}

.corpo .img-artigo img {
    width: 100%;
    object-fit: cover;
	opacity: 0;		   
}

.corpo .img-artigo:hover {
    background-size: 135%;
}


.corpo .tags {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

.tags .tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    padding: 0.5rem 3rem;
    text-align: center;
    border-radius: 5px;
    margin: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--txtClaro);
    transition: all 0.5s;
}

.tags .tag:nth-child(odd) {
    background-color: #007b57;
}

.tags .tag:nth-child(even) {
    background-color: #307193;
}


.tags .tag:hover{
    background-color: var(--fundoMenu);
    color: var(--txtClaro);
    border-radius: 7px;
}

.corpo .tit {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0 auto 3rem auto;
    font-size: 4rem;
    font-weight: 600;
    color: var(--txtTitulo);
    line-height: 1.25;
}


.corpo .linha-fina {
    text-align: center;
    width: 75%;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--txtChamada);
    margin: 0 auto 5rem auto;
}

.corpo h2 {
    margin-bottom: 2rem;
    color: var(--txtTitulo);
    font-weight: 700;
    font-size: 2.4rem;
}

.corpo h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
}

.corpo h3 strong {
    color: var(--txtTitulo);
    font-weight: 700;
}
.corpo p {
    margin-bottom: 3rem;
}

.corpo ul {
    margin-left: 3rem;
    list-style: circle;
    margin-bottom: 2rem;
}

.corpo ul li.sem-ponto{
    list-style: none;
    margin-top: 0.35rem;
    margin-bottom: 1rem;
}

.corpo em {
    font-size: 0.9em;
}

.corpo .centralizado {
    text-align: center;
    margin: 0 auto 5rem auto;
    width: 85%;
}

.corpo figure {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .corpo figure .attribute {
        position: absolute;
        right: 10px;
        bottom: 5px;
        z-index: 1;
        font-weight: bold;
        font-size: 1.2rem;
        color: white;
        //text-shadow: 2px 1px 1px #00000050;
    }

.corpo figure img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.corpo hr {
    background-color: var(--txtTitulo);
    height: 1px;
    border: none;
    margin: 4rem;
}
.corpo a {
    color: var(--linksPadrao);
    font-weight: 600;
}

.corpo a:hover {
    color: var(--linksPadraoHover);
}

.corpo figure {
    margin-bottom: 10rem;
}

.corpo iframe {
    width: 80rem;
    height: 45rem;
    margin: 1rem auto;
    display: block;
}


.barra.share ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 35rem;
}

.barra.share ul a {
    display: block;
    border-radius: 100%;
}

.barra.share ul a:hover {
    filter: grayscale(1);
    transform: scale(0.95);
}

.archive .conteudo {
    background-color: #ffffff;
    padding: 5rem 10rem;
    margin-top: 4rem;
    overflow:visible;
}

.archive h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.9rem;
    color: var(--fundoMenu);
    text-align: center;
    margin-bottom: 6rem;
    text-transform: uppercase;
    font-weight: 600;
}

.lista .item {
    display: none;
    padding: 3rem 0;
    flex-direction: column;
    width: 97%;
    margin: 0 0 0 auto;
    margin-bottom:0rem;
    border-top: solid 2px #f0f1f4;
}

.lista .item:nth-child(1),
.lista .item:nth-child(2),
.lista .item:nth-child(3),
.lista .item:nth-child(4),
.lista .item:nth-child(5),
.lista .item:nth-child(6),
.lista .item:nth-child(7),
.lista .item:nth-child(8) {
    display: flex;
}
   

.lista .item.destaque {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 0 0 0;
    margin-top:3rem;
    margin-bottom:3rem;
    transition: all 0.5s;
    width: 100%;
    display: flex;
}

.lista .item.destaque.maior {
    border-top: none;
}

.lista .item:hover {
    filter: saturate(1.5);
}

.lista .item.destaque .img-artigo {
    background-size: 125%;
    transition: all 2s;
    background-position: center;
    height: 31.5rem;
}


.lista .item.destaque:hover .img-artigo {
    background-size: 150%;
}

.lista .item.destaque .img-artigo img {
    opacity: 0;
    height: 0;
}


.lista .item .resumo .data {
    color: #999999;
    font-size: 1.4rem;
    font-style: italic;
    display: block;
}

.lista .item .resumo .tit {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1064b6;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
}

.lista .item:hover .resumo .tit {
    color: #052b4f;
    margin-left: 1rem;
}

.lista .item .resumo .linha-fina {
    color: #464547;
    font-size: 1.8rem;
    transition: color 0.3s;
    display: block;
}

.lista .item:hover .resumo .linha-fina {
    color: #767577;
}

.lista .item.destaque .resumo .tit {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.lista .item.destaque:hover .resumo .tit {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.lista .item.destaque.menor:hover .resumo .tit {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.lista .item.destaque.maior>* {
    width: 48.5%;  
}

.lista .item.destaque.menor .img-artigo {
    width: 24.25%;  
    height: 20rem;
}

.lista .item.destaque.menor .resumo {
    width: 72%;  
}

.archive .carregar-mais {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--txtClaro);
    text-align: center;
    padding: 1.5rem 3rem;
    border-radius: 30px;
    background-color: #0054a6;
    min-width: 28rem;
    width: 60%;
    font-size: 1.65rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    top: 7rem;
}

.archive .carregar-mais:hover {
    background-color: var(--txtTitulo);
}

.hero {
    width: 100vw;
    height: calc(100vh - 14rem);
    overflow-y: hidden;
}

.hero.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--txtClaro);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 65%;
}

.hero.landing:before {
    content: '';
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.hero.landing>.container {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding-top: 13rem;
    margin: auto;
}

.hero.landing h1 {
    font-weight: 500;
    margin-bottom: 5rem;
    font-size: 6rem;
}

.hero.landing .desc {
    font-weight: 500;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    padding: 0 5%;
}


.bloco.one-page {
    padding: 3rem 0;
}

.bloco .tit {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.lightbox {
    display: none;
    z-index: 9999999;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #000000cc;
    top: 0;
    left: 0;
}

.lightbox .container {
    background-color: transparent;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; 
    padding: 0;
    max-width: none;
}

.lightbox .container>* {
    display: block;
    min-width: 80vw;
    max-width: 128rem;
    max-height: 90%;
    min-height: 80vh;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 10px #000000ee;
    background-color: #000000;
    transition: all 1s;
}

.lightbox .container iframe {
    opacity: 0;
}

.lightbox .bt-fechar-lightbox {
    position: absolute;
    background-color: #ffffff;
    border-radius: 100%;
    padding: 1rem;
    box-shadow: 2px 2px 10px #000000ee;
    top: 9.25%;
    right: 10%;
    z-index: 100;
    transition: all 0.3s;
}

.lightbox .bt-fechar-lightbox:hover {
    filter: invert(0.85);
}

.abre-lightbox {
    cursor: pointer;
    cursor: pointer;
}

.abre-lightbox iframe {
    pointer-events: none;
}



/*/////////////////////////////////////////////////////////////////////////////////////////////* --MOBILE ---*/

@media screen and (max-width: 770px) {
    
    .grid.cards {
        padding: 0 5%;
    }
    
    .grid .card {
        width: 47.5%;
        justify-content: space-between;
    }
    
    .grid .card.duplo {
        width: 100%;
        margin: 0 auto 4rem auto;
    }
    
    .grid .card .img-bg {
        height: 20rem;
    }
    
    .grid .card.duplo .img-bg {
        background-size: auto 140%;
        height: auto;
        min-height: 25rem;
    }
    
    .card .txt-card .leia-mais {
        height: 45px;
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .card h3 {
        padding: 1rem 2rem;
    }
    
    .card .txt-card p {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 3.5rem;
    }
    
    .botao.secao {
        font-size: 2.2rem;
    }
    
    .grid.botoes .botao {
        width: 47.5%;
    }
    
    .interna {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
    
    .breadcrumbs {
        font-size: 2.35rem;
    }
    
    .breadcrumbs {
        overflow: hidden;
    }

    .breadcrumbs .atual {
        display: block;
        min-width: 1000px;
    }

    .breadcrumbs .atual:after {
        content: '...';
        position: absolute;
        right: -3rem;
        height: 100%;
        width: 92%;
        padding: 0 1rem;
        display: block;
        top: 0;
        background-color: var(--fundoGeral);      
    }
    
    .conteudo .cabecalho {
        width: 100%;
        padding: 0 5%;
        font-size: 2rem;
    }
    
    .cabecalho .barra.share {
        width: 60%;
    }
    
    .cabecalho .barra.share img {
        height: 4.5rem;
    }
    
    .cabecalho .barra.share .tit-share {
        display: none;
    }

    .conteudo .corpo {
        font-size: 2.25rem;
        line-height: 1.7;
        padding: 0 5% 6rem 5%;
        background-image: linear-gradient(to bottom, var(--fundoGeral) 15rem, #fff 15rem)
    }
    
    .corpo .tit {
        font-size: 3.5rem;
        text-align: left;
    }
    
    .corpo .linha-fina {
        width: 100%;
        font-size: 2.2rem;
        line-height: 1.5;
        text-align: left;
    }

    .corpo h2 {
        margin-bottom: 2rem;
        font-size: 3.2rem;
        line-height: 1.2;
    }
    
    .corpo iframe {
        width: calc(100% + 3rem);
        margin: 0;
        max-width: calc(100% + 3rem);
        left: -1.5rem;
        height: 35rem;
        margin-bottom: 2rem;
    }
    
    .barra.share ul {
        width: 75%;
        margin: 0 0 0 auto;
    }

    .barra.share ul li:not(:first-of-type) {
        width: 30px;
    }
    
    .conteudo {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        width: 100vw;
        height: calc(100vh - 124px);
        overflow-y: hidden;
    }
     
    .interna .conteudo {
        margin-top: 4rem;
    }
    
    .corpo .img-artigo {
        height: 35rem;
    }
    
    .tags .tag {
        font-size: 2rem;
    }
    
    .lista .item.destaque {
        flex-direction: column;
        padding: 5rem 0 0 0;
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    
    .lista .item.destaque:first-of-type {
        margin-top: 0rem;
        padding-top: 0rem;
    }
    
    .lista .item.destaque.maior>* {
        width: 100%;
    }
    
    .lista .item .resumo .data {
        margin-top: 2rem;
        font-size: 2rem;
    }
    
    .lista .item .resumo .tit {
        font-size: 3rem;
    }
    
    .lista .item .resumo .linha-fina {
        font-size: 2.2rem;
    }
    
    .lista .item.destaque.menor .img-artigo {
        width: 100%;
        height: 20rem;
    }
    
    .lista .item.destaque.menor .resumo {
        width: 100%;
    }
    
    .archive .conteudo {
        padding: 5rem 4rem;
    }

    .archive h1 {
        margin-bottom: 5rem;
    }

    .archive .carregar-mais {
        font-size: 2.25rem;
        width: 70%;
    }
    
    .lightbox {
        z-index: 99999999;
    }

    .lightbox .bt-fechar-lightbox {
        width: 25px;
        height: 25px;
        top: 27.25%;
        right: 6%;
    }

    .lightbox .container>* {
        min-width: 90vw;
        max-width: 128rem;
        max-height: 90%;
        min-height: 40vh;
    }

}

/*////////////////////////////////////////////////////////////* TABLETS */

/*@media screen and (min-width: 751px) and (max-width: 1250px) {

    
    .breadcrumbs .atual:after {
        width: 65%;    
    }
    
    .barra.share ul {
        width: 50%;
    }
    
    .barra.share ul li:not(:first-of-type) {
        width: 31.5px;
    }
    

    .hero.landing {
        height: 50vh;
    }

}*/

/*/////////////////////////////////////////////////////////////* TELEFONES ANTIGOS */

@media screen and (max-width: 330px) {


}

/*/////////////////////////////////////////////////////////////* FULL HD+ */

@media screen and (min-width: 1600px) {
    .hero.landing {
        //height: calc(100vh - 14rem);
    }
}
