/*
 * Secção corredor textos
 */

.text_runner {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background-color: var(--cor13);
}

.text_runner_inner {
	gap: 24px;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	margin: 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.text_runner_inner p {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	outline: none;
	color: var(--cor1);
	text-align: center;
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	font: normal 24px/30px Figtree-Regular;
}

@media screen and (max-width: 700px) {
	.text_runner_inner p {
		font: normal 22px/28px Figtree-Regular;
	}
}

/*
 * Fim secção corredor textos
 */