.perguntas_frequentes {
	width: 100%;
	display: block;
	padding: 70px 0;
	background: #fff;
	overflow: hidden;
}

.perguntas_frequentes .container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}

.perguntas_frequentes .conteudo {
	width: 100%;
	display: block;
}

.perguntas_frequentes .texto {
	width: 100%;
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

.perguntas_frequentes .tag {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 800;
	color: #f8b400;
	text-transform: uppercase;
}

.perguntas_frequentes h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 900;
	color: #202124;
}

.perguntas_frequentes .itens {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 35px;
	align-items: start;
}

.perguntas_frequentes .item {
	width: 100%;
	display: block;
	background: #f4f4f4;
	border-radius: 6px;
	overflow: hidden;
	align-self: start;
}

.perguntas_frequentes .pergunta {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 18px 22px;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.perguntas_frequentes .pergunta span {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
	color: #000;
}

.perguntas_frequentes .pergunta strong {
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	color: #000;
}

.perguntas_frequentes .resposta {
	display: none;
	padding: 0 22px 22px;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
}

.perguntas_frequentes .resposta p {
	margin: 0;
}

.perguntas_frequentes .item.ativo .resposta {
	display: block;
}

.perguntas_frequentes .item.ativo .pergunta {
	background: #f1f1f1;
}

@media screen and (max-width: 991px) {
	.perguntas_frequentes {
		padding: 55px 0;
	}

	.perguntas_frequentes .itens {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.perguntas_frequentes h2 {
		font-size: 26px;
	}
}

@media screen and (max-width: 767px) {
	.perguntas_frequentes {
		padding: 45px 0;
	}

	.perguntas_frequentes .itens {
		grid-template-columns: 1fr;
	}

	.perguntas_frequentes h2 {
		font-size: 24px;
	}

	.perguntas_frequentes .pergunta {
		padding: 16px;
	}

	.perguntas_frequentes .pergunta span {
		font-size: 13px;
	}

	.perguntas_frequentes .resposta {
		padding: 0 16px 18px;
		font-size: 13px;
	}
}