/* Página de Notícia Completa */
.noticia-completa {
    margin-top: 70px;
    padding: 60px 5% 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.noticia-hero {
    text-align: center;
    margin-bottom: 40px;
}

.noticia-categoria-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--vermelho-primario);
    color: white;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noticia-titulo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--azul-secundario);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.noticia-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9em;
}

.noticia-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.noticia-meta i {
    color: var(--vermelho-primario);
}

.noticia-conteudo-completo {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.noticia-imagem-destaque {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
}

.noticia-texto {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
}

.noticia-texto .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.noticia-texto h2 {
    font-size: 1.6rem;
    color: var(--azul-secundario);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

.noticia-texto p {
    margin-bottom: 20px;
}

.noticia-texto blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    border-left: 4px solid var(--vermelho-primario);
    border-radius: 8px;
    font-style: italic;
}

.noticia-texto blockquote p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--azul-secundario);
}

.noticia-texto blockquote footer {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.noticia-compartilhar {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.noticia-compartilhar h3 {
    font-size: 1.2rem;
    color: var(--azul-secundario);
    margin-bottom: 20px;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--azul-secundario);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    background: var(--vermelho-primario);
    transform: translateX(-3px);
}

/* Notícias Relacionadas */
.noticias-relacionadas {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.noticias-relacionadas .container {
    max-width: 1200px;
    margin: 0 auto;
}

.noticias-relacionadas h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--azul-secundario);
    margin-bottom: 40px;
    font-weight: 700;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mini-noticia-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mini-noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mini-noticia-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mini-noticia-conteudo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-categoria {
    display: inline-block;
    padding: 4px 12px;
    background: var(--vermelho-primario);
    color: white;
    font-size: 0.75em;
    border-radius: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    width: fit-content;
}

.mini-noticia-conteudo h3 {
    font-size: 1.1rem;
    color: var(--azul-secundario);
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-weight: 600;
}

.mini-data {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.mini-data i {
    color: var(--vermelho-primario);
}s-grid {
        grid-template-columns: 1fr;
    }
    
    .noticia

/* Responsivo */
@media (max-width: 768px) {
    .noticia-completa {
        padding: 40px 5% 30px;
    }

    .noticia-conteudo-completo {
        padding: 25px 20px;
    }

    .noticia-meta {
        gap: 15px;
        font-size: 0.85em;
    }

    .noticia-texto {
        font-size: 1rem;
    }

    .noticia-texto .lead {
        font-size: 1.1rem;
    }

    .noticia-texto h2 {
        font-size: 1.4rem;
    }

    .social-share {
        gap: 12px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Social Links no Footer */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-padrao);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--vermelho-primario);
    transform: translateY(-3px);
}
