:root {
	--color-primary: #CB8F0A;
	--color-secondary: #F6BE39;
	--color-blue: #125D96;
	--color-text: #455964;
	--color-text-dark: #4D575C;
	--color-bg: #F8F9FA;
	--color-white: #FFFFFF;
	--color-video-placeholder: #888888;
	--font-family: 'Inter', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	background-color: var(--color-bg);
	min-height: 100vh;
	color: var(--color-text);
}

.landing-layout {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Header común */
.landing-header {
	background: var(--color-primary);
	border-bottom: 1px solid var(--color-secondary);
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 10;
}

.landing-header .logo img,
.landing-header .logo svg {
	height: 34px;
	width: auto;
	display: block;
}

.landing-header .healthcity-badge {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-top: none;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 0px 0px 20px 20px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.landing-header .healthcity-badge img,
.landing-header .healthcity-badge svg {
	width: 140px;
	height: auto;
	display: block;
}

/* Footer común */
.landing-footer {
	background: var(--color-primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 48px;
	flex-wrap: wrap;
	gap: 20px;
}

.landing-footer .footer-left {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.landing-footer .footer-brand {
	color: var(--color-white);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.7px;
}

.landing-footer .footer-copy {
	color: var(--color-white);
	font-weight: 500;
	font-size: 12px;
}

.landing-footer .footer-right {
	display: flex;
	gap: 24px;
}

.landing-footer .footer-right a {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 12px;
	transition: opacity 0.2s;
}

.landing-footer .footer-right a:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.landing-header {
		padding: 0 20px;
	}

	.landing-header .healthcity-badge {
		display: none;
	}

	.landing-footer {
		flex-direction: column;
		align-items: flex-start;
		padding: 32px 24px;
	}
}
