:root {
	--navy: #0c0e13;
	--ink: #1c1a17;
	--gold: #c4a35a;
	--gold-2: #e8d5a3;
	--cream: #f7f1e6;
	--paper: #faf6ef;
	--muted: #7a7368;
	--line: #e8dfd0;
	--shadow: 0 24px 60px rgba(12, 14, 19, 0.12);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	color: var(--ink);
	background: var(--paper);
	letter-spacing: 0.01em;
	line-height: 1.65;
}
h1,
h2,
h3 {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
img,
video {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
select,
textarea {
	font: inherit;
}
.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}
.gold {
	color: var(--gold);
}
.muted {
	color: var(--muted);
}
.left {
	text-align: left !important;
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	z-index: 40;
	background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(250, 246, 239, 0.82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
	transition:
		background 0.3s,
		border-color 0.3s,
		box-shadow 0.3s;
}
.topbar.scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 30px rgba(12, 14, 19, 0.06);
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.brand img {
	width: 54px;
	height: 54px;
	object-fit: contain;
}
.brand strong {
	display: block;
	letter-spacing: 0.22em;
	font-size: 11px;
	font-weight: 600;
}
.brand span {
	display: block;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.1em;
}
nav {
	display: flex;
	gap: 26px;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 500;
}
nav a {
	position: relative;
	padding: 6px 0;
	transition: color 0.25s;
}
nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.3s;
}
nav a:hover,
nav a.active {
	color: var(--gold);
}
nav a:hover::after,
nav a.active::after {
	width: 100%;
}
.top-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	cursor: pointer;
	border-radius: 999px;
	padding: 13px 22px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	transition:
		transform 0.25s,
		box-shadow 0.25s,
		background 0.25s;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn-gold {
	background: linear-gradient(180deg, var(--gold-2), var(--gold));
	color: var(--navy);
	box-shadow: 0 10px 24px rgba(196, 163, 90, 0.28);
}
.btn-dark {
	background: var(--navy);
	color: var(--cream);
}
.btn-ghost {
	background: transparent;
	border: 1px solid var(--line);
}
.btn-wa {
	background: #128c4c;
	color: #fff;
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 20% 20%,
			rgba(196, 163, 90, 0.16),
			transparent 36%
		),
		linear-gradient(180deg, #0c0e13 0%, #17151c 100%);
	color: var(--cream);
	padding: 20px 0 0;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: end;
}
.hero-copy {
	padding: 56px 0 64px;
}
.hero h1 {
	font-size: clamp(40px, 6vw, 76px);
	font-weight: 500;
	margin: 14px 0 18px;
	max-width: 10ch;
}
.hero-copy p {
	max-width: 42ch;
	color: rgba(247, 241, 230, 0.82);
	font-weight: 300;
	font-size: 18px;
}
.kicker {
	letter-spacing: 0.34em;
	font-size: 11px;
	color: var(--gold-2);
	font-weight: 500;
}
.hero-photo {
	margin: 0;
	height: 620px;
	overflow: hidden;
	border-radius: 36px 36px 0 0;
	position: relative;
	box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.35);
}
.hero-photo img {
	width: 100%;
	height: 115%;
	object-fit: cover;
	object-position: center top;
	transform: translateY(0);
	will-change: transform;
}
.search {
	margin-top: 32px;
	background: rgba(250, 246, 239, 0.96);
	color: var(--ink);
	border-radius: 22px;
	padding: 14px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
	gap: 10px;
	box-shadow: var(--shadow);
}
.search input,
.search select {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 14px;
	padding: 13px 14px;
	outline: none;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
.search input:focus,
.search select:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.15);
}

.section {
	padding: 100px 0;
}
#servicos,
#anunciar {
	background: #fff;
}
.section-head {
	text-align: center;
	margin-bottom: 42px;
}
.section h2 {
	font-size: clamp(32px, 4vw, 52px);
	margin: 10px 0 12px;
	text-align: center;
}
.lead {
	text-align: center;
	color: var(--muted);
	margin: 0 auto;
	max-width: 640px;
	font-size: 17px;
	font-weight: 300;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(12, 14, 19, 0.04);
	transition:
		transform 0.4s,
		box-shadow 0.4s;
}
.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(12, 14, 19, 0.12);
}
.card .media {
	height: 190px;
	width: 100%;
	object-fit: cover;
	background: #1a1d24;
	transition: transform 0.6s;
}
.card:hover .media {
	transform: scale(1.06);
}
.card-body {
	padding: 18px 18px 22px;
}
.card h3 {
	margin: 0 0 6px;
	font-size: 22px;
}
.price {
	color: var(--gold);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.04em;
}
.meta {
	font-size: 13px;
	color: var(--muted);
	margin: 8px 0 14px;
}

.service {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 280px;
	padding: 32px 22px 24px;
	text-align: center;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 22px;
	transition:
		transform 0.35s,
		border-color 0.35s,
		background 0.35s;
}
.service:hover {
	transform: translateY(-6px);
	border-color: var(--gold);
	background: #fff;
}
.service h3 {
	font-size: 26px;
	margin: 0 0 10px;
}
.service p {
	flex: 1;
	margin: 0 0 22px;
	min-height: 84px;
}
.service .btn {
	width: 100%;
	margin-top: auto;
}
.about {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}
.portrait-frame {
	margin: 0;
	height: 540px;
	overflow: hidden;
	border-radius: 32px;
	position: relative;
}
.portrait-frame::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(232, 213, 163, 0.35);
	border-radius: 24px;
	pointer-events: none;
}
.portrait-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.checklist {
	list-style: none;
	padding: 0;
	margin: 18px 0;
}
.checklist li {
	padding: 9px 0 9px 28px;
	position: relative;
}
.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	background: #fff;
	padding: 28px;
	border-radius: 22px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}
.form .full {
	grid-column: 1 / -1;
}
.form input,
.form select,
.form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 12px 14px;
	background: var(--paper);
	outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
	border-color: var(--gold);
}
.contact-wrap {
	text-align: center;
}
.contact-wrap .form {
	margin: 0 auto;
	max-width: 720px;
	text-align: left;
}
footer {
	background: var(--navy);
	color: var(--cream);
	padding: 64px 0 28px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 24px;
}
.wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 30;
	box-shadow: var(--shadow);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	animation: none;
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.reveal:nth-child(2) {
	transition-delay: 0.08s;
}
.reveal:nth-child(3) {
	transition-delay: 0.16s;
}
.reveal:nth-child(4) {
	transition-delay: 0.24s;
}

@media (max-width: 900px) {
	nav {
		display: none;
	}
	.search,
	.grid-4,
	.grid-2,
	.about,
	.form,
	.footer-grid,
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.hero-photo,
	.portrait-frame {
		height: 420px;
	}
	.hero h1 {
		max-width: none;
	}
}
