/*
 * Secção lado a lado
 */

.side_by_side_section {
	position: relative;
	padding: 30px 0 60px 0!important;
}

.side_by_side_section_inner {
	gap: 48px;
	margin: 0;
	padding: 0;
	z-index: 2;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: stretch;
	justify-content: flex-start;
}

.side_by_side_section_imgs {
	gap: 0px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	width: calc(45% - 24px);
	align-items: flex-start;
	justify-content: flex-start;
}

.side_by_side_section_img {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	height: 310px;
	overflow: hidden;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s ease;
}

.side_by_side_section_img img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	pointer-events: none!important;
	transform: translate(-50%, -50%);
}

.side_by_side_section_content {
	gap: 52px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	width: calc(55% - 24px);
	align-items: flex-start;
	justify-content: flex-start;
}

.side_by_side_section_top_img {
	gap: 0;
	margin: 0;
	padding: 0;
	height: 100%;
	border: none;
	outline: none;
	display: flex;
	max-width: 100%;
	max-height: 50px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.side_by_side_section_div {
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.side_by_side_section_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor9);
	letter-spacing: 2px;
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	text-transform: uppercase;
	font: 600 13px/19px 'Inter', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 13;
}

.side_by_side_section_desc {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor5);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 400 12px/20px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 12;
}

.side_by_side_section_see_more {
	gap: 8px;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	margin: 32px 0 0 0;
	align-items: center;
	transition: all 0.2s ease;
	justify-content: flex-start;
}

.side_by_side_section_see_more:hover {
	gap: 16px;
}

.side_by_side_section_see_more p {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	color: var(--cor15);
	letter-spacing: 2px;
	word-break: break-word;
	text-transform: uppercase;
	transition: all 0.2s ease;
	font: 400 11px/17px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 11;
}

.side_by_side_section_see_more svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 12px;
	outline: none;
	fill: transparent;
	stroke: var(--cor15);
	box-sizing: content-box;
	transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
	.side_by_side_section_inner {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	.side_by_side_section_imgs {
		width: 100%;
		flex-direction: row;
		justify-content: center;
	}
	.side_by_side_section_img {
		max-width: 300px;
	}
	.side_by_side_section_content {
		width: 100%;
	}
	.side_by_side_section_see_more {
		margin: 0 auto;
	}
}

@media screen and (max-width: 576px) {
	.side_by_side_section_imgs {
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
	}
}

/*
 * Fim secção lado a lado
 */