/* 
    Section: Destaques 
*/
section.destaques {
    background: #fff;
}

section.destaques .container {
    padding: 25px;
    background: #fff;
    position: relative;
    z-index: 8;
    border-radius: 5px;
}

section.destaques .noticia {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

section.destaques .noticia a {
    display: block;
}

section.destaques .noticia .content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width:100%;
    padding: 30px 24px;
    padding-top: 70px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    transition: all .5s;
}

section.destaques .right .content {
    padding: 20px;
    padding-top: 50px;
}

section.destaques .noticia:hover .content {
    padding-bottom: 40px;
}

section.destaques h3 {
    font-size:24px;
    color:#fff;
    font-weight: bold;
    line-height: 30px;
    text-shadow: 0 0 4px #000000c9;
}

section.destaques .right h3 {
    font-size: 18px;
    line-height: 24px;
}

section.destaques .categoria {
    color:#fff;
    font-size: 14px;
    line-height: 18px;
    padding-left: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-left:5px #fff solid;
    text-shadow: 0 0 4px #000000c9;
}

section.destaques .left img {
    min-width: 100%;
    height: 460px;
    object-fit: cover;
}

section.destaques .right img {
    min-width: 100%;
    height: 215px;
    object-fit: cover;
}

section.destaques .right .noticia:nth-child(1) {
    margin-bottom: 30px;
}


/* 
Material 
*/
section.material {
    padding-top: 30px;
    background: #fff;
}

section.material .banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding:30px 50px;
    border-radius: 100px;
    background: #f1f1f1;
}

section.material .texto {
    flex:1;
}

section.material  h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
}

section.material a {
    padding: 15px 30px;
    background: #2a2f66;
    color: #fff;
    font-weight: bold;
    display: block;
    border-radius: 50px;
    text-transform: uppercase;
}

/*
    Section: Navegue
*/
section.navegue {
    display: block;
    padding:40px 0;
    background: #fff;
    box-shadow: 0px 7px 10px #0000001f;
}

section.navegue h2 {
    font-size:14px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px #dedede solid;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

section.navegue h2:after {
    content:'';
    width:115px;
    height:5px;
    background: var(--vermelho);
    position: absolute;
    bottom:0px; 
    left:50%;
    transform: translateX(-50%);
    display: block;
}

section.navegue a {
    display: block;
    border:1px #dedede solid;
    border-radius: 50px;
    color:var(--preto);
    padding: 20px 25px;
    padding-left: 65px;
    position: relative;
}

section.navegue a:hover {
    background: #f1f1f1;
}

section.navegue a i {
    position: absolute;
    left:5px;
    top:50%;
    transform: translateY(-50%);
    width:45px;
    height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    background: var(--vermelho);
    border-radius: 50%;
    font-size:20px;
}

section.navegue .owl-item:nth-child(even) a i {
    background: var(--azul);
}

section.navegue a.pl-mulher i {
    background: #ef25b4 !important;
}

section.navegue .owl-stage-outer {
    position: relative;
    z-index: 9;
}

section.navegue .owl-nav {
    position: absolute;
    left:0%;
    top:50%;
    width:100%;
    z-index: 1;
}

section.navegue button {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 18px !important;
    color: #979797 !important;
}

section.navegue .owl-prev {
    float:left;
    margin-left: -45px;
}

section.navegue .owl-next {
    float:right;
    margin-right: -45px;
}


/* 
    Section: Ultimas Noticias
*/
section.ultimas-noticias {
    padding: 90px 0;
    padding-bottom: 140px;
}


/* Atalhos */
section.atalhos {
    background: var(--branco);
    padding-bottom: 50px;
    display: table;
    width:100%;
}

section.atalhos .container {
    margin-top: -50px;
}

section.atalhos a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

section.atalhos .icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width:160px;
    height:160px;
    background: var(--azul);
    border-radius: 50%;
    margin:auto;
    margin-bottom: 20px;
}

section.atalhos .owl-item:nth-child(odd) .icone {
    background: var(--vermelho);
}

section.atalhos .icone img {
    width:83px;
    height:83px;
    opacity: .7;
}

section.atalhos a:hover img {
    opacity: 1;
}

section.atalhos h3 {
    font-size:18px;
    color:var(--preto);
    font-weight: bold;
}

section.atalhos a:hover h3 {
    color:var(--vermelho)
}

section.atalhos .owl-stage-outer {
    position: relative;
    z-index: 9;
}

section.atalhos .owl-nav {
    position: absolute;
    left:0%;
    top:50%;
    width:100%;
    z-index: 1;
}

section.atalhos button {
    width: 40px;
    height: 40px;
    margin-top: 20px;
    font-size: 24px !important;
    color: #979797 !important;
}

section.atalhos .owl-prev {
    float:left;
    margin-left: -45px;
}

section.atalhos .owl-next {
    float:right;
    margin-right: -45px;
}

/* 
    TV PL 
*/
section.tv-pl {
    background: url(../img/bg-tv-pl.jpg) center center no-repeat;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 170px;
}

section.tv-pl h3.titleHome {
    display: table;
    width: 100%;
    color:#fff;
    border-bottom: 1px #626aaf solid;
}

section.tv-pl h3.titleHome a {
    display: table;
    float:right;
    font-size:14px;
    text-transform: uppercase;
    color:#fff;
    background: var(--vermelho);
    border-radius: 40px;
    padding: 10px 30px;
    margin-bottom: 5px;
}

section.tv-pl h3.titleHome a i {
    margin-left: 10px;
}

section.tv-pl .item a {
    display: block;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

section.tv-pl .thumb {
    position: relative;
    display: block;
    background: #000;
}


section.tv-pl .thumb i {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    color:var(--vermelho);
    font-size: 80px;
    z-index: 9;
    background: #fff;
    border-radius: 50%;
    outline:1px var(--vermelho) solid;
    outline-offset: -1px;
    opacity: .8;
}

section.tv-pl .item a:hover i {
    opacity: 1;
}

section.tv-pl .thumb img {
    height:190px;
    width:100%;
    object-fit: cover;
    opacity: .7;
}

section.tv-pl .content {
    display: flex;
    color:var(--preto);
    text-align: center;
    min-height: 130px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size:18px; 
    font-weight: bold;
    line-height: 24px;
}

section.tv-pl .owl-stage-outer {
    position: relative;
    z-index: 9;
}

section.tv-pl .owl-nav {
    position: absolute;
    left:0%;
    top:50%;
    width:100%;
    z-index: 1;
}

section.tv-pl button {
    width: 50px;
    height: 50px;
    margin-top: -20px;
    font-size: 24px !important;
    color: #fff !important;
    background: var(--vermelho) !important;
    border-radius: 4px;
}

section.tv-pl .owl-prev {
    float:left;
    margin-left: -45px;
}

section.tv-pl .owl-next {
    float:right;
    margin-right: -45px;
}


/* 
    Social 
*/
section.social {
    padding-bottom: 50px;
}

section.social .container {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 66%, rgba(255,255,255,0) 100%);
    border-radius: 10px;
    margin-top: -80px;
    padding-bottom: 50px;
}

section.social iframe {
    box-shadow: 0px 7px 10px #0000001f;
    border:10px #fff solid !important;
    width:100% !important;
}

/* 
    Sobre 
*/
section.sobre {
    background: #fff;    
}

section.sobre .row {
    display: flex;
    align-items: center;
}

section.sobre h3 {
    font-size: 30px;
}

section.sobre p {
    line-height: 24px;
    margin-bottom: 30px;
}


section.sobre a {
    display: table;
    font-size:14px;
    text-transform: uppercase;
    color:#fff;
    background: var(--vermelho);
    border-radius: 40px;
    padding: 10px 30px;
    margin-bottom: 5px;
    font-weight: bold;
}

section.sobre i {
    margin-left: 10px;
}