/*
 * Secção gancho
 */

.hook_section_1 {
	padding: 60px 0!important;
}

.hook_section_1_inner {
	gap: 20px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}

.hook {
	gap: 42px;
	margin: 0;
	border: none;
	outline: none;
	display: flex;
	padding: 24px;
	height: 500px;
	overflow: hidden;
	border-radius: 16px;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.2s ease;
	justify-content: space-between;
	width: calc(calc(calc(100% / 3) - 48px) - calc(40px / 3));
}

.hook_1 {
	background-color: rgba(var(--cor16), 0.1);
}

.hook_1:hover {
	transition: all 0.4s ease!important;
	background-color: rgba(var(--cor16), 0.25);
}

.hook_1:hover .hook_title,
.hook_1:hover .hook_see_more_title {
	color: var(--cor37);
	transition: all 0.4s ease!important;
}

.hook_1:hover .hook_logo {
	fill: var(--cor39);
	margin: 20px auto 0 auto;
	transition: all 0.4s ease!important;
}

.hook_1:hover .hook_see_more_svg_1 {
	stroke: var(--cor39);
	transition: all 0.4s ease!important;
}

.hook_2 {
	background-color: rgba(var(--cor36), 0.1);
}

.hook_2:hover {
	transition: all 0.4s ease!important;
	background-color: rgba(var(--cor36), 0.25);
}

.hook_2:hover .hook_title,
.hook_2:hover .hook_see_more_title {
	color: var(--cor27);
	transition: all 0.4s ease!important;
}

.hook_2:hover .hook_logo {
	fill: var(--cor21);
	margin: 20px auto 0 auto;
	transition: all 0.4s ease!important;
}

.hook_2:hover .hook_see_more_svg_2 {
	stroke: var(--cor21);
	transition: all 0.4s ease!important;
}

.hook_3 {
	background-color: rgba(var(--cor32), 0.1);
}

.hook_3:hover {
	transition: all 0.4s ease!important;
	background-color: rgba(var(--cor32), 0.25);
}

.hook_3:hover .hook_title,
.hook_3:hover .hook_see_more_title {
	color: var(--cor41);
	transition: all 0.4s ease!important;
}

.hook_3:hover .hook_logo {
	fill: var(--cor43);
	margin: 20px auto 0 auto;
	transition: all 0.4s ease!important;
}

.hook_3:hover .hook_see_more_svg_3 {
	stroke: var(--cor43);
	transition: all 0.4s ease!important;
}

.hook_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor29);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	text-transform: uppercase;
	font: 600 24px/32px 'Inter', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 24;
}

.hook_logo {
	padding: 0;
	height: auto;
	border: none;
	outline: none;
	margin: 0 auto;
	overflow: hidden;
	stroke: transparent;
	border-radius: 16px;
	box-sizing: content-box;
	transition: all 0.2s ease;
}

.hook_logo_1 {
	width: 100%;
	max-width: 120px;
	fill: var(--cor15);
}

.hook_logo_2 {
	width: 100%;
	max-width: 100px;
	fill: var(--cor35);
}

.hook_logo_3 {
	width: 100%;
	max-width: 120px;
	fill: var(--cor31);
}

.hook_see_more {
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}

.hook_see_more_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor33);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 500 18px/28px 'Inter', sans-serif;
	font-variation-settings: 'wght' 500, 'opsz' 18;
}

.hook_see_more_svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 12px;
	outline: none;
	fill: transparent;
	box-sizing: content-box;
	transition: all 0.2s ease;
}

.hook_see_more_svg_1 {
	stroke: var(--cor15);
}

.hook_see_more_svg_2 {
	stroke: var(--cor35);
}

.hook_see_more_svg_3 {
	stroke: var(--cor31);
}

@media screen and (max-width: 983px) {
	.hook {
		height: 350px;
	}
}

@media screen and (max-width: 870px) {
	.hook {
		transition: none;
	}
}

@media screen and (max-width: 768px) {
	.hook_section_1_inner {
		gap: 10px;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
	}
	.hook {
		height: auto;
		width: clamp(0%, calc(100% - 48px), 452px);
	}
}

/*
 * Fim secção gancho
 */