/**
 * NOTÍCIA SHOW - PÁGINA ÚNICA DE NOTÍCIA
 * CSS externo para funcionar com AJAX do player
 * Carregado no layout principal
 * Padronizado com galeria-show.css
 */

/* ============================================
   HEADER DA NOTÍCIA
   ============================================ */
.noticia-header {
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    padding: 60px 0 0;
    margin-bottom: 0;
    color: white;
    box-shadow: none;
    border-bottom: none;
}

/* Container dentro do header */
.noticia-header .container {
    padding-bottom: 30px;
    margin-bottom: 0;
}

/* Container após header - remove espaço extra */
.noticia-header + .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.noticia-categoria {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.noticia-titulo {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
    border-bottom: none !important;
}

.noticia-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.noticia-meta i {
    font-size: 1.3rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.noticia-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.noticia-header .breadcrumb-item a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.noticia-header .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.noticia-header .breadcrumb-item.active {
    color: white;
    opacity: 0.8;
}

.noticia-header .breadcrumb-item + .breadcrumb-item::before {
    color: white;
    opacity: 0.8;
}

/* ============================================
   IMAGEM DE DESTAQUE
   ============================================ */
.noticia-imagem-destaque {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============================================
   RESUMO
   ============================================ */
.noticia-resumo {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============================================
   CONTEÚDO
   ============================================ */
.noticia-conteudo {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 3rem;
}

.noticia-conteudo p {
    margin-bottom: 1.5rem;
}

.noticia-conteudo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.noticia-conteudo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.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 blockquote {
    border-left: 4px solid var(--radio-primary, #FF8C00);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
}

.noticia-conteudo ul,
.noticia-conteudo ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.noticia-conteudo li {
    margin-bottom: 0.5rem;
}

/* ============================================
   NOTÍCIAS RELACIONADAS
   ============================================ */
.noticias-relacionadas {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.noticias-relacionadas h3 {
    color: #212529;
    font-size: 1.75rem;
    font-weight: 700;
}

.card-relacionada {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.card-relacionada:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-relacionada-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.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;
}

.card-relacionada-body {
    padding: 1.25rem;
}

.card-relacionada-titulo {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-relacionada:hover .card-relacionada-titulo {
    color: var(--radio-primary, #FF8C00);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .noticia-header {
        padding: 40px 0 0;
    }
    
    .noticia-header .container {
        padding-bottom: 30px;
    }
    
    .noticia-titulo {
        font-size: 2rem;
    }
    
    .noticia-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 1rem;
    }
    
    .noticia-imagem-destaque {
        margin-top: 2rem;
    }
    
    .noticia-resumo {
        padding: 1.5rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .noticia-conteudo {
        font-size: 1rem;
    }
    
    .noticia-conteudo h2 {
        font-size: 1.5rem;
    }
    
    .noticia-conteudo h3 {
        font-size: 1.25rem;
    }
    
    .noticias-relacionadas {
        padding: 1.5rem;
    }
    
    .noticias-relacionadas h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .noticia-titulo {
        font-size: 1.5rem;
    }
    
    .noticia-meta {
        font-size: 0.9rem;
    }
    
    .noticia-meta i {
        font-size: 1.1rem;
    }
    
    .noticia-categoria {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
