.page-hero {
	width: 100%;
	min-height: 390px;
	display: flex;
	align-items: center;
	position: relative;
	background-color: #062f4c;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 50px 0 70px;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
	linear-gradient(180deg,rgba(6, 47, 76, 0.98) 0px,rgba(6, 47, 76, 0.92) 85px,rgba(6, 47, 76, 0.35) 150px,rgba(6, 47, 76, 0) 260px),
	linear-gradient(90deg,rgba(6, 47, 76, 0.92) 0%,rgba(6, 47, 76, 0.78) 36%,rgba(6, 47, 76, 0.30) 62%,rgba(6, 47, 76, 0.05) 100%);
}

.page-hero .container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-hero-content {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	gap: 60px;
	margin: 0;
}

.page-hero-text {
	width: 520px;
	max-width: 520px;
	display: block;
	position: relative;
	z-index: 2;
	flex: 0 0 520px;
}

.page-hero .breadcrumb {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
}

.page-hero .breadcrumb a {
	color: #00aeef;
	text-decoration: none;
	transition: 0.3s ease;
}

.page-hero .breadcrumb a:hover {
	color: #fff;
}

.page-hero .breadcrumb span {
	color: #fff;
}

.page-hero .breadcrumb span:last-child {
	font-family: var(--font-family-bold);
	font-weight: 800;
}

.page-hero h1 {
	width: 100%;
	max-width: 520px;
	display: block;
	margin: 0 0 18px;
	color: #fff;
	font-size: 42px;
	line-height: 1.08;
	font-family: var(--font-family-bold);
	font-weight: 900;
	letter-spacing: -1px;
}

/* DESCRIÇÃO */
.page-hero-description {
	width: 100%;
	max-width: 520px;
	display: block;
	color: #fff;
	font-size: 17px;
	line-height: 1.45;
	font-family: var(--font-family);
	font-weight: 600;
}

.page-hero-description p {
	margin: 0;
}

/* ESCONDE A IMAGEM LATERAL QUANDO USAR IMAGEM DE FUNDO */
.page-hero[style*="background-image"] .page-hero-image {
	display: none;
}

/* IMAGEM LATERAL NORMAL, CASO NÃO USE FUNDO */
.page-hero-image {
	width: 400px;
	height: 260px;
	max-width: 400px;
	display: block;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 18px;
	flex: 0 0 400px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.page-hero-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

@media only screen and (max-width: 1199px) {
	.page-hero {
		min-height: 360px;
		padding: 110px 0 65px;
		background-size: cover;
		background-position: center bottom;
	}

	.page-hero .container {
		max-width: 1440px;
	}

	.page-hero-text {
		width: 500px;
		max-width: 500px;
		flex: 0 0 500px;
	}

	.page-hero h1 {
		max-width: 500px;
		font-size: 38px;
	}

	.page-hero-description {
		max-width: 480px;
		font-size: 16px;
	}

	.page-hero-image {
		width: 360px;
		height: 240px;
		max-width: 360px;
		flex: 0 0 360px;
	}
}
@media only screen and (max-width: 991px) {
	.page-hero {
		min-height: auto;
		padding: 95px 0 60px;
		background-size: cover;
		background-position: center center;
	}

	.page-hero::before {
		background: rgba(6, 47, 76, 0.82);
	}

	.page-hero-content {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
		margin: 0;
	}

	.page-hero-text {
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	.page-hero h1 {
		max-width: 620px;
		font-size: 36px;
	}

	.page-hero-description {
		max-width: 650px;
		font-size: 16px;
		font-weight: 500;
	}

	.page-hero-image {
		width: 100%;
		max-width: 520px;
		height: 280px;
		margin: 0;
		flex: none;
	}
}

@media only screen and (max-width: 767px) {
	.page-hero {
		padding: 80px 0 50px;
		background-size: cover;
		background-position: center center;
	}

	.page-hero::before {
		background: rgba(6, 47, 76, 0.88);
	}

	.page-hero .breadcrumb {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.page-hero h1 {
		font-size: 32px;
		line-height: 1.12;
		margin-bottom: 18px;
		letter-spacing: -0.5px;
	}

	.page-hero-description {
		font-size: 15px;
		line-height: 1.45;
		font-weight: 500;
		margin-bottom: 26px;
	}

	.page-hero-image {
		max-width: 100%;
		height: 230px;
		border-radius: 16px;
	}
}

@media only screen and (max-width: 575px) {
	.page-hero {
		padding: 75px 0 45px;
		background-position: center center;
	}

	.page-hero h1 {
		font-size: 28px;
		letter-spacing: 0;
	}

	.page-hero-description {
		font-size: 14px;
		line-height: 1.45;
	}

	.page-hero-image {
		height: 205px;
		border-radius: 14px;
	}
}

@media only screen and (min-width: 1550px){
    .page-hero{
        padding-top: 120px;
    }
}