.lp-header {
	--lp-header-blue: #104268;
	--lp-header-red: #fa0000;
	--lp-header-red-hover: #d40000;
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.lp-header__inner {
	width: min(100%, 1440px);
	margin: 0 auto;
	padding: 12px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.lp-header__logo,
.lp-header__phone,
.lp-header__cta {
	text-decoration: none;
}

.lp-header__logo img {
	display: block;
	width: auto;
	height: 50px;
}

.lp-header__right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.lp-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.lp-header__phone svg {
	width: 26px;
	height: 26px;
	fill: var(--lp-header-blue);
	flex-shrink: 0;
}

.lp-header__phone-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.lp-header__phone-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #888;
	letter-spacing: 0.5px;
}

.lp-header__phone-num {
	font-size: 20px;
	font-weight: 800;
	color: var(--lp-header-blue);
}

.lp-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 50px;
	background: var(--lp-header-red);
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.5px;
	white-space: nowrap;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.lp-header__cta:hover,
.lp-header__cta:focus-visible {
	background: var(--lp-header-red-hover);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.lp-header__inner {
		padding: 10px 20px;
	}

	.lp-header__logo img {
		height: 40px;
	}

	.lp-header__phone-num {
		font-size: 17px;
	}

	.lp-header__right {
		gap: 24px;
	}

	.landing-gracias .lp-header__phone-text {
		display: none;
	}
}

@media (max-width: 480px) {
	.lp-header__phone-text {
		display: none;
	}

}
