:root {
	--color-primary: #1cb0bb;
	--color-primary-dark: #138b93;
	--color-accent: #00cb7a;
	--color-accent-dark: #00a563;
	--color-text: #17313a;
	--color-muted: #5e7379;
	--color-bg: #ffffff;
	--color-bg-soft: #f3fbfc;
	--color-border: #dceff1;
	--shadow-soft: 0 20px 50px rgba(13, 91, 101, .12);
	--radius-lg: 28px;
	--radius-md: 18px;
	--container: 1120px;
	--font-main: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-main);
	color: var(--color-text);
	background: var(--color-bg);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 4px;
}

.container {
	width: min(var(--container), calc(100% - 32px));
	margin-inline: auto;
}

.narrow {
	width: min(820px, calc(100% - 32px));
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	transform: translateY(-150%);
	padding: 10px 14px;
	border-radius: 999px;
	background: #fff;
	color: var(--color-text);
	box-shadow: var(--shadow-soft);
	transition: transform .2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 24px 0 72px;
	color: #fff;
	background:
	  radial-gradient(circle at 18% 88%, rgba(93, 197, 196, .95), transparent 42%),
	  radial-gradient(circle at 48% 48%, rgba(29, 139, 176, .95), transparent 44%),
	  linear-gradient(135deg, #388bb5 0%, #1d8bb0 48%, #4065ab 100%);

}


.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(48px, 8vw, 96px);
}

.brand,
.footer-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand svg {
	width: 170px;
	max-height: 72px;
}

.brand-text {
	font-weight: 800;
	letter-spacing: .02em;
}

.topbar-link {
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
	opacity: .9;
}

.topbar-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.hero {
	display: grid;
	gap: 36px;
	align-items: center;
}

.hero-content {
	max-width: 760px;
}

.eyebrow {
	margin: 0 0 12px;
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: currentColor;
	opacity: .78;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 820px;
	margin-bottom: 22px;
	font-size: clamp(2.2rem, 8vw, 4.75rem);
	line-height: .98;
	letter-spacing: -.055em;
}

.hero-lead {
	max-width: 720px;
	margin-bottom: 30px;
	font-size: clamp(1rem, 2vw, 1.18rem);
	color: rgba(255,255,255,.92);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform .2s ease,
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease,
		box-shadow .2s ease;
}

.button:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.button-primary {
	background: var(--color-accent);
	color: #fff;
	box-shadow: 0 12px 30px rgba(0, 117, 80, .22);
}

.button-primary:hover {
	background: var(--color-accent-dark);
}

.button-secondary {
	border-color: rgba(255,255,255,.55);
	color: #fff;
}

.button-secondary:hover {
	background: rgba(255,255,255,.12);
}

.hero-card {
	display: grid;
	gap: 12px;
	width: min(100%, 420px);
	padding: 18px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: var(--radius-lg);
	background: rgba(255,255,255,.15);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-soft);
}

.hero-card-item {
	padding: 18px;
	border-radius: 20px;
	background: rgba(255,255,255,.92);
	color: var(--color-text);
}

.hero-card-label,
.hero-card-item span:last-child {
	display: block;
	color: var(--color-muted);
	font-size: .9rem;
}

.hero-card-item strong {
	display: block;
	font-size: clamp(1.35rem, 4vw, 2rem);
	line-height: 1.15;
}

/* Sections */

.section {
	padding: clamp(64px, 9vw, 104px) 0;
}

.section-compact {
	padding: clamp(36px, 6vw, 64px) 0;
}

.section-muted {
	background: var(--color-bg-soft);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.section-heading .eyebrow,
.section .eyebrow {
	color: var(--color-primary-dark);
	opacity: 1;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(1.8rem, 5vw, 3rem);
	line-height: 1.08;
	letter-spacing: -.035em;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.1rem;
	line-height: 1.25;
}

.large-text {
	font-size: clamp(1.05rem, 2vw, 1.24rem);
	color: var(--color-muted);
}

.info-grid,
.card-grid,
.content-grid {
	display: grid;
	gap: 20px;
}

.info-card,
.feature-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.info-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px;
}

.info-icon,
.feature-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 66px;
	height: 66px;
	border-radius: 20px;
	background: var(--color-bg-soft);
	color: var(--color-primary);
	font-weight: 800;
}

.info-icon svg,
.feature-icon svg {
	width: 42px;
	max-height: 42px;
}

.info-card p,
.feature-card p,
.content-grid p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.feature-card {
	padding: 28px;
}

.feature-icon {
	margin-bottom: 20px;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.check-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	color: var(--color-muted);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(0, 203, 122, .13);
	color: var(--color-accent-dark);
	font-size: .85rem;
	font-weight: 800;
}

.exams-list {
	display: grid;
	gap: 8px 24px;
	max-width: 980px;
	margin-inline: auto;
}

.why-list {
	max-width: 680px;
	margin-inline: auto;
}

.content-grid article {
	padding: 28px;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--color-border);
}

.final-cta {
	margin-top: 36px;
	text-align: center;
}

.final-cta p {
	margin-bottom: 16px;
	font-weight: 700;
}

.why-alergo-section {
	background:
		linear-gradient(135deg, #1db1bc 0%, #1aa89d 100%);
	color: #fff;
}

.why-alergo-section .section-heading .eyebrow,
.why-alergo-section .eyebrow {
	color: rgba(255, 255, 255, .78);
}

.why-alergo-section h2 {
	color: #fff;
}

.why-alergo-section .check-list li {
	color: rgba(255, 255, 255, .92);
}

.why-alergo-section .check-list li::before {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.why-alergo-section .final-cta p {
	color: rgba(255, 255, 255, .95);
}

.why-alergo-section .button-primary {
	background: #fff;
	color: var(--color-primary-dark);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.why-alergo-section .button-primary:hover {
	background: rgba(255, 255, 255, .9);
}

.reservation-panel {
	padding: clamp(48px, 8vw, 80px) 0;
	background: #fff;
	color: var(--color-text);
	border-top: 1px solid var(--color-border);
}

.reservation-panel[hidden] {
	display: none;
}

.reservation-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.reservation-top h2 {
	margin: 0;
}

.reservation-close {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	color: var(--color-text);
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.reservation-close:hover {
	background: var(--color-bg-soft);
	border-color: var(--color-primary);
	transform: translateY(-1px);
}

.reservation-close span[aria-hidden="true"] {
	font-size: 2rem;
	line-height: 1;
}

#bookero {
	min-height: 180px;
	border-radius: var(--radius-md);
	background: #fff;
	color: var(--color-text);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--color-border);
}



body .bookero-plugin-form {
	max-width: none !important;
}

body .bookero-plugin-header,
.dates-section .vdp-datepicker__calendar .cell.selected,
.calendar-days-list-cell.is-selected,
.hours-section .hours-wrapper .hours-list-item.is-selected,
.switcher.is-active {
	background: linear-gradient(90deg, #1db1bc, #1aa89d) !important;
	color: #fff !important;
}

.calendar-days-list-cell.is-valid,
.hours-section .hours-wrapper .hours-list-item {
	background: #4bc3c9 !important;
	color: #fff !important;
}

.submit-section-cart-step-1 button,
.submit-section-cart-step-2 button.submit-button {
	background-color: var(--color-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
}

/* Footer / cookies */

.site-footer {
	padding: 48px 0;
	text-align: center;
	background: #fff;
}

.footer-logo svg {
	width: 64px;
	max-height: 64px;
}

address {
	margin-top: 22px;
	font-style: normal;
	color: var(--color-muted);
}

.cookie-banner {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 9999;
	display: grid;
	gap: 16px;
	align-items: center;
	max-width: 980px;
	margin-inline: auto;
	padding: 18px;
	border-radius: 22px;
	background: rgba(23, 49, 58, .96);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner p {
	margin: 0;
	font-size: .92rem;
}

.cookie-banner a {
	color: #fff;
	font-weight: 700;
}

.cookie-button {
	justify-self: start;
	border: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #fff;
	padding: 10px 18px;
	font-weight: 800;
	cursor: pointer;
}

.cookie-button:hover {
	background: var(--color-accent-dark);
}

/* Responsive */

@media (min-width: 720px) {
	.info-grid,
	.content-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.exams-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cookie-banner {
		grid-template-columns: 1fr auto;
		left: 24px;
		right: 24px;
		bottom: 24px;
		padding: 20px 24px;
	}

	.cookie-button {
		justify-self: end;
	}
}

@media (min-width: 960px) {
	.hero {
		grid-template-columns: minmax(0, 1fr) 420px;
	}

	.hero-card {
		justify-self: end;
	}
}

@media (max-width: 560px) {
	.topbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero-actions,
	.button {
		width: 100%;
	}

	.info-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.reservation-top {
		align-items: flex-start;
	}
}

/* Motion safety */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
