/* 1. Garanta que o slide tenha uma altura definida e esconda o excesso */
.hero-modern {
    position: relative;
    width: 100%;
    /* Defina aqui a altura desejada para o seu hero. 
       Exemplos: 500px, 80vh (80% da altura da tela), etc. */
    height: 600px; 
    overflow: hidden; /* IMPORTANTE: corta qualquer imagem que tente sair */
}
.hero-slide { 
    width: 100%; height: 600px; display: flex; align-items: center; justify-content: space-between; 
    /* ESTA É A LINHA PRINCIPAL QUE RESOLVE SEU PROBLEMA: */
    background-size: cover; 
    background-position: center center; /* Mantém o rapaz centralizado */
    background-repeat: no-repeat; position: relative; 
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,#0f172a 10%,rgba(15,23,42,.6)); }
.hero-grid { display: grid; grid-template-columns:1fr 420px; gap:60px; align-items:center; position: relative; z-index:2; }
.hero-badge { background:#ef4444; color:#fff; padding:6px 14px; border-radius:20px; font-size:13px; display:inline-flex; align-items:center; gap:6px; margin-bottom:18px; }
.live-dot { width:8px; height:8px; background:white; border-radius:50%; animation:pulse 1.5s infinite; }
@keyframes pulse {0%{opacity:1}50%{opacity:.3}100%{opacity:1}}
.hero-title { font-size:52px; font-weight:800; color:white; line-height:1.1; }
.hero-subtitle { color:#cbd5f5; font-size:20px; margin-top:10px; }
.hero-desc { color:#e5e7eb; margin-top:12px; max-width:500px; }
.hero-buttons { margin-top:25px; display:flex; gap:15px; }
.btn-primary-hero { background:#3b82f6; color:#fff; border:none; padding:14px 26px; border-radius:12px; font-weight:600; cursor:pointer; }
.btn-primary-hero:hover { background:#2563eb; }
.btn-outline-hero { border:1px solid #fff; padding:13px 24px; border-radius:12px; color:#fff; text-decoration:none; }
.hero-stats { display:flex; gap:40px; margin-top:40px; }
.hero-stats strong { font-size:20px; display:block; color:#fff; }
.hero-stats span { font-size:13px; color:#cbd5f5; }
.hero-player { backdrop-filter: blur(15px); background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); border-radius:18px; padding:30px; color:white; }
.player-top { font-size:13px; margin-bottom:10px; color:#f87171; }
.player-controls { display:flex; align-items:center; gap:20px; margin-top:20px; }
.player-play { width:60px; height:60px; border-radius:50%; border:none; background:#3b82f6; color:white; font-size:22px; cursor:pointer; }
.wave { display:flex; gap:4px; align-items:flex-end; }
.wave span { width:4px; height:16px; background:white; animation:wave 1s infinite; }
.wave span:nth-child(2){animation-delay:.1s;}
.wave span:nth-child(3){animation-delay:.2s;}
.wave span:nth-child(4){animation-delay:.3s;}
.wave span:nth-child(5){animation-delay:.4s;}
@keyframes wave {0%{height:10px}50%{height:28px}100%{height:10px}}
.listeners { margin-top:15px; font-size:14px; color:#cbd5f5; }
.hero-nav { position:absolute; top:50%; transform:translateY(-50%); background: rgba(0,0,0,.4); border:none; color:white; font-size:28px; width:42px; height:42px; border-radius:50%; cursor:pointer; z-index:10; }
.hero-nav.prev { left:25px; } 
.hero-nav.next { right:25px; }
.hero-indicators { position:absolute; bottom:30px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:10; }
.hero-indicators span { width:10px; height:10px; border-radius:50%; background:#ffffff60; cursor:pointer; }
.hero-indicators span.active { background:white; }
.ticker-modern { background:#0f172a; color:white; padding:10px; overflow:hidden; white-space:nowrap; }
.ticker-track { display:inline-block; animation:ticker 20s linear infinite; }
@keyframes ticker { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

/* Responsividade */
@media(max-width:992px){.hero-grid{grid-template-columns:1fr; text-align:center; gap:40px;}}
@media(max-width:768px){.hero-slide{min-height:520px;padding:40px 0;}.hero-overlay{background:linear-gradient(180deg,#0f172a 10%,rgba(15,23,42,.7));}}
@media(max-width:480px){.hero-title{font-size:26px;}}
/* ================= NEWS SECTION ================= */

.news-section{
padding:70px 0;
background:#f8fafc;
}

.news-section .container{
max-width:1200px;
margin:auto;
padding:0 16px;
}

/* HEADER */

.news-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.news-header h2{
font-size:34px;
font-weight:800;
color:#1e293b;
}

.news-divider{
width:70px;
height:4px;
background:#2563eb;
border-radius:4px;
margin-top:6px;
}

.news-more-btn{
border:1px solid #2563eb;
color:#2563eb;
padding:8px 16px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.news-more-btn:hover{
background:#2563eb;
color:white;
}

/* GRID */

.news-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

/* FEATURED */

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

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

.featured-image{
position:relative;
}

.featured-image img{
width:100%;
height:260px;
object-fit:cover;
}

.category{
position:absolute;
top:14px;
left:14px;
color:white;
padding:6px 12px;
border-radius:20px;
font-size:12px;
font-weight:700;
}

.readtime{
position:absolute;
bottom:14px;
right:14px;
background:rgba(0,0,0,0.7);
color:white;
padding:4px 10px;
border-radius:20px;
font-size:12px;
}

.featured-content{
padding:24px;
}

.featured-content h3{
font-size:22px;
margin-bottom:12px;
}

.featured-content p{
color:#64748b;
margin-bottom:16px;
}

.news-meta{
display:flex;
justify-content:space-between;
font-size:14px;
color:#64748b;
}

.read-more{
color:#2563eb;
font-weight:600;
}

/* SIDE NEWS */

.side-news{
display:flex;
flex-direction:column;
gap:20px;
}

.side-card{
display:flex;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 6px 15px rgba(0,0,0,0.06);
text-decoration:none;
color:inherit;
transition:.3s;
}

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

.side-image{
position:relative;
width:120px;
flex-shrink:0;
}

.side-image img{
width:100%;
height:100%;
object-fit:cover;
}

.side-content{
padding:14px;
}

.side-content h4{
font-size:15px;
margin-bottom:6px;
}

.side-content p{
font-size:13px;
color:#64748b;
margin-bottom:6px;
}

.news-date{
font-size:12px;
color:#94a3b8;
}

/* CATEGORY COLORS */

.category.blue{background:#3b82f6;}
.category.green{background:#22c55e;}
.category.orange{background:#f97316;}
.category.red{background:#ef4444;}
.category.primary{background:#2563eb;}

/* RESPONSIVO */

@media(max-width:900px){

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

.side-card{
flex-direction:column;
}

.side-image{
width:100%;
height:160px;
}

}

@media(max-width:500px){

.featured-image img{
height:200px;
}

.news-header h2{
font-size:26px;
}

}
body { font-family:'Inter',sans-serif; margin:0; background:#f5f5f5; color:#333; }
.container { max-width:1200px; margin:auto; padding:20px; }

/* GRID */
.grid { display:flex; flex-wrap:wrap; gap:20px; margin-top:20px; }
.program-list { flex:2; }
.top-songs { flex:1; }

/* LIVE SHOW TOP - maior */
.live-show-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(90deg,#1e3a8a,#2563eb);
  color:#fff;
  padding:20px;
  border-radius:14px;
  margin-bottom:25px;
  flex-wrap:wrap;
  min-height:100px;
}
.live-show-card .host-avatar { width:80px; height:80px; border-radius:50%; border:3px solid rgba(255,255,255,0.3); object-fit:cover; margin-right:20px; }
.live-info { flex:1; min-width:250px; margin-right:20px; }
.live-info .badge { background:rgba(255,255,255,0.25); color:#fff; padding:4px 8px; border-radius:9999px; font-size:0.85rem; font-weight:bold; display:inline-block; margin-bottom:6px; }
.show-title { font-size:1.4rem; font-weight:600; margin:2px 0; }
.show-host { font-size:1rem; opacity:0.85; margin:2px 0; }
.show-description { font-size:0.9rem; opacity:0.75; margin:2px 0; }
.show-time { font-size:1rem; font-weight:bold; white-space:nowrap; }

/* CARD */
.card { background:#fff; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.08); overflow:hidden; margin-bottom:20px; }
.card-header { padding:14px 18px; font-weight:bold; font-size:1.1rem; border-bottom:1px solid #eee; }
.card-content { padding:14px 18px; }

/* PROGRAM ITEM */
.program-item { display:flex; justify-content:space-between; align-items:center; padding:14px; border-radius:12px; transition:0.3s; margin-bottom:8px; }
.program-item:hover { background:#f0f0f0; }
.program-item.live { border-left:4px solid #1d4ed8; background:rgba(29,78,216,0.1); }
.program-info { display:flex; align-items:center; gap:14px; }
.start-time { font-weight:bold; color:#1d4ed8; min-width:55px; font-size:0.95rem; }
.info-text h4 { margin:0; font-weight:600; font-size:1rem; }
.info-text p { margin:0; font-size:0.85rem; opacity:0.7; }

/* BADGES */
.badge { padding:4px 8px; border-radius:9999px; font-weight:bold; font-size:0.75rem; text-align:center; }
.badge-live { background:#e11d48; color:#fff; }
.badge-upcoming { background:#f3f4f6; color:#374151; }
.badge-finished { background:#f3f4f6; color:#6b7280; }

/* SONG ITEM */
.song-item { display:flex; align-items:center; gap:12px; padding:12px; border-radius:12px; transition:0.3s; }
.song-item:hover { background:#f0f0f0; }
.song-position { width:32px; height:32px; border-radius:50%; background:#1d4ed8; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:bold; font-size:0.85rem; }
.song-info { flex:1; min-width:0; }
.song-info h5 { margin:0; font-weight:600; font-size:0.95rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.song-info p { margin:0; font-size:0.85rem; opacity:0.7; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.song-trend { font-size:0.85rem; }

/* NO PROGRAM */
.no-program { text-align:center; opacity:0.6; padding:16px 0; }

/* RESPONSIVO */
@media(max-width:768px) {
  .grid { flex-direction:column; }
  .live-show-card { flex-direction:column; align-items:flex-start; min-height:auto; }
  .show-time { margin-top:8px; }
}
/* ================= GLOBAL ================= */
body {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 0;
    color: #374151;
}

/* ================= POLLS ================= */
.poll-section {
    padding: 60px 16px;
}

.poll-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start; /* padrão */
    max-width: 1200px;
    margin: 40px auto 0 auto; /* espaço superior e centralização */
}

/* ================= POLL CARD ================= */
.poll-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e0e7ff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    width: calc(50% - 12px);
    min-width: 280px;
    flex: 1 1 300px;
}

.poll-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

.poll-description {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-info input[type="checkbox"] {
    pointer-events: none;
}

.radio-circle {
    width: 14px;
    height: 14px;
    border: 2px solid #2563eb;
    border-radius: 50%;
}

.option-info span {
    font-weight: 500;
    font-size: 14px;
}

.option-votes {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 6px;
    height: 6px;
    width: 100%;
    overflow: hidden;
}

.progress-bar .progress {
    background: #2563eb;
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.poll-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.poll-stats span {
    font-size: 12px;
    color: #6b7280;
    margin-right: 12px;
}

.vote-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.vote-btn:hover {
    background: #1d4ed8;
}

.voted-msg {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

/* ================= CENTRALIZA SE TIVER APENAS UM ================= */
.poll-wrapper:only-child,
.poll-wrapper > .poll-card:only-child {
    justify-content: center; /* centraliza o wrapper */
}

.poll-wrapper > .poll-card:only-child {
    width: 60%; /* aumenta tamanho do card único */
    margin: 0 auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .poll-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .poll-wrapper {
        justify-content: center;
    }

    .poll-card {
        width: 100%;
        padding: 16px;
    }

    .poll-header h3 {
        font-size: 16px;
    }

    .option-info span {
        font-size: 13px;
    }

    .vote-btn {
        width: 100%;
    }
}
/* ================= VIDEO SECTION ================= */

.video-section{
padding:80px 0;
background:#f8fafc;
}

.video-section .container{
max-width:1200px;
margin:auto;
padding:0 18px;
}

/* HEADER */

.video-header{
text-align:center;
margin-bottom:50px;
}

.video-header h2{
font-size:38px;
font-weight:800;
color:#0f172a;
margin-bottom:10px;
letter-spacing:-0.5px;
}

.video-header p{
color:#64748b;
font-size:18px;
max-width:600px;
margin:auto;
}

/* LAYOUT */

.video-layout{
display:flex;
gap:30px;
align-items:flex-start;
}

/* GRID */

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

/* CARD */

.video-card{
background:#ffffff;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
border:1px solid #e2e8f0;
}

.video-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 35px rgba(0,0,0,0.15);
}

/* THUMB */

.video-thumb{
position:relative;
aspect-ratio:16/9;
cursor:pointer;
overflow:hidden;
}

.video-thumb img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

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

/* PLAY BUTTON */

.video-play{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.75);
color:#fff;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
transition:.3s;
backdrop-filter:blur(6px);
}

.video-card:hover .video-play{
background:#ef4444;
transform:translate(-50%,-50%) scale(1.1);
}

/* CATEGORY BADGE */

.video-badge{
position:absolute;
top:12px;
left:12px;
background:#2563eb;
color:white;
font-size:11px;
padding:5px 10px;
border-radius:6px;
font-weight:600;
letter-spacing:.5px;
}

/* INFO */

.video-info{
padding:18px;
}

.video-info h3{
font-size:17px;
font-weight:700;
margin-bottom:8px;
color:#0f172a;
line-height:1.3;
}

.video-info p{
font-size:14px;
color:#64748b;
margin-bottom:12px;
line-height:1.5;
}

/* META */

.video-date{
font-size:12px;
color:#94a3b8;
display:block;
margin-bottom:12px;
}

/* WATCH BUTTON */

.video-watch-btn{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
color:#fff;
border:none;
padding:8px 14px;
border-radius:8px;
font-size:13px;
font-weight:600;
cursor:pointer;
display:inline-flex;
align-items:center;
gap:6px;
transition:all .25s ease;
box-shadow:0 4px 10px rgba(37,99,235,0.25);
}

.video-watch-btn:hover{
background:linear-gradient(135deg,#1d4ed8,#1e40af);
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(37,99,235,0.35);
}

/* ================= MODAL ================= */

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

.video-modal-content{
background:#0f172a;
border-radius:14px;
max-width:900px;
width:100%;
padding:20px;
position:relative;
box-shadow:0 20px 60px rgba(0,0,0,0.5);
animation:videoModal .3s ease;
}

@keyframes videoModal{
from{
opacity:0;
transform:scale(.9);
}
to{
opacity:1;
transform:scale(1);
}
}

.video-close{
position:absolute;
top:10px;
right:14px;
font-size:26px;
cursor:pointer;
color:white;
opacity:.8;
transition:.2s;
}

.video-close:hover{
opacity:1;
transform:scale(1.1);
}

.video-iframe-container{
width:100%;
aspect-ratio:16/9;
margin-bottom:14px;
}

.video-iframe-container iframe,
.video-iframe-container video{
width:100%;
height:100%;
border:none;
border-radius:10px;
}

#videoModalTitle{
color:white;
font-size:18px;
font-weight:600;
}

/* ================= BANNERS ================= */

.video-banners{
width:300px;
display:flex;
flex-direction:column;
gap:22px;
}

.video-banner{
display:block;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
transition:all .3s ease;
}

.video-banner img{
width:100%;
display:block;
}

.video-banner:hover{
transform:translateY(-4px) scale(1.02);
box-shadow:0 16px 30px rgba(0,0,0,0.2);
}

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

@media(max-width:1100px){

.video-layout{
flex-direction:column;
}

.video-banners{
width:100%;
flex-direction:row;
flex-wrap:wrap;
}

.video-banner{
width:48%;
}

}

@media(max-width:900px){

.video-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

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

.video-header h2{
font-size:30px;
}

.video-banner{
width:100%;
}

.video-watch-btn{
width:100%;
justify-content:center;
}

}