/* INICIO DAS NORMALIZA&#1043;‡&#1043;•ES */
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    margin: 0;   
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}
img{
    border-style: none;
}
button,
[type="button"],
[type="submit"],
[type="reset"] {
    -webkit-appearance: button;
}

input {
    font-size: 1em;
}
textarea {
    overflow: auto;
    font-size: 1.1em;
}
[hidden] {
    display: none;
}
button,
textarea,
select,
input {
    outline: 0;
}
/* Media dos Containers */
@media (min-width: 1170px) {
    .containerWidth{
        max-width: 1300px;
        padding: 0;
    }
}
.containerWidth {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
/* FIM DAS NORMALIZA&#1043;‡&#1043;•ES */



/* &#1043;&#1036;NICIO DO CSS */
#cabecalho .content .cima {
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    border-bottom: 1px solid;
    border-color: rgba(0,0,0,0.1);
}

#cabecalho .content .cima .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

#cabecalho .content .cima .top .dia {
    display: flex;
    gap: 8px;
    align-items: center;
}

#cabecalho .content .cima .top .dia i {
    color: #000000;
    background: #ffb113;
    padding: 5px;
    border-radius: 100%;
    font-size: 15px;
}

#cabecalho .content .cima .top .data {
    color: #000000;
    font-size: 13px;
    text-transform: capitalize;
}

#cabecalho .content .cima .top .links {
    display: flex;
    gap: 32px;
}

#cabecalho .content .cima .top .links .pages {
    display: flex;
    align-items: center;
    gap: 16px;
}

#cabecalho .content .cima .top .links .pages a {
    color: #6d6d6d;
    text-decoration: none;
    font-size: 13px;
    transition: all .3s;
}

#cabecalho .content .cima .top .links .pages a:hover {
    color: #0c81c8;
    transition: all .3s;
}

#cabecalho .content .cima .top .links .sociais {
    display: flex;
    align-items: center;
    gap: 18px;
}

#cabecalho .content .cima .top .links .sociais a {
    color: #000000;
}

#cabecalho .content .meio .mid {
    padding: 12px 0;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
}

#cabecalho .content .meio .mid .logo {
    width: 350px;
}

#cabecalho .content .meio .mid .ad {
    width: 100%;
}

#cabecalho .content .baixo {
    position: relative;
    z-index: 2;
}

#cabecalho .content .baixo .bottom {

}

#cabecalho .content .baixo .bottom .conteudoMenu {
    padding: 20px 32px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

#cabecalho .content .baixo .bottom .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#cabecalho .content .baixo .bottom .menu .links {
    display: flex;
    align-items: center;
    gap: 36px;
}

#cabecalho .content .baixo .bottom .menu .links ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

#cabecalho .content .baixo .bottom .menu .links a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    text-transform: lowercase;
    transition: all .3s;
}

#cabecalho .content .baixo .bottom .menu .links .link {
    list-style: none;
}

#cabecalho .content .baixo .bottom .menu .links .link:hover a {
    color: #ffb113;
    transition: all .3s;
}

#cabecalho .content .baixo .bottom .menu .links .link::first-letter {
    text-transform: uppercase;
}

#cabecalho .content .baixo .bottom .menu .links .link:hover .sublinks {
    visibility: visible;
    opacity: 1;
    transition: all .2s;
}

#cabecalho .content .baixo .bottom .menu .links .link .sublinks {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: 0 6px 6px 6px;
    display: flex;
    flex-direction: column;
    transition: all .2s;
}

#cabecalho .content .baixo .bottom .menu .links .link .sublinks .sublink {
    text-decoration: none;
    color: #313131;
    padding: 0px;
    font-size: 11px;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
    background: #ebedf6;
    transition: all .3s;
    padding: 10px 16px;
    text-transform: none;
}

#cabecalho .content .baixo .bottom .menu .links .link .sublinks .sublink:hover {
    color: #313131;
    background: #ffb113;
    transition: all .3s;
}

#cabecalho .content .baixo .bottom .menu .links .link .sublinks .sublink:last-child {
    border-bottom: none;   
}

#cabecalho .content .baixo .bottom .conteudoMenu .pesquisar {
    display: none;
}

#cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .caixa {
    border-bottom: 2px solid #ffb113;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .caixa input {
    border: none;
    background: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    transition: 0.4s;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .caixa button {
    border: none;
    background: transparent;
    color: #ffb113;
    cursor: pointer;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo {
    display: none;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo .links {
    list-style: none;
    display: flex;
    gap: 22px;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo .links .link a {
    color: #ffffff;
    text-decoration: none;
    text-transform: lowercase;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo .links .link a::first-letter {
    text-transform: uppercase;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo label[for="bt_menu"]{
    padding: 1px;
    background: transparent;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 55px;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo #bt_menu {
    display: none;
}

#cabecalho  .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo label[for="bt_menu"]{
    display: none;
}

#slider {
    background-image: url(/images/fundoslider.jpeg);
    background-size: cover;
    background-position: bottom;
    margin-top: -16px;
    z-index: 1;
    position: relative;
}

#slider .content {
    display: flex;
    padding: 36px 0;
    padding-top: 48px;
    gap: 16px;
}

#slider .content .slide {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
}

#slider .content .slide:first-child {
    max-width: 300px;
    width: 100%;
}

#slider .content .slide:last-child {
    max-width: 300px;
    width: 100%;
}

#slider .content .slide img {
    width: 100%;
    height: 600px;
    filter: brightness(0.6);
    transition: all .3s;
    object-fit: cover;
}

#slider .content .slide .texto {
    padding: 32px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
    background: linear-gradient(127deg, transparent, #000000);
    transition: all .3s;
}

#slider .content .slide a:hover img {
    transform: scale(1.2);
    transition: all .3s;
}

#slider .content .slide .texto span {
    background: #ffb113;
    border-radius: 6px;
    padding: 2px 13px;
    color: #000000;
    font-size: 10px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

#slider .content .slide .texto strong {
    bottom: 32px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#destaques {
    background: linear-gradient(180deg, rgb(248 248 248) 0, #ffffff 56%);
}

#destaques .content {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 0;
}

#destaques .content .titulo {
    position: relative;
}

#destaques .content .titulo strong {
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background: #000000;
    padding: 4px 32px;
    z-index: 2;
    position: relative;
}

#destaques .content .titulo::after {
    content: "";
    height: 6px;
    background: #000000;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#destaques .content .wrapper {
    width: 100%;
    position: relative;
}

#destaques .content .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #ffb113;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

#destaques .content .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
}

#destaques .content .wrapper i:first-child{
    left: -22px;
}

#destaques .content .wrapper i:last-child{
    right: -22px;
}

#destaques .content .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    gap: 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

#destaques .content .wrapper .carousel::-webkit-scrollbar {
    display: none;
}
  
#destaques .content .wrapper .carousel.no-transition {
    scroll-behavior: auto;
}

#destaques .content .wrapper .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
  
#destaques .content .wrapper .carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

#destaques .content .wrapper .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

#destaques .content .wrapper .carousel .card {
    scroll-snap-align: start;
    align-items: flex-start;
    list-style: none;
    background: transparent;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #d5d5d5;
}

#destaques .content .wrapper .carousel .card .img {
    height: 220px;
    object-fit: cover;
    overflow: hidden;
}

#destaques .content .wrapper .carousel .card .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#destaques .content .wrapper .carousel .card .texto {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 22px;
    padding-top: 18px;
    align-items: flex-start;
}

#destaques .content .wrapper .carousel .card .texto .principal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#destaques .content .wrapper .carousel .card .texto strong {
    padding: 2px 12px;
    background: #afafaf;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

#destaques .content .wrapper .carousel .card .texto .principal h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #1f1f1f;
}

#destaques .content .wrapper .carousel .card .texto .principal span {
    color: #999999;
    font-size: 13px;
}

@media screen and (max-width: 900px) {
    #destaques .content .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    #destaques .content .wrapper .carousel {
        grid-auto-columns: 100%;
    }
}

#blocos .content {
    display: flex;
    justify-content: space-between;
    padding: 64px 0;
    gap: 64px;
}

#blocos .content .news {
    width: 100%;
}

#blocos .content .news .titulo {
    position: relative;
}

#blocos .content .news .titulo strong {
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background: #ffb113;
    padding: 4px 32px;
    z-index: 2;
    position: relative;
}

#blocos .content .news .new .titulo::after {
    content: "";
    height: 6px;
    background: #ffb113;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .noticias {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 16px;
    padding: 32px 0;
}

#blocos .content .news .noticias .noticia {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

#blocos .content .news .noticias .noticia::after {
    height: 1px;
    background: #d3d3d3;
    width: 100%;
    position: absolute;
    bottom: 14px;
    left: 115px;
    right: 0;
}

#blocos .content .news .noticias .noticia::before {
    height: 1px;
    background: #a4a4a4;
    width: 18px;
    position: absolute;
    bottom: 12px;
    right: -9px;
    transform: rotate(90deg);
}

#blocos .content .news .noticias .noticia img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

#blocos .content .news .noticias .noticia .texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #cccccc;
    padding: 18px;
}

#blocos .content .news .noticias .noticia .texto .principal {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

#blocos .content .news .noticias .noticia .texto .principal a {
    text-decoration: none;
    color: #1f1f1f;
}

#blocos .content .news .noticias .noticia .texto strong {
    font-weight: 600;
    font-size: 19px;
    display: -webkit-box;
    line-height: 25px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#blocos .content .news .noticias .noticia .texto p {
    font-weight: 400;
    font-size: 13px;
    color: #4b4b4b;
    display: -webkit-box;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#blocos .content .news .noticias .noticia .texto span {
    font-weight: 400;
    font-size: 12px;
    color: #939393;
    padding-top: 4px;
}

#blocos .content .news .noticias .noticia .texto .ler {
    text-decoration: none;
    text-transform: uppercase;
    color: #4b4b4b;
    padding: 4px 16px;
    border: 1px solid #a4a4a4;
    z-index: 2;
    background: #ffffff;
    transition: all .3s;
    font-size: 13px;
}

#blocos .content .news .noticias .noticia .texto .ler:hover {
    background: #eda412;
    border: 1px solid #eda412;
    color: #000000;
    transition: all .3s;
}

#blocos .content .news .modelo1 {
    display: flex;
    gap: 32px;
}

#blocos .content .news .modelo1 .entretenimento {
    width: 100%;
}

#blocos .content .news .modelo1 .entretenimento .noticias {
    gap: 32px;
    grid-template-columns: repeat(1, 2fr);
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia {
    flex-direction: row;
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia img {
    height: 185px;
    width: 280px;
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia .texto {
    font-size: 18px;
    padding: 16px 22px;
    gap: 15px;
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia .texto .principal a {
    text-decoration: none;
    color: #1f1f1f;
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia .texto strong {
    font-size: 18px;
}

#blocos .content .news .modelo1 .entretenimento .noticias .noticia .texto p {
    font-size: 13px;
    line-height: 22px;
    -webkit-line-clamp: 3;
}


#blocos .content .news .modelo1 .entretenimento .noticias .noticia .texto a {
    font-size: 12px;
}

#blocos .content .news .modelo1 .entretenimento .titulo strong {
    background: #f37a42;
}

#blocos .content .news .modelo1 .entretenimento .titulo::after {
    background: #f37a42;
    content: "";
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .modelo1 .gospel {
    max-width: 300px;
    width: 100%;
}

#blocos .content .news .modelo1 .gospel .titulo strong {
    background: #904ca7;
}

#blocos .content .news .modelo1 .gospel .titulo::after {
    background: #904ca7; 
    content: "";
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .modelo1 .gospel .noticias {
    grid-template-columns: repeat(1, 2fr);
    row-gap: 35px;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia {
  
}

#blocos .content .news .modelo1 .gospel .noticias .noticia img {
    height: 170px;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia .texto {
    padding: 12px 0;
    border: none;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia .texto .principal {
    gap: 0px;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia .texto .principal a {
    color: #1f1f1f;
    text-decoration: none;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia .texto strong {
    font-size: 14px;
}

#blocos .content .news .modelo1 .gospel .noticias .noticia .texto p {
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 18px;
}

#blocos .content .news .modelo2 {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 42px;
}

#blocos .content .news .modelo2 .esporte .titulo {
    
}

#blocos .content .news .modelo2 .destaquesModalidade {
    padding: 32px 0;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias {
    grid-template-columns: repeat(1, 2fr);
    padding: 0;
    padding-bottom: 32px;
    gap: 0;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia {
    gap: 2px;
    padding: 16px 0;
    border-bottom: 1px solid #cccccc;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia:last-child {
    border-bottom: none;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia a {
    text-decoration: none;
    color: #1f1f1f;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia strong {
    font-size: 17px;
    font-weight: 600;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia p {
    font-weight: 400;
    font-size: 13px;
    color: #4b4b4b;
    display: -webkit-box;
    line-height: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#blocos .content .news .modelo2 .destaquesModalidade .noticias .noticia span {
    font-weight: 400;
    font-size: 12px;
    color: #939393;
    padding-top: 4px;
}

#blocos .content .news .modelo2 .destaquesModalidade .categoria {
    display: flex;
    position: relative;
    overflow: hidden;
}

#blocos .content .news .modelo2 .destaquesModalidade .categoria a {
    transition: all .3s;
}

#blocos .content .news .modelo2 .destaquesModalidade .categoria a:hover img {
    transform: scale(1.1);
    transition: all .3s;
}

#blocos .content .news .modelo2 .destaquesModalidade .categoria img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all .3s;
}

#blocos .content .news .modelo2 .esporte .destaquesModalidade .categoria .texto {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(127deg, transparent, #000000);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

#blocos .content .news .modelo2 .destaquesModalidade .categoria .texto span {
    color: #ffffff;
    font-weight: 500;
    font-size: 32px;
    text-shadow: 0px 0px 32px #000000;
}

#blocos .content .news .modelo2 .esporte .titulo::after {
    background: #000000;
    content: "";
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .modelo2 .esporte .titulo strong {
    background: #000000;
}

#blocos .content .news .modelo2 .rural .titulo {
    
}

#blocos .content .news .modelo2 .rural .titulo::after {
    background: #000000;
    content: "";
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .modelo2 .rural .titulo strong {
    background: #000000;
}

#blocos .content .news .modelo2 .rural .destaquesModalidade .categoria .texto {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(127deg, transparent, #000000);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

#blocos .content .news .modelo2 .estados .titulo {
    
}

#blocos .content .news .modelo2 .estados .titulo::after {
    background: #000000;
    content: "";
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .news .modelo2 .estados .titulo strong {
    background: #000000;
}

#blocos .content .news .modelo2 .estados .destaquesModalidade .categoria .texto {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(127deg, transparent, #000000);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

#blocos .content .side {
    max-width: 230px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

#blocos .content .side .patrocinadores .titulo {
    position: relative;
}

#blocos .content .side .patrocinadores .titulo strong {
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background: #afafaf;
    padding: 4px 32px;
    z-index: 2;
    position: relative;
}

#blocos .content .side .patrocinadores .titulo::after {
    content: "";
    height: 6px;
    background: #afafaf;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .side .patrocinadores .patrocinador {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#blocos .content .side .patrocinadores .parceiro {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#blocos .content .side .patrocinadores .parceiro img {
    width: 100%;
}

#blocos .content .side .categorias {

}

#blocos .content .side .categorias .titulo {
    position: relative;
}

#blocos .content .side .categorias .titulo strong {
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background: #afafaf;
    padding: 4px 32px;
    z-index: 2;
    position: relative;
}

#blocos .content .side .categorias .titulo::after {
    content: "";
    height: 6px;
    background: #afafaf;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .side .categorias .categories {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0%    {opacity: 0; }
    100%  {opacity: 1; }
}

#blocos .content .side .categorias .categories summary {
    padding: 20px 20px;
    border-bottom: 1px solid #d3d3d3;
    color: #1f1f1f;
    cursor: pointer;
    background: #ffffff;
    text-transform: lowercase;
}

#blocos .content .side .categorias .categories summary::-webkit-details-marker {
    display: none;
}

#blocos .content .side .categorias .categories summary a {
    text-decoration: none;
    color: #1f1f1f;
    transition: all .3s;
}

#blocos .content .side .categorias .categories summary a:hover {
    color: #afafaf;
    transition: all .3s;
}

#blocos .content .side .categorias .categories summary::first-letter {
    text-transform: uppercase;
}

#blocos .content .side .categorias .categories .links {
    display: flex;
    flex-direction: column;
}

#blocos .content .side .categorias .categories .links a {
    text-decoration: none;
    color: #545454;
    padding: 16px;
    border-bottom: 1px solid #d1d1d1;
    font-size: 14px;
    transition: all .3s;
    background: #ffffff;
}

#blocos .content .side .categorias .categories .links a:hover {
    color: #1283ca;
    transition: all .3s;
}

#blocos .content .side .sociais .titulo {
    position: relative;
}

#blocos .content .side .sociais .titulo strong {
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #000000;
    background: #ffb113;
    padding: 4px 32px;
    z-index: 2;
    position: relative;
}

#blocos .content .side .sociais .titulo::after {
    content: "";
    height: 6px;
    background: #ffb113;
    width: 100%;
    position: absolute;
    bottom: -4px;
    right: 0;
    z-index: 1;
}

#blocos .content .side .sociais .redes {
    padding: 32px 0;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    text-align: center;
    gap: 16px;
    row-gap: 16px;
}

#blocos .content .side .sociais .redes a {
    text-decoration: none;
    color: #000000;
    padding: 12px;
    border: 1px solid #c6c6c6;
    transition: all .3s;
}

#blocos .content .side .sociais .redes a:hover {
    background: #ffb113;
    border: 1px solid #ffb113;
    color: #000000;
    transition: all .3s;
}

#blocos .content .side .sociais .redes a i {
    font-size: 26px;
}


#rodape .content {

}

#rodape .content .topo {
    background: #000000;
}

#rodape .content .topo .conteudo {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#rodape .content .topo .conteudo .infos {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 32px;
}

#rodape .content .topo .conteudo .infos img {
    max-width: 350px;
    width: 350px;
    filter: grayscale(1);
}

#rodape .content .topo .conteudo .infos p {
    color: #cccccc;
    font-size: 14px;
}

#rodape .content .topo .conteudo .infos .sociais {
    display: flex;
    gap: 12px;
}

#rodape .content .topo .conteudo .infos .sociais a {
    background: #ffb113;
    color: #000000;
    padding: 8px 8px;
    border-radius: 2px;
    font-size: 18px;
    transition: all .3s;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

#rodape .content .topo .conteudo .infos .sociais a:hover {
    transform: scale(1.1);
    transition: all .3s;
}

#rodape .content .topo .conteudo .ultimas {
    display: flex;
    gap: 48px;
    align-items: center;
}

#rodape .content .topo .conteudo .ultimas strong {
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

#rodape .content .topo .conteudo .ultimas .noticias {
    display: flex;
    gap: 16px;
    align-items: center;
}

#rodape .content .topo .conteudo .ultimas .noticias a {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    transition: all .3s;
    text-align: center;
    font-size: 15px;
    text-transform: lowercase;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#rodape .content .topo .conteudo .ultimas .noticias a:hover {
    background: #ffffff;
    color: #1f1f1f;
    transition: all .3s;
}

#rodape .content .baixo {
    background: #050505;
}

#rodape .content .baixo .conteudo {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

#rodape .content .baixo .conteudo span {
    color: #cccccc;
}

#rodape .content .baixo .conteudo .links {
    display: flex;
    gap: 32px;
    justify-content: center;
}

#rodape .content .baixo .conteudo .links a {
    text-decoration: none;
    color: #ffffff;
    transition: all .3s;
}

#rodape .content .baixo .conteudo .links a:hover {
    color: #ffb113;
    transition: all .3s;
}

#productBrief {
    background: #ffffff;
}

#productBrief .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 64px 0;
}

#productBrief .content .tituloCategoria {
    width: 100%;
    display: block;
    text-align: center;
    padding-bottom: 32px;
    text-decoration: none;
    font-size: 32px;
    color: #000000;
    text-transform: lowercase;
}

#productBrief .content .tituloCategoria::first-letter {
    text-transform: uppercase;
}

#productBrief .content .breadcumbs {
    padding: 12px 0;
    border-radius: 32px;
    background: #5b97f9;
}

#productBrief .content .breadcumbs a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    padding: 0 36px;
    border-right: 1px solid #3865ae;
    transition: all .3s;
}

#productBrief .content .breadcumbs a:hover {
    color: #284f8f;
    transition: all .3s;
}

#productBrief .content .breadcumbs a:last-child {
    border: none;
    color: #284f8f;
    font-weight: 600;
}

#productBrief .content .blocos {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    width: 100%;
}

#productBrief .content .blocos .semCadastro {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 64px 0;
}

#productBrief .content .blocos .semCadastro strong {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
}

#productBrief .content .blocos .semCadastro span {
    color: #747474;
    font-size: 18px;
}

#productBrief .content .blocos .conteudoSubcategorias {
    max-width: 325px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#productBrief .content .blocos .conteudoSubcategorias .tituloSubcategorias {
    font-weight: 600;
}

#productBrief .content .subcategorias {
    display: flex;
    flex-direction: column;
    border: 1px solid #cccccc;
}

#productBrief .content .subcategorias .subcategoria {
    padding: 16px;
    border-bottom: 1px solid #cccccc
}

#productBrief .content .subcategorias .subcategoria:last-child {
    border: none;
}

#productBrief .content .subcategorias .subcategoria .categoria {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

#productBrief .content .subcategorias .subcategoria a {
    text-decoration: none;
    color: #727272;
    transition: all .3s;
}

#productBrief .content .subcategorias .subcategoria a:hover {
    color: #1380c8;
    transition: all .3s;
}

#productBrief .content .subcategorias .subcategoria .categoria strong {
    font-weight: normal;
}

#productBrief .content .subcategorias .subcategoria .categoria b {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#productBrief .content .produtos {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 16px;
    width: 100%;
}

#productBrief .content .produtos .produto {
    border: 1px solid #cccccc;
    overflow: hidden;
    transition: all .3s;
}

#productBrief .content .produtos .produto:hover .textos {
    transition: all .3s;
}

#productBrief .content .produtos .produto:hover .textos a {
    color: #afafaf;
    transition: all .3s;
}

#productBrief .content .produtos .produto a img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    transition: all .3s;
}

#productBrief .content .produtos .produto a img:hover {
    transform: scale(1.1);
    transition: all .3s;
}

#productBrief .content .produtos .produto .textos {
    padding: 16px;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
    transition: all .3s;
}

#productBrief .content .produtos .produto .textos a strong {
    font-weight: 600;
    font-size: 15px;
}

#productBrief .content .produtos .produto .textos a {
    color: #1f1f1f;
    text-decoration: none;
    display: -webkit-box;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all .3s;
}

#productDetailed {
    background: #ffffff;
}

#productDetailed .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 0;
    max-width: 928px;
    width: 100%;
    margin: 0 auto;
}

#productDetailed .content .principal {
    display: flex;
    flex-direction: column;
}

#productDetailed .content .categoria {
    color: #afafaf;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}

#productDetailed .content .categoria:hover {
    color: #ffb113;
    transition: all .3s;
}

#productDetailed .content .titulo strong {
    color: #272727;
    font-size: 36px;
    font-weight: 600;
}

#productDetailed .content .imagem img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 0px 32px #00000030;
}

#productDetailed .content .descricao p {
    color: #3b3b3b;
    text-transform: none;
    line-height: 32px;
}

#productDetailed .content .fotos {
    background: linear-gradient(45deg, transparent, #f2f2f2);
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
}

#productDetailed .content .fotos strong {
    color: #afafaf;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    transform: rotate(270deg);
}

#productDetailed .content .fotos .miniaturas {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 16px;
}

#productDetailed .content .fotos .miniaturas .secundarias {

}

#productDetailed .content .fotos .miniaturas .secundarias img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    filter: grayscale(1);
    transition: all .3s;
}

#productDetailed .content .fotos .miniaturas .secundarias img:hover {
    filter: none;
    transition: all .3s;
}

#productDetailed .content .criador {
    max-width: 449px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffc95e, #eda412);
    box-shadow: 8px 8px 18px #0000002b;
    color: #000000;
    border-radius: 12px;
    padding: 32px;
}

#productDetailed .content .criador span {
    color: #000000;
}

#productDetailed .content .criador strong {
    font-weight: 600;
    font-size: 28px;
}
/* FIM DO CSS */



/* &#1043;&#1036;NICIO DO RESPONSIVO */
@media(max-width: 900px) {
    #cabecalho .content .cima .top .links {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    #cabecalho .content .cima .top {
        flex-direction: column;
        gap: 8px;
    }

    #cabecalho .content .meio .mid {
        flex-direction: column;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo .links .link a {
        color: #000000;
    }

    #blocos .content {
        flex-direction: column;
    }

    #blocos .content .side {
        max-width: unset;
        flex-direction: unset;
        justify-content: space-between;
    }

    #rodape .content .topo .conteudo .infos {
        flex-direction: column;
        text-align: center;
    }

    #rodape .content .topo .conteudo .ultimas {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 728px) {
    #cabecalho .content .baixo .menu {
        display: none !important;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo {
        display: block;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo form {
        width: 100%;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo label[for="bt_menu"]{
        display: block;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo #bt_menu:checked ~ .links {
        left: 0;
        transition: all .4s;
        opacity: 1;
    }

    #cabecalho .content .baixo .bottom .conteudoMenu .pesquisar .menuResponsivo .links {
        position: absolute;
        margin-top: 16px;
        width: 100%;
        background:#c9c9c9;
        opacity: 0;
        transition: all .5s;
        padding: 22px 0;
        left: -2000px;
        padding: 32px;
        align-items: center;
        flex-direction: column;
        z-index: 4;
    }

    #slider .content {
        flex-direction: column;
    }

    #slider .content .slide:first-child {
        max-width: unset;
    }

    #slider .content .slide {
        max-width: unset;
    }

    #slider .content .slide:last-child {
        max-width: unset;
    }

    #slider .content .slide img {
        height: 300px;
    }

    #destaques .content .wrapper i:first-child {
        left: -12px;
    }

    #destaques .content .wrapper i:last-child {
        right: -12px;
    }

    #blocos .content .news .noticias {
        grid-template-columns: repeat(1, 2fr);
    }

    #blocos .content .news .modelo1 {
        flex-direction: column;
        gap: unset;
    }

    #blocos .content .news .modelo1 .gospel {
        max-width: unset;
    }

    #blocos .content .news .modelo2 {
        grid-template-columns: repeat(1, 2fr);
    }

    #blocos .content .side {
        flex-direction: column;
    }

    #rodape .content .topo .conteudo .ultimas .noticias {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
    }

    #rodape .content .baixo .conteudo {
        flex-direction: column-reverse;
        text-align: center;
    }

    #productBrief .content .produtos {
        grid-template-columns: repeat(1, 2fr) !important;
    }

    #productBrief .content .blocos {
        flex-direction: column;
    }

    #productDetailed .content .fotos .miniaturas {
        grid-template-columns: repeat(1, 2fr);
    }

    #productDetailed .content .criador {
        text-align: center;
    }

    #productDetailed .content .principal {
        gap: 8px;
    }

    #productDetailed .content .titulo strong {
        font-size: 26px;
        line-height: 28px;
    }
}

@media(max-width: 430px) {
    #cabecalho .content .meio .mid .logo {
        width: 280px;
    }

    #rodape .content .topo .conteudo .infos img {
        width: 100%;
    }

    #rodape .content .topo .conteudo .ultimas .noticias {
        grid-template-columns: repeat(1, 2fr);
    }
}

/* FIM DO RESPONSIVO */


        .sliderx1 {
            width: 900px;
            height: 130px;
            overflow: hidden;
            position: relative;
        }
        .sliderx1 img {
            width: 900px;
            height: 130px;
            display: none;
        }
        .sliderx1 img.active {
            display: block;
        }