.noticia-completa-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.noticia-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.noticia-conteudo h1 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #610099;
}

.noticia-meta {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 25px;
}

.texto-noticia {
    line-height: 1.6;
    font-size: 1.0em;
    white-space: pre-line;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.navegacao-noticia {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 10px;
}

.btn-anterior,
.btn-proxima {
    background-color: #7114DD;
    color: #fff;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.btn-anterior:hover,
.btn-proxima:hover {
    background-color: #5c0bbd;
}

.voltar-noticia {
    text-align: center;
    margin-top: 30px;
}

.voltar-noticia a {
    color: #22D0FF;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95em;
}

.voltar-noticia a:hover {
    text-decoration: underline;
}

/* TAGS */
.noticia-tags {
    margin-top: 10px;
    font-size: 12px;
}
.noticia-tags strong {
    margin-right: 8px;
    color: #610099;
}
.noticia-tags span {
    background-color: #D299FF;
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 5px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

/* REDES SOCIAIS */
.noticia-redes {
    margin-top: 15px;
    margin-bottom: 15px;
}
.noticia-redes a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #610099;
    transition: transform 0.2s ease;
}
.noticia-redes a:hover {
    transform: scale(1.2);
}

/* LEIA TAMBÉM */
.leia-tambem {
    margin-top: 10px;
    border-top: 2px solid #ccc;
    padding-top: 10px;
}
.leia-tambem h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #7114DD;
}
.leia-tambem ul {
    list-style-type: none;
    padding-left: 0;
}
.leia-tambem li {
    margin-bottom: 8px;
}
.leia-tambem a {
    color: #22D0FF;
    text-decoration: none;
}
.leia-tambem a:hover {
    text-decoration: underline;
}


.tabela-scroll {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.tabela-scroll table {
    min-width: 900px; /* ajuste conforme necessário */
    border-collapse: collapse;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .navegacao-noticia {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-anterior,
    .btn-proxima {
        width: 100%;
        text-align: center;
    }
}