/* Estilos Globais */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Container Principal da Notícia */
.noticia {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Cabeçalho da Notícia */
.noticia-header {
    margin-bottom: 20px;
    text-align: center;
}

.noticia-titulo {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #0056b3;
}

.noticia-meta {
    font-size: 0.875em;
    color: #777;
}

.noticia-meta .autor {
    font-weight: bold;
}

/* Corpo da Notícia */
.noticia-corpo {
    font-size: 1.125em;
    line-height: 1.8;
    text-align: justify;
    margin: 50px 50px;
}

/* Estilização de Imagens e Legendas */
.noticia-figura {
    margin: 20px 0;
    text-align: center;
}

.noticia-imagem {
    max-width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.noticia-legenda {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #4d4019;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
        }
.link:hover {
            background-color: #3b2e14;
        }



/* Responsividade */
@media (max-width: 768px) {
    .noticia {
        padding: 15px;
    }

    .noticia-titulo {
        font-size: 2em;
    }

    .noticia-corpo {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .noticia-titulo {
        font-size: 1.5em;
    }
}



    


    
