/* === RESET / GLOBAL === */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #152315;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

@keyframes floatGlow {
	0%,
	100% {
		opacity: 0.85;
	}
	50% {
		opacity: 1;
	}
}

@keyframes scrollCue {
	0% {
		transform: translateY(0);
		opacity: 0.7;
	}
	50% {
		transform: translateY(7px);
		opacity: 0.2;
	}
	100% {
		transform: translateY(0);
		opacity: 0.7;
	}
}

.page-wrapper {
	font-family: "Montserrat", sans-serif;
	color: #e8e7e6;
	background: #152315;
	overflow-x: clip;
	position: relative;
}

/* === HEADER === */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	height: clamp(64px, 9vw, 80px);
	background: transparent;
	border-bottom: 1px solid transparent;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		backdrop-filter 0.35s ease;
}

.site-header--scrolled {
	background: rgba(18, 23, 19, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(201, 148, 71, 0.2);
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}

.header-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0 clamp(20px, 5vw, 56px);
	height: 100%;
}

.header-logo-link {
	display: flex;
	align-items: center;
	flex: none;
}

.header-logo-img {
	height: clamp(30px, 4vw, 40px);
	width: auto;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
}

.nav-link {
	display: none;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #a2988c;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: #ffcc7d;
}

@media (min-width: 760px) {
	.nav-link {
		display: inline-flex !important;
	}
}

.btn-wa-header {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: transparent;
	border: 1px solid #c99447;
	color: #c99447;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.btn-wa-header:hover {
	background: #c99447;
	color: #152315;
}

/* === HERO === */

.hero {
	position: relative;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(56px, 8vh, 90px) clamp(24px, 6vw, 80px)
		clamp(48px, 7vh, 80px);
	background: radial-gradient(
		120% 90% at 50% 0%,
		#1c2e1c 0%,
		#152315 55%,
		#121713 100%
	);
	overflow: hidden;
}

.hero-watermark {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: min(90vw, 800px);
	height: auto;
	opacity: 0.08;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 880px;
}

.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: clamp(10px, 2.5vh, 30px);
}

.eyebrow-line {
	width: 36px;
	height: 1px;
}

.eyebrow-line--left {
	background: linear-gradient(90deg, transparent, #c99447);
}
.eyebrow-line--right {
	background: linear-gradient(90deg, #c99447, transparent);
}

.eyebrow-text {
	font-size: 11px;
	letter-spacing: 0.42em;
	color: #a2988c;
	text-transform: uppercase;
	font-weight: 500;
}

.hero-logo {
	width: clamp(120px, min(22vw, 22vh), 260px);
	height: auto;
	animation: floatGlow 6s ease-in-out infinite;
	margin-bottom: clamp(10px, 2.5vh, 30px);
}

.hero-headline {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: clamp(24px, min(4.5vw, 6vh), 52px);
	line-height: 1.08;
	letter-spacing: 0.005em;
	margin: 0 0 clamp(8px, 1.8vh, 22px);
	color: #f2efea;
	text-wrap: balance;
}

.hero-subhead {
	max-width: 520px;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.8;
	letter-spacing: 0.015em;
	color: #a2988c;
	font-weight: 300;
	margin: 0 0 clamp(14px, 2.5vh, 36px);
	text-wrap: pretty;
}

.btn-wa-hero {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	background: #c99447;
	color: #152315;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 14px 40px -16px rgba(201, 148, 71, 0.6);
}

.btn-wa-hero:hover {
	background: #ffcc7d;
	transform: translateY(-2px);
	box-shadow: 0 20px 48px -16px rgba(255, 204, 125, 0.55);
}

.hero-disclaimer {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #7e8a7e;
	margin-top: 12px;
	font-weight: 300;
}

.scroll-cue {
	position: absolute;
	bottom: clamp(10px, 2.5vh, 30px);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
}

.scroll-cue-label {
	font-size: 9.5px;
	letter-spacing: 0.3em;
	color: #6f7a6f;
	text-transform: uppercase;
}

.scroll-cue-arrow {
	animation: scrollCue 2.2s ease-in-out infinite;
}

@media (max-height: 580px) {
	.scroll-cue {
		display: none;
	}

	.hero-eyebrow {
		display: none;
	}

	.hero {
		padding-top: clamp(36px, 5vh, 56px);
		padding-bottom: clamp(28px, 4vh, 48px);
	}
}

/* === O ADVOGADO === */

.sobre {
	position: relative;
	background: #fff;
	color: #152315;
	padding: clamp(72px, 11vw, 128px) clamp(24px, 6vw, 80px);
}

.sobre-bg-symbol {
	position: absolute;
	top: 50%;
	left: -10%;
	transform: translateY(-50%);
	width: min(58vw, 500px);
	height: auto;
	opacity: 0.05;
	pointer-events: none;
}

.sobre-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.sobre-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.sobre-left .section-tag {
	margin-bottom: 20px;
}

.sobre-title {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: clamp(32px, 4.8vw, 52px);
	line-height: 1.12;
	margin: 0 0 28px;
	letter-spacing: 0.01em;
	color: #152315;
	text-wrap: balance;
}

.sobre-divider {
	width: 48px;
	height: 1px;
	background: #c99447;
	margin-bottom: 36px;
}

.sobre-body {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.sobre-body-p {
	font-size: clamp(14px, 1.7vw, 16px);
	line-height: 1.9;
	letter-spacing: 0.015em;
	font-weight: 300;
	margin: 0;
	text-wrap: pretty;
}

.sobre-body-p--primary {
	color: #3d3830;
}

.sobre-body-p--secondary {
	color: #6a6358;
}

.sobre-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: calc(clamp(64px, 9vw, 80px) + 24px);
	align-self: start;
}

.sobre-card {
	background: #f5f4f2;
	border: 1px solid rgba(201, 148, 71, 0.22);
	border-radius: 3px;
	padding: clamp(22px, 2.4vw, 28px);
	transition:
		border-color 0.3s ease,
		background 0.3s ease;
}

.sobre-card:hover {
	border-color: rgba(201, 148, 71, 0.55);
	background: #ece9e5;
}

.sobre-card-label-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.sobre-card-line {
	width: 18px;
	height: 1px;
	background: #c99447;
	flex: none;
}

.sobre-card-label {
	font-size: 10.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #c99447;
	font-weight: 600;
}

.sobre-card-value {
	font-family: "Playfair Display", serif;
	font-size: clamp(19px, 2.1vw, 23px);
	line-height: 1.3;
	color: #152315;
	font-weight: 500;
	letter-spacing: 0.005em;
}

.btn-wa-sobre {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 36px;
	background: #152315;
	color: #ffcc7d;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 28px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.btn-wa-sobre:hover {
	background: #c99447;
	color: #152315;
	transform: translateY(-2px);
}

.sobre-card-note {
	font-size: 12.5px;
	line-height: 1.7;
	color: #6a6358;
	font-weight: 300;
	margin-top: 8px;
	letter-spacing: 0.015em;
	text-wrap: pretty;
}

/* === COMO FUNCIONA === */

.como-funciona {
	position: relative;
	background: #e8e7e6;
	color: #152315;
	padding: clamp(72px, 11vw, 128px) clamp(24px, 6vw, 80px);
}

.section-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.section-inner--casos {
	max-width: 1100px;
	position: relative;
	z-index: 2;
}

.section-heading {
	text-align: center;
	margin-bottom: clamp(52px, 7vw, 84px);
}

.casos .section-heading {
	margin-bottom: clamp(48px, 6vw, 76px);
}

.section-tag {
	font-size: 11px;
	letter-spacing: 0.42em;
	color: #c99447;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 18px;
}

.section-title {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: clamp(30px, 4.6vw, 50px);
	line-height: 1.12;
	margin: 0;
	letter-spacing: 0.01em;
}

.section-title--dark {
	color: #152315;
}
.section-title--light {
	color: #f2efea;
}

.section-divider {
	width: 48px;
	height: 1px;
	background: #c99447;
	margin: 26px auto 0;
}

.title-em {
	font-style: italic;
	color: #c99447;
}

.processo-timeline {
	position: relative;
}

.processo-center-line {
	display: none;
}

@media (min-width: 1024px) {
	.processo-center-line {
		display: block;
		position: absolute;
		left: calc(50% - 0.5px);
		top: 0;
		bottom: 0;
		width: 1px;
		background: rgba(201, 148, 71, 0.5);
	}
}

.processo-step {
	position: relative;
	margin-bottom: 56px;
}

.processo-step:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.processo-step {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.processo-step-node {
	display: none;
}

@media (min-width: 1024px) {
	.processo-step-node {
		display: flex;
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: 44px;
		height: 44px;
		background: #e8e7e6;
		border: 1px solid rgba(201, 148, 71, 1);
		align-items: center;
		justify-content: center;
		z-index: 10;
	}
}

.processo-step-num {
	font-family: "Playfair Display", serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: #c99447;
}

@media (min-width: 1024px) {
	.processo-step-col--left {
		padding-right: 80px;
		text-align: right;
	}

	.processo-step-col--left .processo-step-body {
		margin-left: auto;
	}

	.processo-step-col--right {
		padding-left: 80px;
	}
}

.processo-mobile-num {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

@media (min-width: 1024px) {
	.processo-mobile-num {
		display: none;
	}
}

.processo-mobile-num-text {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: #c99447;
	flex: none;
}

.processo-mobile-divider {
	height: 1px;
	flex: 1;
	background: rgba(201, 148, 71, 0.3);
}

.processo-step-title {
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #152315;
	margin: 0 0 12px;
}

.processo-step-body {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	color: #6a6358;
	margin: 0;
	max-width: 360px;
	text-wrap: pretty;
}

.como-funciona-cta {
	margin-top: clamp(56px, 8vw, 88px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.como-funciona-cta-text {
	font-size: 13px;
	letter-spacing: 0.06em;
	color: #6a6358;
	font-weight: 300;
	margin: 0;
}

.btn-wa-como-funciona {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 1px solid #152315;
	color: #152315;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.btn-wa-como-funciona:hover {
	background: #152315;
	color: #e8e7e6;
}

/* === CASOS === */

.casos {
	position: relative;
	background: #121713;
	color: #e8e7e6;
	padding: clamp(72px, 11vw, 128px) clamp(24px, 6vw, 80px);
	overflow: hidden;
}

.casos-bg-symbol {
	position: absolute;
	top: 50%;
	right: -20%;
	transform: translateY(-50%);
	width: min(52vw, 840px);
	height: auto;
	opacity: 0.15;
	pointer-events: none;
}

.casos-disclaimer {
	font-size: 12.5px;
	color: #7e8a7e;
	font-weight: 300;
	margin: 22px auto 0;
	max-width: 480px;
	letter-spacing: 0.02em;
	line-height: 1.7;
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: clamp(18px, 2vw, 26px);
}

.case-card {
	background: #19211a;
	border: 1px solid rgba(201, 148, 71, 0.18);
	border-radius: 3px;
	padding: clamp(28px, 3vw, 38px);
	display: flex;
	flex-direction: column;
	min-height: 230px;
	transition:
		border-color 0.3s ease,
		transform 0.3s ease,
		background 0.3s ease;
}

.case-card:hover {
	border-color: rgba(201, 148, 71, 0.55);
	transform: translateY(-4px);
	background: #1c2620;
}

.case-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.case-card-line {
	width: 18px;
	height: 1px;
	background: #c99447;
}

.case-card-area {
	font-size: 10.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #c99447;
	font-weight: 600;
}

.case-card-result {
	font-family: "Playfair Display", serif;
	font-size: clamp(19px, 2.2vw, 23px);
	line-height: 1.4;
	color: #f2efea;
	font-weight: 500;
	margin: 0 0 auto;
	letter-spacing: 0.005em;
	text-wrap: pretty;
}

.case-card-footer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid rgba(162, 152, 140, 0.14);
}

.case-card-tag {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a2988c;
	font-weight: 500;
}

.casos-cta {
	margin-top: clamp(56px, 8vw, 88px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.casos-cta-text {
	font-size: 13px;
	letter-spacing: 0.06em;
	color: #7e8a7e;
	font-weight: 300;
	margin: 0;
}

.btn-wa-casos {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 1px solid #c99447;
	color: #c99447;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.btn-wa-casos:hover {
	background: #c99447;
	color: #121713;
}

/* === CONTATO === */

.contato {
	position: relative;
	background: #e8e7e6;
	color: #152315;
	padding: clamp(78px, 12vw, 140px) clamp(24px, 6vw, 80px)
		clamp(60px, 9vw, 100px);
	text-align: center;
	overflow: hidden;
}

.contato-inner {
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contato .section-tag {
	margin-bottom: 18px;
}

.contato-headline {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.1;
	margin: 0 0 24px;
	letter-spacing: 0.01em;
	color: #152315;
	text-wrap: balance;
}

.contato-body {
	font-size: clamp(14px, 1.7vw, 16px);
	line-height: 1.85;
	color: #6a6358;
	font-weight: 300;
	margin: 0 auto clamp(40px, 5vw, 52px);
	max-width: 480px;
	letter-spacing: 0.015em;
	text-wrap: pretty;
}

.btn-wa-contato {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: #152315;
	color: #ffcc7d;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 22px 46px;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease,
		color 0.25s ease;
	box-shadow: 0 18px 46px -18px rgba(21, 35, 21, 0.7);
}

.btn-wa-contato:hover {
	background: #c99447;
	color: #152315;
	transform: translateY(-2px);
	box-shadow: 0 22px 52px -18px rgba(201, 148, 71, 0.6);
}

.contato-address {
	margin-top: clamp(48px, 7vw, 72px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.contato-address-main {
	font-size: 13.5px;
	letter-spacing: 0.04em;
	color: #152315;
	font-weight: 500;
}

.contato-address-sub {
	font-size: 12px;
	letter-spacing: 0.06em;
	color: #8a8377;
	font-weight: 300;
}

/* === FOOTER === */

.site-footer {
	position: relative;
	background: #121713;
	color: #e8e7e6;
	padding: clamp(56px, 8vw, 84px) clamp(24px, 6vw, 80px) clamp(34px, 4vw, 46px);
	overflow: hidden;
	border-top: 6px solid #c99447;
}

.footer-bg-symbol {
	position: absolute;
	left: 50%;
	bottom: 0%;
	transform: translateX(-50%);
	width: min(80vw, 240px);
	height: auto;
	opacity: 0.2;
	pointer-events: none;
}

.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: clamp(36px, 5vw, 64px);
	align-items: start;
}

.footer-brand-logo {
	height: 46px;
	width: auto;
	margin-bottom: 20px;
}

.footer-brand-desc {
	font-size: 13px;
	line-height: 1.85;
	color: #8a948a;
	font-weight: 300;
	max-width: 300px;
	margin: 0;
	letter-spacing: 0.015em;
	text-wrap: pretty;
}

.footer-col-title {
	font-size: 10.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #c99447;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.footer-nav-link {
	font-size: 13px;
	letter-spacing: 0.04em;
	color: #a2988c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-nav-link:hover {
	color: #ffcc7d;
}

.footer-contact-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-wa-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: #a2988c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-wa-link:hover {
	color: #ffcc7d;
}

.footer-address-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: #a2988c;
	font-weight: 300;
}

.footer-address-icon {
	flex: none;
	margin-top: 2px;
}

.footer-bottom {
	max-width: 1100px;
	margin: clamp(40px, 5vw, 56px) auto 0;
	padding-top: 26px;
	border-top: 1px solid rgba(162, 152, 140, 0.14);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	position: relative;
	z-index: 2;
}

.footer-copyright {
	font-size: 11px;
	letter-spacing: 0.06em;
	color: #6f7a6f;
	font-weight: 300;
}

.footer-oab {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #c99447;
	font-weight: 600;
}

/* === FLOATING BUTTON === */

.btn-wa-float {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 99;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #c99447;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
	transition:
		transform 0.25s ease,
		background 0.25s ease;
}

.btn-wa-float:hover {
	transform: scale(1.07);
	background: #ffcc7d;
}
