:root {
	--bg: #1a1c20;
	--bg-soft: #1f2126;
	--surface: #111318;
	--olive: #4f6e2f;
	--gold: #d7ad1a;
	--gold-soft: #f0d35a;
	--text: #c8aa2d;
	--line: rgba(226, 187, 53, 0.35);
	--input-line: rgba(218, 183, 61, 0.55);
	--radius-xl: 16px;
	--radius-lg: 12px;
	--transition: 260ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding-top: 80px;
	min-height: 100vh;
	font-family: "Crimson Text", serif;
	/* font-family: "Parisienne", cursive; */
	line-height: 1.6;
	background:
		radial-gradient(circle at 10% 5%, rgba(214, 172, 31, 0.12) 0%, transparent 32%),
		radial-gradient(circle at 90% 2%, rgba(86, 116, 52, 0.16) 0%, transparent 30%),
		var(--bg);
	color: var(--text);
	font-size: 1.3rem;
}

.menu-principal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1050;
	background: var(--olive);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-logo img {
	height: clamp(46px, 4vw, 60px);
	object-fit: contain;
}

.nav-link {
	color: #efe7c0;
	font-size: 0.925rem;
	font-weight: 600;
	padding: 0.2rem 0;
	transition: color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link:focus {
	color: #fff8d4;
	transform: translateY(-1px);
}

.menu-lateral {
	background: #2f4520;
	width: min(290px, 85vw) !important;
	color: #f5ebc2;
}

.offcanvas .nav-link {
	font-size: 1.125rem;
	font-weight: 400;

}
.navbar-nav .nav-item {
	padding: 0.4rem 0;
}

.navbar-toggler {
	border: 0;
	padding: 0.35rem;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.16rem rgba(240, 211, 90, 0.35);
}

.chale-page {
	padding-block: clamp(2rem, 3.5vw, 4rem);
}

.section-space {
	padding-block: clamp(1.25rem, 2.4vw, 2rem);
}

.section-hero,
.section-highlight {
	max-width: 980px;
}

.hero-card {
	position: relative;
	--parallax-offset: 0px;
	border: 3px solid var(--gold);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.hero-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	filter: saturate(1.1) contrast(1.05);
	will-change: transform;
	transform: translate3d(0, var(--parallax-offset), 0) scale(2);
}

.hero-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08) 35%, transparent 65%);
	pointer-events: none;
}

.hero-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	z-index: 2;
	font-family: "Parisienne", cursive;
	font-size: clamp(2.1rem, 4.6vw, 4.4rem);
	font-weight: 400;
	line-height: 1;
	color: var(--gold);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
	white-space: nowrap;
}

.intro-copy,
.section-copy,
.contact-content {
	max-width: 860px;
	margin-inline: auto;
	padding-top: 3rem;
	padding-bottom: 2rem 4rem 4rem;
	/* font-family: "Parisienne", cursive; */
	font-size: clamp(1.0rem, 1.42vw, 1.3rem);
	font-weight: 500;
	text-wrap: pretty;
}

.title {
	font-family: "Parisienne", cursive;
	font-size: clamp(2.4rem, 4.2vw, 4rem);
	font-weight: 400;
	text-align: center;
	line-height: 1;
	color: var(--gold);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
	padding-bottom: 1rem;
}
.intro-copy p + p {
	margin-top: 0.8rem;
}

.contact-content {
	font-family: "Crimson Text", serif;
	font-size: clamp(1.1rem, 1.42vw, 1.3rem);
}

.section-title {
	margin: 0 0 1.4rem;
	font-family: "Parisienne", cursive;
	font-size: clamp(2.4rem, 4.2vw, 4rem);
	font-weight: 400;
	text-align: center;
	line-height: 1;
	color: var(--gold);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 980px;
	margin-inline: auto;
}

.gallery-item {
	margin: 0;
	border: 2px solid var(--gold);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface);
	box-shadow: 0 9px 20px rgba(0, 0, 0, 0.25);
	transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gallery-button:focus-visible {
	outline: 2px solid var(--gold-soft);
	outline-offset: -2px;
}

.gallery-item img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.gallery-modal[hidden] {
	display: none;
}

.gallery-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

.gallery-modal-dialog {
	position: relative;
	z-index: 1;
	max-width: min(1100px, 100%);
	width: max-content;
	max-height: calc(100vh - 2rem);
	border: 2px solid var(--gold);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #000;
	box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
	cursor: grab;
	user-select: none;
}

.gallery-modal-dialog.is-dragging {
	cursor: grabbing;
}

.gallery-modal-dialog img {
	display: block;
	max-width: min(92vw, 1100px);
	max-height: calc(100vh - 2rem);
	width: auto;
	height: auto;
	object-fit: contain;
}

.gallery-modal-close {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	z-index: 2;
	width: 2.2rem;
	height: 2.2rem;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus-visible {
	background: rgba(0, 0, 0, 0.78);
	border-color: #fff;
	outline: none;
}

body.gallery-open {
	overflow: hidden;
}

.section-narrow {
	max-width: 740px;
}

.price-table {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(to right, rgba(219, 184, 52, 0.04), rgba(219, 184, 52, 0));
	padding: 0.65rem 0;
}

.price-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0.25rem;
	font-size: clamp(1.0rem, 1.4vw, 1.2rem);
	border-top: 1px solid rgba(214, 175, 42, 0.2);
}

.price-row:first-child {
	border-top: 0;
}

.price-row strong {
	font-weight: 700;
	white-space: nowrap;
}

.booking-form {
	display: grid;
	gap: 0.8rem;
}

.radio-list {
	display: grid;
	gap: 0.35rem;
	padding-bottom: 0.2rem;
	font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.radio-list label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.radio-list label input {
	margin-right: 0.75rem;
	display: inline-block;
}

.radio-options {
	appearance: none;
	-webkit-appearance: none;
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	border-radius: 50%;
	border: 1px solid rgba(240, 211, 90, 0.75);
	background: radial-gradient(circle at 30% 30%, rgba(255, 231, 140, 0.18), rgba(0, 0, 0, 0.15));
	box-shadow: inset 0 0 0 2px rgba(16, 18, 22, 0.95), 0 1px 5px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	position: relative;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
	flex-shrink: 0;
}

.radio-options::before {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #fff1b0 0%, #d7ad1a 55%, #8e6604 100%);
	transform: scale(0);
	transition: transform 180ms ease;
}

.radio-options:hover {
	transform: scale(1.05);
	border-color: var(--gold-soft);
	box-shadow: inset 0 0 0 2px rgba(16, 18, 22, 0.95), 0 0 0 3px rgba(240, 211, 90, 0.2);
}

.radio-options:checked {
	border-color: var(--gold-soft);
	background: rgba(103, 134, 62, 0.6);
}

.radio-options:checked::before {
	transform: scale(1);
}

.radio-options:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(16, 18, 22, 0.95), 0 0 0 3px rgba(240, 211, 90, 0.4);
}
.booking-form label {
	font-size: 1.05rem;
	font-weight: 600;
	padding-top: 0.2rem;
}

.booking-form input {
	/* width: 100%; */
	padding: 0.42rem 0.1rem;
	background: transparent;
	color: #f4d76f;
	border: 0;
	border-bottom: 1px solid var(--input-line);
	font-size: 1rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-form input:not([type="radio"]):focus {
	outline: none;
	border-color: var(--gold-soft);
	box-shadow: 0 3px 0 -2px rgba(240, 211, 90, 0.6);
}

.flatpickr-calendar {
	background: linear-gradient(180deg, #1f2126, #17191d);
	border: 1px solid rgba(215, 173, 26, 0.45);
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	color: #f3e5a8;
	font-family: "Crimson Text", serif;
	overflow: hidden;
}

.flatpickr-months {
	background: linear-gradient(90deg, rgba(79, 110, 47, 0.95), rgba(63, 89, 37, 0.95));
	padding-block: 0.2rem;
}

.flatpickr-current-month {
	font-size: 1rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
	color: #fff2b8;
	font-weight: 600;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
	fill: #f6de7f;
	color: #f6de7f;
	transition: transform var(--transition), opacity var(--transition);
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
	transform: scale(1.1);
	opacity: 1;
}

span.flatpickr-weekday {
	color: #f5d878;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.75rem;
}

.flatpickr-day {
	color: #f2e4a9;
	border-radius: 8px;
	border: 1px solid transparent;
	transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.flatpickr-day:hover,
.flatpickr-day:focus {
	background: rgba(215, 173, 26, 0.2);
	border-color: rgba(215, 173, 26, 0.45);
	color: #fff5cb;
}

.flatpickr-day.today {
	border-color: rgba(215, 173, 26, 0.7);
	color: #ffe083;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: linear-gradient(140deg, #b88805, #efcb53);
	border-color: #efcb53;
	color: #2a2206;
	font-weight: 700;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange {
	background: rgba(215, 173, 26, 0.2);
	border-color: transparent;
	box-shadow: none;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
	color: rgba(255, 236, 164, 0.35);
}

.booking-form .flatpickr-input[readonly] {
	cursor: pointer;
}

.gold-button {
	margin: 0.7rem auto 0;
	display: inline-block;
	min-width: 130px;
	padding: 0.4rem 1.4rem;
	font-family: "Parisienne", cursive;
	font-size: 1.625rem;
	line-height: 1;
	color: #2f2500;
	background: linear-gradient(120deg, #b88805, #ffef81 45%, #bc8908);
	border: 1px solid #d4b036;
	border-radius: 2px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35);
	transition: transform var(--transition), filter var(--transition);
}

.gold-button:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
}

a {
	color: var(--gold-soft);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), color var(--transition);
}

a:hover {
	color: #fff4b3;
	border-color: rgba(255, 236, 154, 0.7);
}

.rodape-site {
	margin-top: clamp(1.8rem, 4vw, 3rem);
	padding: 1.2rem 1rem;
	text-align: center;
	background: #5f8738;
	color: #f4efdd;
	font-weight: 600;
	font-size: 1rem;
}

.rodape-site p {
	margin: 0;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(16px);
	animation: fadeUp 600ms ease forwards;
	animation-delay: var(--delay, 0s);
}

.delay-1 {
	--delay: 0.14s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.fade-in-up {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1199.98px) {
	.menu-mobile-1200 {
		position: relative;
		justify-content: flex-start;
		min-height: 48px;
	}

	.menu-social-links {
		margin-left: auto;
		flex: 0 0 auto;
	}

	.menu-social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.4rem;
		height: 2.4rem;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 999px;
		color: #f7edc6;
		background: rgba(0, 0, 0, 0.12);
		text-decoration: none;
		transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
	}

	.menu-social-link:hover,
	.menu-social-link:focus {
		color: #fff7d4;
		background: rgba(0, 0, 0, 0.2);
		border-color: rgba(255, 255, 255, 0.26);
		transform: translateY(-2px);
	}

	.menu-social-link svg {
		width: 1rem;
		height: 1rem;
		fill: currentColor;
		flex: 0 0 auto;
	}

	.navbar-nav .nav-item:first-child {
		padding-top: 1.5rem;
	}

	.menu-toggle {
		margin-left: 0;
		z-index: 2;
	}

	.menu-logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		margin: 0;
		white-space: nowrap;
	}

	.menu-logo img {
		height: 50px;
	}
}

@media (max-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.price-row {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	body {
		background:
			radial-gradient(circle at 10% 5%, rgba(214, 172, 31, 0.08) 0%, transparent 35%),
			radial-gradient(circle at 90% 2%, rgba(86, 116, 52, 0.1) 0%, transparent 30%),
			var(--bg);
	}

	.chale-page {
		padding-top: 1.4rem;
	}

	.section-space {
		padding-block: 1.1rem;
	}

	.hero-card {
		border-width: 2px;
	}

	.hero-title {
		font-size: clamp(1.8rem, 9vw, 2.8rem);
		white-space: normal;
		text-align: center;
		padding-inline: 1rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.price-row {
		flex-direction: column;
		gap: 0.3rem;
	}

	.gold-button {
		min-width: 112px;
		font-size: 1.4rem;
	}
}


.whatsapp-icon {
	width: 40px;
	height: 40px;
	overflow: hidden;
	position: fixed;
	right: 5px;
	bottom: 90px;
	z-index: 1200;
	cursor: pointer;
}

.whatsapp-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}