/**
 * Landing page — cabeçalho só-logo.
 *
 * Desktop: overlay transparente (não bloqueia o conteúdo abaixo), logo branca
 * alinhada à esquerda no .container do site.
 * Mobile: barra branca com logo colorida centralizada.
 *
 * Usa #wrapper-navbar.landing-header para vencer o mega-menu
 * (#wrapper-navbar { position: fixed; background: branco }).
 */

/* Sem reserva de espaço do header fixo do site */
body.page-template-template-landing-php #content {
	padding-top: 0;
}

/* Override autotrac-menu: fixed + fundo branco + hide-on-scroll */
body.page-template-template-landing-php #wrapper-navbar.landing-header,
body.page-template-template-landing-php.subindo #wrapper-navbar.landing-header {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	z-index: 100;
	background: transparent;
	transform: none;
	transition: none;
	opacity: 1;
}

.landing-header__bar {
	display: flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 42px;
	padding: 8px 18px;
	background: #ffffff;
}

.landing-header__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.landing-header__logo {
	display: inline-flex;
	line-height: 0;
	text-decoration: none;
}

.landing-header__logo-img {
	display: block;
	height: auto;
	max-width: 100%;
}

.landing-header__logo-img--desktop {
	display: none;
}

.landing-header__logo-img--mobile {
	display: block;
	width: 144px;
	height: 20px;
}

/* Desktop: overlay sem barra opaca; logo branca à esquerda no .container */
@media (min-width: 768px) {
	body.page-template-template-landing-php #wrapper-navbar.landing-header,
	body.page-template-template-landing-php.subindo #wrapper-navbar.landing-header {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		/* Permite clique no conteúdo abaixo; só a logo captura eventos */
		pointer-events: none;
	}

	.landing-header__logo {
		pointer-events: auto;
	}

	.landing-header__bar {
		height: 90px;
		padding: 15px 0;
		background: transparent;
		justify-content: center;
	}

	.landing-header__inner {
		justify-content: flex-start;
		/* Alinhado ao .container do site (1224px) */
		max-width: 1224px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.landing-header__logo-img--desktop {
		display: block;
		width: 158px;
		height: 22px;
	}

	.landing-header__logo-img--mobile {
		display: none;
	}
}
