/*
 * Secção tabs
 */

.tabs_section {
	margin: 0!important;
	padding: 90px 0!important;
}

.tabs_section_inner_div {
	gap: 64px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.tabs_section_buttons {
	gap: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}

.tab_button {
	margin: 0;
	gap: 16px;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	padding: 16px 32px;
	align-items: center;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer!important;
	background-color: var(--cor47);
	justify-content: space-between;
}

.tab_button span {
	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;
	text-transform: uppercase!important;
	font: 400 30px/38px 'FjallaOne', sans-serif;
}

.tab_button svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 14px;
	outline: none;
	fill: transparent;
	stroke: var(--cor5);
	box-sizing: content-box;
	transition: all 0.2s ease;
}

.tab_button_active {
	background-color: var(--cor61);
}

.tab_button_active span {
	color: var(--cor79);
}

.tab_button_active svg {
	stroke: var(--cor79);
	transform: rotate(90deg);
}

.tab_section {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	row-gap: 32px;
	flex-wrap: wrap;
	column-gap: 16px;
	align-items: stretch;
	justify-content: flex-start;
}

.tab_section_block {
	gap: 12px;
	margin: 0;
	border: none;
	outline: none;
	display: flex;
	padding: 16px;
	flex-wrap: nowrap;
	align-items: center;
	flex-direction: column;
	width: calc(50% - 40px);
	cursor: pointer!important;
	justify-content: flex-start;
	background-color: var(--cor55);
}

.tab_section_block_no_data {
	margin: 0;
	border: none;
	outline: none;
	color: var(--cor5);
	padding: 16px 32px;
	text-align: center;
	word-break: break-word;
	width: calc(100% - 64px);
	transition: all 0.2s ease;
	text-align: -webkit-center;
	background-color: var(--cor55);
	font: 500 22px/30px 'Figtree', sans-serif;
	font-variation-settings: 'wght' 500, 'opsz' 22;
}

.tab_section_block_img {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	height: 300px;
	object-fit: cover;
	transition: all 0.2s ease;
	overflow: hidden!important;
}

.tab_section_block_category {
	margin: 0;
	border: none;
	outline: none;
	padding: 2px 8px;
	border-radius: 6px;
	text-align: center;
	color: var(--cor75);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	background-color: var(--cor71);
	border: 1px solid var(--cor77);
	font: 600 16px/24px 'Figtree', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 16;
}

.tab_section_block_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: center;
	color: var(--cor29);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	text-transform: uppercase!important;
	font: 400 26px/32px 'FjallaOne', sans-serif;
}

@media screen and (max-width: 1200px) {
	.tab_section_block_img {
		height: 200px;
	}
}

@media screen and (max-width: 870px) {
	.tab_section_block_img {
		transition: none;
	}
}

@media screen and (max-width: 768px) {
	.tabs_section_buttons {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.tab_section_block_img {
		height: 300px;
	}
	.tab_section_block {
		width: calc(100% - 32px);
	}
}

@media screen and (max-width: 480px) {
	.tab_section_block_img {
		height: 200px;
		transition: all 0.2s ease;
	}
}

/*
 * Fim secção tabs
 */