* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	word-wrap: normal;
	overflow-x: hidden;
}

body,
html {
	background: #fafafa;
	color: #272727;
	font-family: arial, sans-serif;
}

a {
	text-decoration: none;
	color: #272727;
}
img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

header {
	img {
		margin: 0 auto;
		max-height: 150px;
	}
}

main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 50px;

	margin: 30px auto;
}
section {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 90%;
	padding: 50px 20px;
}

h1 {
	font-weight: bold;
}
h1,
h2 {
	color: #ffffff;
	text-align: center;
	margin: 10px 0;
}

p {
	margin: 10px 0;
}

.sectionPesquisa {
	background: #00b4c3;
	background: linear-gradient(134deg, rgba(0, 180, 195, 1) 0%, rgba(0, 68, 148, 1) 100%);
	a.btn {
		background-color: #31c4d7;
	}
	a.btn:hover {
		background-color: #014c74;
		transition: background-color 0.3s ease;
	}
}

.sectionConcurso {
	background: #31c4d7;

	img {
		max-width: 60%;
	}

	a.btn {
		background-color: #002a4e;
	}
}

a.btn {
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
	padding: 15px 20px;
	border-radius: 50px;
	display: block;
	width: fit-content;
	text-align: center;
	margin: 30px auto 0;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	transition: box-shadow 0.1s ease;
}
a.btn:hover {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
	transition: box-shadow 0.3s ease;
}

footer {
	text-align: center;
	padding: 20px;
	a:hover {
		text-decoration: underline;
	}

	img {
		margin: auto;
		max-height: 100px;
	}
}
.creditos {
	font-size: 12px;
}

@media (min-width: 768px) {
	main {
		flex-direction: row;
	}
	section {
		width: 45%;
	}
}

@media (max-width: 576px) {
	.sectionConcurso {
		img {
			max-width: 100%;
		}
	}
}
