/* ============================================
   RADIOSITE - CSS PÚBLICO
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    padding-bottom: 100px; /* Espaço para o player fixo */
}

/* ============================================
   HEADER
   ============================================ */
.radio-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    max-width: 120px;
    height: auto;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    position: relative;
    display: inline-block;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: var(--radio-primary);
    border-radius: 50%;
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: var(--radio-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--radio-primary);
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #4A4A4A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--radio-primary);
    transform: scale(1.1);
    color: white;
}

.social-icon-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Imagem de fundo responsiva */
.hero-banner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay escuro sobre a imagem */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 30px;
}

.btn-hero-play {
    background: white;
    color: var(--radio-primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-hero-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hero-logo-circle {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.hero-logo-icone {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: pulse 2s infinite;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Centralizar textos quando ícone está desativado */
.hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Remover margens extras quando centralizado */
.hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content .hero-title {
    margin-bottom: 15px;
}

.hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content .hero-subtitle {
    margin-bottom: 20px;
}

.hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content .mt-4 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content .btn-hero-play {
    margin-bottom: 0 !important;
}

/* Desktop/Tablet: centralizar verticalmente quando só tem textos */
@media (min-width: 992px) {
    /* Hero-banner sem padding e com flexbox - usando seletor mais simples */
    .hero-banner:has(.hero-content):not(:has(.hero-image)) {
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remover align-items-center da row */
    .hero-banner:has(.hero-content):not(:has(.hero-image)) .row {
        align-items: flex-start !important;
    }
    
    /* Container relativo */
    .hero-banner:has(.hero-content):not(:has(.hero-image)) .container {
        position: relative !important;
    }
    
    /* Fazer hero-content ocupar 100% quando centralizado */
    .hero-banner:has(.hero-content):not(:has(.hero-image)) .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Centralizar ícone quando textos estão desativados */
.hero-banner .row:has(.hero-image):not(:has(.hero-content)) {
    justify-content: center;
}

/* Mobile: sempre centralizar quando só tem textos */
@media (max-width: 991px) {
    /* Reduzir altura do hero no mobile */
    .hero-banner {
        min-height: 250px;
        padding: 40px 0;
    }
    
    /* Centralizar verticalmente o container do hero */
    .hero-banner .container {
        display: flex;
        align-items: center;
        min-height: 250px;
    }
    
    .hero-banner .row {
        width: 100%;
    }
    
    /* Centralizar textos no mobile */
    .hero-banner .hero-content {
        text-align: center !important;
    }
    
    /* Reduzir tamanho dos títulos no mobile */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    /* Centralizar botão no mobile */
    .hero-banner .btn-hero-play {
        display: inline-block;
        margin: 0 auto;
    }
    
    /* Ajustar ícone no mobile */
    .hero-logo-container {
        width: 250px !important; /* 200px + 25% = 250px */
        height: 250px !important;
        margin: 0 auto 30px auto; /* Adiciona 30px de margem inferior */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-icone {
        width: 250px !important; /* 200px + 25% = 250px */
        height: 250px !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .hero-logo-circle {
        width: 250px !important; /* 200px + 25% = 250px */
        height: 250px !important;
    }
    
    .hero-logo-text {
        font-size: 5rem !important; /* 4rem + 25% = 5rem */
    }
    
    /* Centralizar quando só tem textos */
    .hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content {
        text-align: center;
    }
    
    .hero-banner .row:has(.hero-content):not(:has(.hero-image)) .hero-content .btn-hero-play {
        display: inline-block;
    }
    
    /* Centralizar quando só tem ícone */
    .hero-banner .row:has(.hero-image):not(:has(.hero-content)) {
        justify-content: center;
    }
    
    .hero-banner .row:has(.hero-image):not(:has(.hero-content)) .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Adicionar espaçamento entre colunas no mobile quando ambos estão ativos */
    .hero-banner .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-banner .hero-image {
        margin-top: 30px;
    }
}

/* ============================================
   PROGRAMAÇÃO DE HOJE
   ============================================ */
.programacao-hoje {
    background: #4A4A4A;
    padding: 40px 0;
    color: white;
}

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

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

.programacao-hoje .section-title {
    color: white;
}

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

.programa-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.programa-card:hover {
    background: var(--radio-primary);
    transform: translateY(-5px);
}

.programa-horario {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.programa-nome {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.programa-apresentador {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   BANNER DESTAQUE
   ============================================ */
.banner-destaque {
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    padding: 60px 0;
    text-align: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
}

.banner-logo {
    position: relative;
    display: inline-block;
}

.banner-logo-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: inline-block;
}

.banner-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: var(--radio-primary);
}

.banner-logo-fm {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-left: 20px;
    vertical-align: middle;
}

/* ============================================
   SEÇÕES DE CONTEÚDO
   ============================================ */
.noticias-destaque,
.top-musicas,
.apresentador-destaque,
.ultimos-videos,
.enquete-ativa {
    padding: 60px 0;
}

.noticias-destaque {
    background: #f8f9fa;
}

.top-musicas {
    background: #fff;
}

.apresentador-destaque {
    background: #f8f9fa;
}

.ultimos-videos {
    background: #fff;
}

.enquete-ativa {
    background: #f8f9fa;
}

/* ============================================
   NOTÍCIA CARD
   ============================================ */
.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.noticia-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.noticia-imagem,
.noticia-imagem-placeholder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.noticia-imagem-placeholder {
    background: var(--radio-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.noticia-content {
    padding: 20px;
}

.noticia-categoria {
    display: inline-block;
    background: var(--radio-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.noticia-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.noticia-resumo {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.noticia-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
}

/* ============================================
   TOP MÚSICAS
   ============================================ */
.top-musica-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

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

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

.top-musica-item:hover .top-musica-numero {
    background: white;
    color: var(--radio-primary);
}

.top-musica-info {
    flex: 1;
}

.top-musica-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.top-musica-info p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

.top-musica-movimento {
    font-size: 1.5rem;
}

/* ============================================
   APRESENTADOR DESTAQUE
   ============================================ */
.apresentador-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.apresentador-foto,
.apresentador-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.apresentador-placeholder {
    background: var(--radio-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

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

.apresentador-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--radio-primary);
    margin-bottom: 10px;
}

.apresentador-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

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

/* ============================================
   VÍDEO CARD
   ============================================ */
.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--radio-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    color: white;
}

.video-content {
    padding: 20px;
}

.video-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.video-descricao {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
}

/* ============================================
   ENQUETE
   ============================================ */
.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-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.enquete-opcao:hover {
    background: #e9ecef;
}

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

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

/* ============================================
   PLAYER FIXO
   ============================================ */
.radio-player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
}

.player-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-controls {
    flex-shrink: 0;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--radio-primary);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.player-info {
    flex: 1;
    color: white;
}

.player-status {
    margin-bottom: 5px;
}

.status-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.now-playing-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.now-playing-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-volume {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-volume:hover {
    background: rgba(255,255,255,0.3);
}

.volume-slider {
    width: 100px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255,255,255,0.3);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.radio-footer {
    background: #4A4A4A;
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-logo-placeholder {
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
}

.footer-logo-placeholder .logo-circle {
    width: 150px;
    height: 150px;
}

.footer-logo-placeholder .logo-text {
    font-size: 4rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--radio-primary);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--radio-primary);
    opacity: 1;
}

.footer-contact li {
    color: white;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .main-nav.show {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo-container {
        width: 200px;
        height: 200px;
    }

    .hero-logo-circle {
        width: 200px;
        height: 200px;
    }

    .hero-logo-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .banner-title {
        font-size: 2rem;
    }

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

    .player-content {
        flex-wrap: wrap;
    }

    .player-volume {
        width: 100%;
        justify-content: center;
    }

    .volume-slider {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-hero-play {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .social-icons {
        gap: 5px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.text-primary {
    color: var(--radio-primary) !important;
}

.btn-primary {
    background: var(--radio-primary);
    border-color: var(--radio-primary);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--radio-secondary);
    border-color: var(--radio-secondary);
    color: white;
}

.btn-outline-primary {
    border-color: var(--radio-primary);
    color: var(--radio-primary);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--radio-primary);
    border-color: var(--radio-primary);
    color: white;
}

/* ============================================
   PÁGINAS INTERNAS
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Programação */
.programa-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.programa-imagem,
.programa-imagem-placeholder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.programa-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programa-imagem-placeholder {
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.programa-content {
    padding: 20px;
}

.programa-nome {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.programa-apresentador,
.programa-horario {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.programa-descricao {
    font-size: 0.95rem;
    color: #34495e;
    margin: 15px 0;
}

.programa-dias {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.dia-badge {
    background: var(--radio-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Apresentadores */
.apresentador-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.apresentador-foto,
.apresentador-foto-placeholder {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.apresentador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apresentador-foto-placeholder {
    background: linear-gradient(135deg, var(--radio-primary) 0%, var(--radio-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.apresentador-content {
    padding: 20px;
}

.apresentador-nome {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.apresentador-bio {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
}

.apresentador-programas {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.programa-tag {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 5px 5px 0 0;
}

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

.rede-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--radio-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.rede-social:hover {
    background: var(--radio-secondary);
    transform: scale(1.1);
    color: white;
}

/* Contato */
.contato-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--radio-primary);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: #7f8c8d;
    margin: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--radio-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--radio-secondary);
    transform: scale(1.1);
    color: white;
}

.contato-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contato-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contato-form .form-control,
.contato-form .form-select {
    border: 2px solid #ecf0f1;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.contato-form .form-control:focus,
.contato-form .form-select:focus {
    border-color: var(--radio-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.contato-form .btn-primary {
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Paginação */
.pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.page-link {
    color: var(--radio-primary);
    border: 2px solid #ecf0f1;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--radio-primary);
    border-color: var(--radio-primary);
    color: white;
}

.page-item.active .page-link {
    background: var(--radio-primary);
    border-color: var(--radio-primary);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   BOTÕES DE AUTENTICAÇÃO NO HEADER
   ============================================ */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login,
.btn-register,
.btn-user {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--radio-primary);
    color: var(--radio-primary);
}

.btn-login:hover {
    background: var(--radio-primary);
    color: white;
}

.btn-register {
    background: var(--radio-primary);
    border: 2px solid var(--radio-primary);
    color: white;
}

.btn-register:hover {
    background: var(--radio-secondary);
    border-color: var(--radio-secondary);
    color: white;
}

.btn-user {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #2c3e50;
}

.btn-whatsapp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-user:hover {
    background: var(--radio-primary);
    border-color: var(--radio-primary);
    color: white;
}

.user-menu {
    display: flex;
    align-items: center;
}

/* Responsivo para botões de auth */
@media (max-width: 992px) {
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-login,
    .btn-register,
    .btn-user {
        flex: 1;
    }
    
    .btn-whatsapp {
        flex: 0 0 auto;
        margin-left: 10px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-login,
    .btn-register,
    .btn-user {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .btn-login i,
    .btn-register i,
    .btn-user i {
        display: none;
    }
}

/* ============================================
   SUBMENUS NO HEADER
   ============================================ */
.nav-menu .has-submenu {
    position: relative;
}

.nav-menu .has-submenu > a {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Impedir quebra de linha */
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.submenu a:hover {
    background: #f8f9fa;
    color: var(--radio-primary);
    border-left-color: var(--radio-primary);
    padding-left: 25px;
}

/* Responsivo para submenus */
@media (max-width: 992px) {
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin-top: 5px;
        display: none;
    }
    
    .has-submenu.active .submenu {
        display: block;
    }
    
    .submenu a {
        padding-left: 30px;
        font-size: 0.85rem;
    }
    
    .submenu a:hover {
        padding-left: 35px;
    }
}

/* ============================================
   PÁGINA DE HISTÓRIA
   ============================================ */
.historia-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.historia-intro .lead {
    font-size: 1.15rem;
}

.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--radio-primary), var(--radio-secondary));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--radio-primary);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}

.timeline-content h3 {
    color: var(--radio-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #7f8c8d;
    line-height: 1.8;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--radio-primary);
    height: 100%;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--radio-primary);
    margin-bottom: 15px;
}

.info-box h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box p {
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

.valores-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.valores-list li {
    color: #2c3e50;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.valores-list li:last-child {
    border-bottom: none;
}

.valores-list i {
    color: var(--radio-primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .historia-content {
        padding: 25px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
        width: 20px;
        height: 20px;
    }
}


/* ============================================
   ALERTAS DE SESSÃO
   ============================================ */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.alert-info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.alert .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.alert .btn-close:hover {
    opacity: 1;
}

.alert i {
    font-size: 1.2rem;
    vertical-align: middle;
}


/* ============================================
   PÁGINA DE NOTÍCIA INDIVIDUAL
   ============================================ */
.noticia-header {
    background: #ffffff;
    padding: 3rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.noticia-categoria {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: var(--radio-primary, #FF8C00);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.noticia-titulo {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.noticia-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #6c757d;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.noticia-imagem-destaque {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.noticia-resumo {
    font-size: 1.5rem;
    color: #6c757d;
    font-style: italic;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid var(--radio-primary, #FF8C00);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.noticia-conteudo {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 3rem;
}

.noticia-conteudo p {
    margin-bottom: 1.5rem;
}

.noticia-conteudo h2,
.noticia-conteudo h3,
.noticia-conteudo h4 {
    color: #212529;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.noticia-conteudo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.noticia-conteudo ul,
.noticia-conteudo ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.noticia-conteudo li {
    margin-bottom: 0.5rem;
}

.noticia-compartilhar {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-compartilhar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
    margin: 0.5rem;
    text-decoration: none;
}

.btn-compartilhar:hover {
    transform: translateY(-3px);
}

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

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

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

.noticias-relacionadas {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-relacionada {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

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

.card-relacionada-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-relacionada-body {
    padding: 1.5rem;
}

.card-relacionada-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .noticia-titulo {
        font-size: 2rem;
    }

    .noticia-conteudo {
        font-size: 1.1rem;
    }
}


/* ============================================
   PÁGINA DE LISTAGEM DE NOTÍCIAS
   ============================================ */
.noticias-header {
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.noticias-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.filtros-noticias {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-noticia {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-noticia:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.card-noticia-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noticia-categoria {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    background: var(--radio-primary, #FF8C00);
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.card-noticia-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-noticia-resumo {
    color: #6c757d;
    margin-bottom: 1rem;
    flex: 1;
}

.card-noticia-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.btn-categoria {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #212529;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-categoria:hover,
.btn-categoria.active {
    background: var(--radio-primary, #FF8C00);
    color: white;
    border-color: var(--radio-primary, #FF8C00);
}

.sem-noticias {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
}

.sem-noticias i {
    font-size: 5rem;
    opacity: 0.3;
    color: #6c757d;
}


/* ============================================
   BOTÕES DE COMPARTILHAMENTO
   ============================================ */
.noticia-compartilhar {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.noticia-compartilhar h3 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.noticia-compartilhar > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

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

.btn-compartilhar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.btn-facebook {
    background: #1877F2;
    color: white !important;
}

.btn-facebook:hover {
    background: #0d65d9;
    color: white !important;
}

.btn-twitter {
    background: #1DA1F2;
    color: white !important;
}

.btn-twitter:hover {
    background: #0c8bd9;
    color: white !important;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: white !important;
}

@media (max-width: 768px) {
    .noticia-compartilhar > div {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-compartilhar {
        width: 100%;
    }
}


/* ============================================
   PÁGINA DE LISTAGEM DE VÍDEOS
   ============================================ */
.videos-header {
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.videos-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.filtros-videos {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sem-videos {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
}

.sem-videos i {
    font-size: 5rem;
    opacity: 0.3;
    color: #6c757d;
}


/* ============================================
   PÁGINA ÚNICA DE VÍDEO
   ============================================ */
.video-player-container {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.video-player-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
}

.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-player-container {
        margin-bottom: 2rem;
    }
}


/* ============================================
   GRID DE VÍDEOS - 3 POR LINHA
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Filtro Icon */
.filtro-icon {
    font-size: 1.25rem;
}

/* Page Subtitle */
.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Notícia Placeholder */
.noticia-placeholder {
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-placeholder-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

/* Contato - Títulos de Seção */
.contato-section-title {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contato-subsection-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Campo Obrigatório */
.campo-obrigatorio {
    color: var(--danger);
}
