/* ============================================
   ESTILOS PARA CONTEÚDO DE NOTÍCIAS
   Organização simples para quebras de linha e parágrafos
   ============================================ */

.noticia-conteudo {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

/* Parágrafos - quebras de linha bem organizadas */
.noticia-conteudo p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.noticia-conteudo p:last-child {
    margin-bottom: 0;
}

/* Títulos */
.noticia-conteudo h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.3;
    color: #1a1a1a;
}

.noticia-conteudo h2 {
    font-size: 2em;
    font-weight: 600;
    margin-top: 1.3em;
    margin-bottom: 0.7em;
    line-height: 1.4;
    color: #1a1a1a;
}

.noticia-conteudo h1:first-child,
.noticia-conteudo h2:first-child {
    margin-top: 0;
}

/* Formatação de texto */
.noticia-conteudo strong {
    font-weight: 700;
    color: #1a1a1a;
}

.noticia-conteudo em {
    font-style: italic;
}

/* Listas */
.noticia-conteudo ul,
.noticia-conteudo ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.noticia-conteudo ul {
    list-style-type: disc;
}

.noticia-conteudo ol {
    list-style-type: decimal;
}

.noticia-conteudo li {
    margin-bottom: 0.8em;
    line-height: 1.7;
}

/* Citações */
.noticia-conteudo blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 4px solid #3b82f6;
    background-color: #f8fafc;
    font-style: italic;
    color: #475569;
    border-radius: 0 8px 8px 0;
}

.noticia-conteudo blockquote p {
    margin-bottom: 0;
}

/* Links */
.noticia-conteudo a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.noticia-conteudo a:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Imagens */
.noticia-conteudo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2em auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Alinhamento de parágrafos */
.noticia-conteudo .text-left {
    text-align: left;
}

.noticia-conteudo .text-center {
    text-align: center;
}

.noticia-conteudo .text-right {
    text-align: right;
}

/* Responsividade */
@media (max-width: 768px) {
    .noticia-conteudo {
        font-size: 15px;
    }

    .noticia-conteudo h1 {
        font-size: 2em;
    }

    .noticia-conteudo h2 {
        font-size: 1.6em;
    }

    .noticia-conteudo blockquote {
        padding: 1em 1.5em;
        margin: 1.5em 0;
    }

    .noticia-conteudo img {
        margin: 1.5em auto;
    }
}


