/* RESET GERAL */

#about-section > *
{
	margin-top:     0;
	margin-bottom:  0;
	padding-top:    0;
	padding-bottom: 0;
}

#about-section
{
	display: flex;
	flex-direction: column;
	background-image: none; /* url() */
	background-attachment: fixed; /* O segredo do parallax */
	background-position: center;
	background-size: cover;
	padding: 80px 0;
	min-height: 100vh;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.about-article {
	
}

.article-banner {
	background-size: cover;
	background-position: center;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

/* USE IDs PARA DAR A IMAGEM CERTA PARA CADA BANNER */
.article-banner
{
		background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('../images/placeholders/article-banner.png');
}

.article-banner h2 {
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.article-body {
	display: flex;
	font-size: 22px;
	align-items: center;
	gap: 40px;
	padding: 40px;
	flex-wrap: wrap;
}

/* Classes de Posicionamento */
.article-left, .article-right {
	flex: 1;
	min-width: 300px;
	
	display: flex;
	flex-direction: column;
}

.article-center {
	flex: 1 1 100%;
	text-align: center;
}

.article-right img, .article-left img {
	width: 100%;
	border-radius: 5px;
	display: flex;
}

.about-article
{
	clear: both; /* Impede que elementos flutuem ao lado dele */
	margin-bottom: 40px;
}

@media (max-width: 700px)
{
	#page-title
	{
		font-size: 25px;
	}
	
	.article-banner
	{
		height: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		text-align: center;
	}
	
	.article-banner h2
	{
		font-size: 34px;
	}
	
	.article-body
	{
		justify-content: center;
		padding: 20px;
		font-size: 22px;
		display: flex;
		flex-direction: row;
	}
	
/*
	.article-right, .article-left
	{
		order: unset;
	}
	
	div.article-right, div.article-left
	{
		order: 1;
	}
	
	figure.article-right, figure.article-left
	{
		align-self: center;
		order: 2;
	}
	
	.article-right img, .article-left img
	{
		max-width: 100%;
		width: auto;
	}
*/
}

