body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

.header {
	background-color: #241c4b;
	color: #241c4b;
	padding: 20px;
	text-align: center;
}
.header h1 {
	margin: 0;
}
.news-section {
	padding: 50px 20px;
	text-align: center;
	background-color: #fff;
	max-width: 1200px;
	margin: 40px auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}
.news-section img {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
}
.news-section h2 {
	color: #241c4b;
	font-size: 2.5em;
	margin: 20px 0;
}
.news-section p {
	font-size: 1em;
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align:justify
}
.news-section .date {
	font-size: 0.9em;
	font-weight:bold;
	color: #000;
	margin-bottom: 20px;
	text-align:right;
}
.news-section a.read-more {
	text-decoration: none;
	color: #241c4b;
	font-weight: bold;
}
.news-section a.read-more:hover {
	text-decoration: underline;
}

/* Responsividade para telas muito pequenas (mobile) */
@media (max-width: 480px) {
	.news-section h2 {
		font-size: 1.5em;
	}
	.news-section .date {
		font-size: 0.8em;
	}
}

.blog-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f4f4f4;
	min-height:300px;
}

.blog-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #241c4b;
}

.blog-section-outras-noticias {
    padding: 0px 0px 50px 0px;
    text-align: center;
    background-color: #f4f4f4;
}

.blog-section-outras-noticias h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #241c4b;
}

.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content .date {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #241c4b;
}

.card p {
    font-size: 1em;
    color: #666;
	text-align:justify;
}

.read-more {
    margin-top: 10px;
    font-size: 0.9em;
    color: #241c4b;
}

.read-more a {
    text-decoration: none;
    color: #241c4b;
    transition: color 0.3s ease;
}

.read-more a:hover {
    color: #003d7a;
}