html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
main.perguntas {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}
main.perguntas section {
	position: absolute;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-ms-transition: all .25s;
	-o-transition: all .25s;
	transition: all .25s;
	width: 100%;
	z-index: 0;
	background-position: center top;
}
main.perguntas section.current {
	position: relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	min-height: 100vh;
	z-index: 5;
	padding: 200px 0 117px;
}
main.perguntas section.answered {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}
main.perguntas section[data-pergunta="1"] { background-image: url(../images/bg-01.jpg); }
main.perguntas section[data-pergunta="2"] { background-image: url(../images/bg-02.jpg); }
main.perguntas section[data-pergunta="3"] { background-image: url(../images/bg-03.jpg); }
main.perguntas section[data-pergunta="4"] { background-image: url(../images/bg-04.jpg); }
main.perguntas section[data-pergunta="5"] { background-image: url(../images/bg-05.jpg); }
main.perguntas section .wrapper {
	position: relative;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
main.perguntas section .wrapper > *:not(aside) {
	display: block;
	width: 100%;
	max-width: 622px;
	margin: 0 auto;
}
main.perguntas section header {
	padding: 0 0 35px;
	border-bottom: 1px dashed #f36f21;
}
main.perguntas section header span {
	display: block;
	background: #f36f21;
	width: 44px;
	height: 44px;
	font-family: 'Open Sans', sans-serif;
	font-size: 26px;
	color: #fff;
	text-align: center;
	font-weight: 800;
	padding: 7px 0;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: -79px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
main.perguntas section header h2 {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	color: #f36f21;
	font-weight: 800;
	line-height: 1.2;
}
main.perguntas section article ol li {
	display: block;
	width: 100%;
	margin: 35px 0 0;
}
main.perguntas section article ol li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: 'Open Sans', sans-serif;
	font-size: 23px;
	color: #000;
	font-weight: 400;
	line-height: 1.4;
}
main.perguntas section article ol li a:before {
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	color: #000;
	font-weight: 800;
	margin: 0 20px 0 0;
}
main.perguntas section article ol li a[title="Alternativa A"]:before { content: 'A)'; }
main.perguntas section article ol li a[title="Alternativa B"]:before { content: 'B)'; }
main.perguntas section article ol li a[title="Alternativa C"]:before { content: 'C)'; }
main.perguntas section article ol li a.selected { color: #f36f21; }
main.perguntas section article ol li a.selected:before { color: #f36f21; }
main.perguntas section aside {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
main.perguntas section aside ul li {
	background: #fff;
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0 0 12px;
	border-radius: 50%;
}
main.perguntas section aside ul li.current {
	background: #31597c;
}
main.perguntas section footer a {
	display: block;
	width: 79px;
	text-align: center;
	margin: 65px auto 0;
}
main.perguntas section footer a img {
	width: 100%;
}
@media (max-width: 1024px) {
	main.perguntas section header h2 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	main.perguntas section header h2 span {
		position: static;
		min-width: 44px;
		margin: 0 20px 0 0;
		-webkit-transform: translate(0);
		-moz-transform: translate(0);
		-ms-transform: translate(0);
		-o-transform: translate(0);
		transform: translate(0);
	}
	main.perguntas section article ol { width: 90%; }
}
@media (max-width: 425px) {
	main.perguntas section header h2 { font-size: 19px; }
	main.perguntas section header h2 span {
		min-width: 30px;
		width: 30px;
		height: 30px;
		font-size: 17px;
		padding: 5px 0;
		margin: 0 10px 0 0;
	}
	main.perguntas section header { padding: 0 0 20px; }
	main.perguntas section article ol li { margin: 20px 0 0; }
	main.perguntas section article ol li a { font-size: 17px; }
	main.perguntas section article ol li a:before { margin: 0 15px 0 0; }
	main.perguntas section footer a { width: 50px; margin: 30px auto 0; }
}

/* RESPOSTA */
main.perguntas section.answer {
	background-image: url(../images/bg-06.jpg);
	padding: 80px 0 0;
}
main.perguntas section.answer header {
	display: none;
	padding: 0;
	margin: 0 auto 10px;
	border: 0;
}
main.perguntas section.answer header h2 {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	color: #30373c;
	font-weight: 700;
	text-align: center;
}
main.perguntas section.answer article {
	display: none;
}
main.perguntas section.answer article p {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	color: #30373c;
	font-weight: 400;
	line-height: 1.3;
}
main.perguntas section.answer article a {
	background-image: url(../images/btn-voltar.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 17vw;
	min-width: 90px;
	max-width: 168px;
	height: 10vh;
	min-height: 45px;
	max-height: 63px;
	text-indent: -9999pc;
	outline: none;
	margin: 20px auto 0;
}
main.perguntas section.answer footer {
	max-width: 1062px;
	margin: 20px 0 0;
}
main.perguntas section.answer footer img {
	width: 100%;
}
main.perguntas section.answer.a header.a,
main.perguntas section.answer.a article.a { display: block; }
main.perguntas section.answer.b header.b,
main.perguntas section.answer.b article.b { display: block; }
main.perguntas section.answer.c header.c,
main.perguntas section.answer.c article.c { display: block; }
@media (max-height: 840px) {
	main.perguntas section.answer {
		padding: 50px 0;
	}
}
@media (max-width: 425px) {
	main.perguntas section.answer article { width: 90%; }
	main.perguntas section.answer header h2 { font-size: 24px }
	main.perguntas section.answer article p { font-size: 17px; }
}
@media (max-height: 840px) {
	main.perguntas section.current { padding: 50px 0; }
	main.perguntas section header h2 { font-size: 26px; }
	main.perguntas section article ol li a { font-size: 20px; }
}