/*
 * Secção cta
 */

.cta_section_1 {
	padding: 90px 0!important;
}

.cta_section_1_sp_pd {
	padding: 30px 0 90px 0!important;
}

.cta_section_1_card {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	flex-wrap: nowrap;
	position: relative;
	border-radius: 32px;
	align-items: center;
	transition: all 0.2s ease;
	justify-content: space-between;
	background-color: var(--cor27);
	box-shadow: 0px 8px 12px 8px rgba(var(--cor8), 0.1);
}

.cta_section_1_card_img {
	margin: 0;
	padding: 0;
	width: 50%;
	border: none;
	outline: none;
	height: 400px;
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease;
}

.cta_section_1_card_img img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transition: all 0.2s ease;
	transform: translate(-50%, -50%);
}

.cta_section_1_card_data {
	gap: 12px;
	margin: 0;
	border: none;
	outline: none;
	display: flex;
	padding: 44px;
	flex-direction: column;
	align-items: flex-start;
	width: calc(50% - 88px);
	justify-content: flex-start;
}

.cta_section_1_card_data_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 600 36px/44px 'Inter', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 36;
}

.cta_section_1_card_data_desc {
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	margin: 0 0 24px 0;
	color: var(--cor19);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 400 20px/30px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 20;
}

.cta_section_multiple_btns {
	gap: 12px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}

@media screen and (max-width: 983px) {
	.cta_section_1_card_img {
		width: 35%;
	}
	.cta_section_1_card_data {
		width: calc(65% - 88px);
	}
}

@media screen and (max-width: 870px) {
	.cta_section_1_card_img,
	.cta_section_1_card_img img {
		transition: none;
	}
}

@media screen and (max-width: 768px) {
	.cta_section_1_card {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.cta_section_1_card_img {
		width: 100%;
		height: 300px;
	}
	.cta_section_1_card_data {
		width: calc(100% - 88px);
	}
}

@media screen and (max-width: 480px) {
	.cta_section_1_card_img {
		height: 200px;
		transition: all 0.2s ease;
	}
	.cta_section_1_card_data {
		padding: 24px;
		width: calc(100% - 48px);
	}
}

/*
 * Fim secção cta
 */