/*
 * Secção imagem simples
 */

.simple_image_section {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	overflow: hidden;
	position: relative;
	height: clamp(550px, 52.5vw, 750px);
}

.simple_image_section img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transform: translate(-50%, -50%);
}

/*
 * Fim secção imagem simples
 *
 * Secção cartoes
 */

.cards_section {
	margin: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	padding: 76px 0;
	overflow: hidden;
	position: relative;
	align-items: center;
	justify-content: center;
	background-color: var(--cor13);
}

.cards_section_img_1 {
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
	height: 360px;
	position: absolute;
	transition: all 0.2s ease;
}

.cards_section_img_2 {
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 1;
	height: 360px;
	position: absolute;
	transition: all 0.2s ease;
}

.cards_section_boxed {
	border: none;
	outline: none;
	display: flex;
	padding: 20px;
	margin: 0 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: clamp(0%, calc(100% - 40px), 1040px);
}

.cards_title_1 {
	padding: 0;
	z-index: 2;
	width: 100%;
	border: none;
	outline: none;
	color: var(--cor1);
	text-align: center;
	position: relative;
	word-break: break-word;
	margin: 0 auto 48px auto;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	font: normal 40px/48px Calistoga-Regular;
}

.cards_title_2 {
	padding: 0;
	z-index: 2;
	border: none;
	outline: none;
	text-align: center;
	position: relative;
	color: var(--cor10);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	margin: 96px auto 24px auto;
	width: clamp(0%, 100%, 830px);
	font: normal 20px/32px Figtree-Bold;
}

.cards_title_3 {
	padding: 0;
	z-index: 2;
	border: none;
	outline: none;
	margin: 0 auto;
	color: var(--cor1);
	text-align: center;
	position: relative;
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	width: clamp(0%, 100%, 830px);
	font: normal 40px/48px Calistoga-Regular;
}

.cards_inner_section {
	gap: 24px;
	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;
}

.card {
	gap: 16px;
	margin: 0;
	border: none;
	outline: none;
	display: flex;
	padding: 24px;
	overflow: hidden;
	flex-wrap: nowrap;
	border-radius: 24px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	background-color: var(--cor1);
	width: calc(33.333333% - 64px);
}

.card svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 56px;
	outline: none;
	fill: var(--cor11);
	box-sizing: content-box;
	transition: all 0.2s ease;
}

.card p {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor2);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 18px/24px Figtree-Regular;
}

.links_card {
	gap: 16px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: calc(33.333333% - 16px);
}

.links_card a {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 16px/26px Figtree-SemiBold;
}

.links_card a svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 13px;
	outline: none;
	fill: var(--cor1);
	box-sizing: content-box;
	transition: all 0.2s ease;
}

@media screen and (max-width: 960px) {
	.cards_section_img_1,
	.cards_section_img_2 {
		height: 200px;
	}
	.card {
		width: calc(50% - 60px);
	}
	.links_card {
		width: calc(50% - 12px);
	}
}

@media screen and (max-width: 700px) {
	.cards_section_img_1,
	.cards_section_img_2 {
		height: 160px;
	}
	.cards_title_1 {
		font: normal 32px/36px Calistoga-Regular;
	}
	.cards_title_2 {
		font: normal 18px/26px Figtree-Bold;
	}
	.cards_title_3 {
		font: normal 32px/40px Calistoga-Regular;
	}
	.card svg {
		height: 42px;
	}
	.card p {
		font: normal 16px/22px Figtree-Regular;
	}
}

@media screen and (max-width: 500px) {
	.card {
		width: calc(100% - 48px);
	}
	.links_card {
		width: 100%;
	}
}

/*
 * Fim secção cartoes
 */