* {
	box-sizing: border-box;
}

.header {
	background: #fff;
	border-bottom: 1px solid #e8ddf3;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.logo-area,
.nav,
.header-actions,
.btn {
	display: flex;
	align-items: center;
}

.logo-area {
	gap: 20px;
}

.logo {
	display: block;
	width: auto;
	height: 60px;
}

.site-title {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.nav {
	gap: 28px;
	font-size: 15px;
}

.nav a,
.nav a:link,
.nav a:visited,
.nav a:active {
	color: #111827;
	text-decoration: none;
}

.nav a:hover,
.nav a.active {
	color: #5e3b8c;
}

.header-actions {
	gap: 16px;
}

.btn,
.btn:link,
.btn:visited,
.btn:active,
.btn:hover {
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
	transition: background-color .15s ease;
}

.btn-phone,
.btn-phone:link,
.btn-phone:visited,
.btn-phone:active {
	color: #5e3b8c;
	background: #fff;
	border: 1px solid #5e3b8c;
}

.btn-phone:hover {
	color: #5e3b8c;
	background: #faf8fd;
	border: 1px solid #5e3b8c;
}

.btn-whatsapp,
.btn-whatsapp:link,
.btn-whatsapp:visited,
.btn-whatsapp:active {
	color: #fff;
	background: #0bbf59;
}

.btn-whatsapp:hover {
	color: #fff;
	background: #09b054;
}

.btn svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}

@media (max-width: 1000px) {

	.header-inner {
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav {
		order: 3;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.header-actions {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 560px) {

	.header-inner {
		padding: 18px;
		text-align: center;
	}

	.logo-area,
	.header-actions {
		flex-direction: column;
	}

	.logo-area {
		gap: 8px;
	}

	.logo {
		height: 52px;
	}

	.site-title {
		font-size: 18px;
		white-space: normal;
	}

	.nav {
		gap: 16px;
	}

	.btn {
		width: 100%;
	}
}