/* =========================================================
   BREADCRUMB / HERO INTERNO
   MOBILE FIRST
   ========================================================= */
.breadcrumb-block {
	position: relative;
	width: 100%;
	min-height: 280px;
	padding: 40px 0;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

/* =========================================================
   OVERLAY
   ========================================================= */
.breadcrumb-block::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(0, 49, 34, .97) 0%,
			rgba(0, 49, 34, .92) 48%,
			rgba(0, 49, 34, .65) 72%,
			rgba(0, 49, 34, .35) 100%);
	z-index: 1;
}

/* detalhe sutil de textura/luz */
.breadcrumb-block::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 25% 35%,
			rgba(255, 255, 255, .04),
			transparent 35%);
	pointer-events: none;
	z-index: 1;
}

/* =========================================================
   CONTAINER
   ========================================================= */
.breadcrumb-block .container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* =========================================================
   CONTEÚDO
   ========================================================= */
.breadcrumb-block .conteudo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	max-width: 620px;
	min-height: 200px;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-block .breadcrumb-caminho {
	width: 100%;
	margin-bottom: 12px;
}

.breadcrumb-block .breadcrumb-caminho ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb-block .breadcrumb-caminho ul li {
	position: relative;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, .55);
}

.breadcrumb-block .breadcrumb-caminho ul li:not(:last-child)::after {
	content: ">";
	margin-left: 6px;
	color: rgba(255, 255, 255, .35);
}

.breadcrumb-block .breadcrumb-caminho ul li a {
	color: #5fb78d;
	text-decoration: none;
	transition: .25s ease;
}

.breadcrumb-block .breadcrumb-caminho ul li a:hover {
	color: #fff;
}

/* =========================================================
   TÍTULO
   ========================================================= */
.breadcrumb-block h1 {
	position: relative;
	width: 100%;
	margin: 0 0 20px;
	padding: 0 0 14px;
	color: #fff;
	font-size: 30px;
	font-family: var(--font-family-bold);
	font-weight: 700;
	line-height: 1.05;
	text-align: left;
}

.breadcrumb-block h1::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 2px;
	background-color: #e4c600;
}

/* =========================================================
   DESCRIÇÃO
   ========================================================= */
.breadcrumb-block .descricao {
	width: 100%;
	max-width: 440px;
	margin: 0;
	color: rgba(255, 255, 255, .85);
	text-align: left;
}

/* =========================================================
   TABLET
   ========================================================= */
@media only screen and (min-width: 768px) {
	.breadcrumb-block {
		min-height: 310px;
		padding: 45px 0;
	}

	.breadcrumb-block .container {
		padding: 0 30px;
	}

	.breadcrumb-block .conteudo {
		max-width: 560px;
		min-height: 220px;
	}

	.breadcrumb-block .breadcrumb-caminho {
		margin-bottom: 14px;
	}

	.breadcrumb-block h1 {
		margin-bottom: 22px;
		padding-bottom: 15px;
		font-size: 34px;
	}

	.breadcrumb-block h1::after {
		width: 46px;
	}

	.breadcrumb-block .descricao {
		max-width: 430px;
	}
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media only screen and (min-width: 1024px) {
	.breadcrumb-block {
		min-height: 360px;
		padding: 0;
		background-position: center right;
	}

	.breadcrumb-block::before {
		background:
			linear-gradient(90deg,
				rgba(0, 49, 34, .98) 0%,
				rgba(0, 49, 34, .95) 38%,
				rgba(0, 49, 34, .80) 51%,
				rgba(0, 49, 34, .32) 65%,
				rgba(0, 49, 34, 0) 78%);
	}

	.breadcrumb-block .container {
		padding: 0 40px;
	}

	.breadcrumb-block .conteudo {
		justify-content: center;
		max-width: 600px;
		min-height: 360px;
	}

	.breadcrumb-block .breadcrumb-caminho {
		margin-bottom: 16px;
	}

	.breadcrumb-block h1 {
		margin-bottom: 20px;
		font-size: 38px;
	}

	.breadcrumb-block .descricao {
		max-width: 410px;
	}
}

/* =========================================================
   DESKTOP GRANDE
   ========================================================= */
@media only screen and (min-width: 1200px) {
	.breadcrumb-block {
		min-height: 390px;
	}

	.breadcrumb-block .conteudo {
		min-height: 390px;
	}

	.breadcrumb-block h1 {
		font-size: 40px;
	}

	.breadcrumb-block .descricao {
		max-width: 430px;
	}
}

/* =========================================================
   DESKTOP EXTRA GRANDE
   ========================================================= */
@media only screen and (min-width: 1400px) {
	.breadcrumb-block {
		min-height: 410px;
	}

	.breadcrumb-block .conteudo {
		min-height: 410px;
	}

	.breadcrumb-block h1 {
		font-size: 42px;
	}
}