/* Seus estilos CSS (mantenha os existentes) */
.conteudo-artigo-principal {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}






.corpo-artigo p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.artigo-imagem {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 4px;
}

.votacao-artigo {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
}

.votacao-artigo h3 {
    margin-top: 0;
    color: #333;
}

.votacao-artigo button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.votacao-artigo button[data-voto="util"] {
    background-color: #4CAF50;
    color: white;
}

.votacao-artigo button[data-voto="nao_util"] {
    background-color: #f44336;
    color: white;
}

.votacao-artigo p#mensagem-voto {
    margin-top: 10px;
    color: #007bff;
    font-weight: bold;
}

.votacao-resultados {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.votacao-resultados h4 {
    margin-top: 0;
    color: #333;
}

.votacao-resultados ul {
    list-style: none;
    padding: 0;
}

.votacao-resultados li {
    margin-bottom: 5px;
    color: #555;
}

.compartilhamento-artigo {
    margin-top: 20px;
    text-align: center;
}

.compartilhamento-artigo a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

.compartilhamento-artigo a:first-child {
    background-color: #1877f2; /* Facebook */
}

.compartilhamento-artigo a:last-child {
    background-color: #1da1f2; /* Twitter */
}

.botao-voltar-artigo {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    margin-top: 20px;
}

.botao-voltar-artigo:hover {
    background-color: #0056b3;
}

.erro-artigo {
    color: red;
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}

.mensagem-erro-artigo {
    color: #777;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.anuncio-h2-container {
    width: 100%;
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 0.8em;
    color: #777;
}

.carregando {
    font-style: italic;
}

.anuncio-h2-placeholder {
    width: 100%;
    background-color: #eee;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 0.8em;
    color: #999;
}