/* ---- HERO CONTATO ---- */
.contato-hero {
	position: relative;
	height: calc(60vh - 80px);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.contato-hero::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: url('imagens/fundosobre.jpg') center / cover no-repeat;
	filter: blur(6px);
	z-index: 0;
}

.contato-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.62);
	z-index: 1;
}

.contato-hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 40px 20px;
}

.contato-hero-label {
	color: rgba(255,255,255,0.55) !important;
}

.contato-hero h1 {
	font-size: 2.8rem;
	font-weight: 300;
	color: #fff;
	line-height: 1.2;
	margin: 0;
}

.contato-hero h1 strong {
	font-weight: 700;
}

.contato-hero p {
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	margin: 0;
}

/* ---- CANAIS ---- */
.contato-canais {
	background-color: #fff;
	padding: 80px 10%;
}

.contato-canais-inner {
	max-width: 620px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contato-canal {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid #e8e8e8;
	text-decoration: none;
	color: #2d2a26;
	transition: background-color 0.2s ease, padding 0.2s ease;
}

.contato-canal:first-child {
	border-top: 1px solid #e8e8e8;
}

.contato-canal:hover {
	padding-left: 8px;
}

.contato-canal:hover .contato-canal-arrow {
	opacity: 1;
	transform: translateX(4px);
}

.contato-canal-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.2rem;
	color: #264e3f;
	transition: background-color 0.2s ease;
}

.contato-canal:hover .contato-canal-icon {
	background-color: #264e3f;
	color: #fff;
}

.contato-canal-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 1;
}

.contato-canal-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #999;
	text-transform: uppercase;
}

.contato-canal-info strong {
	font-size: 1rem;
	font-weight: 600;
	color: #2d2a26;
}

.contato-canal-sub {
	font-size: 0.82rem;
	color: #aaa;
}

.contato-canal-arrow {
	font-size: 0.9rem;
	color: #bbb;
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ---- RESPONSIVO ---- */
@media screen and (max-width: 768px) {
	.contato-hero h1 {
		font-size: 2rem;
	}

	.contato-hero p br {
		display: none;
	}

	.contato-canais {
		padding: 60px 6%;
	}
}
