body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f0f0f0;
}

.container{
max-width:1200px;
margin:auto;
padding:10px;
}

.topo{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
padding:10px;
}

.logo img{
height:70px;
}

.banner img{
max-width:100%;
}

.player-topo{
background:#000;
padding:10px;
text-align:center;
}

nav{
background:#111;
}

nav ul{
margin:0;
padding:0;
list-style:none;
display:flex;
flex-wrap:wrap;
}

nav ul li a{
color:#fff;
padding:12px 15px;
display:block;
text-decoration:none;
}

nav ul li a:hover{
background:#444;
}

.noticia{
background:#fff;
margin:10px;
padding:10px;
border-radius:5px;
}

.noticia img{
width:100%;
height:auto;
}

.anuncios{
margin:20px 0;
text-align:center;
}

.anuncios img{
max-width:100%;
margin:5px;
}

.app{
background:#fff;
padding:20px;
text-align:center;
}

.btn{
background:#e60023;
color:#fff;
padding:10px 20px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

.redes a{
color:#fff;
margin:0 10px;
text-decoration:none;
}
.redes{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:10px;
}

.redes a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#222;
color:#fff;
border-radius:50%;
font-size:18px;
transition:0.3s;
text-decoration:none;
}

.redes a:hover{
transform:scale(1.1);
}

.redes a:nth-child(1):hover{
background:#1877f2;
}

.redes a:nth-child(2):hover{
background:#e4405f;
}

.redes a:nth-child(3):hover{
background:#ff0000;
}

.redes a:nth-child(4):hover{
background:#000;
}
/* REDES SOCIAIS */

.social{
display:flex;
justify-content:center;
gap:20px;
margin:20px 0;
}

.social a{
font-size:28px;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
}

.fb{background:#1877f2;}
.ig{background:#e4405f;}
.yt{background:#ff0000;}
.tt{background:#000;}


/* CAROUSEL */

.carousel{
display:flex;
overflow:auto;
gap:20px;
margin:20px 0;
}

.slide{
min-width:300px;
position:relative;
}

.slide img{
width:100%;
border-radius:10px;
}

.slide-title{
position:absolute;
bottom:10px;
left:10px;
background:rgba(0,0,0,0.6);
color:white;
padding:8px;
}


/* ÁREA DE NOTÍCIAS */

.noticias-area{
display:grid;
grid-template-columns:3fr 1fr;
gap:30px;
}

.noticias-principais .noticia{
margin-bottom:20px;
}

.noticia img{
width:100%;
border-radius:8px;
}


/* SIDEBAR */

.sidebar-noticias .mini-noticia{
display:flex;
gap:10px;
margin-bottom:15px;
}

.sidebar-noticias img{
width:80px;
height:60px;
object-fit:cover;
}
/* MENU */



/* LINHA ANIMADA */

.menu-links li a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-3px;
background:#38bdf8;
transition:0.3s;
}

.menu-links li a:hover::after{
width:100%;
}

/* MOBILE */

.menu-mobile{
display:none;
color:white;
font-size:20px;
cursor:pointer;
}

/* RESPONSIVO */

@media(max-width:768px){

.menu-links{
display:none;
flex-direction:column;
background:#111;
position:absolute;
top:55px;
left:0;
width:100%;
padding:20px;
}

.menu-mobile{
display:block;
}

}
/* ANÚNCIOS SLIDER */

.anuncios {
    overflow: hidden;
    margin: 30px 0;
}

.anuncios-track {
    display: flex;
    gap: 20px;
    animation: scrollAds 8s linear infinite;
}

/* pausar quando passar o mouse */

.anuncios-track:hover {
    animation-play-state: paused;
}

.anuncio {
    min-width: 300px;
}

.anuncio img{
width:100%;
border-radius:8px;
}

/* ANIMAÇÃO */

@keyframes scrollAds{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* MENU */


/* LOGO */

.menu-logo a {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    text-decoration: none;
}

/* LINKS */

.menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding-bottom: 4px;
    position: relative;
}

/* LINHA HOVER */

.menu-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #2563eb;
    transition: 0.3s;
}

.menu-links a:hover::after {
    width: 100%;
}

/* DIREITA */

.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUSCA */

.menu-search {
    font-size: 18px;
    cursor: pointer;
    color: #444;
}

/* BOTÃO APP */

.btn-app {
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}
/* MENU PRINCIPAL */



/* HOVER DESTACADO */

.menu-links a:hover{
color:#38bdf8;
}

/* LINHA EMBAIXO */

.menu-links li::after{
content:"";
position:absolute;
width:0;
height:3px;
background:#38bdf8;
left:0;
bottom:-3px;
transition:0.3s;
}

.menu-links li:hover::after{
width:100%;
}
/* MENU PORTAL */

.menu-portal {
    background: white;
    border-bottom: 3px solid #2563eb;
}

.menu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

/* BOTÕES DO MENU */

.menu-container a {
    text-decoration: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    color: white;
}

/* CORES */

.menu-home {
    background: #2563eb;
}

.menu-item:nth-child(2) {
    background: #ef4444;
}

.menu-item:nth-child(3) {
    background: #22c55e;
}

.menu-item:nth-child(4) {
    background: #f59e0b;
}

.menu-item:nth-child(5) {
    background: #8b5cf6;
}

.menu-item:nth-child(6) {
    background: #06b6d4;
}

.menu-item:nth-child(7) {
    background: #ec4899;
}

/* HOVER */

.menu-container a:hover {
    opacity: 0.8;
}
.topo{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
background:white;
}

.logo img{
height:70px;
}

.banner-topo img{
max-height:80px;
}
.topo{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
background:white;
}

.logo img{
height:70px;
}

.banner-topo img{
max-height:80px;
}
.player-topo{
width:100%;
background:#111;
padding:10px;
text-align:center;
}

.player-topo iframe{
max-width:100%;
}
.videos{
margin:40px 0;
}

.videos h2{
margin-bottom:20px;
}

.videos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.video iframe{
width:100%;
height:200px;
border-radius:8px;
}

.video p{
margin-top:5px;
font-weight:bold;
}
.sec-categorias{
padding:40px 0;
background:#f4f4f4;
}

.grid-categorias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.categoria-box{
background:#fff;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.categoria-box h3{
margin-bottom:10px;
}

.categoria-box a{
text-decoration:none;
color:#fff;
background:#0073ff;
padding:8px 15px;
border-radius:5px;
}
.sec-categorias{
padding:50px 0;
background:#f5f5f5;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #ff0000;
padding-left:10px;
}

.grid-noticias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:140px;
object-fit:cover;
}

.card-noticia h3{
font-size:16px;
padding:10px;
}

.card-noticia a{
display:block;
text-align:center;
background:#ff0000;
color:#fff;
padding:8px;
text-decoration:none;
}
.sec-categorias{
padding:50px 0;
background:#f4f4f4;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #ff0000;
padding-left:10px;
}

.grid-noticias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:140px;
object-fit:cover;
}

.card-noticia h3{
font-size:16px;
padding:10px;
}

.card-noticia a{
display:block;
text-align:center;
background:#ff0000;
color:#fff;
padding:8px;
text-decoration:none;
}
.sec-categorias {
    padding: 50px 0;
    background: #f4f4f4;
}

.categoria-bloco {
    margin-bottom: 50px;
}

.titulo-categoria {
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 5px solid #ff0000;
    padding-left: 10px;
}

.grid-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card-noticia {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* efeito ao passar o mouse */

.card-noticia:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* imagem */

.card-noticia img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* zoom na imagem */

.card-noticia:hover img {
    transform: scale(1.08);
}

/* titulo */

.card-noticia h3 {
    font-size: 16px;
    padding: 12px;
    min-height: 60px;
}

/* botão */

.card-noticia a {
    display: block;
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

/* hover botão */

.card-noticia a:hover {
    background: #cc0000;
}
.grid-noticias{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.card-noticia img{
width:100%;
height:160px;
object-fit:cover;
border-radius:6px;
}

.card-noticia h3{
font-size:16px;
margin:10px 0;
}
/* CATEGORIAS */

.sec-categorias{
margin-top:40px;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
margin-bottom:20px;
font-size:22px;
border-left:5px solid #2563eb;
padding-left:10px;
}

/* GRID DE NOTÍCIAS */

.grid-noticias{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:20px;
}

/* CARD */

.card-noticia{
background:#fff;
border-radius:6px;
overflow:hidden;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:170px;
object-fit:cover;
}

.card-noticia h3{
font-size:15px;
padding:10px;
}

.card-noticia a{
display:block;
padding:0 10px 10px;
color:#2563eb;
font-weight:bold;
text-decoration:none;
}
/* CATEGORIAS HOME */

.categorias-home {
    background: #fff;
    padding: 40px 0;
}

.categorias-home .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.categoria-coluna h2 {
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

/* NOTÍCIA */

.noticia-coluna {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.noticia-coluna img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.noticia-coluna a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}
/* CATEGORIAS HOME */

.categorias-home {
    margin-top: 40px;
}

.categoria-linha {
    margin-bottom: 40px;
}

.titulo-categoria {
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

/* LINHA COM 3 NOTÍCIAS */

.linha-noticias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */

.card-noticia {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-noticia img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-noticia h3 {
    font-size: 15px;
    padding: 10px;
}

.card-noticia a {
    text-decoration: none;
    color: #000;
}
/* CARD NOTÍCIA MELHORADO */

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:170px;
object-fit:cover;
}

.texto-noticia{
padding:12px;
}

.texto-noticia h3{
font-size:16px;
margin-bottom:8px;
color:#111;
}

.texto-noticia p{
font-size:14px;
color:#555;
line-height:1.4;
margin-bottom:10px;
}

.btn-ler{
display:inline-block;
background:#e60023;
color:#fff;
padding:6px 12px;
border-radius:4px;
text-decoration:none;
font-size:13px;
}

.btn-ler:hover{
background:#c4001d;
}
/* TITULO */

.titulo-secao{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #e60023;
padding-left:10px;
}

/* GRID */

.grid-ultimas{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}

/* NOTÍCIA DESTAQUE */

.noticia-destaque{
position:relative;
}

.noticia-destaque img{
width:100%;
height:350px;
object-fit:cover;
border-radius:8px;
}

.overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(transparent, rgba(0,0,0,0.8));
padding:20px;
border-radius:8px;
}

.overlay h3{
color:#fff;
font-size:22px;
}

.overlay a{
color:#fff;
text-decoration:none;
}

/* NOTÍCIAS LATERAIS */

.noticias-lado{
display:grid;
grid-template-columns:1fr;
gap:15px;
}

.noticia-card{
display:flex;
gap:10px;
background:#fff;
padding:10px;
border-radius:6px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.noticia-card img{
width:100px;
height:70px;
object-fit:cover;
border-radius:4px;
}

.noticia-card h4{
font-size:14px;
}

.noticia-card a{
text-decoration:none;
color:#000;
}

/* HOVER */

.noticia-card:hover{
transform:translateY(-3px);
transition:0.2s;
}
/* SLIDER */

.slider-noticias {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide-noticia {
    min-width: 100%;
    position: relative;
}

.slide-noticia img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.slide-texto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.slide-texto h3 {
    color: #fff;
    font-size: 22px;
}

.slide-texto a {
    color: #fff;
    text-decoration: none;
}
/* SLIDER DESTAQUE */

.noticias-destaque{
margin:40px 0;
}

.slider-destaque{
position:relative;
overflow:hidden;
border-radius:10px;
}

.slides-destaque{
display:flex;
transition:transform 0.7s ease;
}

.slide-destaque{
min-width:100%;
position:relative;
}

.slide-destaque img{
width:100%;
height:420px;
object-fit:cover;
}

/* TEXTO SOBRE A IMAGEM */

.texto-slide{
position:absolute;
bottom:0;
left:0;
right:0;
padding:30px;
background:linear-gradient(transparent, rgba(0,0,0,0.85));
}

.texto-slide h2{
color:#fff;
font-size:30px;
max-width:70%;
}

.texto-slide a{
color:#fff;
text-decoration:none;
}

/* EFEITO HOVER */

.slide-destaque img{
transition:transform 0.5s;
}

.slide-destaque:hover img{
transform:scale(1.05);
}
/* SLIDER PORTAL */

.slider-portal{
position:relative;
overflow:hidden;
}

.slides-portal{
display:flex;
transition:0.6s;
}

.slide-grupo{
min-width:100%;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:15px;
}

.noticia-grande img{
height:400px;
width:100%;
object-fit:cover;
}

.noticia-pequena img{
height:190px;
width:100%;
object-fit:cover;
}

.noticia-grande,
.noticia-pequena{
position:relative;
overflow:hidden;
border-radius:8px;
}

.info-noticia{
position:absolute;
bottom:0;
left:0;
right:0;
padding:15px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

.info-noticia h3{
font-size:18px;
}

.info-noticia a{
color:#fff;
text-decoration:none;
}

/* CATEGORIA */

.categoria{
background:#e60023;
padding:3px 8px;
font-size:12px;
border-radius:4px;
margin-right:10px;
}

/* DATA */

.data{
font-size:12px;
opacity:0.8;
}

/* SETAS */

.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:#fff;
border:none;
padding:10px;
cursor:pointer;
z-index:10;
}

.prev{ left:10px; }
.next{ right:10px; }

/* DOTS */

.dots{
text-align:center;
margin-top:10px;
}

.dots span{
display:inline-block;
width:10px;
height:10px;
background:#ccc;
margin:5px;
border-radius:50%;
cursor:pointer;
}

.dots .active{
background:#e60023;
}
/* TICKER DE NOTÍCIAS */

.ticker-noticias{
display:flex;
align-items:center;
background:#111;
color:#fff;
padding:8px 0;
overflow:hidden;
}

.ticker-label{
background:#e60023;
padding:8px 15px;
font-weight:bold;
margin-right:10px;
}

.ticker-wrapper{
overflow:hidden;
flex:1;
}

.ticker-move{
display:flex;
gap:40px;
animation:ticker 30s linear infinite;
white-space:nowrap;
}

.ticker-item{
color:#fff;
text-decoration:none;
font-size:14px;
}

.ticker-item:hover{
text-decoration:underline;
}

/* ANIMAÇÃO */

@keyframes ticker{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}
/* APP + ENQUETE */

.app-enquete{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin:40px 0;
}

/* APP */

.app-box{
background:#fff;
padding:20px;
text-align:center;
border-radius:8px;
}

/* ENQUETE */

.enquete-box{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.enquete-box h3{
margin-bottom:15px;
}

.opcao{
display:block;
margin-bottom:10px;
}

.btn-votar{
background:#e60023;
color:#fff;
border:none;
padding:8px 15px;
cursor:pointer;
margin-top:10px;
}
/* MENU PORTAL */


/* HOVER */


/* TOPO DO SITE */

/* TOPO DO SITE */

.topo{
display:grid;
grid-template-columns:200px 1fr 200px;
align-items:center;
gap:20px;
padding:10px 20px;
background:#fff;
}

/* LOGO */

.logo img{
height:70px;
}

/* BANNER */

.banner-topo{
text-align:center;
}

.banner-topo img{
max-width:100%;
max-height:90px;
}

/* DATA E RELÓGIO */

.data-relogio{
text-align:right;
font-size:14px;
}

#relogio{
font-size:20px;
font-weight:bold;
margin-top:5px;
}


/* RESPONSIVO */

@media(max-width:768px){

.topo{
grid-template-columns:1fr;
text-align:center;
}

.logo{
margin-bottom:10px;
}

.banner-topo{
margin-bottom:10px;
}

.data-relogio{
text-align:center;
}

.logo img{
height:60px;
}

.banner-topo img{
max-height:80px;
}

}
.share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.share a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.share-fb {
    background: #1877f2;
}

.share-wa {
    background: #25d366;
}

.share-tg {
    background: #0088cc;
}

.share-x {
    background: #000;
}
.pagina {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

/* título */

.titulo-pagina {
    margin-bottom: 20px;
}

/* imagem */

.pagina-imagem img {
    max-width: 100%;
    margin: 20px auto;
    display: block;
    border-radius: 6px;
}

/* texto */

.pagina-texto {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* vídeo */

.pagina-video iframe {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-radius: 6px;
}
.noticia-pagina {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 25px;
}

.subtitulo {
    font-size: 20px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: normal;
}

.data-noticia {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.imagem-noticia img {
    width: 100%;
    border-radius: 6px;
    margin: 15px 0;
}

.texto-noticia {
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.video-noticia iframe {
    width: 100%;
    height: 420px;
    border-radius: 6px;
}

.share {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.share a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
}

.share-fb {
    background: #1877f2;
}

.share-wa {
    background: #25d366;
}

.share-tg {
    background: #0088cc;
}

.share-x {
    background: #000;
}
#menu-sort{
list-style:none;
padding:0;
max-width:500px;
}

#menu-sort li{
background:#ffffff;
padding:12px;
margin:6px 0;
border:1px solid #ffffff;
cursor:move;
border-radius:4px;
color:#ffffff; /* texto preto */
font-weight:500;
}
.editor-toolbar {
    background: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.editor-toolbar button {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

#editor {
    min-height: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
}
/* MENU */

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f0f0f0;
}

.container{
max-width:1200px;
margin:auto;
padding:10px;
}

.topo{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
padding:10px;
}

.logo img{
height:70px;
}

.banner img{
max-width:100%;
}

.player-topo{
background:#000;
padding:10px;
text-align:center;
}

nav{
background:#111;
}

nav ul{
margin:0;
padding:0;
list-style:none;
display:flex;
flex-wrap:wrap;
}

nav ul li a{
color:#fff;
padding:12px 15px;
display:block;
text-decoration:none;
}

nav ul li a:hover{
background:#444;
}

.noticia{
background:#fff;
margin:10px;
padding:10px;
border-radius:5px;
}

.noticia img{
width:100%;
height:auto;
}

.anuncios{
margin:20px 0;
text-align:center;
}

.anuncios img{
max-width:100%;
margin:5px;
}

.app{
background:#fff;
padding:20px;
text-align:center;
}

.btn{
background:#e60023;
color:#fff;
padding:10px 20px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

.redes a{
color:#fff;
margin:0 10px;
text-decoration:none;
}
.redes{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:10px;
}

.redes a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#222;
color:#fff;
border-radius:50%;
font-size:18px;
transition:0.3s;
text-decoration:none;
}

.redes a:hover{
transform:scale(1.1);
}

.redes a:nth-child(1):hover{
background:#1877f2;
}

.redes a:nth-child(2):hover{
background:#e4405f;
}

.redes a:nth-child(3):hover{
background:#ff0000;
}

.redes a:nth-child(4):hover{
background:#000;
}
/* REDES SOCIAIS */

.social{
display:flex;
justify-content:center;
gap:20px;
margin:20px 0;
}

.social a{
font-size:28px;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
}

.fb{background:#1877f2;}
.ig{background:#e4405f;}
.yt{background:#ff0000;}
.tt{background:#000;}


/* CAROUSEL */

.carousel{
display:flex;
overflow:auto;
gap:20px;
margin:20px 0;
}

.slide{
min-width:300px;
position:relative;
}

.slide img{
width:100%;
border-radius:10px;
}

.slide-title{
position:absolute;
bottom:10px;
left:10px;
background:rgba(0,0,0,0.6);
color:white;
padding:8px;
}


/* ÁREA DE NOTÍCIAS */

.noticias-area{
display:grid;
grid-template-columns:3fr 1fr;
gap:30px;
}

.noticias-principais .noticia{
margin-bottom:20px;
}

.noticia img{
width:100%;
border-radius:8px;
}


/* SIDEBAR */

.sidebar-noticias .mini-noticia{
display:flex;
gap:10px;
margin-bottom:15px;
}

.sidebar-noticias img{
width:80px;
height:60px;
object-fit:cover;
}
/* MENU */

.menu{
background:#111;
position:sticky;
top:0;
z-index:999;
}

.menu-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 20px;
}

.logo-menu{
color:white;
font-size:20px;
font-weight:bold;
text-decoration:none;
}

/* LINKS */

.menu-links{
list-style:none;
display:flex;
gap:20px;
}

.menu-links li a{
color:white;
text-decoration:none;
font-size:14px;
padding:6px 0;
position:relative;
}

/* LINHA ANIMADA */

.menu-links li a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-3px;
background:#38bdf8;
transition:0.3s;
}

.menu-links li a:hover::after{
width:100%;
}

/* MOBILE */

.menu-mobile{
display:none;
color:white;
font-size:20px;
cursor:pointer;
}

/* RESPONSIVO */

@media(max-width:768px){

.menu-links{
display:none;
flex-direction:column;
background:#111;
position:absolute;
top:55px;
left:0;
width:100%;
padding:20px;
}

.menu-mobile{
display:block;
}

}
/* ANÚNCIOS SLIDER */

.anuncios {
    overflow: hidden;
    margin: 30px 0;
}

.anuncios-track {
    display: flex;
    gap: 20px;
    animation: scrollAds 8s linear infinite;
}

/* pausar quando passar o mouse */

.anuncios-track:hover {
    animation-play-state: paused;
}

.anuncio {
    min-width: 300px;
}

.anuncio img{
width:100%;
border-radius:8px;
}

/* ANIMAÇÃO */

@keyframes scrollAds{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* MENU */

.menu {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

/* LOGO */

.menu-logo a {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    text-decoration: none;
}

/* LINKS */

.menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding-bottom: 4px;
    position: relative;
}

/* LINHA HOVER */

.menu-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #2563eb;
    transition: 0.3s;
}

.menu-links a:hover::after {
    width: 100%;
}

/* DIREITA */

.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUSCA */

.menu-search {
    font-size: 18px;
    cursor: pointer;
    color: #444;
}

/* BOTÃO APP */

.btn-app {
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}
/* MENU PRINCIPAL */

.menu{
background:#111;
border-bottom:3px solid #2563eb;
}

.menu-container{
max-width:1200px;
margin:auto;
padding:0 15px;
}

.menu-links{
display:flex;
list-style:none;
gap:25px;
}

.menu-links li{
position:relative;
}

.menu-links a{
display:block;
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:600;
padding:14px 0;
}

/* HOVER DESTACADO */

.menu-links a:hover{
color:#38bdf8;
}

/* LINHA EMBAIXO */

.menu-links li::after{
content:"";
position:absolute;
width:0;
height:3px;
background:#38bdf8;
left:0;
bottom:-3px;
transition:0.3s;
}

.menu-links li:hover::after{
width:100%;
}
/* MENU PORTAL */

.menu-portal {
    background: white;
    border-bottom: 3px solid #2563eb;
}

.menu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

/* BOTÕES DO MENU */

.menu-container a {
    text-decoration: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    color: white;
}

/* CORES */

.menu-home {
    background: #2563eb;
}

.menu-item:nth-child(2) {
    background: #ef4444;
}

.menu-item:nth-child(3) {
    background: #22c55e;
}

.menu-item:nth-child(4) {
    background: #f59e0b;
}

.menu-item:nth-child(5) {
    background: #8b5cf6;
}

.menu-item:nth-child(6) {
    background: #06b6d4;
}

.menu-item:nth-child(7) {
    background: #ec4899;
}

/* HOVER */

.menu-container a:hover {
    opacity: 0.8;
}
.topo{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
background:white;
}

.logo img{
height:70px;
}

.banner-topo img{
max-height:80px;
}
.topo{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
background:white;
}

.logo img{
height:70px;
}

.banner-topo img{
max-height:80px;
}
.player-topo{
width:100%;
background:#111;
padding:10px;
text-align:center;
}

.player-topo iframe{
max-width:100%;
}
.videos{
margin:40px 0;
}

.videos h2{
margin-bottom:20px;
}

.videos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.video iframe{
width:100%;
height:200px;
border-radius:8px;
}

.video p{
margin-top:5px;
font-weight:bold;
}
.sec-categorias{
padding:40px 0;
background:#f4f4f4;
}

.grid-categorias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.categoria-box{
background:#fff;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.categoria-box h3{
margin-bottom:10px;
}

.categoria-box a{
text-decoration:none;
color:#fff;
background:#0073ff;
padding:8px 15px;
border-radius:5px;
}
.sec-categorias{
padding:50px 0;
background:#f5f5f5;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #ff0000;
padding-left:10px;
}

.grid-noticias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:140px;
object-fit:cover;
}

.card-noticia h3{
font-size:16px;
padding:10px;
}

.card-noticia a{
display:block;
text-align:center;
background:#ff0000;
color:#fff;
padding:8px;
text-decoration:none;
}
.sec-categorias{
padding:50px 0;
background:#f4f4f4;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #ff0000;
padding-left:10px;
}

.grid-noticias{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:140px;
object-fit:cover;
}

.card-noticia h3{
font-size:16px;
padding:10px;
}

.card-noticia a{
display:block;
text-align:center;
background:#ff0000;
color:#fff;
padding:8px;
text-decoration:none;
}
.sec-categorias {
    padding: 50px 0;
    background: #f4f4f4;
}

.categoria-bloco {
    margin-bottom: 50px;
}

.titulo-categoria {
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 5px solid #ff0000;
    padding-left: 10px;
}

.grid-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card-noticia {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* efeito ao passar o mouse */

.card-noticia:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* imagem */

.card-noticia img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* zoom na imagem */

.card-noticia:hover img {
    transform: scale(1.08);
}

/* titulo */

.card-noticia h3 {
    font-size: 16px;
    padding: 12px;
    min-height: 60px;
}

/* botão */

.card-noticia a {
    display: block;
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

/* hover botão */

.card-noticia a:hover {
    background: #cc0000;
}
.grid-noticias{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.card-noticia img{
width:100%;
height:160px;
object-fit:cover;
border-radius:6px;
}

.card-noticia h3{
font-size:16px;
margin:10px 0;
}
/* CATEGORIAS */

.sec-categorias{
margin-top:40px;
}

.categoria-bloco{
margin-bottom:40px;
}

.titulo-categoria{
margin-bottom:20px;
font-size:22px;
border-left:5px solid #2563eb;
padding-left:10px;
}

/* GRID DE NOTÍCIAS */

.grid-noticias{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:20px;
}

/* CARD */

.card-noticia{
background:#fff;
border-radius:6px;
overflow:hidden;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:170px;
object-fit:cover;
}

.card-noticia h3{
font-size:15px;
padding:10px;
}

.card-noticia a{
display:block;
padding:0 10px 10px;
color:#2563eb;
font-weight:bold;
text-decoration:none;
}
/* CATEGORIAS HOME */

.categorias-home {
    background: #fff;
    padding: 40px 0;
}

.categorias-home .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.categoria-coluna h2 {
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

/* NOTÍCIA */

.noticia-coluna {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.noticia-coluna img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.noticia-coluna a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}
/* CATEGORIAS HOME */

.categorias-home {
    margin-top: 40px;
}

.categoria-linha {
    margin-bottom: 40px;
}

.titulo-categoria {
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

/* LINHA COM 3 NOTÍCIAS */

.linha-noticias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */

.card-noticia {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-noticia img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-noticia h3 {
    font-size: 15px;
    padding: 10px;
}

.card-noticia a {
    text-decoration: none;
    color: #000;
}
/* CARD NOTÍCIA MELHORADO */

.card-noticia{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.card-noticia img{
width:100%;
height:170px;
object-fit:cover;
}

.texto-noticia{
padding:12px;
}

.texto-noticia h3{
font-size:16px;
margin-bottom:8px;
color:#111;
}

.texto-noticia p{
font-size:14px;
color:#555;
line-height:1.4;
margin-bottom:10px;
}

.btn-ler{
display:inline-block;
background:#e60023;
color:#fff;
padding:6px 12px;
border-radius:4px;
text-decoration:none;
font-size:13px;
}

.btn-ler:hover{
background:#c4001d;
}
/* TITULO */

.titulo-secao{
font-size:24px;
margin-bottom:20px;
border-left:5px solid #e60023;
padding-left:10px;
}

/* GRID */

.grid-ultimas{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}

/* NOTÍCIA DESTAQUE */

.noticia-destaque{
position:relative;
}

.noticia-destaque img{
width:100%;
height:350px;
object-fit:cover;
border-radius:8px;
}

.overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(transparent, rgba(0,0,0,0.8));
padding:20px;
border-radius:8px;
}

.overlay h3{
color:#fff;
font-size:22px;
}

.overlay a{
color:#fff;
text-decoration:none;
}

/* NOTÍCIAS LATERAIS */

.noticias-lado{
display:grid;
grid-template-columns:1fr;
gap:15px;
}

.noticia-card{
display:flex;
gap:10px;
background:#fff;
padding:10px;
border-radius:6px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.noticia-card img{
width:100px;
height:70px;
object-fit:cover;
border-radius:4px;
}

.noticia-card h4{
font-size:14px;
}

.noticia-card a{
text-decoration:none;
color:#000;
}

/* HOVER */

.noticia-card:hover{
transform:translateY(-3px);
transition:0.2s;
}
/* SLIDER */

.slider-noticias {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide-noticia {
    min-width: 100%;
    position: relative;
}

.slide-noticia img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.slide-texto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.slide-texto h3 {
    color: #fff;
    font-size: 22px;
}

.slide-texto a {
    color: #fff;
    text-decoration: none;
}
/* SLIDER DESTAQUE */

.noticias-destaque{
margin:40px 0;
}

.slider-destaque{
position:relative;
overflow:hidden;
border-radius:10px;
}

.slides-destaque{
display:flex;
transition:transform 0.7s ease;
}

.slide-destaque{
min-width:100%;
position:relative;
}

.slide-destaque img{
width:100%;
height:420px;
object-fit:cover;
}

/* TEXTO SOBRE A IMAGEM */

.texto-slide{
position:absolute;
bottom:0;
left:0;
right:0;
padding:30px;
background:linear-gradient(transparent, rgba(0,0,0,0.85));
}

.texto-slide h2{
color:#fff;
font-size:30px;
max-width:70%;
}

.texto-slide a{
color:#fff;
text-decoration:none;
}

/* EFEITO HOVER */

.slide-destaque img{
transition:transform 0.5s;
}

.slide-destaque:hover img{
transform:scale(1.05);
}
/* SLIDER PORTAL */

.slider-portal{
position:relative;
overflow:hidden;
}

.slides-portal{
display:flex;
transition:0.6s;
}

.slide-grupo{
min-width:100%;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:15px;
}

.noticia-grande img{
height:400px;
width:100%;
object-fit:cover;
}

.noticia-pequena img{
height:190px;
width:100%;
object-fit:cover;
}

.noticia-grande,
.noticia-pequena{
position:relative;
overflow:hidden;
border-radius:8px;
}

.info-noticia{
position:absolute;
bottom:0;
left:0;
right:0;
padding:15px;
background:linear-gradient(transparent,rgba(0,0,0,0.9));
color:#fff;
}

.info-noticia h3{
font-size:18px;
}

.info-noticia a{
color:#fff;
text-decoration:none;
}

/* CATEGORIA */

.categoria{
background:#e60023;
padding:3px 8px;
font-size:12px;
border-radius:4px;
margin-right:10px;
}

/* DATA */

.data{
font-size:12px;
opacity:0.8;
}

/* SETAS */

.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:#fff;
border:none;
padding:10px;
cursor:pointer;
z-index:10;
}

.prev{ left:10px; }
.next{ right:10px; }

/* DOTS */

.dots{
text-align:center;
margin-top:10px;
}

.dots span{
display:inline-block;
width:10px;
height:10px;
background:#ccc;
margin:5px;
border-radius:50%;
cursor:pointer;
}

.dots .active{
background:#e60023;
}
/* TICKER DE NOTÍCIAS */

.ticker-noticias{
display:flex;
align-items:center;
background:#111;
color:#fff;
padding:8px 0;
overflow:hidden;
}

.ticker-label{
background:#e60023;
padding:8px 15px;
font-weight:bold;
margin-right:10px;
}

.ticker-wrapper{
overflow:hidden;
flex:1;
}

.ticker-move{
display:flex;
gap:40px;
animation:ticker 30s linear infinite;
white-space:nowrap;
}

.ticker-item{
color:#fff;
text-decoration:none;
font-size:14px;
}

.ticker-item:hover{
text-decoration:underline;
}

/* ANIMAÇÃO */

@keyframes ticker{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}
/* APP + ENQUETE */

.app-enquete{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin:40px 0;
}

/* APP */

.app-box{
background:#fff;
padding:20px;
text-align:center;
border-radius:8px;
}

/* ENQUETE */

.enquete-box{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.enquete-box h3{
margin-bottom:15px;
}

.opcao{
display:block;
margin-bottom:10px;
}

.btn-votar{
background:#e60023;
color:#fff;
border:none;
padding:8px 15px;
cursor:pointer;
margin-top:10px;
}
/* MENU PORTAL */

.menu-portal{
background:#111;
color:#fff;
position:sticky;
top:0;
z-index:999;
}

.menu-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 15px;
}

.logo-menu a{
color:#fff;
font-size:22px;
font-weight:bold;
text-decoration:none;
}

/* MENU */

nav ul{
list-style:none;
display:flex;
gap:20px;
margin:0;
padding:0;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-size:15px;
padding:6px 0;
position:relative;
}

/* HOVER */

nav ul li a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-3px;
background:#e60023;
transition:0.3s;
}

nav ul li a:hover::after{
width:100%;
}

/* MENU MOBILE */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

/* RESPONSIVO */

@media(max-width:768px){

nav ul{
display:none;
flex-direction:column;
background:#111;
position:absolute;
top:60px;
left:0;
width:100%;
padding:20px;
}

nav ul.show{
display:flex;
}

.menu-toggle{
display:block;
}

}
/* TOPO DO SITE */

/* TOPO DO SITE */

.topo{
display:grid;
grid-template-columns:200px 1fr 200px;
align-items:center;
gap:20px;
padding:10px 20px;
background:#fff;
}

/* LOGO */

.logo img{
height:70px;
}

/* BANNER */

.banner-topo{
text-align:center;
}

.banner-topo img{
max-width:100%;
max-height:90px;
}

/* DATA E RELÓGIO */

.data-relogio{
text-align:right;
font-size:14px;
}

#relogio{
font-size:20px;
font-weight:bold;
margin-top:5px;
}


/* RESPONSIVO */

@media(max-width:768px){

.topo{
grid-template-columns:1fr;
text-align:center;
}

.logo{
margin-bottom:10px;
}

.banner-topo{
margin-bottom:10px;
}

.data-relogio{
text-align:center;
}

.logo img{
height:60px;
}

.banner-topo img{
max-height:80px;
}

}
.share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.share a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.share-fb {
    background: #1877f2;
}

.share-wa {
    background: #25d366;
}

.share-tg {
    background: #0088cc;
}

.share-x {
    background: #000;
}
.pagina {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

/* título */

.titulo-pagina {
    margin-bottom: 20px;
}

/* imagem */

.pagina-imagem img {
    max-width: 100%;
    margin: 20px auto;
    display: block;
    border-radius: 6px;
}

/* texto */

.pagina-texto {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* vídeo */

.pagina-video iframe {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-radius: 6px;
}
.noticia-pagina {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 25px;
}

.subtitulo {
    font-size: 20px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: normal;
}

.data-noticia {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.imagem-noticia img {
    width: 100%;
    border-radius: 6px;
    margin: 15px 0;
}

.texto-noticia {
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.video-noticia iframe {
    width: 100%;
    height: 420px;
    border-radius: 6px;
}

.share {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.share a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
}

.share-fb {
    background: #1877f2;
}

.share-wa {
    background: #25d366;
}

.share-tg {
    background: #0088cc;
}

.share-x {
    background: #000;
}
#menu-sort{
list-style:none;
padding:0;
max-width:500px;
}

#menu-sort li{
background:#ffffff;
padding:12px;
margin:6px 0;
border:1px solid #ffffff;
cursor:move;
border-radius:4px;
color:#ffffff; /* texto preto */
font-weight:500;
}
.editor-toolbar {
    background: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.editor-toolbar button {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

#editor {
    min-height: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
}
/* MENU */

.menu{
background:#111;
color:#fff;
position:relative;
}

.menu-top{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px;
}

.menu-logo a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

/* BOTÃO */

.menu-toggle{
display:none;
font-size:20px;
cursor:pointer;
}

/* LINKS */

.menu-links{
display:flex;
gap:20px;
list-style:none;
margin:0;
padding:10px;
}

.menu-links li a{
color:#fff;
text-decoration:none;
}

/* MOBILE */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.menu-links{
display:none;
flex-direction:column;
background:#111;
width:100%;
}

/* 👇 ESSENCIAL */

.menu-links.active{
display:flex !important;
}

.menu-links li{
border-top:1px solid #222;
}

.menu-links li a{
padding:12px;
display:block;
}

}
/* ===== BLOCO DESTAQUES ===== */
.bloco-destaques .grid-destaques {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 15px;
}

/* TODOS OS CARDS */
.bloco-destaques .destaque-principal,
.bloco-destaques .destaque-secundario {
    position: relative; /* 👈 ESSENCIAL */
    overflow: hidden;
}

/* GRANDE */
.bloco-destaques .destaque-principal {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* POSIÇÕES */
.bloco-destaques .destaque-secundario:nth-child(2){
    grid-column: 2;
    grid-row: 1;
}
.bloco-destaques .destaque-secundario:nth-child(3){
    grid-column: 3;
    grid-row: 1;
}
.bloco-destaques .destaque-secundario:nth-child(4){
    grid-column: 2;
    grid-row: 2;
}
.bloco-destaques .destaque-secundario:nth-child(5){
    grid-column: 3;
    grid-row: 2;
}

/* IMAGEM */
.bloco-destaques img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* TEXTO SOBRE IMAGEM */
.bloco-destaques .info-destaque {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    z-index: 2; /* 👈 ESSENCIAL */
}

/* TÍTULO */
.bloco-destaques .info-destaque h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

/* LINK */
.bloco-destaques .info-destaque a {
    color: #fff;
    text-decoration: none;
}

/* CATEGORIA */
.bloco-destaques .categoria-destaque {
    font-size: 12px;
    font-weight: bold;
    color: #ff3b3b;
}

/* RESPONSIVO */
@media(max-width:768px){

    .bloco-destaques .grid-destaques{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .bloco-destaques .destaque-principal,
    .bloco-destaques .destaque-secundario{
        grid-column:auto !important;
        grid-row:auto !important;
    }

    .bloco-destaques img{
        height:200px;
    }

    .bloco-destaques .info-destaque{
        position:relative;
        background:none;
    }

    .bloco-destaques .info-destaque a{
        color:#000;
    }

}