#containerHeader {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	box-sizing: border-box;

	margin: auto;

	.imagem-header {
		z-index: 0;
		object-fit: cover;
		width: 100%;
		height: 50vh;
	}

	.container-contanto {
		position: relative;
		isolation: isolate;
		overflow: hidden;

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

		width: 100%;
		height: max-content;

		padding-block: 20px;

		background-image: url('../img/banner-defesa-civil.avif');
		background-position: bottom;

		&::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: 1320px) {}


@media (max-width: 512px) {
	#containerHeader {
		padding: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.logo {
		height: 40px;
		display: inline;
	}
}

@media only screen and (max-width: 991px) {
	#containerHeader {
		.container-contanto {
			flex-direction: column;
			gap: 12px;
			padding: 18px 0 20px;

			a {
				font-size: 1rem;
				white-space: normal;
			}
		}
	}

	.logo {
		height: 40px;
		display: inline;
	}
}

@media (max-width: 576px) {
	.navegacao {
		width: calc(100% - 20px);
	}
}

@media (max-width: 430px) {
	.navegacao {

		.link-home {
			max-width: 230px;
		}
	}
}

@media (max-width: 425px) {
	.cabecalho {
		height: 200px;
	}

	.link-home {
		h1 {
			font-size: 0.825rem;
		}
	}
}