.detalhe-noticia {
    background-color: #f5f5f5;
    padding: 40px 0;
    min-height: 100vh;
}

.noticia-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.noticia-header {
    padding: 30px 40px;
    background: white;
}

.noticia-titulo-principal {
    color: #333;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: bold;
}

.noticia-metadata {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.noticia-metadata span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.noticia-imagem-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.noticia-imagem-principal {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.noticia-conteudo-completo {
    padding: 40px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
}

.noticia-conteudo-completo p {
    margin-bottom: 20px;
}

/* Estilos para vídeos do YouTube */
.noticia-video-container {
    padding: 0 40px 40px;
}

.noticia-video-container h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.noticia-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.noticia-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .noticia-container {
        margin: 20px;
    }

    .noticia-header {
        padding: 20px;
    }

    .noticia-titulo-principal {
        font-size: 1.8rem;
    }

    .noticia-conteudo-completo {
        padding: 20px;
        font-size: 1rem;
    }

    .noticia-metadata {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .noticia-titulo-principal {
        font-size: 1.5rem;
    }

    .noticia-container {
        margin: 10px;
    }
}