body {
    font-family: 'Segoe UI', Arial;
    margin: 0;
    background: #f1f3f8;
    color: #222;
}

header {
    background: #0d1117;
    color: #fff;
}

.player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.player strong {
    font-size: 22px;
}

.menu {
    background: #161b22;
    padding: 10px 30px;
}

.menu a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 500;
}

.menu a:hover {
    color: #00bfff;
}

.destaque {
    padding: 30px;
}

.grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

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

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

.anuncio {
    padding: 30px;
    text-align: center;
}

.rss {
    padding: 30px;
}

.rss-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.video {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.redes {
    background: #0d1117;
    color: #fff;
    text-align: center;
    padding: 40px;
}

.redes a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

.rodape {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.ticker-noticias{
background:#d60000;
color:#fff;
display:flex;
align-items:center;
overflow:hidden;
padding:8px 0;
}

.ticker-titulo{
font-weight:bold;
padding:0 15px;
white-space:nowrap;
}

.ticker-container{
overflow:hidden;
width:100%;
}

.ticker-track{
display:flex;
gap:50px;
animation: ticker 40s linear infinite;
}

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

.ticker-track a:hover{
text-decoration:underline;
}

@keyframes ticker{

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

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

}
.menu{
background:#0d1117;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

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

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

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

.menu-links li a{
color:#ddd;
text-decoration:none;
font-size:15px;
position:relative;
transition:.3s;
}

.menu-links li a:hover{
color:#fff;
}

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

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

.menu-busca input{
padding:6px 10px;
border-radius:5px;
border:none;
outline:none;
}
.radio-player{
display:flex;
align-items:center;
gap:15px;
background:#111;
padding:10px 20px;
border-radius:8px;
color:#fff;
}

.player-btn{
width:40px;
height:40px;
background:#ff3b3b;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
cursor:pointer;
font-size:18px;
}

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

.player-info{
display:flex;
flex-direction:column;
}

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

.radio-status{
font-size:11px;
color:#0f0;
}

.player-volume input{
width:100px;
}
.radio-player-modern{
display:flex;
align-items:center;
justify-content:space-between;
background:#0d1117;
padding:12px 20px;
color:#fff;
border-bottom:3px solid #ff0000;
}

.player-left{
display:flex;
align-items:center;
}

.play-btn{
width:45px;
height:45px;
background:#ff0000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:18px;
}

.play-btn:hover{
background:#cc0000;
}

.player-center{
display:flex;
flex-direction:column;
align-items:flex-start;
}

.radio-title{
font-weight:bold;
font-size:16px;
}

.radio-status{
font-size:12px;
color:#00ff6a;
}

.player-right input{
width:120px;
}

.equalizer{
display:flex;
gap:3px;
margin-top:5px;
}

.equalizer span{
width:4px;
height:12px;
background:#00ff6a;
animation: equalize 1s infinite;
}

.equalizer span:nth-child(2){
animation-delay:.2s;
}

.equalizer span:nth-child(3){
animation-delay:.4s;
}

.equalizer span:nth-child(4){
animation-delay:.6s;
}

@keyframes equalize{

0%{height:5px;}
50%{height:15px;}
100%{height:5px;}

}
.radio-player-modern{

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

background:linear-gradient(90deg,#0f172a,#1e293b);

padding:12px 20px;

border-radius:10px;

color:#fff;

margin:10px 0;

box-shadow:0 4px 15px rgba(0,0,0,0.3);

}

.player-left{

display:flex;
align-items:center;
gap:15px;

}

.play-btn{

width:45px;
height:45px;

border:none;
border-radius:50%;

background:#ff0033;

color:#fff;

font-size:18px;

cursor:pointer;

transition:0.3s;

}

.play-btn:hover{

transform:scale(1.1);

background:#ff1a4d;

}

.radio-title{

font-weight:bold;

font-size:15px;

}

.radio-live{

font-size:11px;

color:#ff4d4d;

}

.equalizer{

display:flex;
gap:4px;

}

.equalizer span{

width:4px;

height:10px;

background:#00ffcc;

animation:eq 1s infinite;

}

.equalizer span:nth-child(2){animation-delay:.2s;}
.equalizer span:nth-child(3){animation-delay:.4s;}
.equalizer span:nth-child(4){animation-delay:.6s;}
.equalizer span:nth-child(5){animation-delay:.8s;}

@keyframes eq{

0%{height:8px;}
50%{height:20px;}
100%{height:8px;}

}

.player-right input{

width:120px;

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

.player-social{
display:flex;
gap:10px;
}

.player-social a{

width:30px;
height:30px;

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

background:#1f2937;

border-radius:50%;

color:#fff;

font-size:13px;

text-decoration:none;

transition:.3s;

}

.player-social a:hover{

background:#ff0033;

transform:scale(1.1);

}
/* PLAYER */

.radio-player-modern{
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(90deg,#0f172a,#1e293b);
padding:12px 20px;
border-radius:10px;
color:#fff;
margin:10px 0;
flex-wrap:wrap;
gap:10px;
}

/* LADO ESQUERDO */

.player-left{
display:flex;
align-items:center;
gap:15px;
}

.play-btn{
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#ff0033;
color:#fff;
font-size:18px;
cursor:pointer;
}

/* EQUALIZER */

.equalizer{
display:flex;
gap:4px;
}

.equalizer span{
width:4px;
height:10px;
background:#00ffcc;
animation:eq 1s infinite;
}

.equalizer span:nth-child(2){animation-delay:.2s;}
.equalizer span:nth-child(3){animation-delay:.4s;}
.equalizer span:nth-child(4){animation-delay:.6s;}
.equalizer span:nth-child(5){animation-delay:.8s;}

@keyframes eq{
0%{height:8px;}
50%{height:20px;}
100%{height:8px;}
}

/* LADO DIREITO */

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

/* REDES SOCIAIS */

.player-social{
display:flex;
gap:8px;
}

.player-social a{
width:32px;
height:32px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:14px;
text-decoration:none;
transition:.3s;
}

/* CORES DAS REDES */

.player-social a:nth-child(1){
background:#1877F2; /* Facebook */
}

.player-social a:nth-child(2){
background:#E4405F; /* Instagram */
}

.player-social a:nth-child(3){
background:#FF0000; /* Youtube */
}

.player-social a:nth-child(4){
background:#25D366; /* WhatsApp */
}

.player-social a:hover{
transform:scale(1.1);
}

/* RESPONSIVO */

@media(max-width:768px){

.radio-player-modern{
flex-direction:column;
align-items:flex-start;
}

.player-center{
display:none;
}

.player-right{
width:100%;
justify-content:space-between;
}

.player-social{
margin-top:5px;
}

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

.card{
background:#111;
border-radius:10px;
overflow:hidden;
transition:0.3s;
}

.card:hover{
transform:scale(1.03);
}

.img-box img{
width:100%;
height:150px;
object-fit:cover;
}

.conteudo{
padding:10px;
}

.conteudo h3{
font-size:15px;
}

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

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

.rss-item{
background:#222;
padding:10px;
border-radius:8px;
}

.rss-item img{
width:100%;
height:120px;
object-fit:cover;
margin-bottom:5px;
}

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

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

.video h4{
font-size:14px;
margin-top:5px;
}

.redes-grid{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.redes-grid a{
padding:10px 15px;
border-radius:6px;
color:#fff;
text-decoration:none;
font-weight:bold;
}

.facebook{background:#1877f2;}
.instagram{background:#e1306c;}
.youtube{background:#ff0000;}
.whatsapp{background:#25d366;}
.redes{
text-align:center;
padding:30px 10px;
}

.redes-grid{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-top:15px;
}

.redes-grid a{
display:flex;
align-items:center;
gap:8px;
padding:10px 18px;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.redes-grid a img{
width:20px;
height:20px;
}

/* cores oficiais */
.facebook{background:#1877f2;}
.instagram{background:#e1306c;}
.youtube{background:#ff0000;}
.whatsapp{background:#25d366;}

.redes-grid a:hover{
transform:scale(1.05);
opacity:0.9;
}
.carrossel-anuncios{
width:100%;
overflow:hidden;
margin:20px 0;
}

.slider{
display:flex;
transition:transform 0.5s ease;
}

.slide{
min-width:100%;
box-sizing:border-box;
}

.slide img{
width:100%;
height:200px; /* 🔥 controla altura */
object-fit:cover;
border-radius:8px;
}
.carrossel-anuncios{
width:100%;
overflow:hidden;
margin:20px 0;
}

.carrossel-container{
display:flex;
gap:10px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

/* esconde barra (opcional) */
.carrossel-container::-webkit-scrollbar{
display:none;
}

.item{
flex:0 0 calc(20% - 10px); /* 🔥 5 por linha */
}

.item img{
width:100%;
height:120px;
object-fit:cover;
border-radius:8px;
transition:0.3s;
}

.item img:hover{
transform:scale(1.05);
}
.topo-site{
display:flex;
align-items:center;
justify-content:space-between;
gap:15px;
padding:10px;
background:#000;
color:#fff;
flex-wrap:wrap;
}

.topo-logo img{
height:150px;
}

.topo-banner img{
height:160px;
max-width:100%;
object-fit:cover;
border-radius:6px;
}

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

.topo-relogio{
text-align:right;
font-size:14px;
min-width:140px;
}

#hora{
font-size:18px;
font-weight:bold;
}

#data{
font-size:13px;
color:#ccc;
}
@media(max-width:768px){

.topo-site{
flex-direction:column;
text-align:center;
}

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

.topo-banner img{
height:auto;
}

}
.topo-logo {
    margin-left: 15px;
}
.menu-title {
    margin-top: 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    padding-left: 10px;
}
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 230px;
    background: #000;
}

.admin-content {
    flex: 1;
    background: #111;
    padding: 20px;
    color: #fff;
}
.form-admin {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-admin input,
.form-admin button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
}

.form-admin button {
    background: #e50914;
    color: #fff;
    cursor: pointer;
}

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

.card {
    background: #1c1c1c;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

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

.delete {
    display: inline-block;
    margin-top: 10px;
    background: #ff0000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
}
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 230px;
    background: #000;
    position: fixed;
    height: 100vh;
}

.admin-content {
    margin-left: 230px;
    padding: 20px;
    width: 100%;
    background: #111;
    color: #fff;
}
/* ===== CATEGORIAS ===== */
.categorias {
    padding: 30px 20px;
    background: #f5f5f5;
}

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

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

.categoria-bloco {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categoria-bloco h3 {
    border-left: 5px solid red;
    padding-left: 10px;
    margin-bottom: 10px;
}

.cat-item {
    margin-bottom: 8px;
}

.cat-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.cat-item a:hover {
    color: red;
}

/* RSS dentro da categoria */
.cat-item.rss a {
    color: #0077cc;
}


/* ===== CARROSSEL DE ANÚNCIOS ===== */
.carrossel-anuncios {
    padding: 20px;
    background: #fff;
}

.carrossel-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.carrossel-container .item img {
    height: 150px;
    border-radius: 8px;
}


/* ===== RSS ===== */
.rss {
    padding: 30px 20px;
}

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

.rss-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.rss-item a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


/* ===== VÍDEOS ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.video h4 {
    margin-top: 8px;
}


/* ===== RODAPÉ ===== */
.rodape {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.redes-sociais {
    margin-bottom: 15px;
}

.social {
    display: inline-block;
    margin: 0 8px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.facebook { background: #3b5998; }
.instagram { background: #e1306c; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }

.social:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
/* ===== CATEGORIAS PROFISSIONAL ===== */

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

.categoria-linha h3 {
    margin-bottom: 15px;
    border-left: 5px solid red;
    padding-left: 10px;
}

.categoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

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

.categoria-card:hover {
    transform: translateY(-3px);
}

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

.categoria-card .info {
    padding: 10px;
}

.categoria-card .info a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.categoria-card .data {
    font-size: 12px;
    color: #777;
}

/* RESPONSIVO */
@media(max-width: 900px){
    .categoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .categoria-grid {
        grid-template-columns: 1fr;
    }
}
.categoria-destaque {
    grid-column: span 3;
    position: relative;
}

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

.categoria-destaque .info {
    position: absolute;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    width: 100%;
    padding: 15px;
}

.categoria-destaque a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}
/* ===== REDES SOCIAIS MODERNAS ===== */

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-btn {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
    overflow: hidden;
}

/* efeito glow */
.social-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
    transition: 0.4s;
}

/* hover */
.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* FACEBOOK */
.facebook {
    background: linear-gradient(45deg, #1877f2, #4e8cff);
}

/* INSTAGRAM */
.instagram {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
}

/* YOUTUBE */
.youtube {
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
}

/* WHATSAPP */
.whatsapp {
    background: linear-gradient(45deg, #25d366, #5cff9d);
}

/* brilho ao passar */
.social-btn:hover::before {
    opacity: 1;
    filter: blur(25px);
}
/* ===== CARROSSEL MODERNO ===== */

.carrossel-anuncios {
    padding: 20px;
    background: #fff;
}

.carrossel-wrapper {
    position: relative;
    overflow: hidden;
}

.carrossel-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.carrossel-container::-webkit-scrollbar {
    display: none;
}

.item {
    min-width: 250px;
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.item:hover {
    transform: scale(1.05);
}

/* BOTÕES */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

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

.nav:hover {
    background: #000;
}
/* GRID PRINCIPAL */
.destaque-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* GRANDES */
.destaque-grande {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.card-grande {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

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

/* PEQUENOS */
.destaque-pequeno {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-pequeno {
    display: flex;
    gap: 10px;
}

.card-pequeno img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.card-pequeno .info {
    flex: 1;
}

/* TEXTO */
.categoria {
    font-size: 12px;
    color: #ffcc00;
}

.meta {
    font-size: 12px;
    color: #ccc;
}
.share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

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

.share-btn:hover {
    transform: scale(1.1);
}

.facebook { background: #1877f2; }
.whatsapp { background: #25d366; }
.twitter { background: #000; }
.telegram { background: #0088cc; }

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

/* ESQUERDA AGORA COM 3 */
.destaque-esquerda{
    display:grid;
    grid-template-rows: repeat(3, 1fr);
    gap:20px;
}

/* DIREITA */
.destaque-direita{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* 3 EM CIMA */
.linha-topo{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
}

/* 2 EMBAIXO */
.linha-baixo{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
}

/* CARD GRANDE */
.card-grande{
    position:relative;
    height:300px;
    border-radius:12px;
    overflow:hidden;
}

.card-grande img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:15px;
    background:linear-gradient(transparent, rgba(0,0,0,0.9));
    color:#fff;
}

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

.card-pequeno img{
    width:100px;
    height:80px;
    object-fit:cover;
}

.card-pequeno .info{
    padding:5px;
}

/* TEXTOS */
.categoria{
    font-size:12px;
    background:#ff3d00;
    color:#fff;
    padding:3px 6px;
    border-radius:4px;
}

.meta{
    font-size:12px;
    color:#ccc;
}
/* 🔥 ANIMAÇÃO SUAVE GLOBAL */
.card-grande,
.card-pequeno {
    transition: all 0.3s ease;
}

/* =========================
   🔥 CARD GRANDE (EFEITO)
========================= */
.card-grande {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.card-grande img {
    transition: transform 0.4s ease;
}

/* 🔥 HOVER */
.card-grande:hover img {
    transform: scale(1.08);
}

.card-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* =========================
   🔹 CARD PEQUENO (MODERNO)
========================= */
.card-pequeno {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* IMAGEM */
.card-pequeno img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* TEXTO */
.card-pequeno .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 🔥 HOVER */
.card-pequeno:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

/* =========================
   💎 CATEGORIA ESTILO CHIP
========================= */
.categoria {
    display: inline-block;
    font-size: 11px;
    background: linear-gradient(45deg, #ff3d00, #ff6a00);
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 5px;
}

/* =========================
   📝 TITULO MODERNO
========================= */
.card-pequeno h3 a,
.card-grande h2 a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.card-pequeno h3 a:hover,
.card-grande h2 a:hover {
    color: #ff3d00;
}

/* =========================
   📅 META INFO
========================= */
.meta {
    font-size: 12px;
    opacity: 0.8;
}

/* =========================
   🔥 GRID MAIS RESPIRADO
========================= */
.destaque-grid {
    gap: 25px;
}

.destaque-esquerda {
    gap: 25px;
}

.destaque-direita {
    gap: 15px;
}
/* 📱 RESPONSIVO MOBILE */
@media (max-width: 768px){

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

    /* esquerda vira lista */
    .destaque-esquerda{
        grid-template-rows: auto;
    }

    /* direita continua em coluna */
    .destaque-direita{
        flex-direction: column;
    }

    /* cards grandes menores no mobile */
    .card-grande{
        height: 220px;
    }

    /* cards pequenos ficam mais organizados */
    .card-pequeno{
        flex-direction: row;
    }

    .card-pequeno img{
        width: 90px;
        height: 70px;
    }

    /* textos menores */
    .card-grande h2{
        font-size: 18px;
    }

    .card-pequeno h3{
        font-size: 14px;
    }
}
/* 📱 MOBILE FULL WIDTH */
@media (max-width:768px){

    .destaque-grid{
        padding:10px 5px; /* reduz lateral */
    }

    .carrossel-anuncios{
        padding:10px 5px;
    }

    .container,
    .main,
    .content{
        padding:0 !important;
    }

    body{
        padding:0;
        margin:0;
    }

}
@media (max-width:768px){

    .destaque-grid{
        padding:0;
    }

    .card-grande,
    .card-pequeno{
        border-radius:0;
    }

}
/* 🔥 FULL WIDTH MOBILE REAL */
@media (max-width:768px){

    body{
        margin:0;
        padding:0;
    }

    /* REMOVE TODAS AS BORDAS LATERAIS */
    .destaque,
    .carrossel-anuncios,
    .rss,
    .categorias,
    .video-grid,
    .grid-7{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    /* REMOVE QUALQUER CONTAINER LIMITANDO */
    .container,
    .main,
    .content,
    .wrapper{
        max-width:100% !important;
        width:100% !important;
        padding:0 !important;
        margin:0 !important;
    }

    /* GRID FULL */
    .destaque-grid{
        padding:0 !important;
        width:100%;
    }

    /* CARDS ENCOSTANDO NA TELA */
    .card-grande,
    .card-pequeno{
        border-radius:0;
    }

}
html, body{
    width:100%;
    overflow-x:hidden;
}
.pagina {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.pagina-container {
    max-width: 900px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.pagina-container h1 {
    margin-bottom: 20px;
}

.pagina-conteudo {
    font-size: 16px;
    line-height: 1.7;
}
.menu-mobile-btn {
    display: none;
    font-size: 22px;
    padding: 10px;
    cursor: pointer;
    background: #111;
    color: #fff;
}

@media(max-width:768px){

.menu-mobile-btn{
    display:block;
}

.menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #111;
    transition: 0.3s;
    z-index: 999;
    padding-top: 60px;
}

.menu.active{
    left: 0;
}

.menu-links{
    flex-direction: column;
}

.menu-links li a{
    border-bottom: 1px solid #333;
}
}
/* TOPO DO MENU */
.menu-topo-mobile{
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.menu-topo-mobile button{
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

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

.menu-topo-mobile{
    display: flex;
}

.menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #111;
    transition: 0.3s;
    z-index: 999;
    padding-top: 0;
}

.menu.active{
    left: 0;
}

.menu-links{
    flex-direction: column;
}

.menu-links li a{
    border-bottom: 1px solid #333;
    padding: 12px;
}

}
.menu-topo-mobile{
    display: none;
}

@media(max-width:768px){

.menu-mobile-btn{
    display:block;
    background:#111;
    color:#fff;
    padding:10px;
    font-size:22px;
}

.menu{
    position: fixed;
    top:0;
    left:-100%;
    width:260px;
    height:100%;
    background:#111;
    transition:0.3s;
    z-index:999;
}

.menu.active{
    left:0;
}

.menu-topo-mobile{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    background:#000;
    color:#fff;
    font-weight:bold;
}

.menu-links{
    flex-direction:column;
}

.menu-links li a{
    color:#fff;
    border-bottom:1px solid #333;
    padding:12px;
}

}
.menu-mobile-btn{
    display: none;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.menu-mobile-btn i{
    font-size: 18px;
}

/* MOBILE */
@media(max-width:768px){
    .menu-mobile-btn{
        display: flex;
    }
}
.carrossel-anuncios {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
}

.carrossel-track-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carrossel-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: carrosselInfinito 35s linear infinite;
}

.carrossel-anuncios .item {
    flex: 0 0 auto;
    margin-right: 15px;
}

.carrossel-anuncios .item a {
    display: block;
}

.carrossel-anuncios .item img {
    height: 250px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* pausa ao passar o mouse */
.carrossel-anuncios:hover .carrossel-track {
    animation-play-state: paused;
}

@keyframes carrosselInfinito {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* responsivo */
@media (max-width: 768px) {
    .carrossel-anuncios .item img {
        height: 70px;
    }
}
.video-wrapper {
    position: relative;
}

/* camada invisível em cima do iframe */
.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
    background: transparent;
}
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

.video-content {
    width: 90%;
    max-width: 900px;
    margin: 5% auto;
    position: relative;
}

.video-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.fechar {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.banner-central{
    width: 100%;
    padding: 20px 0;
}

.banner-central-box{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.banner-central-box a{
    display: block;
    width: 100%;
}

.banner-central-box img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}