:root {
	--bg: #0f1214;
	--bg-soft: #151a1d;
	--surface: #1a2024;
	--surface-2: #222a30;
	--text: #f4f6f7;
	--text-soft: #b8c1c6;
	--line: #2d3840;
	--accent: #d06a2a;
	--accent-strong: #f08a3e;
	--shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
	--radius: 18px;
	--header-h: 80px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Bahnschrift", "Segoe UI Variable", "Trebuchet MS", sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

.zoomable-image {
	cursor: zoom-in;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

/* Fundo animado com linhas inclinadas e textura urbana subtil */
.site-bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
	background:
		radial-gradient(circle at 10% -10%, rgba(208, 106, 42, 0.12), transparent 48%),
		radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.06), transparent 42%),
		linear-gradient(120deg, #0f1214 0%, #12171a 50%, #0d1012 100%);
}

.bg-line {
	position: absolute;
	width: 160vmax;
	height: 2px;
	background: linear-gradient(90deg, transparent 15%, rgba(208, 106, 42, 0.52), transparent 85%);
	transform: rotate(-14deg);
	opacity: 0.45;
	animation: drift 12s linear infinite;
}

.bg-line-1 {
	top: 18%;
	left: -70vmax;
}

.bg-line-2 {
	top: 45%;
	left: -50vmax;
	animation-duration: 16s;
	animation-delay: -4s;
}

.bg-line-3 {
	top: 74%;
	left: -65vmax;
	animation-duration: 20s;
	animation-delay: -9s;
}

@keyframes drift {
	from {
		transform: translateX(0) rotate(-14deg);
	}
	to {
		transform: translateX(35vmax) rotate(-14deg);
	}
}

@keyframes navPulse {
	0%,
	100% {
		filter: saturate(100%);
	}
	50% {
		filter: saturate(135%);
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background: rgba(12, 15, 17, 0.8);
	border-bottom: 1px solid rgba(208, 106, 42, 0.3);
}

.nav-wrap {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	letter-spacing: 0.02em;
	font-weight: 700;
}

.brand-mark {
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: linear-gradient(145deg, var(--accent), #8f3f13);
	overflow: hidden;
	font-weight: 800;
}

.brand-logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brand-text {
	font-size: 1rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.nav a {
	color: var(--text-soft);
	font-size: 0.95rem;
	position: relative;
	padding: 0.35rem 0.2rem;
	transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a.active {
	color: var(--text);
}

.nav a:hover {
	transform: translateY(-1px);
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.28rem;
	height: 2px;
	border-radius: 10px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	transform: scaleX(0.2);
	opacity: 0;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav a.active::after,
.nav a:hover::after {
	transform: scaleX(1);
	opacity: 1;
}

.nav a.active {
	text-shadow: 0 0 14px rgba(208, 106, 42, 0.35);
	animation: navPulse 1.6s ease-in-out infinite;
}

.nav a.nav-cta {
	padding: 0.48rem 1.15rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text);
}

.nav-cta::after {
	display: none;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: transparent;
	padding: 0.55rem;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text);
}

.menu-toggle span + span {
	margin-top: 6px;
}

main {
	padding-top: calc(var(--header-h) + 1rem);
}

.section,
.hero {
	position: relative;
	padding: 5.2rem 0;
}

.hero-grid,
.split,
.spotlight-grid,
.info-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.2rem;
	align-items: center;
}

.reverse {
	grid-template-columns: 1fr 1.05fr;
}

.eyebrow {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.76rem;
	margin-bottom: 0.95rem;
	font-weight: 700;
}

h1,
h2,
h3 {
	line-height: 1.15;
}

h1 {
	font-size: clamp(2.2rem, 6vw, 4.3rem);
	margin-bottom: 0.8rem;
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.65rem);
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.2rem;
	margin-bottom: 0.6rem;
}

p {
	color: var(--text-soft);
}

.hero-tagline {
	font-size: clamp(1.1rem, 2.3vw, 1.45rem);
	color: var(--text);
	margin-bottom: 1rem;
}

.hero-description {
	max-width: 60ch;
}

.hero-actions,
.cta-actions {
	margin-top: 1.65rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.25rem;
	border-radius: 12px;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: linear-gradient(140deg, var(--accent), var(--accent-strong));
	color: #0c0f10;
	box-shadow: 0 10px 24px rgba(208, 106, 42, 0.35);
}

.btn-outline {
	border-color: var(--accent);
	color: var(--text);
	background: rgba(208, 106, 42, 0.12);
}

.btn-ghost {
	border-color: var(--line);
	color: var(--text-soft);
	background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
	color: var(--text);
	border-color: #42515c;
}

.hero-image,
.media-card,
.spotlight-media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid #2a343a;
	background: linear-gradient(160deg, #171d22, #13171a);
	box-shadow: var(--shadow);
}

.gallery-card,
.map-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid #2a343a;
	background: linear-gradient(160deg, #171d22, #13171a);
	box-shadow: var(--shadow);
}

.hero-image::after,
.media-card::after,
.spotlight-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 13, 15, 0.5), transparent 45%);
	pointer-events: none;
}

.hero-image img,
.media-card img,
.spotlight-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transform: scale(1.02);
}

.party-video-wrap {
	margin-top: 0.9rem;
	border: 1px solid #2a343a;
	border-radius: 14px;
	overflow: hidden;
	background: #0b0d0e;
}

.party-video-wrap video {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	background: #000;
}

.highlights-grid,
.benefits-grid,
.reviews-grid {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

.gallery-grid {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-filters {
	margin-top: 1.4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.gallery-filter {
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-soft);
	font: inherit;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gallery-filter:hover {
	border-color: rgba(208, 106, 42, 0.6);
	color: var(--text);
}

.gallery-filter.is-active {
	background: rgba(208, 106, 42, 0.18);
	border-color: rgba(208, 106, 42, 0.75);
	color: var(--text);
	box-shadow: 0 8px 20px rgba(208, 106, 42, 0.2);
}

.gallery-panel {
	margin-top: 1.3rem;
}

.gallery-panel[hidden] {
	display: none;
}

.highlights-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefits-grid,
.reviews-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transform: scale(1.02);
}

.gallery-subtitle {
	margin-top: 1.8rem;
	margin-bottom: 0.45rem;
	font-size: 1.18rem;
	color: var(--text);
}

.gallery-video {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	overflow: visible;
}

.gallery-video iframe,
.gallery-video video {
	width: min(100%, 320px);
	aspect-ratio: 9 / 16;
	border: 1px solid #2a343a;
	border-radius: 14px;
	display: block;
	background: #000;
	box-shadow: var(--shadow);
}

.info-card,
.benefit-card,
.review-card,
.contact-card,
.services-card {
	background: linear-gradient(145deg, rgba(28, 34, 39, 0.92), rgba(20, 25, 29, 0.92));
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 1.2rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.benefit-card:hover,
.review-card:hover,
.contact-card:hover,
.services-card:hover {
	transform: translateY(-5px);
	border-color: rgba(208, 106, 42, 0.56);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 8px;
	background: rgba(208, 106, 42, 0.2);
	color: var(--accent-strong);
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.section-spotlight {
	background:
		linear-gradient(120deg, rgba(208, 106, 42, 0.16), transparent 28%),
		linear-gradient(300deg, rgba(255, 255, 255, 0.04), transparent 34%);
	border-top: 1px solid #202a2f;
	border-bottom: 1px solid #202a2f;
}

.check-list {
	list-style: none;
	margin: 1.25rem 0 1.6rem;
	display: grid;
	gap: 0.5rem;
}

.check-list li {
	color: var(--text-soft);
	position: relative;
	padding-left: 1.3rem;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(208, 106, 42, 0.2);
}

.floating-badge {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 8;
	padding: 0.8rem 0.95rem;
	border-radius: 10px;
	border: 1px solid rgba(208, 106, 42, 0.6);
	background: rgba(7, 9, 10, 0.82);
	backdrop-filter: blur(6px);
	display: grid;
	gap: 0.2rem;
}

.floating-badge span {
	font-size: 0.8rem;
	color: var(--text-soft);
}

.floating-badge strong {
	font-size: 1rem;
}

.party-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: inherit;
}

.party-carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.party-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: translateX(8%);
	pointer-events: none;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.party-slide.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	z-index: 2;
}

.party-slide.is-exiting-next,
.party-slide.is-exiting-prev {
	opacity: 0;
	z-index: 1;
}

.party-slide.is-exiting-next {
	transform: translateX(-8%);
}

.party-slide.is-exiting-prev {
	transform: translateX(8%);
}

.party-slide.is-entering-next,
.party-slide.is-entering-prev {
	opacity: 0;
	z-index: 2;
}

.party-slide.is-entering-next {
	transform: translateX(8%);
}

.party-slide.is-entering-prev {
	transform: translateX(-8%);
}

.party-carousel-controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.9rem;
	display: flex;
	justify-content: center;
	gap: 0.6rem;
	z-index: 4;
	padding: 0 0.9rem;
}

.party-carousel-btn {
	border: 1px solid rgba(208, 106, 42, 0.7);
	background: rgba(8, 10, 11, 0.75);
	color: var(--text);
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.party-carousel-btn:hover {
	background: rgba(208, 106, 42, 0.2);
	border-color: rgba(208, 106, 42, 0.95);
	transform: translateY(-1px);
}

.party-carousel-btn:focus-visible {
	outline: 2px solid rgba(240, 138, 62, 0.8);
	outline-offset: 2px;
}

.reviews-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
}

.rating strong {
	color: var(--accent-strong);
}

.review-card {
	font-size: 1rem;
	position: relative;
}

.review-card::before {
	content: "";
	position: absolute;
	width: 34px;
	height: 2px;
	background: var(--accent);
	top: 14px;
	right: 14px;
	opacity: 0.8;
}

.services-grid {
	list-style: none;
	margin-top: 0.85rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem 0.9rem;
}

.services-grid li {
	color: var(--text-soft);
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.95rem;
}

.services-grid span {
	font-size: 1rem;
}

.contact-card a {
	color: var(--accent-strong);
}

.final-cta {
	text-align: center;
}

.final-cta p {
	width: min(66ch, 100%);
	margin: 0 auto;
}

.contact-meta {
	margin-top: 1.1rem;
	display: grid;
	gap: 0.35rem;
}

.contact-meta p {
	color: var(--text);
}

.contact-meta a {
	color: var(--accent-strong);
}

.map-card {
	margin-top: 1.35rem;
}

.map-card iframe {
	width: 100%;
	height: 340px;
	border: 0;
	display: block;
}

.final-cta .cta-actions {
	justify-content: center;
}

.footer {
	border-top: 1px solid #212a2f;
	padding: 1.4rem 0 1.8rem;
}

.footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.8rem;
}

.footer p {
	color: #8f9ba4;
}

.footer a {
	color: #c7d4dd;
}

.footer a:hover {
	color: var(--accent-strong);
}

/* Animações de entrada no scroll */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.86);
	display: grid;
	place-items: center;
	padding: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.image-lightbox.open {
	opacity: 1;
	pointer-events: auto;
}

.image-lightbox-media {
	max-width: min(1200px, 92vw);
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
	cursor: zoom-out;
	object-fit: contain;
}

@media (max-width: 1080px) {
	.highlights-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.benefits-grid,
	.reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-filters {
		gap: 0.5rem;
	}
}

@media (max-width: 860px) {
	:root {
		--header-h: 74px;
	}

	.menu-toggle {
		display: inline-block;
	}

	.nav {
		position: absolute;
		top: calc(100% + 0.7rem);
		left: 4%;
		right: 4%;
		padding: 0.9rem;
		border-radius: 14px;
		border: 1px solid var(--line);
		background: rgba(13, 16, 18, 0.96);
		display: grid;
		gap: 0.2rem;
		transform-origin: top;
		transform: scaleY(0);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.22s ease, opacity 0.22s ease;
	}

	.nav.open {
		transform: scaleY(1);
		opacity: 1;
		pointer-events: auto;
	}

	.nav a {
		padding: 0.5rem 0.35rem;
		border-radius: 8px;
	}

	.nav a.nav-cta {
		padding: 0.48rem 1.15rem;
	}

	.nav a:hover,
	.nav a.active {
		background: rgba(208, 106, 42, 0.17);
	}

	.hero-grid,
	.split,
	.spotlight-grid,
	.info-layout,
	.reverse {
		grid-template-columns: 1fr;
	}

	.map-card iframe {
		height: 300px;
	}

	.hero-copy {
		order: 1;
	}

	.hero-image {
		order: 2;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.reviews-head {
		flex-direction: column;
		align-items: start;
	}

	.party-carousel-controls {
		bottom: 0.7rem;
	}
}

@media (max-width: 620px) {
	.section,
	.hero {
		padding: 4.1rem 0;
	}

	.highlights-grid,
	.benefits-grid,
	.reviews-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.btn {
		width: 100%;
	}

	.gallery-filter {
		width: 100%;
		text-align: center;
	}

	.footer-wrap {
		flex-direction: column;
		align-items: start;
	}
}
