/* Reset e Variáveis - Paleta Fronchetti */
:root {
	/* Cores principais */
	--primary-color: #000000;
	--secondary-color: #789a6b;
	--accent-color: #d59056;
	--accent-hover: #b87a45;
	--accent-green: #789a6b;
	--accent-green-light: #a2bc94;

	/* Tons neutros e fundos */
	--dark-color: #000000;
	--light-color: #efede9;
	--light-color-alt: #cec7b6;
	--text-color: #000000;
	--text-light: #5a5a5a;
	--white: #ffffff;
	--gray: #cec7b6;

	/* Sombras */
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 15px 60px rgba(0, 0, 0, 0.15);

	/* Transição e animação de hover */
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--hover-duration: 0.25s;
	--hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--hover-lift: 2px;

	/* Gradientes */
	--gradient-primary: linear-gradient(
		135deg,
		#000000 0%,
		#2a2a2a 50%,
		#444444 100%
	);
	--gradient-accent: linear-gradient(135deg, #d59056 0%, #c47d45 100%);
	--gradient-green: linear-gradient(135deg, #789a6b 0%, #a2bc94 100%);
	--container-max-width: 1440px;
	--container-wide-max-width: 1920px;
	--container-gutter: 120px;
	--section-space: 80px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Hover padrão em todos os links */
a {
	transition:
		color var(--hover-duration) var(--hover-ease),
		background-color var(--hover-duration) var(--hover-ease),
		border-color var(--hover-duration) var(--hover-ease),
		transform var(--hover-duration) var(--hover-ease),
		box-shadow var(--hover-duration) var(--hover-ease),
		opacity var(--hover-duration) var(--hover-ease);
}

/* Links de conteúdo: destaque no hover */
main a[href]:not(.btn):not(.logo-footer-link):hover,
.section-content a[href]:hover {
	color: var(--accent-color);
}

/* Títulos: Montserrat Semi Bold (600) */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.cta-content h2,
.project-content h3,
.differential-card h3,
.footer-section h3,
.footer-section h4 {
	font-weight: 600;
}

body {
	font-family:
		"Montserrat",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		sans-serif;
	line-height: 1.7;
	color: var(--text-color);
	overflow-x: hidden;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}

body.nav-open {
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: var(--container-max-width);
	padding: 0 var(--container-gutter);
	box-sizing: border-box;
	margin: 0 auto;
}

.container--wide {
	width: 100%;
	max-width: var(--container-wide-max-width);
	padding: 0 var(--container-gutter);
	box-sizing: border-box;
	margin: 0 auto;
}

@media (max-width: 1366px) {
	:root {
		--container-gutter: 80px;
		--section-space: 72px;
	}
}

@media (max-width: 1080px) {
	:root {
		--container-gutter: 48px;
		--section-space: 64px;
	}

	.cta-decorated {
		grid-template-columns: 1fr;
	}

	.cta-decorated-image {
		min-height: 320px;
	}

	.cta-decorated-content {
		padding: 64px 48px;
		align-items: center;
		text-align: center;
	}

	.cta-decorated-content p {
		max-width: 100%;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-brand {
		max-width: 100%;
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	:root {
		--container-gutter: 32px;
		--section-space: 56px;
	}
}

@media (max-width: 480px) {
	:root {
		--container-gutter: 20px;
		--section-space: 48px;
	}
}

@media (max-width: 360px) {
	:root {
		--container-gutter: 16px;
		--section-space: 40px;
	}
}

@media (min-width: 1441px) {
	.container,
	.container--wide {
		padding-left: 120px;
		padding-right: 120px;
	}
}

/* Hero Wrapper - sem padding das sections */
.hero-wrapper {
	position: relative;
	padding: 0 !important;
}

/* Header - transparente sobre o banner */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--transition);
}

/* Páginas sem hero: header sólido por padrão */
.header:not(.header--transparent) {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.header:not(.header--transparent) .navbar {
	padding: 14px 0;
}

.header:not(.header--transparent) .nav-menu a {
	color: var(--text-color);
}

.header:not(.header--transparent) .nav-menu a:hover,
.header:not(.header--transparent) .nav-menu a.active {
	color: var(--accent-color);
}

.header:not(.header--transparent) .nav-menu a:hover::after,
.header:not(.header--transparent) .nav-menu a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--accent-color);
}

.header:not(.header--transparent) .nav-toggle span {
	background: var(--primary-color);
}

.header--transparent {
	background: transparent !important;
	backdrop-filter: none;
	box-shadow: none;
}

.header--transparent .nav-menu a {
	color: var(--white);
	opacity: 0.9;
}

.header--transparent .nav-menu a:hover,
.header--transparent .nav-menu a.active {
	color: var(--white);
	opacity: 1;
}

.header--transparent .nav-menu a:hover::after,
.header--transparent .nav-menu a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--white);
}

.header--transparent .nav-toggle span {
	background: var(--white);
}

/* Header sólido (após scroll ou páginas internas) */
.header--solid {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.header--solid .navbar {
	padding: 14px 0;
}

.header--solid .nav-menu a {
	color: var(--text-color);
}

.header--solid .nav-menu a:hover,
.header--solid .nav-menu a.active {
	color: var(--accent-color);
}

.header--solid .nav-menu a:hover::after,
.header--solid .nav-menu a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--accent-color);
}

.header--solid .nav-toggle span {
	background: var(--primary-color);
}

/* Search input - somente contorno */
.search-input-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	background: transparent;
	min-width: 140px;
}

.header--solid .search-input-wrapper {
	border-color: rgba(0, 0, 0, 0.2);
}

.search-input-wrapper i {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
}

.header--solid .search-input-wrapper i {
	color: var(--text-light);
}

.search-input {
	border: none;
	background: transparent;
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 400;
	width: 100%;
	outline: none;
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.header--solid .search-input {
	color: var(--text-color);
}

.header--solid .search-input::placeholder {
	color: var(--text-light);
}

.navbar {
	padding: 32px 0;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 36px;
	min-height: 56px;
}

.logo {
	text-decoration: none;
	display: flex;
	align-items: center;
	line-height: 1;
}

.logo-header {
	height: 46px;
	width: auto;
	object-fit: contain;
	display: block;
	transition: var(--transition);
}

/* Logo transparente: sobre o banner (hero) */
.header--transparent .logo-header--transparent {
	display: block;
}

.header--transparent .logo-header--scroll {
	display: none;
}

/* Logo scroll: menu fixo com fundo branco */
.header--solid .logo-header--transparent,
.header:not(.header--transparent) .logo-header--transparent {
	display: none;
}

.header--solid .logo-header--scroll,
.header:not(.header--transparent) .logo-header--scroll {
	display: block;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(22px, 2.5vw, 44px);
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav-menu-mobile-top {
	display: none;
}

.nav-menu a {
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: var(--transition);
	position: relative;
}

.nav-menu a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 1px;
}

/* CTA no header - Apartamentos Decorados */
.nav-cta {
	margin-left: 8px;
}

.btn-nav-cta {
	padding: 10px 24px;
	font-size: 14px;
	letter-spacing: 1px;
}

.header--transparent .btn-nav-cta {
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.9);
}

.header--transparent .btn-nav-cta:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	border-color: var(--white);
}

.header--solid .btn-nav-cta,
.header:not(.header--transparent) .btn-nav-cta {
	background: var(--gradient-accent);
	color: var(--white) !important;
	border: none;
}

.header--solid .btn-nav-cta:hover,
.header:not(.header--transparent) .btn-nav-cta:hover {
	background: linear-gradient(135deg, #b87a45 0%, #d59056 100%);
	color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	padding: 6px;
	border-radius: 4px;
	z-index: 1002;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	transition: var(--transition);
}

/* Hero Section - Slider */
.hero {
	position: relative;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
	width: 100%;
}

.hero-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.8s ease,
		visibility 0.8s ease;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Overlay elegante - escuro sutil como referência */
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.2) 50%,
		rgba(0, 0, 0, 0.1) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 3;
	color: var(--white);
	width: 100%;
	text-align: left;
	padding-top: 100px;
	padding-left: 90px;
	padding-right: 90px;
	box-sizing: border-box;
}

.hero-tagline {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 16px;
	opacity: 0.95;
}

.hero-title {
	font-size: 64px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.15;
	letter-spacing: -0.5px;
	max-width: 700px;
}

.hero-description {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 40px;
	max-width: 500px;
	line-height: 1.7;
	opacity: 0.95;
}

/* Botão CTA elegante - contorno branco */
.btn-hero-cta {
	display: inline-block;
	padding: 14px 40px;
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.9);
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
}

.btn-hero-cta:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
	color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

/* Setas do Slider */
.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.hero-arrow:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.9);
}

.hero-arrow--prev {
	left: 30px;
}

.hero-arrow--next {
	right: 30px;
}

/* Bolinhas / Paginação */
.hero-pagination {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 12px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: var(--transition);
}

.hero-dot:hover {
	background: rgba(255, 255, 255, 0.3);
}

.hero-dot.active {
	background: var(--white);
	border-color: var(--white);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	transition: var(--transition);
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 16px;
}

.btn-primary {
	background: var(--gradient-accent);
	color: var(--white);
	border: none;
	box-shadow: 0 4px 15px rgba(213, 144, 86, 0.4);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #b87a45 0%, #d59056 100%);
	transform: translateY(calc(-1 * var(--hover-lift)));
	box-shadow: 0 8px 25px rgba(213, 144, 86, 0.5);
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--primary-color);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.btn-white {
	background: var(--white);
	color: var(--primary-color);
	border-color: var(--white);
}

.btn-white:hover {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

/* Sections */
section {
	padding: var(--section-space) 0;
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.section-title {
	font-size: 45px;
	line-height: 1.2;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
	font-weight: 600;
	letter-spacing: -0.5px;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-accent);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 19px;
	color: var(--text-light);
}

.section-footer {
	text-align: center;
	margin-top: 40px;
}

/* Featured Projects - Página inicial */
.featured-projects {
	background: var(--white);
}

.featured-projects .section-header {
	margin-bottom: 100px;
}

.featured-projects .section-title {
	margin-bottom: 24px;
}

/* Grid 1 por linha, sem espaçamento, max 1920px, centralizado - especificidade maior que .projects-grid */
.featured-projects .projects-grid.projects-grid--featured {
	grid-template-columns: 1fr;
	gap: 0;
	row-gap: 0;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
}

/* Altura fixa para cards da home */
.featured-projects .project-card--overlay .project-image {
	height: 800px;
	min-height: 400px;
	max-height: 100vh;
}

/* Overlay: gradiente preto forte para boa leitura do texto */
.featured-projects .project-overlay {
	height: 65%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.97) 0%,
		rgba(0, 0, 0, 0.85) 25%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.15) 75%,
		transparent 100%
	);
}

/* Card com overlay - home e listagem */
.project-card--overlay {
	display: block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}

.project-card--overlay:hover .project-image img {
	transform: scale(1.05);
}

.project-card--overlay .project-image {
	width: 100%;
	height: 65vh;
	min-height: 450px;
}

.project-card--overlay .project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Overlay gradiente preto forte para boa leitura */
.project-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 65%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.97) 0%,
		rgba(0, 0, 0, 0.85) 25%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.15) 75%,
		transparent 100%
	);
	pointer-events: none;
}

/* Conteúdo sobre a imagem – espaçamento uniforme */
.project-card--overlay .project-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 36px 120px 44px;
	z-index: 2;
}

.project-card--overlay .project-content h3 {
	font-size: 36px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 8px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-card--overlay .project-location {
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 8px;
	font-size: 16px;
}

.project-card--overlay .project-location i {
	color: var(--accent-color);
	margin-right: 8px;
}

.project-card--overlay .project-description {
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.5;
	max-width: 600px;
}

/* Lista de destaques – espaçamento igual entre itens */
.project-card--overlay .project-highlights {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.project-card--overlay .project-highlights li {
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 6px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.project-card--overlay .project-highlights li:last-child {
	margin-bottom: 0;
}

.project-card--overlay .project-highlights li i {
	color: var(--accent-color);
	margin-right: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.project-card--overlay .project-info {
	display: flex;
	gap: 20px;
	margin-bottom: 14px;
	margin-top: 0;
	flex-wrap: wrap;
}

.project-card--overlay .project-info span {
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
}

.project-card--overlay .project-info i {
	color: var(--accent-color);
	margin-right: 6px;
}

.btn-project {
	display: inline-block;
	padding: 12px 32px;
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: var(--transition);
	font-family: "Montserrat", sans-serif;
}

.project-card--overlay:hover .btn-project {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.project-card--overlay .project-status {
	top: 30px;
	right: 120px;
}

/* Grid padrão e cards */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.project-card {
	background: var(--white);
	overflow: hidden;
	transition: var(--transition);
}

.project-card:not(.project-card--overlay) {
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.project-card:not(.project-card--overlay):hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
}

.project-image {
	position: relative;
	height: 320px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.project-card:not(.project-card--overlay):hover .project-image img {
	transform: scale(1.1);
}

.project-status {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	color: var(--white);
	letter-spacing: 0.5px;
	z-index: 3;
	text-transform: uppercase;
}

.status-lancamento {
	background: var(--accent-color);
}

.status-construcao {
	background: var(--primary-color);
}

.status-entregue {
	background: var(--accent-green);
}

/* Faixa "Disponível para venda" - canto superior esquerdo do card */
@keyframes ribbon-venda-in {
	from {
		opacity: 0;
		transform: scale(0.92) translateY(-4px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
@keyframes ribbon-venda-shine {
	0%,
	100% {
		box-shadow:
			0 4px 14px rgba(0, 0, 0, 0.15),
			inset 0 1px 0 rgba(255, 255, 255, 0.15);
	}
	50% {
		box-shadow:
			0 6px 20px rgba(0, 0, 0, 0.18),
			inset 0 1px 0 rgba(255, 255, 255, 0.25),
			0 0 0 1px rgba(255, 255, 255, 0.08);
	}
}

.project-ribbon-venda {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 12px;
	font-weight: 600;
	color: var(--white);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: linear-gradient(135deg, #164d24 0%, #247038 50%, #2d8a44 100%);
	box-shadow:
		0 4px 14px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	line-height: 1.2;
	border: 1px solid rgba(255, 255, 255, 0.12);
	animation:
		ribbon-venda-in 0.5s ease-out,
		ribbon-venda-shine 2.5s ease-in-out 0.6s infinite;
}
.project-ribbon-venda::after {
	display: none;
}
.project-ribbon-venda i {
	font-size: 13px;
	opacity: 0.95;
}

.project-content {
	padding: 25px;
}

.project-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.project-location {
	color: var(--text-light);
	margin-bottom: 15px;
	font-size: 15px;
}

.project-location i {
	margin-right: 5px;
	color: var(--accent-color);
}

.project-description {
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.6;
}

/* About Preview - Layout inspirado com variações próprias */
.about-preview {
	background: var(--light-color);
}

.about-preview .container {
	position: relative;
}

.about-preview-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 18px;
	border-left: 3px solid var(--accent-color);
	padding-left: 16px;
}

.about-preview-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--primary-color);
	margin-bottom: 16px;
	max-width: 750px;
}

.about-preview-lead {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--text-color);
	margin-bottom: 45px;
	max-width: 600px;
}

.about-preview-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	margin-bottom: 45px;
}

.about-preview-block p {
	font-size: 16px;
	line-height: 1.85;
	color: var(--text-light);
	margin-bottom: 32px;
}

.about-preview-cta {
	display: inline-block;
}

.about-preview-image {
	margin-top: 70px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
}

.about-preview-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, var(--light-color-alt), transparent);
	pointer-events: none;
}

.about-preview-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.about-preview--home .about-preview__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.about-preview--home .about-preview__content {
	min-width: 0;
}

.about-preview--home .about-preview-title {
	max-width: 100%;
}

.about-preview--home .about-preview-lead {
	margin-bottom: 28px;
}

.about-preview--home .about-preview__text {
	margin-bottom: 32px;
}

.about-preview--home .about-preview__text p {
	font-size: 16px;
	line-height: 1.85;
	color: var(--text-light);
	margin-bottom: 20px;
}

.about-preview--home .about-preview__text p:last-child {
	margin-bottom: 0;
}

.about-preview--home .about-preview-image {
	margin-top: 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-preview--home .about-preview-image::after {
	height: 0;
}

.about-preview--home .about-preview-image img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}

/* Differentials */
.differentials {
	background: var(--light-color);
}

.differentials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.differential-card {
	background: transparent;
	padding: 45px 35px;
	border-radius: 0;
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.differential-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent-color);
	transform: scaleX(0);
	transition: var(--transition);
}

.differential-card:hover {
	border-color: rgba(0, 0, 0, 0.18);
	transform: translateY(-4px);
}

.differential-card:hover::before {
	transform: scaleX(1);
}

/* Imagem do card (substitui ícone Font Awesome) */
.differential-card__figure {
	width: 80px;
	height: 80px;
	margin: 0 auto 22px;
	border: 2px solid var(--accent-green);
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-color);
	transition: var(--transition);
	position: relative;
}

.differential-card__figure img,
.differential-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.differential-card:hover .differential-card__figure {
	border-color: transparent;
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.differential-card h3 {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 12px;
	font-size: 18px;
	letter-spacing: 0.02em;
}

.differential-card p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 15px;
}

/* CTA Decorated - 50% imagem | 50% conteúdo */
.cta-decorated {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;
}

.cta-decorated-image {
	height: 100%;
	min-height: 480px;
}

.cta-decorated-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cta-decorated-content {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.cta-decorated-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.25;
	letter-spacing: -0.5px;
}

.cta-decorated-content p {
	font-size: 17px;
	line-height: 1.75;
	margin-bottom: 32px;
	opacity: 0.95;
	max-width: 420px;
	text-align: left;
}

.cta-decorated-content .btn-white {
	border-color: rgba(255, 255, 255, 0.9);
}

.cta-decorated-content .btn-white:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

/* Testimonials - variação: barra lateral, fundo suave, bordas arredondadas */
.testimonials {
	background: var(--light-color);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px 35px;
	border-radius: 8px;
	text-align: left;
	transition: var(--transition);
	position: relative;
	border: none;
	border-left: 3px solid var(--accent-green);
	overflow: hidden;
}

.testimonial-card:hover {
	border-left-width: 5px;
	border-left-color: var(--accent-color);
	transform: translateX(4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
	font-style: italic;
	color: var(--text-light);
	margin-bottom: 24px;
	line-height: 1.8;
	font-size: 16px;
}

.testimonial-author {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--primary-color);
}

.testimonial-author::before {
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background: var(--accent-color);
	margin-bottom: 10px;
	opacity: 0.6;
}

/* Logo Footer */
.logo-footer-link {
	display: inline-block;
	margin-bottom: 24px;
	transition: var(--transition);
	opacity: 0.95;
}

.logo-footer-link:hover {
	opacity: 1;
}

.logo-footer {
	height: 140px;
	width: auto;
	object-fit: contain;
	display: block;
	opacity: 0.95;
}

/* Footer - preto e cinzas elegante */
.footer {
	background: #0a0a0a;
	color: #e5e5e5;
	padding: 80px 0 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand {
	max-width: 280px;
}

.footer-heading {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 24px;
}

.footer-contact-list a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-contact-list a:hover {
	color: var(--white);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	color: var(--white);
}

.footer-section ul li i {
	margin-right: 10px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	width: 16px;
}

.footer-newsletter-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 20px;
	line-height: 1.6;
}

.social-links {
	display: flex;

	gap: 12px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	text-decoration: none !important;
	transition: var(--transition);
}

.social-links a i {
	display: block;
	line-height: 1;
}

.social-links a:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.newsletter-form input {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--white);
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	transition: var(--transition);
}

.newsletter-form input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.btn-footer {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--white);
	padding: 12px 24px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: var(--transition);
	align-self: flex-start;
}

.btn-footer:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px 24px;
	padding: 28px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__col {
	flex: 1 1 auto;
	min-width: min(100%, 220px);
}

.footer-bottom__col--left {
	text-align: left;
}

.footer-bottom__col--right {
	text-align: right;
}

.footer-bottom__sep {
	color: rgba(255, 255, 255, 0.25);
}

.footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.footer-bottom p a:hover {
	color: var(--white);
}

@media (max-width: 600px) {
	.footer-bottom {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.footer-bottom__col--left,
	.footer-bottom__col--right {
		text-align: center;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

/* Responsive */
@media (max-width: 1366px) {
	.navbar {
		padding: 24px 0;
	}

	.nav-wrapper {
		gap: 28px;
	}

	.logo-header {
		height: 42px;
	}

	.nav-menu {
		gap: 24px;
	}

	.nav-menu a {
		font-size: 13px;
	}

	.btn-nav-cta {
		padding: 10px 20px;
		font-size: 13px;
	}

	.hero-content {
		padding-left: 72px;
		padding-right: 72px;
	}

	.hero-title {
		font-size: 54px;
		max-width: 640px;
	}

	.hero-arrow--prev {
		left: 20px;
	}

	.hero-arrow--next {
		right: 20px;
	}

	.featured-projects .project-card--overlay .project-content {
		padding-left: 80px;
		padding-right: 80px;
	}

	.featured-projects .project-card--overlay .project-status {
		right: 80px;
	}
}

@media (max-width: 1080px) {
	.navbar {
		padding: 18px 0;
	}

	.nav-wrapper {
		gap: 18px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		height: 100vh;
		flex-direction: column;
		flex-wrap: nowrap;
		background: var(--white);
		width: min(420px, 100vw);
		text-align: left;
		transition: transform 0.3s ease;
		box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
		padding: 24px 28px 32px;
		gap: 0;
		justify-content: flex-start;
		align-items: stretch;
		transform: translateX(100%);
		overflow-y: auto;
		overscroll-behavior: contain;
		z-index: 1003;
	}

	.header.menu-open::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: 1001;
	}

	.nav-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.nav-menu > li:last-child {
		border-bottom: none;
	}

	.nav-menu-mobile-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding-bottom: 20px;
		margin-bottom: 12px;
	}

	.nav-menu-mobile-logo {
		width: auto;
		height: 40px;
		object-fit: contain;
	}

	.nav-menu-close {
		width: 40px;
		height: 40px;
		border: 1px solid rgba(0, 0, 0, 0.2);
		background: transparent;
		border-radius: 4px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: relative;
		cursor: pointer;
	}

	.nav-menu-close span {
		position: absolute;
		width: 18px;
		height: 2px;
		background: var(--primary-color);
	}

	.nav-menu-close span:first-child {
		transform: rotate(45deg);
	}

	.nav-menu-close span:last-child {
		transform: rotate(-45deg);
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-menu.active a {
		color: var(--text-color) !important;
	}

	.nav-menu.active a:hover,
	.nav-menu.active a.active {
		color: var(--accent-color) !important;
	}

	.nav-menu a {
		display: inline-flex;
		padding: 16px 0;
		font-size: 13px;
		letter-spacing: 0.9px;
	}

	.nav-menu a::after,
	.nav-menu a.active::after {
		display: none !important;
	}

	.nav-cta {
		margin-left: 0;

		border-bottom: none !important;
	}

	.btn-nav-cta {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.hero-content {
		text-align: center;
		padding-left: 64px;
		padding-right: 64px;
	}

	.hero-tagline,
	.hero-title,
	.hero-description {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-title {
		font-size: 44px;
	}

	.hero-description {
		font-size: 17px;
		margin-bottom: 32px;
	}

	.hero-arrow {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.hero-arrow--prev {
		left: 15px;
	}

	.hero-arrow--next {
		right: 15px;
	}

	.hero-pagination {
		bottom: 40px;
	}

	.section-title {
		font-size: 36px;
	}

	.about-preview-title {
		font-size: 32px;
	}

	.about-preview-blocks {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 38px;
	}

	.about-preview-image {
		margin-top: 36px;
	}

	.about-preview--home .about-preview__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.about-preview--home .about-preview-image {
		margin-top: 0;
		order: 1;
	}

	.about-preview--home .about-preview__content {
		order: 0;
	}

	.about-preview--home .about-preview-image img {
		min-height: 320px;
	}

	.projects-grid,
	.differentials-grid,
	.testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.featured-projects .project-card--overlay .project-image {
		height: 560px;
		min-height: 350px;
		max-height: 100vh;
	}

	.featured-projects .project-card--overlay .project-content {
		padding: 30px 48px 38px;
	}

	.featured-projects .project-card--overlay .project-status {
		right: 48px;
	}

	.project-card--overlay .project-content {
		padding: 30px 48px 34px;
	}

	.project-card--overlay .project-status {
		right: 48px;
	}

	.project-card--overlay .project-image {
		min-height: 380px;
	}

	.btn-hero-cta {
		margin: 0 auto;
	}

	/* .cta-buttons .btn,
	.cta-decorated-content .btn {
		width: 100%;
		max-width: 320px;
	} */

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 50px;
	}

	.footer-brand {
		grid-column: auto;
	}
}

@media (max-width: 768px) {
	.logo-header {
		height: 40px;
	}

	.nav-menu {
		width: min(360px, 100vw);
		padding: 22px 24px 28px;
	}

	.nav-menu-mobile-logo {
		height: 36px;
	}

	.hero-content {
		padding-left: 44px;
		padding-right: 44px;
	}

	.hero-title {
		font-size: 38px;
	}

	.hero-description {
		font-size: 16px;
	}

	.section-header {
		margin-bottom: 56px;
	}

	.section-title {
		font-size: 32px;
	}

	.about-preview-title {
		font-size: 30px;
	}

	.about-preview-lead {
		font-size: 20px;
		margin-bottom: 32px;
	}

	.projects-grid,
	.differentials-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.cta-decorated {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.cta-decorated-content {
		order: 0;
	}
	.cta-decorated-image {
		order: 1;
	}

	.project-card--overlay .project-content,
	.featured-projects .project-card--overlay .project-content {
		padding: 26px 28px 30px;
	}

	.project-card--overlay .project-status,
	.featured-projects .project-card--overlay .project-status {
		right: 28px;
	}

	.project-card--overlay .project-content h3 {
		font-size: 30px;
	}

	.cta-decorated-content {
		padding: 52px 36px;
	}

	.cta-decorated-content h2 {
		font-size: 32px;
	}

	.footer {
		padding-top: 64px;
	}
}

@media (max-width: 480px) {
	.logo-header {
		height: 36px;
	}

	.nav-menu {
		width: 100%;
		padding: 18px 20px 24px;
	}

	.nav-menu-mobile-top {
		padding-bottom: 16px;
		margin-bottom: 8px;
	}

	.nav-menu-mobile-logo {
		height: 32px;
	}

	.nav-menu a {
		font-size: 12px;
		padding: 14px 0;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-content {
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-description {
		font-size: 15px;
	}

	.section-title {
		font-size: 28px;
	}

	.cta-content h2,
	.cta-decorated-content h2 {
		font-size: 28px;
	}

	.cta-decorated-image {
		min-height: 300px;
		order: 1;
	}

	.cta-decorated-content {
		padding: 42px 24px;
		order: 2;
		align-items: center;
		text-align: center;
	}

	.cta-decorated-content p {
		max-width: 100%;
	}

	.logo-footer {
		height: 90px;
	}
}

@media (max-width: 360px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-tagline {
		font-size: 12px;
		letter-spacing: 2px;
	}

	.section-title {
		font-size: 24px;
	}

	.cta-content h2,
	.cta-decorated-content h2 {
		font-size: 24px;
	}

	.project-card--overlay .project-content h3 {
		font-size: 25px;
	}

	.project-card--overlay .project-content,
	.featured-projects .project-card--overlay .project-content {
		padding: 22px 16px 24px;
	}

	.project-card--overlay .project-status,
	.featured-projects .project-card--overlay .project-status {
		right: 16px;
	}
}

.whatsapp-fixo {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 999;
}

.whatsapp-fixo svg {
	width: 45px;
	height: 46px;
	float: left;
}

@media (max-width: 576px) {
	.whatsapp-fixo svg {
		width: 40px;
		height: 41px;
	}
}

@media (max-width: 576px) {
	.whatsapp-fixo {
		bottom: 10px;
		right: 10px;
	}
	.whatsapp-fixo svg {
		width: 35px;
		height: 36px;
	}
}
