/* Embreagem BH - header & footer customizados */

:root {
	--ebh-red: #c81e1e;
	--ebh-red-dark: #9c1717;
	--ebh-dark: #181818;
	--ebh-gray: #6b6b6b;
	--ebh-line: #ececec;
}

/* ---------- Header ---------- */
.site-header.dynamic-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.site-header .site-title a {
	font-weight: 700;
	letter-spacing: 0.2px;
}

.ebh-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: auto;
}

.ebh-header-phone {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--ebh-dark);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
}

.ebh-header-phone svg { flex: none; }

.ebh-header-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ebh-red);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 6px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease;
}

.ebh-header-whatsapp:hover {
	background: var(--ebh-red-dark);
	color: #fff;
}

.ebh-header-whatsapp svg { flex: none; }

@media (max-width: 767px) {
	.ebh-header-phone { display: none; }
	.ebh-header-actions { margin-left: 0; }
}

/* ---------- Footer ---------- */
.site-footer.dynamic-footer {
	background: var(--ebh-dark);
	color: #d8d8d8;
	padding: 56px 0 0;
}

.site-footer.dynamic-footer .footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.ebh-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 767px) {
	.ebh-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.ebh-footer-col h3 {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin: 0 0 16px;
}

.ebh-footer-col p {
	color: #b3b3b3;
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 12px;
}

.ebh-footer-brand {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 12px;
}

.ebh-footer-links { list-style: none; margin: 0; padding: 0; }
.ebh-footer-links li { margin-bottom: 10px; }
.ebh-footer-links a {
	color: #b3b3b3;
	text-decoration: none;
	font-size: 14px;
	transition: color .15s ease;
}
.ebh-footer-links a:hover { color: #fff; }

.ebh-footer-contact { list-style: none; margin: 0; padding: 0; }
.ebh-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 14px;
	color: #b3b3b3;
}
.ebh-footer-contact a { color: #b3b3b3; text-decoration: none; }
.ebh-footer-contact a:hover { color: #fff; }
.ebh-footer-contact svg { flex: none; margin-top: 2px; color: var(--ebh-red); }

.ebh-footer-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ebh-red);
	color: #fff !important;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 6px;
	margin-top: 6px;
}
.ebh-footer-whatsapp-btn:hover { background: var(--ebh-red-dark); }

.site-footer.dynamic-footer .copyright {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px 24px;
	font-size: 13px;
	color: #8a8a8a;
	text-align: center;
}

.site-footer.dynamic-footer .copyright a {
	color: #b3b3b3;
}
