#containerHeader {
	position: relative;
	min-height: max-content;
	height: 50vh;
	overflow: hidden;

	padding-top: 128px;
	background: black;

	.imagem-header {
		position: relative;
		left: 100%;
		bottom: 0;
		z-index: 0;
		transform: translate(-100%, 0%);
		object-fit: cover;
	}

	.container-titulo {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;

		display: flex;
		justify-content: center;
		align-items: center;

		width: 100%;
		height: 100%;

		color: white;
	}

	.titulo-principal {
		font-size: 5rem;
		line-height: 5rem;
		font-family: 'Newsreader';
		position: relative;
		z-index: 2;
		margin: 0;
	}

	.titulo-conteudo {
		position: relative;
		z-index: 2;
		text-align: center;
	}

	.links-destaque {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: .65rem;
		margin-top: .5rem;
		font-size: 0.9rem;
		line-height: 1.2;

		button {
			padding: 8px 10px;
			border: none;
			border-radius: 1rem;
			color: white;
			background-color: rgba(26, 36, 45, .8);
			cursor: pointer;
			transition: 0.3s ease;

			&:hover {
				background-color: rgba(26, 36, 45, 1);
			}
		}
	}

	.elemento-grafico {
		position: absolute;
		z-index: 1;


		width: 300px;
		height: 40px;
		margin-top: -15px;

		mix-blend-mode: multiply;
	}

	.container-contanto {
		position: absolute;
		bottom: -2px;
		z-index: 2;

		display: flex;
		justify-content: center;
		align-items: center;
		gap: 120px;

		width: 100%;
		height: max-content;

		padding-block: 20px;
		background-image: unset;


		&::before {
			content: '';

			position: absolute;
			top: 0;
			left: 0;

			width: 100%;
			height: 100%;
			backdrop-filter: blur(60px) saturate(135%);
		}

		a {
			position: relative;
			z-index: 1;

			color: #fff;
			font-size: clamp(14px, 1.8vw, 20px);
			text-decoration: none;
			white-space: nowrap;
			text-align: center;

			span {
				color: rgba(255, 255, 255, 0.664);
				font-size: 1.5rem;
				font-weight: 500;
				margin-top: 2px;

				--reversed-link-gap: min(100%, 1.35em);
				background: linear-gradient(to right, currentColor, currentColor) 0 var(--reversed-link-gap)/0 1px no-repeat;
				background-position-x: right;
				transition: background-size .5s cubic-bezier(.3, 1, .3, 1);

				.icone {
					font-size: 1.2rem;
				}
			}

			&:hover {
				span {
					background-position-x: left;
					background-size: 100% 1px;
				}
			}
		}
	}

	@media (max-width: 576px) {
		.titulo-principal {
			font-size: 3.5rem;
			line-height: 1;
		}

		.links-destaque {
			flex-wrap: wrap;
			gap: .35rem .55rem;
			font-size: .9rem;
		}
	}
}


@media (max-width: 991px) {
	#containerHeader {
		height: 700px;

		.container-contanto {
			flex-direction: column;
			gap: 12px;
			padding: 18px 0 20px;
		}
	}
}