.boxPaginas {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 2rem 0;
}

.paginasImg {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.paginasImg img {
	width: 75%;
	border-radius: 10px;
	border: 2px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.paginasTxt {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}



.subtituloPaginas {
	margin: 2.5rem 2rem 1rem 2rem;
}

.paginasTxt p {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	padding: 1rem;
	line-height: 1.5;
	text-align: center;
}

.paginasTxt button {
	position: relative;
	/* Necessário para o posicionamento do ::before */
	padding: .5rem;
	font-family: var(--paragrafo-font);
	font-size: 1.25rem;
	border: 2px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: #ccc;
	background-color: #fff;
	margin-top: 1rem;
	overflow: hidden;
	/* Para esconder o ::before fora do botão */
	cursor: pointer;
}

.paginasTxt button::before {
	content: "";
	/* Necessário para gerar o elemento */
	position: absolute;
	/* Posiciona o elemento em relação ao botão */
	top: 0;
	/* Alinha ao topo */
	left: -110%;
	/* Começa fora da tela */
	width: 100%;
	/* Largura total do botão */
	height: 100%;
	/* Altura total do botão */
	background-color: var(--azul-escuro);
	/* Cor de fundo pela diagonal */
	transform: skewX(-20deg);
	/* Inclinação para criar o efeito diagonal */
	transition: all 0.3s ease;
	/* Suaviza a transição */
	z-index: 0;
	/* Envia o ::before para trás */
}

.paginasTxt button:hover::before {
	left: 110%;
	/* Move o elemento para a direita ao passar o mouse */
}

.paginasTxt button:hover {
	color: var(--azul-escuro);
	/* Muda a cor do texto ao passar o mouse */
	border-color: transparent;
	/* Remove a borda ao passar o mouse */
	z-index: 1;
	/* Eleva o botão acima do ::before */
}


.subtopicoPaginas {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2.5rem 0;
}

.reverse_subtopicoPaginas {
	display: flex;
	align-items: center;
	justify-content: center;
}

.containerPaginaTxt {
	width: 68%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.containerPaginaTxt h3 {
	margin: 1rem 0;
}

.containerPaginaTxt p {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	line-height: 1.5;
	text-align: justify;
	padding: 0.25rem 2rem;
}

.containerPaginaTxt button {
	position: relative;
	/* Necessário para o posicionamento do ::before */
	padding: .5rem;
	font-family: var(--paragrafo-font);
	font-size: 1.25rem;
	border: 2px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: #ccc;
	/* Mantém a mesma cor */
	background-color: #fff;
	margin-top: 1rem;
	overflow: hidden;
	/* Para esconder o ::before fora do botão */
	cursor: pointer;
}

.containerPaginaTxt button::before {
	content: "";
	/* Necessário para gerar o elemento */
	position: absolute;
	/* Posiciona o elemento em relação ao botão */
	top: 0;
	/* Alinha ao topo */
	left: -110%;
	/* Começa fora da tela */
	width: 100%;
	/* Largura total do botão */
	height: 100%;
	/* Altura total do botão */
	background-color: var(--azul-escuro);
	/* Cor de fundo pela diagonal */
	transform: skewX(-20deg);
	/* Inclinação para criar o efeito diagonal */
	transition: all 0.3s ease;
	/* Suaviza a transição */
	z-index: 0;
	/* Envia o ::before para trás */
}

.containerPaginaTxt button:hover::before {
	left: 110%;
	/* Move o elemento para a direita ao passar o mouse */
}

.containerPaginaTxt button:hover {
	color: var(--azul-escuro);
	/* Muda a cor do texto ao passar o mouse */
	border-color: transparent;
	/* Remove a borda ao passar o mouse */
	z-index: 1;
	/* Eleva o botão acima do ::before */
}


.containerPaginaImg {
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.containerPaginaImg img {
	width: 75%;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}

.imgReverse {
	width: 50%;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.paragrafoPagina {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	line-height: 1.5;
	text-align: justify;
	padding: 0.25rem 0rem;
	width: 80%;
	margin: 0 auto;
}

.listaPagina {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	line-height: 1.5;
	text-align: justify;
	/* padding: 0.25rem 4.5rem; */
	width: 75%;
	list-style: circle;
	margin: 0 auto;
}





/* FAQ */

.faq-item {
	/* background-color: var(--azul-claro); */
	border: 1px solid var(--azul-claro);
	border-radius: 10px;
	padding: 0.5rem;
	cursor: pointer;
	width: 50%;
	margin: 1rem auto;
	transition: .2s;
	font-family: var(--paragrafo-font);
}

/* .faq-item:hover {
	background-color: var(--azul-escuro);
	color: #fff;
	transition: .2s;
} */

.faq-item:active {
	background-color: var(--azul-escuro);
	color: #fff;
	transition: .2s;
}

.faq-item h3 {
	margin: 0.5rem 0;
	font-size: 1.25rem;
}

.faq-answer {
	display: none;
	margin-top: 5px;
	padding: 0.85rem;
	background-color: #fff;
	border: 1px solid var(--azul-claro);
	border-radius: 10px;
	font-size: 1rem;
	line-height: 1.5;
}

.faq-item.active .faq-answer {
	display: block;
}

@media (max-width: 780px) {


	.boxPaginas {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.paginasTxt h1 {
		margin: 2rem 0;
		padding: 0;
		width: 100%;
	}

	.paginasTxt p {
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.paginasTxt {
		width: 75%;
	}

	.paginasImg img {
		width: 85%;
		margin-top: 2rem;
	}

	.subtopicoPaginas {
		flex-direction: column-reverse;
	}

	.containerPaginaImg {
		width: 45%;
	}

	.containerPaginaImg img {
		width: 100%;
		clip-path: none;
	}


	.containerPaginaTxt {
		width: 100%;
	}

	.containerPaginaTxt p {
		padding: 0;
		width: 75%;
	}

	.reverse_subtopicoPaginas {
		flex-direction: column;
	}



}


@media (max-width: 580px) {

	.paginasImg {
		width: 90%;
	}

	.paginasImg img {
		width: 100%;
		margin-top: 4rem;
	}

	.faq-item {
		padding: 0.7rem;
		width: 77%;

	}

	.containerPaginaImg {
		width: 57%;
	}


}

@media (max-width: 420px) {

	.containerPaginaImg {
		width: 85%;
	}


}