/* ========================================
   SEÇÕES DA HOME - CSS CONSOLIDADO
   Todos os estilos das seções em um único arquivo
   ======================================== */

/* ========================================
   1. SEÇÃO PROGRAMAÇÃO DE HOJE
   ======================================== */

.programacao-hoje {
    padding: 60px 0;
    background: #4A4A4A;
    color: white;
}

.programacao-hoje .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.programacao-navegacao-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.btn-nav-programa {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-nav-programa:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.btn-nav-programa:active {
    transform: scale(0.95);
}

.programa-destaque {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.programacao-vazia {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.programacao-vazia i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.programacao-info {
    margin-top: 2rem;
}

.programacao-info .d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.programacao-info .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.programacao-info .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

.programacao-info .badge i {
    font-size: 1.1rem;
}

.programacao-info .bg-success {
    background: #32CD32 !important;
}

.programacao-info .bg-success:hover {
    background: #28a428 !important;
}

.programacao-info .bg-primary {
    background: var(--radio-primary, #FF8C00) !important;
}

.programacao-info .bg-primary:hover {
    background: var(--radio-secondary, #FFA500) !important;
}

/* ========================================
   2. SEÇÃO PROPAGANDA/BANNERS
   ======================================== */

.banner-destaque,
.banners-propaganda {
    padding: 60px 0;
    background: var(--radio-primary, #FF8C00);
}

.banners-propaganda .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.banner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.banner-placeholder i {
    font-size: 5rem;
    color: var(--radio-primary, #FF8C00);
    margin-bottom: 1rem;
}

.banner-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.banner-item {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    text-decoration: none;
}

.banner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* ========================================
   3. SEÇÃO ÚLTIMAS NOTÍCIAS
   ======================================== */

.ultimas-noticias {
    padding: 60px 0;
    background: #f8f9fa;
}

.ultimas-noticias .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.ultimas-noticias .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.ultimas-noticias .btn-outline-primary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--radio-primary, #FF8C00);
    color: var(--radio-primary, #FF8C00);
    transition: all 0.3s ease;
}

.ultimas-noticias .btn-outline-primary:hover {
    background: var(--radio-primary, #FF8C00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* ========================================
   4. SEÇÃO TOP 10 MÚSICAS
   ======================================== */

.top-musicas {
    padding: 60px 0;
    background: #4A4A4A;
    color: white;
}

.top-musicas .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.top-musicas .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.musica-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.musica-item:hover {
    background: var(--radio-primary, #FF8C00);
    color: white;
    transform: translateX(10px);
    border-color: var(--radio-primary, #FF8C00);
}

.musica-posicao {
    width: 50px;
    height: 50px;
    background: var(--radio-primary, #FF8C00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.musica-item:hover .musica-posicao {
    background: white;
    color: var(--radio-primary, #FF8C00);
}

.musica-info {
    flex: 1;
    min-width: 0;
}

.musica-titulo {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.musica-artista {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.8);
}

.musica-movimento {
    font-size: 2rem;
    flex-shrink: 0;
    color: white;
}

.musica-movimento .text-success,
.musica-movimento .text-danger,
.musica-movimento .text-muted {
    color: white !important;
}

/* ========================================
   5. SEÇÃO APRESENTADORES (SLIDER)
   ======================================== */

.apresentador-destaque {
    padding: 60px 0;
    background: #f8f9fa;
}

.apresentador-destaque .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.apresentador-destaque .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.apresentador-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    min-height: 400px;
}

.apresentador-foto-wrapper {
    flex-shrink: 0;
}

.apresentador-foto-slide {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--radio-primary, #FF8C00);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apresentador-placeholder-slide {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    border: 5px solid var(--radio-primary, #FF8C00);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apresentador-info-slide {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.apresentador-nome-slide {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--radio-primary, #FF8C00);
    margin-bottom: 1rem;
}

.apresentador-bio-slide {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.apresentador-redes-slide {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-rede-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-rede-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

.btn-rede-facebook {
    background: #1877F2;
}

.btn-rede-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-rede-twitter {
    background: #1DA1F2;
}

.btn-rede-youtube {
    background: #FF0000;
}

.btn-rede-linkedin {
    background: #0077B5;
}

.btn-rede-whatsapp {
    background: #25D366;
}

/* Controles do Carousel */
#apresentadoresCarousel .carousel-control-prev,
#apresentadoresCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--radio-primary, #FF8C00);
    opacity: 0.8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#apresentadoresCarousel .carousel-control-prev {
    left: 20px;
}

#apresentadoresCarousel .carousel-control-next {
    right: 20px;
}

#apresentadoresCarousel .carousel-control-prev:hover,
#apresentadoresCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#apresentadoresCarousel .carousel-control-prev-icon,
#apresentadoresCarousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Indicadores */
#apresentadoresCarousel .carousel-indicators {
    bottom: -50px;
}

#apresentadoresCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
}

#apresentadoresCarousel .carousel-indicators button.active {
    background: var(--radio-primary, #FF8C00);
}

/* ========================================
   6. SEÇÃO ÚLTIMOS VÍDEOS
   ======================================== */

.ultimos-videos {
    padding: 60px 0;
    background: #fff;
}

.ultimos-videos .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.ultimos-videos .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.ultimos-videos .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.ultimos-videos .btn-outline-primary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--radio-primary, #FF8C00);
    color: var(--radio-primary, #FF8C00);
    transition: all 0.3s ease;
}

.ultimos-videos .btn-outline-primary:hover {
    background: var(--radio-primary, #FF8C00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* ========================================
   7. SEÇÃO ENQUETE ATIVA
   ======================================== */

.enquete-ativa {
    padding: 60px 0;
    background: #f8f9fa;
}

.enquete-ativa .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.enquete-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Cards de Opções de Votação */
.enquete-opcao-card {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.enquete-opcao-card:hover {
    border-color: var(--radio-primary, #FF8C00);
    background: var(--radio-primary, #FF8C00);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.enquete-opcao-card:hover .opcao-icon {
    color: white;
    transform: scale(1.2);
}

.enquete-opcao-card:hover .opcao-texto {
    color: white;
}

.opcao-card-content {
    width: 100%;
}

.opcao-icon {
    font-size: 3rem;
    color: var(--radio-primary, #FF8C00);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.opcao-texto {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

/* Cards de Resultados */
.enquete-resultado-card {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    min-height: 200px;
    transition: all 0.3s ease;
    width: 100%;
}

.enquete-resultado-card.vencedor {
    border-color: var(--radio-primary, #FF8C00);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

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

.resultado-texto {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.resultado-percentual {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--radio-primary, #FF8C00);
    display: block;
}

.resultado-votos {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Card de Total */
.enquete-total-card {
    background: white;
    border: 3px solid var(--radio-primary, #FF8C00);
    border-radius: 15px;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enquete-total-card i {
    color: var(--radio-primary, #FF8C00);
    font-size: 1.5rem;
}

.enquete-total-card strong {
    color: var(--radio-primary, #FF8C00);
    font-size: 1.5rem;
}

/* Aviso de Como Participar */
.enquete-aviso {
    max-width: 800px;
    margin: 0 auto;
}

.aviso-content {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid var(--radio-primary, #FF8C00);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
}

.aviso-icon {
    font-size: 2.5rem;
    color: var(--radio-primary, #FF8C00);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.aviso-texto {
    flex: 1;
}

.aviso-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--radio-primary, #FF8C00);
    margin-bottom: 0.5rem;
}

.aviso-descricao {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Botão Voltar */
.btn-outline-primary {
    border: 2px solid var(--radio-primary, #FF8C00);
    color: var(--radio-primary, #FF8C00);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--radio-primary, #FF8C00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* Antigos estilos (manter para compatibilidade) */
.enquete-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.enquete-opcoes {
    margin-bottom: 20px;
}

.enquete-opcao {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.enquete-opcao:hover {
    background: #e9ecef;
    border-color: var(--radio-primary, #FF8C00);
}

.enquete-opcao .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.enquete-opcao .form-check-label {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.btn-votar {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 1rem;
}

/* ========================================
/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablets e telas médias (1200px) */
@media (max-width: 1200px) {
    .ultimos-videos .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apresentador-slide {
        gap: 2rem;
    }
    
    .apresentador-foto-slide,
    .apresentador-placeholder-slide {
        width: 250px;
        height: 250px;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .programacao-navegacao-container {
        gap: 1rem;
    }
    
    .btn-nav-programa {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .musica-item {
        padding: 13px;
    }
    
    .musica-posicao {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile e tablets pequenos (768px) */
@media (max-width: 768px) {
    /* Todas as seções */
    .programacao-hoje,
    .banners-propaganda,
    .ultimas-noticias,
    .top-musicas,
    .apresentador-destaque,
    .ultimos-videos,
    .enquete-ativa {
        padding: 40px 0;
    }
    
    /* Todos os títulos */
    .section-title,
    .programacao-hoje .section-title,
    .banners-propaganda .section-title,
    .ultimas-noticias .section-title,
    .top-musicas .section-title,
    .apresentador-destaque .section-title,
    .ultimos-videos .section-title,
    .enquete-ativa .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Programação - FIX MOBILE */
    .programacao-navegacao-container {
        gap: 0.75rem;
        padding: 0 0.5rem;
        overflow: hidden;
    }
    
    .btn-nav-programa {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .programa-destaque {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    /* Banners */
    .banner-placeholder i {
        font-size: 3rem;
    }
    
    .banner-placeholder p {
        font-size: 1.2rem;
    }
    
    /* Músicas */
    .musica-item {
        padding: 12px;
        gap: 12px;
    }
    
    .musica-posicao {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .musica-titulo {
        font-size: 0.9rem;
    }
    
    .musica-artista {
        font-size: 0.8rem;
    }
    
    .musica-movimento {
        font-size: 1.5rem;
    }
    
    /* Apresentador */
    .apresentador-slide {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        min-height: auto;
    }
    
    .apresentador-foto-slide,
    .apresentador-placeholder-slide {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .apresentador-nome-slide {
        font-size: 1.8rem;
    }
    
    .apresentador-bio-slide {
        font-size: 1rem;
    }
    
    .btn-rede-social {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    #apresentadoresCarousel .carousel-control-prev,
    #apresentadoresCarousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    #apresentadoresCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #apresentadoresCarousel .carousel-control-next {
        right: 10px;
    }
    
    /* Vídeos */
    .ultimos-videos .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Enquete */
    .enquete-card {
        padding: 20px;
    }
    
    .enquete-titulo {
        font-size: 1.2rem;
    }
}

/* Mobile pequeno (576px) */
@media (max-width: 576px) {
    /* Todas as seções */
    .programacao-hoje,
    .banners-propaganda,
    .ultimas-noticias,
    .top-musicas,
    .apresentador-destaque,
    .ultimos-videos,
    .enquete-ativa {
        padding: 30px 0;
    }
    
    /* Títulos ainda menores */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Programação - FIX MOBILE */
    .programacao-navegacao-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
        overflow: hidden;
    }
    
    .btn-nav-programa {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .programa-destaque {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    /* Banners */
    .banner-placeholder i {
        font-size: 2.5rem;
    }
    
    .banner-placeholder p {
        font-size: 1rem;
    }
    
    /* Músicas */
    .musica-item {
        padding: 10px;
        gap: 10px;
    }
    
    .musica-posicao {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .musica-titulo {
        font-size: 0.85rem;
    }
    
    .musica-artista {
        font-size: 0.75rem;
    }
    
    .musica-movimento {
        font-size: 1.3rem;
    }
    
    /* Apresentador */
    .apresentador-foto-slide,
    .apresentador-placeholder-slide {
        width: 180px;
        height: 180px;
        font-size: 4rem;
    }
    
    .apresentador-nome-slide {
        font-size: 1.5rem;
    }
    
    .apresentador-bio-slide {
        font-size: 0.95rem;
    }
    
    .btn-rede-social {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    #apresentadoresCarousel .carousel-control-prev,
    #apresentadoresCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    #apresentadoresCarousel .carousel-control-prev {
        left: 5px;
    }
    
    #apresentadoresCarousel .carousel-control-next {
        right: 5px;
    }
    
    /* Enquete */
    .enquete-card {
        padding: 15px;
    }
    
    .enquete-titulo {
        font-size: 1.1rem;
    }
    
    .enquete-opcao {
        padding: 12px;
    }
    
    .enquete-opcao .form-check-label {
        font-size: 0.9rem;
    }
}

/* ========================================
   UTILITÁRIOS GERAIS
   ======================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 30px;
}

.section-title .text-primary {
    color: var(--radio-primary, #FF8C00) !important;
}

/* Empty State Icon */
.empty-state-icon {
    font-size: 4rem;
    opacity: 0.3;
}


/* ========================================
   RESPONSIVIDADE - ENQUETE
   ======================================== */

@media (max-width: 768px) {
    .enquete-aviso {
        padding: 0 1rem;
    }
    
    .aviso-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .aviso-icon {
        font-size: 2rem;
        margin-top: 0;
    }
    
    .aviso-titulo {
        font-size: 1.1rem;
    }
    
    .aviso-descricao {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .aviso-content {
        padding: 1rem;
    }
    
    .aviso-icon {
        font-size: 1.75rem;
    }
    
    .aviso-titulo {
        font-size: 1rem;
    }
    
    .aviso-descricao {
        font-size: 0.9rem;
    }
}
