/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Segoe UI', Arial, sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.6;
}

/* TOPO RÁDIO */
.radio-topo{
  background:#111;
  padding:15px;
  text-align:center;
  position:sticky;
  top:0;
  z-index:999;
}

.radio-topo audio{
  width:300px;
}

/* MENU */
nav{
  background:#1c1c1c;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  padding:12px;
}

nav a{
  color:#fff;
  margin:8px 15px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#ff3b3b;
}

/* SEÇÕES */
section{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

section h2{
  margin-bottom:20px;
  font-size:24px;
  border-left:5px solid #ff3b3b;
  padding-left:10px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

/* CARD NOTÍCIA */
.card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f2f2f2;
}

.card a{
  display:block;
  padding:15px;
  font-weight:600;
  text-decoration:none;
  color:#222;
}

.card a:hover{
  color:#ff3b3b;
}

/* ANÚNCIOS */
.area-anuncio{
  max-width:1200px;
  margin:30px auto;
  text-align:center;
}

.area-anuncio img{
  width:100%;
  max-width:100%;
  border-radius:10px;
}

/* TV PLAYER */
.tv-box{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.tv-box video{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* NOTÍCIA INTERNA */
.noticia-container{
  max-width:900px;
  margin:40px auto;
  padding:20px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.noticia-container img{
  width:100%;
  margin:20px 0;
  border-radius:10px;
}

/* BOTÕES SHARE */
.share-buttons{
  margin-top:20px;
  display:flex;
  gap:10px;
}

.share-buttons a{
  padding:8px 12px;
  background:#1c1c1c;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
  transition:0.3s;
}

.share-buttons a:hover{
  background:#ff3b3b;
}

/* RESPONSIVO */
@media(max-width:768px){
  nav{
    flex-direction:column;
    align-items:center;
  }
}
/* MENU RESPONSIVO */
.menu-wrapper{
  background:#1c1c1c;
  text-align:center;
  position:sticky;
  top:60px;
  z-index:998;
}

.menu-toggle{
  display:none;
  background:#1c1c1c;
  color:#fff;
  border:none;
  padding:12px;
  width:100%;
  font-size:16px;
  cursor:pointer;
}

#menu-categorias{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  padding:12px;
}

#menu-categorias a{
  color:#fff;
  margin:8px 15px;
  text-decoration:none;
}

#menu-categorias a:hover{
  color:#ff3b3b;
}

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

  .menu-toggle{
      display:block;
  }

  #menu-categorias{
      display:none;
      flex-direction:column;
      align-items:center;
  }

  #menu-categorias a{
      padding:10px 0;
  }

}
/* PLAYER RÁDIO MODERNO */
.radio-bar{
  background:#121212;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 20px;
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.radio-info{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}

.live-dot{
  width:10px;
  height:10px;
  background:red;
  border-radius:50%;
  animation:pulse 1.2s infinite;
}

@keyframes pulse{
  0%{opacity:1}
  50%{opacity:0.3}
  100%{opacity:1}
}

.radio-title{
  font-size:14px;
  letter-spacing:1px;
}

.radio-btn{
  background:#ff3b3b;
  border:none;
  padding:8px 15px;
  border-radius:30px;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.radio-btn:hover{
  background:#ff0000;
}

/* MOBILE */
@media(max-width:768px){
  .radio-bar{
    padding:10px;
  }

  .radio-title{
    font-size:12px;
  }
}
/* WRAPPER */
.noticia-wrapper{
  background:#f5f7fa;
  padding:60px 20px;
}

/* ARTIGO */
.noticia-modern{
  max-width:900px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* TÍTULO */
.noticia-titulo{
  font-size:34px;
  line-height:1.3;
  margin-bottom:15px;
  color:#111;
}

/* META */
.noticia-meta{
  font-size:14px;
  color:#777;
  margin-bottom:25px;
}

/* IMAGEM */
.noticia-imagem{
  margin:25px 0;
}

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

/* CONTEÚDO */
.noticia-conteudo{
  font-size:18px;
  line-height:1.8;
  color:#333;
}

/* SHARE */
.noticia-share{
  margin-top:40px;
  display:flex;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}

.noticia-share span{
  font-weight:600;
}

.noticia-share a{
  padding:8px 14px;
  border-radius:6px;
  text-decoration:none;
  color:#ffffff;
  font-size:14px;
  transition:0.3s;
}

.btn-facebook{ background:#1877f2; }
.btn-whatsapp{ background:#25d366; }
.btn-twitter{ background:#1da1f2; }

.noticia-share a:hover{
  opacity:0.85;
}

/* MOBILE */
@media(max-width:768px){
  .noticia-modern{
    padding:30px 20px;
  }

  .noticia-titulo{
    font-size:26px;
  }

  .noticia-conteudo{
    font-size:16px;
  }
}
/* MENU TOPO */
.menu-topo{
  background:#111827;
  padding:12px 0;
}

.menu-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.menu-topo a{
  color:#fff;
  text-decoration:none;
  padding:8px 14px;
  border-radius:6px;
  font-size:14px;
  transition:0.3s;
}

.menu-topo a:hover{
  background:#1f2937;
}

/* VOLTAR */
.voltar-home{
  max-width:900px;
  margin:20px auto;
}

.voltar-home a{
  text-decoration:none;
  color:#2563eb;
  font-weight:500;
  transition:0.3s;
}

.voltar-home a:hover{
  text-decoration:underline;
}
.area-anuncios{
  max-width:1200px;
  margin:30px auto;
  padding:0 20px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.banner-box img{
  width:100%;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
/* FOOTER MODERNO */
.footer-portal{
  background:#0f172a;
  padding:70px 20px;
  margin-top:60px;
  color:#fff;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.redes-icons{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:40px;
}

.redes-icons a{
  width:80px;              /* Dobro do tamanho */
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:32px;          /* Ícone maior */
  color:#fff;
  transition:0.4s;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.redes-icons a:hover{
  transform:translateY(-6px) scale(1.1);
  box-shadow:0 12px 25px rgba(0,0,0,0.35);
}

/* CORES ORIGINAIS OFICIAIS */
.facebook{ background:#1877F2; }
.instagram{ 
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}
.youtube{ background:#FF0000; }
.twitter{ background:#000000; }
.whatsapp{ background:#25D366; }

.footer-copy{
  font-size:14px;
  color:#bbb;
  margin-top:20px;
}

/* RESPONSIVO */
@media(max-width:768px){
  .redes-icons{
    gap:20px;
  }

  .redes-icons a{
    width:65px;
    height:65px;
    font-size:26px;
  }
}
.tv-lateral-wrapper{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.tv-area{
  flex:3;
}

.anuncio-lateral{
  flex:1;
}

.tv-area video{
  width:100%;
  border-radius:12px;
}

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

@media(max-width:1024px){
  .tv-lateral-wrapper{
    flex-direction:column;
  }
}
/* PLAYER PROPORÇÃO 16:9 PROFISSIONAL */
.tv-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #000;
}

.tv-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* HEADER TOPO */
/* HEADER LOGO + BANNER */
.header-topo{
  max-width:1200px;
  margin:20px auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.header-logo{
  flex:0 0 auto;
}

.header-logo img{
  max-height:80px;
  width:auto;
  display:block;
}

/* BANNER */
.header-banner{
  flex:1;
  display:flex;
  justify-content:flex-end; /* FORÇA DIREITA */
}

.header-banner img{
  max-height:90px;
  max-width:100%;
  width:auto;
  display:block;
  border-radius:10px;
}

/* MOBILE */
@media(max-width:768px){
  .header-topo{
    flex-direction:column;
    gap:15px;
  }

  .header-banner{
    justify-content:center;
  }
}
/* ANÚNCIO LATERAL */
.anuncio-lateral{
  position:relative;
  overflow:hidden;
}

/* WRAPPER */
.slide-vertical{
  display:flex;
  flex-direction:column;
  gap:15px; /* 👈 ESPAÇO ENTRE IMAGENS */
  transition:transform 0.8s ease-in-out;
}

/* ITEM */
.slide-item{
  width:100%;
  flex-shrink:0; /* impede colapso */
}

.slide-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}
/* HEADER 3 COLUNAS */
.header-topo{
  max-width:1200px;
  margin:20px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:20px;
}

/* COLUNAS */
.header-left img{
  max-height:150px;
}

.header-center{
  text-align:center;
}

.header-center img{
  max-height:130px;
  max-width:100%;
  width:auto;
  border-radius:10px;
}

.header-right{
  display:flex;
  gap:15px;
  justify-content:flex-end;
}

/* ÍCONES HEADER */
.header-right a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:18px;
  text-decoration:none;
}

/* CORES ORIGINAIS */
.header-right .facebook{ background:#1877f2; }
.header-right .instagram{ background:#e4405f; }
.header-right .youtube{ background:#ff0000; }
.header-right .twitter{ background:#000000; }
.header-right .whatsapp{ background:#25d366; }

.header-right a:hover{
  transform:scale(1.1);
  transition:0.2s;
}

/* MOBILE */
@media(max-width:900px){
  .header-topo{
    grid-template-columns:1fr;
    text-align:center;
  }

  .header-right{
    justify-content:center;
    margin-top:10px;
  }
}
/* SEÇÃO VIDEOS */

.secao-videos{
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.videos-wrapper{
display:flex;
align-items:center;
gap:10px;
}

.videos-slider{
display:flex;
overflow:hidden;
gap:15px;
}

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

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

.video-card a{
display:block;
padding:10px;
text-decoration:none;
font-weight:bold;
color:#333;
}

.video-prev,
.video-next{
border:none;
background:#000;
color:#fff;
font-size:20px;
width:40px;
height:40px;
cursor:pointer;
border-radius:50%;
}
/* VIDEOS */

.secao-videos{
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.videos-wrapper{
display:flex;
align-items:center;
gap:10px;
}

.videos-slider{
display:flex;
gap:15px;
overflow:hidden;
}

.video-card{
min-width:220px;
cursor:pointer;
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.15);
}

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

.video-titulo{
padding:10px;
font-weight:bold;
}

/* MODAL VIDEO */

.video-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.video-box{
width:80%;
max-width:900px;
position:relative;
}

.video-box iframe{
width:100%;
height:500px;
}

.fechar-video{
position:absolute;
top:-40px;
right:0;
background:#fff;
border:none;
padding:8px 12px;
font-size:18px;
cursor:pointer;
}
/* SEÇÃO APP */

.secao-app{
background:#f5f5f5;
padding:50px 20px;
margin-top:40px;
}

.app-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.app-texto h2{
font-size:28px;
margin-bottom:20px;
}

.app-botoes{
display:flex;
gap:15px;
}

.btn-android,
.btn-ios{
display:flex;
align-items:center;
gap:8px;
padding:12px 18px;
border-radius:6px;
color:#fff;
text-decoration:none;
font-weight:bold;
}

.btn-android{
background:#3ddc84;
}

.btn-ios{
background:#000;
}

.app-qr{
text-align:center;
}

.app-qr img{
width:140px;
}

.app-qr p{
margin-top:8px;
font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

.app-container{
flex-direction:column;
text-align:center;
}

.app-botoes{
justify-content:center;
}

}
/* CLASSIFICADOS */

.secao-classificados {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

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

.card-classificado {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding-bottom: 15px;
}

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

.card-classificado h3 {
  padding: 10px;
  font-size: 18px;
}

.card-classificado p {
  padding: 0 10px;
  font-size: 14px;
}

.btn-contato {
  display: block;
  margin: 10px;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.tipo-classificado{
position:absolute;
background:#ff5722;
color:#fff;
padding:5px 10px;
font-size:12px;
top:10px;
left:10px;
border-radius:4px;
}

.valor-classificado{
font-weight:bold;
font-size:18px;
color:#2e7d32;
padding:10px;
}
/* RELOGIO TOPO */

.header-relogio{
text-align:right;
font-family:Arial;
}

#relogio-topo{
font-size:20px;
font-weight:bold;
}

#data-topo{
font-size:13px;
color:#666;
}
/* RELÓGIO MODERNO */

.header-relogio{
display:flex;
align-items:center;
justify-content:flex-end;
}

.relogio-moderno{

background: linear-gradient(135deg,#111,#222);
color:white;

padding:10px 18px;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,0.25);

text-align:right;

font-family:'Segoe UI',Arial;

}

.relogio-moderno .hora{

font-size:26px;
font-weight:700;
letter-spacing:2px;

}

.relogio-moderno .data{

font-size:13px;
opacity:0.8;

margin-top:3px;

}

.relogio-moderno i{

margin-right:5px;
color:#ff3b3b;

}
/* MENU MOBILE */

.menu-wrapper{
width:100%;
background:#111;
}

.menu-toggle{
display:none;
width:100%;
background:#111;
color:white;
border:none;
padding:12px;
font-size:18px;
cursor:pointer;
}

#menu-categorias{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
padding:10px;
}

#menu-categorias a{
color:white;
text-decoration:none;
font-size:15px;
padding:5px 10px;
}

/* MOBILE */

@media(max-width:768px){

.menu-toggle{
display:block;
}

#menu-categorias{
display:none;
flex-direction:column;
background:#111;
}

#menu-categorias.active{
display:flex;
}

#menu-categorias a{
padding:12px;
border-top:1px solid rgba(255,255,255,0.1);
}

}
/* MENU */

.menu-wrapper{
background:#111;
width:100%;
}

.menu-toggle{
display:none;
width:100%;
background:#111;
color:white;
border:none;
padding:14px;
font-size:18px;
cursor:pointer;
}

/* MENU NORMAL (DESKTOP) */

#menu-categorias{
display:flex;
justify-content:center;
gap:15px;
padding:10px;
flex-wrap:wrap;
}

#menu-categorias a{
color:white;
text-decoration:none;
padding:6px 10px;
}

/* MOBILE */

@media (max-width:768px){

.menu-toggle{
display:block;
}

#menu-categorias{
display:none;
flex-direction:column;
background:#111;
}

#menu-categorias.active{
display:flex;
}

#menu-categorias a{
padding:14px;
border-top:1px solid rgba(255,255,255,0.1);
}

}
.tv-area{
width:100%;
max-width:900px;
margin:auto;
}

.tv-player{
width:100%;
aspect-ratio:16/9;
background:#000;
}

.tv-player video{
width:100%;
height:100%;
object-fit:contain;
}
.carrossel-noticias{
display:flex;
align-items:center;
background:#111;
color:#fff;
padding:10px 0;
overflow:hidden;
border-top:3px solid #ff0000;
}

.carrossel-titulo{
background:#ff0000;
padding:8px 15px;
font-weight:bold;
white-space:nowrap;
}

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

.carrossel-texto{
display:flex;
gap:40px;
padding-left:20px;
animation:carrosselMove 25s linear infinite;
}

.carrossel-texto a{
color:#fff;
text-decoration:none;
white-space:nowrap;
font-size:14px;
}

.carrossel-texto a:hover{
text-decoration:underline;
}

@keyframes carrosselMove{

0%{transform:translateX(100%)}

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

}
.pagina-conteudo{
max-width:1000px;
margin:40px auto;
padding:20px;
background:#fff;
border-radius:8px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.pagina-img{
width:100%;
max-height:400px;
object-fit:cover;
border-radius:6px;
margin:20px 0;
}

.pagina-texto{
font-size:16px;
line-height:1.7;
}
.pagina-box{
max-width:1000px;
margin:40px auto;
padding:25px;
background:#fff;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.pagina-img{
width:100%;
max-height:450px;
object-fit:cover;
border-radius:6px;
margin:20px 0;
}

.pagina-conteudo{
font-size:16px;
line-height:1.8;
}
.radio-player{
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
border-bottom:3px solid #ff0000;
flex-wrap:wrap;
}

.radio-name{
font-weight:bold;
font-size:18px;
}

.radio-live{
font-size:13px;
margin-bottom:3px;
}

.live-dot{
width:10px;
height:10px;
background:red;
border-radius:50%;
display:inline-block;
margin-right:6px;
animation:pulse 1s infinite;
}

@keyframes pulse{
0%{opacity:1}
50%{opacity:.4}
100%{opacity:1}
}

.radio-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(45deg,#ff0000,#ff3b3b);
color:#fff;
font-size:24px;
cursor:pointer;
}

.radio-controls{
display:flex;
align-items:center;
gap:12px;
}

.radio-volume{
display:flex;
align-items:center;
gap:10px;
}

.radio-volume input{
width:100px;
}

/* animação áudio */

.audio-bars{
display:flex;
gap:3px;
height:20px;
}

.audio-bars span{
width:4px;
background:#ff0000;
animation:bars 1s infinite;
}

.audio-bars span:nth-child(2){animation-delay:.2s}
.audio-bars span:nth-child(3){animation-delay:.4s}
.audio-bars span:nth-child(4){animation-delay:.6s}

@keyframes bars{
0%{height:5px}
50%{height:20px}
100%{height:5px}
}


/* PROGRAMACAO ROLANDO */

.programa-agora{
display:flex;
align-items:center;
background:#000;
color:#fff;
padding:8px 0;
overflow:hidden;
border-bottom:2px solid #ff0000;
}

.programa-label{
background:#ff0000;
padding:6px 15px;
font-weight:bold;
margin-right:10px;
}

.programa-scroll{
flex:1;
overflow:hidden;
}

.programa-track{
white-space:nowrap;
animation:programaMove 20s linear infinite;
}

@keyframes programaMove{

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

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

}
.radio-player{
background:#111;
color:#fff;
display:flex;
align-items:center;
gap:20px;
padding:15px 20px;
border-bottom:3px solid #ff0000;
flex-wrap:wrap;
}

.radio-live{
font-size:12px;
font-weight:bold;
}

.live-dot{
width:10px;
height:10px;
background:red;
border-radius:50%;
display:inline-block;
margin-right:6px;
animation:pulse 1s infinite;
}

@keyframes pulse{
0%{opacity:1}
50%{opacity:.3}
100%{opacity:1}
}

.radio-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(45deg,#ff0000,#ff3b3b);
color:#fff;
font-size:24px;
cursor:pointer;
}

.radio-programa{
flex:1;
overflow:hidden;
}

.programa-label{
font-size:12px;
color:#aaa;
}

.programa-scroll{
white-space:nowrap;
overflow:hidden;
}

.programa-scroll span{
display:inline-block;
padding-left:100%;
animation:programaMove 15s linear infinite;
}

@keyframes programaMove{

0%{
transform:translateX(0);
}

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

}

.radio-volume{
display:flex;
align-items:center;
gap:10px;
}

.radio-volume input{
width:100px;
}

/* animação áudio */

.audio-bars{
display:flex;
gap:3px;
height:20px;
}

.audio-bars span{
width:4px;
background:#ff0000;
animation:bars 1s infinite;
}

.audio-bars span:nth-child(2){animation-delay:.2s}
.audio-bars span:nth-child(3){animation-delay:.4s}
.audio-bars span:nth-child(4){animation-delay:.6s}

@keyframes bars{
0%{height:5px}
50%{height:20px}
100%{height:5px}
}
/* FIXAR SOMENTE O MENU */
.menu-wrapper{
    position: sticky;
    top: 0;
    z-index: 9999;
    background:#111;
}
.carrossel-anuncios {
    display: flex;
    overflow: hidden;
    gap: 10px;
    width: 100%;
    position: relative;
}

.carrossel-track {
    display: flex;
    gap: 10px;
    animation: scrollAnuncios 20s linear infinite;
}

.carrossel-anuncios img {
    height: 150px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s;
}

.carrossel-anuncios img:hover {
    transform: scale(1.05);
}

/* ANIMAÇÃO */
@keyframes scrollAnuncios {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.carrossel-anuncios:hover .carrossel-track {
    animation-play-state: paused;
}
/* ===== LAYOUT TV + LATERAL ===== */

.tv-lateral-wrapper{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.tv-area{
  flex:3;
}

.anuncio-lateral{
  flex:1;
}

/* ===== CARROSSEL VERTICAL ===== */

.carrossel-vertical{
    height: 400px;
    overflow: hidden;
    position: relative;
}

.carrossel-vertical-track{
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scrollVertical 20s linear infinite;
}

.carrossel-vertical img{
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* ANIMAÇÃO */
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* PAUSA AO PASSAR MOUSE */
.carrossel-vertical:hover .carrossel-vertical-track{
    animation-play-state: paused;
}

/* RESPONSIVO */
@media(max-width:1024px){
  .tv-lateral-wrapper{
    flex-direction:column;
  }
}
#popupSite{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.popup-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    max-width:400px;
    width:90%;
    text-align:center;
    position:relative;
}

.popup-box img{
    max-width:100%;
    margin:10px 0;
}

.popup-close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:20px;
    cursor:pointer;
}

.popup-btn{
    display:inline-block;
    margin-top:10px;
    background:#ff0000;
    color:#fff;
    padding:10px 15px;
    border-radius:6px;
    text-decoration:none;
}
.popup-check{
    display:block;
    margin-top:10px;
    font-size:13px;
    color:#333;
}

.popup-check input{
    margin-right:5px;
}
/* ===== GRID PRINCIPAL ===== */

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

/* ===== GRANDES LADO A LADO ===== */

.destaques-grandes {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 lado a lado */
    gap: 20px;
}

/* CARD GRANDE */
.card-grande {
    position: relative;
    display: block;
    height: 260px; /* 🔥 altura fixa padrão portal */
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGEM AJUSTADA */
.card-grande img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 resolve tudo */
    display: block;
    transition: 0.3s;
}

.card-grande:hover img {
    transform: scale(1.05);
}

/* TEXTO SOBREPOSTO */
.card-grande .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-grande h2 {
    color: #fff;
    font-size: 18px;
}

/* ===== PEQUENAS ===== */

.destaques-pequenos {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

/* CARD PEQUENO */
.card-pequeno {
    display: flex;
    gap: 10px;
    background: #020617;
    padding: 10px;
    border-radius: 10px;
    height: 80px;
    overflow: hidden;
}

/* IMAGEM PEQUENA AJUSTADA */
.card-pequeno img {
    width: 110px;
    height: 100%;
    object-fit: cover; /* 🔥 importante */
    border-radius: 8px;
    flex-shrink: 0;
}

/* TEXTO */
.card-pequeno h3 {
    color: #fff;
    font-size: 14px;
    overflow: hidden;
}

/* ===== RESPONSIVO ===== */

@media(max-width: 900px){

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

    .destaques-grandes {
        grid-template-columns: 1fr;
    }

}
/* ===== ÚLTIMAS NOTÍCIAS ===== */

.ultimas-destaque {
    padding: 30px 20px;
}

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

/* ===== GRANDES ===== */

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

.card-grande {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.card-grande img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 encaixe perfeito */
    transition: 0.3s;
}

.card-grande:hover img {
    transform: scale(1.05);
}

.card-grande .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-grande h2 {
    color: #fff;
    font-size: 18px;
}

/* ===== PEQUENAS ===== */

.ultimas-pequenas {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.card-pequeno {
    display: flex;
    gap: 10px;
    background: #020617;
    padding: 10px;
    border-radius: 10px;
    height: 85px;
    overflow: hidden;
    text-decoration: none;
}

.card-pequeno img {
    width: 110px;
    height: 100%;
    object-fit: cover; /* 🔥 encaixe perfeito */
    border-radius: 8px;
    flex-shrink: 0;
}

.card-pequeno h3 {
    color: #fff;
    font-size: 14px;
}

/* ===== RESPONSIVO ===== */

@media(max-width: 900px){

    .grid-ultimas {
        grid-template-columns: 1fr;
    }

    .ultimas-grandes {
        grid-template-columns: 1fr;
    }

    .card-grande {
        height: 200px;
    }

    .card-pequeno {
        height: auto;
    }

}
/* ===== TEXTO BRANCO NO MODO ESPORTIVO ===== */

/* TÍTULO DAS CATEGORIAS */
.modo-esportivo .categorias h2 {
    color: #fff;
}

/* CARDS (QUADROS) */
.modo-esportivo .card-esporte a,
.modo-esportivo .card a {
    color: #fff;
}

/* GARANTE QUE NÃO MUDE NO HOVER */
.modo-esportivo .card-esporte a:hover,
.modo-esportivo .card a:hover {
    color: #fff;
}
/* ===== BOTÕES DE COMPARTILHAR ===== */

.noticia-share {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.noticia-share span {
    color: #1877f2;
    font-weight: bold;
}

/* BOTÃO BASE */
.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

/* FACEBOOK */
.btn-share.facebook {
    background: #1877f2;
}

/* WHATSAPP */
.btn-share.whatsapp {
    background: #25d366;
}

/* TWITTER/X */
.btn-share.twitter {
    background: #000;
}

/* HOVER */
.btn-share:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
.video-card{
.video-card{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

/* imagem */
.video-card img{
    width: 100%;
    display: block;
    transition: 0.3s;
}

/* efeito hover */
.video-card:hover img{
    transform: scale(1.05);
    filter: brightness(0.6);
}

/* 🔥 BOTÃO PLAY CENTRAL */
.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);

    width: 70px;
    height: 70px;
    border-radius: 50%;

    background: rgba(0,0,0,0.6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    opacity: 0;
    transition: 0.3s ease;
}

/* animação hover */
.video-card:hover .play-btn{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}