/*
Theme Name: Naiá
Author: D-Lab
Author URI: https://dlab.com.br
Description: Theme for Naiá Incorporadora
Version: 1.0
Text Domain: naia
Update URI: false

*/


/*
    CSS VARIABLES
*/
:root{
	/* Colors */
	--azul: #21224A;
	--laranja: #EB5D50;
	--cinza: #DCD9D4;
	--offwhite: #F5F5F5;
	--gray6: #99928C;
	--verde: #004545;
	--verde-claro: #17906B;
	--white: #FFFFFF;

	/* Aliases */
	--primary: var(--azul);
	--accent: var(--laranja);
	--background: var(--cinza);

	/* Typography sizes (mobile) */
	--title-1: 1.625rem;
	--title-1-lh: 142%;
	--title-2: 1.625rem;
	--title-2-lh: 142%;
	--title-3: 1.25rem;
	--title-3-lh: 140%;
	--text: 1rem;
	--text-lh: 144%;
	--text-large: 1.125rem;
	--text-large-lh: 178%;
	--button-size: 0.75rem;

	/* Layout */
	--header-height: 80px;
	--section-padding: 60px;
	--gutter: 48px;
}

@media (min-width: 992px){
	:root{
		/* Typography sizes (desktop) */
		--title-1: 3.75rem;
		--title-1-lh: 133%;
		--title-2: 2.5rem;
		--title-2-lh: 125%;
		--title-3: 1.875rem;
		--title-3-lh: 133%;
		--text: 1.125rem;
		--text-lh: 178%;

		/* Layout (desktop) */
		--header-height: 117px;
		--section-padding: 100px;
	}
}



/* SETUP */
html{
	scroll-padding: var(--header-height);
	overflow-x: hidden;
}

body{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	background-color: var(--background);
	color: var(--primary);
	padding-top: var(--header-height);
	font-size: var(--text);
	line-height: var(--text-lh);
	overflow-x: hidden;
	text-rendering: geometricPrecision;
}

*:focus,
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus{
	outline: none;
}

*:focus-visible{
	outline: 2px dotted var(--accent);
	outline-offset: 4px;
}

.wpcf7-not-valid-tip{
	font-size: 0.75rem;
	margin-top: 4px;
	padding-left: 20px;
}

[data-animation]{
	opacity: 0;
}

.no-js [data-animation]{
	opacity: 1;
}

@media (prefers-reduced-motion: reduce){
	[data-animation]{
		opacity: 1;
	}
	.animated{
		animation-duration: 0.01ms !important;
	}
	*, *::before, *::after{
		transition-duration: 0.01ms !important;
	}
}

a{
	transition: color 0.3s ease;
	color: var(--accent);
	text-decoration: underline;
}

a:is(:hover, :focus, :active){
	color: var(--primary);
}

.btn,
.btn:is(:hover, :focus, :active),
.header a,
.header a:is(:hover, :focus, :active),
.footer a,
.footer a:is(:hover, :focus, :active),
.emp-about__cta,
.emp-about__cta:is(:hover, :focus, :active),
.mobile-menu-list a,
.mobile-menu-list a:is(:hover, :focus, :active){
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5{
	font-family: "dazzle-unicase", sans-serif;
	font-weight: 500;
	line-height: 1.33;
}

h1{
	font-size: var(--title-1);
	line-height: var(--title-1-lh);
}

h2{
	font-size: var(--title-2);
	line-height: var(--title-2-lh);
}

h3,
h4,
h5,
h6{
	font-size: var(--title-3);
	line-height: var(--title-3-lh);
}



/* UTILITY */
.container{
	width: min(calc(100% - var(--gutter)), 1170px);
	margin-inline: auto;
}

.wide-container{
	width: min(calc(100% - var(--gutter)), 1432px);
	margin-inline: auto;
}

.narrow-container{
	width: min(calc(100% - var(--gutter)), 900px);
	margin-inline: auto;
}

.sr-only{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.sr-only:is(a, button):focus{
	position: fixed;
	top: 8px;
	left: 8px;
	padding: 16px;
	background-color: var(--primary);
	color: var(--white);
	width: auto;
	height: auto;
	z-index: 9999;
	clip: auto;
	clip-path: none;
	margin: 0;
	overflow: visible;
	white-space: normal;
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

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



/* BUTTONS */
.btn{
	display: inline-block;
	appearance: none;
	border: 2px solid currentColor;
	border-radius: 40px;
	text-align: center;
	text-decoration: none;
	font-family: "stolzl", sans-serif;
	font-weight: 500;
	font-size: var(--button-size);
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
	padding: 18px 30px;
	background-color: transparent;
	color: var(--white);
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: color, background-color, border-color;
}

.btn:is(:hover, :focus, :active){
	background-color: var(--white);
	color: var(--primary);
	border-color: var(--white);
	text-decoration: none;
}

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

.btn--outline:is(:hover, :focus, :active){
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

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

.btn--white:is(:hover, :focus, :active){
	background-color: var(--white);
	color: var(--laranja);
	border-color: var(--white);
}




/* ========================================
   HEADER
   ======================================== */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 100;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* header::after removed – the contato header blue band is handled by .contato-left::before */

.header-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: 24px;
}

@media (min-width: 992px){
	.header-inner{
		padding-inline: 80px;
	}
}

.header a{
	text-decoration: none;
}

.header .logo{
	display: block;
	line-height: 1;
}

.header .logo svg{
	height: 36px;
	width: auto;
}

.header a.logo:is(:hover, :focus, :active){
	text-decoration: none;
}

/* Dark header */
.header[data-style="dark"]{
	color: var(--white);
}

.header[data-style="dark"] a{
	color: var(--white);
}

.header[data-style="dark"].is-scrolled{
	background-color: var(--azul);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Light header */
.header[data-style="light"]{
	color: var(--azul);
}

.header[data-style="light"] a{
	color: var(--azul);
}

.header[data-style="light"].is-scrolled{
	background-color: var(--cinza);
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Active page nav highlighting */
.header-nav-list .current-menu-item a{
	color: var(--laranja);
}


/* Desktop nav */
.header-nav{
	display: none;
}

.header-nav-list{
	display: flex;
	gap: 48px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-nav-list a{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	text-transform: uppercase;
	line-height: 26px;
	position: relative;
}

.header-nav-list .current-menu-item a{
	padding-left: 19px;
}

.header-nav-list .current-menu-item a::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: var(--laranja);
}

/* Menu toggle (mobile) */
.menu-toggle{
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 110;
	color: inherit;
}

@media (min-width: 992px){
	.header{
		padding: 41.5px 0;
	}

	.header .logo svg{
		height: 34px;
	}

	.header-nav{
		display: block;
	}

	.menu-toggle{
		display: none;
	}
}

.menu-toggle-bar{
	display: block;
	width: 34px;
	height: 2px;
	background-color: currentColor;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1){
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2){
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3){
	transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile menu */
.mobile-menu{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: var(--azul);
	z-index: 105;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 22vh;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu[aria-hidden="false"]{
	opacity: 1;
	visibility: visible;
}

body.menu-open{
	overflow: hidden;
}

body.menu-open .header{
	z-index: 110;
}

.mobile-menu-list{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.mobile-menu-list li{
	margin-bottom: 20px;
}

.mobile-menu-list a{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
}

.mobile-menu-list a:is(:hover, :focus, :active){
	color: var(--laranja);
}

.mobile-menu-social{
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 100px;
}

.mobile-menu-social a{
	color: var(--laranja);
}

.mobile-menu-social svg{
	width: 24px;
	height: 24px;
}

@media (min-width: 992px){
	.mobile-menu{
		display: none;
	}
}



/* ========================================
   FOOTER
   ======================================== */
.footer{
	padding: 70px 0 40px;
	font-size: 1rem;
}

@media (max-width: 991px){
	.footer-social{
		margin-left: -5px;
	}
}

.footer a{
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer a:is(:hover, :focus, :active){
	opacity: 0.7;
}

/* Footer — orange variant */
.footer--laranja{
	background-color: var(--laranja);
	color: var(--white);
}

.footer--laranja a{
	color: var(--white);
}

.footer--laranja .footer-copyright p{
	color: var(--azul);
	opacity: 1;
}

.footer--laranja .footer-nav li.is-active a{
	color: var(--azul);
}

.footer--laranja .logo-dot{
	fill: var(--azul);
}

.footer--laranja .footer-social a{
	color: var(--azul);
}

/* Footer — navy variant */
.footer--azul{
	background-color: var(--azul);
	color: var(--white);
}

.footer--azul a{
	color: var(--white);
}

.footer--azul .footer-copyright p{
	color: var(--laranja);
	opacity: 1;
}

.footer--azul .footer-social a{
	color: var(--laranja);
}

.footer-inner{
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.footer-top{
	display: flex;
	flex-direction: column;
	gap: 65px;
}

.footer-brand{
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-brand-sub{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 0.625rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	opacity: 0.7;
}

.footer-logo{
	display: block;
	line-height: 1;
}

.footer-logo svg{
	height: 50px;
	width: auto;
}

.footer-nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.footer-nav a{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	text-transform: uppercase;
	line-height: 26px;
	display: flex;
	align-items: center;
	gap: 10px;
}


.footer-nav li.is-active a{
	color: var(--laranja);
	opacity: 1;
}

.footer-bottom{
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.footer-social{
	display: flex;
	gap: 23px;
}

.footer-social a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social svg{
	width: 43px;
	height: 43px;
}

.footer-copyright p{
	margin: 0;
	font-size: 0.625rem;
	line-height: 1.1;
	text-align: right;
}

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

.footer-copyright .footer-credit{
	margin-top: 4px;
	font-size: 0.625rem;
	line-height: 1.1;
}

.footer-copyright .footer-credit a{
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.footer-copyright .footer-credit a:is(:hover, :focus, :active){
	text-decoration: underline;
}

@media (min-width: 992px){
	.footer{
		padding: 72px 0 96px;
	}

	.footer-inner{
		gap: 90px;
	}

	.footer-top{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-brand{
		margin-top: 10px;
	}

	.footer-nav ul{
		flex-direction: row;
		gap: 48px;
	}

	.footer-logo svg{
		height: 50px;
	}

	.footer-copyright p{
		font-size: 0.875rem;
	}

	.footer-copyright .footer-credit{
		font-size: 0.75rem;
	}

	.footer-bottom{
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}

	.footer-social svg{
		width: 16px;
		height: 16px;
	}

	.footer-social{
		gap: 13px;
	}
}



/* WhatsApp Float */
.whatsapp-float{
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #25D366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 90;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:is(:hover, :focus){
	transform: scale(1.1);
	color: var(--white);
}

body.page-template-template_contato .whatsapp-float{
	display: none;
}



/* ========================================
   HOME — HERO SLIDER
   ======================================== */
.home-hero{
	margin-top: calc(var(--header-height) * -1);
	position: relative;
}

.home-hero-swiper{
	height: 768px;
}

.home-hero-slide{
	position: relative;
	overflow: hidden;
}

.home-hero-bg{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.home-hero-overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.12);
}

.home-hero-content{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	gap: 32px;
	color: var(--white);
	padding-left: 54px;
}

.home-hero-content h1{
	max-width: 274px;
	position: relative;
}

.home-hero-content h1::before{
	content: '';
	position: absolute;
	left: -56px;
	top: 0;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background-color: var(--laranja);
}

/* Hero pagination — vertical dots on right */
.home-hero .home-hero-pagination.swiper-pagination-bullets{
	position: absolute;
	right: 24px;
	left: auto;
	top: 50%;
	bottom: auto;
	width: auto;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 29px;
}

.home-hero .home-hero-pagination.swiper-pagination-lock{
	display: flex;
}

.hero-bullet{
	appearance: none;
	border: none;
	padding: 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: var(--white);
	opacity: 1;
	cursor: pointer;
	transition: opacity 0.3s ease, background-color 0.3s ease;
}

.hero-bullet:focus-visible{
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

.hero-bullet--active{
	background-color: var(--laranja);
	opacity: 1;
}

/* Hero mobile — Figma-matched button */
@media (max-width: 991px){
	.home-hero-content .btn{
		padding: 12px 30px;
		margin-left: -4px;
	}

	.home-hero-content{
		justify-content: flex-start;
		padding-top: 287px;
		gap: 26px;
	}
}

@media (min-width: 992px){
	.home-hero-swiper{
		height: 920px;
	}

	.home-hero-content{
		padding-left: 246px;
		width: 100%;
		max-width: none;
		margin-inline: 0;
	}

	.home-hero-content h1{
		max-width: 629px;
	}

	.home-hero-content h1::before{
		left: -53px;
		top: 18px;
	}

	.home-hero .home-hero-pagination.swiper-pagination-bullets{
		right: 55px;
	}
}



/* ========================================
   HOME — INTRO
   ======================================== */
.home-intro{
	position: relative;
	padding: 262px 0 0;
	min-height: 528px;
	display: flex;
	flex-direction: column;
	background-color: var(--azul);
}

.home-intro-bg{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.5;
}

.home-intro-overlay{
	display: none;
}

.home-intro-image{
	position: relative;
	width: 296px;
	aspect-ratio: 296/291;
	overflow: hidden;
	margin-left: auto;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: -25px;
	z-index: 2;
}

.home-intro-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-intro-content{
	position: absolute;
	top: 113px;
	left: calc(var(--gutter) / 2);
	z-index: 3;
	color: var(--white);
}

.home-intro-content h2{
	font-size: var(--title-2);
	line-height: var(--title-2-lh);
}

.home-intro-cta{
	display: inline-flex;
	margin-top: 24px;
}

.home-intro-deco{
	display: none;
}

.home-intro-deco--starburst{
	color: var(--cinza);
}

.home-intro-deco--botanical{
	color: var(--laranja);
}

/* Mobile: show starburst between hero and intro (issue #2) */
@media (max-width: 991px){
	.home-intro-deco--starburst{
		display: block;
		position: absolute;
		pointer-events: none;
		z-index: 1;
		right: -103px;
		top: -145px;
		width: 287px;
		height: 288px;
	}

	.home-intro-deco--starburst svg{
		width: 100%;
		height: 100%;
	}

	/* Fix intro h2 width to match Figma (206px) — forces 2-line wrap */
	.home-intro-content h2{
		max-width: 206px;
	}
}

@media (min-width: 992px){
	.home-intro{
		min-height: 727px;
		padding: 120px 0;
		flex-direction: row;
		align-items: center;
	}

	.home-intro-image{
		position: absolute;
		margin: 0;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2));
		top: 143px;
		width: 470px;
		aspect-ratio: 470/442;
		z-index: 2;
		overflow: hidden;
	}

	.home-intro-image::after{
		content: '';
		position: absolute;
		inset: 0;
		background-color: rgba(33, 34, 74, 0.35);
		pointer-events: none;
	}

	.home-intro-image img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.home-intro-content{
		position: relative;
		top: auto;
		left: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-left: 670px;
	}

	.home-intro-content h2{
		max-width: 296px;
	}

	.home-intro-cta{
		display: inline-flex;
		margin-top: 66px;
		font-size: 1.125rem;
		font-weight: 700;
		padding: 18px 30px;
	}

	.home-intro-deco{
		display: block;
		position: absolute;
		pointer-events: none;
		z-index: 1;
	}

	.home-intro-deco svg{
		width: 100%;
		height: 100%;
	}

	.home-intro-deco--botanical{
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 541px);
		top: -108px;
		width: 624px;
		height: 631px;
		opacity: 1;
	}

	.home-intro-deco--starburst{
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 841px);
		top: 199px;
		width: 470px;
		height: 470px;
		opacity: 1;
	}
}



/* ========================================
   HOME — EMPREENDIMENTOS
   ======================================== */
.home-empreendimentos{
	padding: 240px 0 130px;
}

@media (min-width: 992px){
	.home-empreendimentos{
		padding: 140px 0 73px;
		min-height: 846px;
	}

	.home-newsletter{
		min-height: 618px;
	}
}

.home-emp-card{
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.home-emp-info{
	display: contents;
}

.home-emp-info h2{ order: 1; }
.home-emp-image{ order: 2; }
.emp-features{ order: 3; }
.home-emp-info .btn{ order: 4; }

.home-emp-card + .home-emp-card{
	margin-top: 60px;
}

.home-emp-info h2{
	margin-bottom: 24px;
}

.home-emp-image{
	position: relative;
	width: 100vw;
	margin-left: calc(-1 * var(--gutter) / 2);
	height: 450px;
	overflow: hidden;
}

.home-emp-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

@media (min-width: 992px){
	.home-emp-image{
		width: auto;
		height: auto;
		margin-left: 0;
		overflow: visible;
	}

	.home-emp-image img{
		aspect-ratio: 770/633;
		height: auto;
	}
}

.home-emp-logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 138px;
	width: 33%;
}

.home-emp-logo svg,
.home-emp-logo img{
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

/* Feature list (shared) */
.emp-features{
	list-style: none;
	padding: 0;
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.emp-features li{
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 1rem;
	line-height: 23px;
}

@media (min-width: 992px){
	.emp-features li{
		gap: 18px;
		font-size: 1.125rem;
		line-height: 32px;
	}
}

.emp-features li svg{
	flex-shrink: 0;
}

.emp-feature-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.emp-feature-icon svg,
.emp-feature-icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (min-width: 992px){
	.emp-feature-icon{
		width: 52px;
		height: 52px;
	}
}

/* Empreendimentos mobile — Figma-matched layout */
@media (max-width: 991px){
	.home-empreendimentos{
		padding: 201px 0 116px;
		margin-top: -79px;
	}

	.home-empreendimentos .container{
		padding-left: 1px;
	}

	.home-emp-info h2{
		margin-left: 95px;
		max-width: 220px;
		margin-bottom: 21px;
	}

	.emp-features{
		margin: 42px 0 0;
	}

	.home-emp-image{
		width: calc(100vw - var(--gutter) / 2 + 31px);
		margin-left: 0;
	}

	.home-emp-logo{
		left: calc(50vw - var(--gutter) / 2 - 1px);
	}

	.home-emp-info .btn{
		align-self: center;
		margin-top: 42px;
	}
}

@media (min-width: 992px){
	.home-emp-card{
		flex-direction: row;
		align-items: flex-start;
	}

	.home-emp-info{
		display: flex;
		flex-direction: column;
		flex: 0 0 500px;
		padding-right: 48px;
	}

	.home-emp-info h2,
	.emp-features,
	.home-emp-info .btn,
	.home-emp-image{
		order: unset;
	}

	.home-emp-info h2{
		max-width: 390px;
	}

	.home-emp-info .btn{
		align-self: flex-start;
	}

	.home-emp-image{
		flex: 1;
		min-width: 0;
		margin-right: -100px;
	}

	.home-emp-logo{
		max-width: 211px;
		width: 27%;
	}
}



/* ========================================
   HOME — NEWSLETTER
   ======================================== */
.home-newsletter{
	position: relative;
	background-color: var(--azul);
	padding: 422px 0 114px;
	overflow: hidden;
	color: var(--white);
}

.home-newsletter-bg{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.8;
}

.home-newsletter-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(33,34,74,0.7) 0%, rgba(33,34,74,0.25) 100%);
	z-index: 1;
}

.home-newsletter-inner{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.home-newsletter-deco{
	position: absolute;
	left: -14px;
	top: -16px;
	width: 658px;
	max-width: none;
	height: auto;
	object-fit: contain;
	z-index: 2;
	pointer-events: none;
	user-select: none;
}

@media (min-width: 992px){
	.home-newsletter-deco{
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 953px);
		top: -33px;
		transform: none;
		width: 1423px;
	}
}

.home-newsletter-content h2{
	font-family: "stolzl", sans-serif;
	font-weight: 500;
	font-size: 1.3125rem;
	line-height: 30px;
	margin-bottom: 16px;
}

@media (min-width: 992px){
	.home-newsletter-content h2{
		font-size: 2rem;
		line-height: 50px;
		max-width: 298px;
	}
}

.home-newsletter-content p{
	margin-bottom: 32px;
	max-width: 300px;
	line-height: 23px;
}

@media (min-width: 992px){
	.home-newsletter-content p{
		line-height: 32px;
		max-width: 251px;
	}
}

.newsletter-form-row{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 365px;
}

.newsletter-form-row .wpcf7-spinner{
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.newsletter-form-row input[type="email"]{
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 60px;
	padding: 10px 120px 10px 20px;
	border: 2px solid var(--white);
	border-radius: 58px;
	background: transparent;
	color: var(--white);
	font-family: "stolzl", sans-serif;
	font-size: 1rem;
}

.newsletter-form-row input[type="email"]::placeholder{
	color: rgba(255,255,255,0.5);
}

/* CF7 wraps fields in a <p> — make it fill the row and act as flex container */
.home-newsletter-content .newsletter-form-row p{
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	max-width: none;
	line-height: normal;
}

.newsletter-form-row .wpcf7-form-control-wrap{
	flex: 1;
	min-width: 0;
}

/* Hide the CF7 spinner so it doesn't affect layout */

/* Hide the CF7 hidden fields container */
.newsletter-form .hidden-fields-container{
	display: none;
}

.newsletter-form-row .btn,
.newsletter-form-row input[type="submit"]{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 4px;
	height: auto;
	border-radius: 40px;
	width: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	border: 2px solid var(--white);
	background-color: transparent;
	color: var(--white);
	font-family: "stolzl", sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 10px 24px;
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: color, background-color, border-color;
}

.newsletter-form-row .btn:is(:hover, :focus, :active),
.newsletter-form-row input[type="submit"]:is(:hover, :focus, :active){
	background-color: var(--white);
	color: var(--primary);
	border-color: var(--white);
}

/* CF7 response messages — hidden by default, shown only when CF7 adds inline styles */
.newsletter-form .wpcf7-response-output{
	display: none;
	color: var(--white);
	border-color: var(--white);
	margin: 10px 0 0;
	padding: 8px 16px;
	font-size: 0.875rem;
}

.newsletter-form .wpcf7-response-output[style]{
	display: block;
}

.newsletter-form .wpcf7-not-valid-tip{
	color: rgba(255,255,255,0.8);
	font-size: 0.8125rem;
	margin-top: 4px;
}

@media (min-width: 600px){
	.newsletter-form-row{
		max-width: 397px;
	}
}

/* Newsletter mobile — Figma positioning */
@media (max-width: 991px){
	.home-newsletter-content h2{
		margin-left: 96px;
		max-width: 190px;
		margin-bottom: 34px;
	}

	.home-newsletter-content p{
		margin-left: 96px;
		max-width: 220px;
		margin-bottom: 112px;
	}

	.home-newsletter{
		padding: 422px 0 59px;
	}

	.newsletter-form-row{
		max-width: 365px;
		margin: 0 auto;
	}
}

@media (min-width: 992px){
	.home-newsletter-inner{
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
	}

	.home-newsletter{
		padding: 167px 0 100px;
	}

	.home-newsletter-content{
		width: 50%;
	}

	.newsletter-form-row input[type="email"]{
		height: 45px;
		font-size: 1.125rem;
	}

	.newsletter-form-row .btn,
	.newsletter-form-row input[type="submit"]{
		height: 45px;
	}
}



/* ========================================
   TABLET RESPONSIVE — 768px to 991px
   ======================================== */
@media (min-width: 768px) and (max-width: 991px){

	/* --- HOME INTRO --- */
	.home-intro{
		padding: 80px 0 0;
		min-height: 480px;
	}

	.home-intro-image{
		width: 50%;
		aspect-ratio: 380/360;
	}

	.home-intro-content{
		position: relative;
		top: auto;
		left: auto;
		padding-bottom: 60px;
	}

	.home-intro-content h2{
		max-width: 420px;
	}

	/* --- HOME EMPREENDIMENTOS --- */
	.home-empreendimentos{
		padding: 100px 0 80px;
	}

	.home-emp-info h2{
		margin-left: 0;
		max-width: none;
	}

	.home-emp-image{
		width: 100%;
		margin-left: 0;
		height: 500px;
	}

	.home-emp-info .btn{
		align-self: flex-start;
	}

	/* --- HOME NEWSLETTER --- */
	.home-newsletter{
		padding: 280px 0 80px;
	}

	.home-newsletter-content h2{
		margin-left: 0;
		max-width: none;
	}

	.home-newsletter-content p{
		margin-left: 0;
		max-width: 400px;
	}

	/* --- FOOTER --- */
	.footer .container{
		width: auto;
		margin-left: 24px;
		margin-right: 24px;
	}

	.footer-top{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-nav ul{
		flex-direction: row;
		gap: 32px;
	}

	.footer-bottom{
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer-social svg{
		width: 24px;
		height: 24px;
	}

}


/* ========================================
   NARROW DESKTOP FIX — 992px to 1200px
   ======================================== */
@media (min-width: 992px) and (max-width: 1200px){

	/* --- HOME INTRO --- */
	.home-intro-image{
		width: 360px;
	}

	.home-intro-content{
		padding-left: 480px;
	}

	.home-intro-content h2{
		max-width: 340px;
	}

	.home-intro-deco--botanical{
		width: 400px;
		height: 400px;
	}

	.home-intro-deco--starburst{
		display: none;
	}

	/* --- HOME EMPREENDIMENTOS --- */
	.home-emp-info{
		flex: 0 0 380px;
		padding-right: 32px;
	}
}



/* ========================================
   EMPREENDIMENTOS ARCHIVE — HERO
   ======================================== */
.emp-archive-hero{
	margin-top: calc(var(--header-height) * -1);
	position: relative;
	min-height: 398px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	background-color: var(--cinza);
}

.emp-archive-hero-bg{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.emp-archive-hero-overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.08);
}

.emp-archive-hero-content{
	position: relative;
	z-index: 2;
	text-align: left;
	color: var(--white);
	padding-top: 253px;
	display: flex;
	justify-content: flex-start;
}

.emp-archive-hero-content h1{
	font-size: var(--title-2);
	line-height: var(--title-2-lh);
	max-width: 206px;
}

@media (min-width: 992px){
	.emp-archive-hero-content h1{
		max-width: 312px;
		margin-left: 602px;
	}
}

.emp-archive-hero-semicircle{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 470px;
	height: 171px;
	overflow: hidden;
	z-index: 1;
	display: none;
}

.emp-archive-hero-semicircle::before{
	content: '';
	position: absolute;
	left: -80px;
	top: 0;
	width: 470px;
	height: 470px;
	border-radius: 50%;
	background-color: var(--laranja);
}

.emp-archive-hero-deco{
	position: relative;
	left: -230px;
	width: 315px;
	height: 315px;
	display: block;
	z-index: 2;
	pointer-events: none;
	margin-top: -67px;
	margin-bottom: -248px;
}

.emp-archive-hero-deco svg{
	width: 100%;
	height: 100%;
	color: var(--cinza);
}

@media (min-width: 992px){
	.emp-archive-hero{
		min-height: 770px;
	}

	.emp-archive-hero-content{
		justify-content: flex-start;
		padding-top: 385px;
	}

	.emp-archive-hero-semicircle{
		display: block;
		width: 470px;
		height: 171px;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 100px);
	}

	.emp-archive-hero-semicircle::before{
		left: 0;
		top: 0;
		width: 470px;
		height: 470px;
	}

	.emp-archive-hero-deco{
		display: block;
		width: 470px;
		height: 470px;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 100px);
		margin-top: -548px;
		margin-bottom: 78px;
		z-index: 2;
	}
}



/* ========================================
   EMPREENDIMENTOS ARCHIVE — LISTINGS
   ======================================== */
.emp-archive-list{
	padding: 14px 0 80px;
}

@media (min-width: 992px){
	.emp-archive-list{
		padding: 140px 0 73px;
	}
}

.emp-archive-card{
	display: flex;
	flex-direction: column;
	gap: 0;
}

.emp-archive-card-info{
	display: contents;
}

.emp-archive-card-info h2{
	order: 1;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 98px;
	max-width: 206px;
	min-height: 259px;
	line-height: 37px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.emp-archive-card-image{
	order: 2;
	position: relative;
	margin-top: 59px;
	margin-right: calc(var(--gutter) / -2);
	margin-left: 1px;
	overflow: visible;
}

.emp-archive-card-info .emp-features{
	order: 3;
	margin-top: 57px;
}

.emp-archive-card-info .btn{
	order: 4;
	align-self: center;
	margin-top: 63px;
}

.emp-archive-card + .emp-archive-card{
	margin-top: 60px;
}

.emp-archive-card-image img{
	width: 458px;
	max-width: none;
	aspect-ratio: 458/450;
	object-fit: cover;
}

.emp-archive-card-image::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.05);
	pointer-events: none;
	z-index: 1;
}

.emp-archive-card-logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 180px;
}

.emp-archive-card-logo svg,
.emp-archive-card-logo img{
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

.emp-archive-empty{
	text-align: center;
	font-size: var(--text-large);
	color: var(--gray6);
}

@media (min-width: 992px){
	.emp-archive-card{
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
	}

	.emp-archive-card-info{
		display: flex;
		flex-direction: column;
		flex: 0 0 500px;
	}

	.emp-archive-card-info h2{
		order: unset;
		max-width: 315px;
		margin-left: 0;
		margin-bottom: 0;
		font-size: 40px;
		line-height: 50px;
		letter-spacing: 0;
		min-height: 0;
		display: block;
	}

	.emp-archive-card-info .btn{
		order: unset;
		align-self: flex-start;
		margin-top: 44px;
		padding-top: 15.5px;
		padding-bottom: 15.5px;
	}

	.emp-archive-card-info .emp-features{
		order: unset;
		margin: 43px 0 0;
		gap: 13px;
	}

	.emp-archive-card-image{
		order: unset;
		margin-top: 0;
		margin-right: 0;
		margin-left: 0;
		flex: 0 0 770px;
	}

	.emp-archive-card-image img{
		width: 100%;
		max-width: 100%;
		aspect-ratio: 770/633;
		object-position: center;
	}

	.emp-archive-card-logo{
		max-width: 211px;
	}

	.emp-archive-card + .emp-archive-card--alt{
		margin-top: 188px;
	}

	.emp-archive-card--alt{
		flex-direction: row-reverse;
	}

	.emp-archive-card--alt .emp-archive-card-image{
		margin-left: calc(-1 * max(var(--gutter) / 2, (100vw - 1170px) / 2));
		flex: 0 0 calc(770px + max(var(--gutter) / 2, (100vw - 1170px) / 2));
		overflow: visible;
	}

	.emp-archive-card--alt .emp-archive-card-image::after{
		display: none;
	}

	.emp-archive-card--alt .emp-archive-card-image img{
		position: relative;
		z-index: 2;
		width: 770px;
		margin-left: calc(max(var(--gutter) / 2, (100vw - 1170px) / 2) - 100px);
	}

	.emp-archive-card--alt .emp-archive-card-semicircle{
		display: block;
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100vw - 1170px) / 2) - 250px);
		top: 55px;
		width: 300px;
		height: 300px;
		border-radius: 50%;
		background-color: var(--laranja);
		z-index: 3;
	}

	.emp-archive-card--alt .emp-archive-card-starburst{
		display: block;
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100vw - 1170px) / 2) - 250px);
		top: 248px;
		width: 300px;
		height: 300px;
		z-index: 4;
		pointer-events: none;
	}

	.emp-archive-card--alt .emp-archive-card-starburst svg{
		width: 100%;
		height: 100%;
		color: var(--azul);
	}

	.emp-archive-card--alt .emp-archive-card-info{
		padding-left: 30px;
		padding-top: 41px;
		flex: 0 0 400px;
	}
}

@media (max-width: 991px){
	.emp-archive-card-logo{
		left: calc(50vw - var(--gutter) / 2 - 1px);
	}
}

.emp-archive-card-semicircle,
.emp-archive-card-starburst{
	display: none;
}



/* ========================================
   SINGLE EMPREENDIMENTO — HERO
   ======================================== */
.emp-hero{
	margin-top: calc(var(--header-height) * -1);
	position: relative;
	width: 100%;
	height: 768px;
	overflow: hidden;
}

.emp-hero__image{
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.emp-hero__image img{
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.emp-hero__overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.25);
}

.emp-hero__emblem{
	position: absolute;
	top: calc(50% + var(--header-height) / 2);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 212px;
	z-index: 2;
}

.emp-hero__emblem svg,
.emp-hero__emblem img{
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

@media (min-width: 992px){
	.emp-hero{
		height: 770px;
	}

	.emp-hero__emblem{
		width: 300px;
		top: 48.6%;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — ABOUT
   ======================================== */
.emp-about{
	position: relative;
	background-color: var(--cinza);
	padding: 98px 24px 61px;
	color: var(--verde);
}

.emp-about__container{
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.emp-about__title{
	font-size: var(--title-1);
	line-height: var(--title-1-lh);
	color: var(--verde);
	max-width: 213px;
	margin: 0;
}

.emp-about__content{
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.emp-about__description{
	max-width: 270px;
	margin-left: auto;
}

@media (min-width: 600px){
	.emp-about__title{
		max-width: none;
		font-size: clamp(1.625rem, 4.2vw, 2.5rem);
	}
	.emp-about__description{
		max-width: none;
		margin-left: 0;
	}
}

.emp-about__description p{
	margin-bottom: 16px;
}

.emp-about__cta{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-left: 61px;
	margin-top: 30px;
	border: 2px solid var(--verde);
	border-radius: 40px;
	padding: 20px 30px;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 12px;
	color: var(--verde);
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.emp-about__cta:is(:hover, :focus, :active){
	background-color: var(--verde);
	color: var(--white);
	text-decoration: none;
}

.emp-about__features{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.emp-about__feature{
	display: flex;
	align-items: center;
	gap: 16px;
}

.emp-about__feature-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.emp-about__feature-icon svg,
.emp-about__feature-icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.emp-about__feature-text{
	font-size: 1rem;
	line-height: 23px;
	color: var(--verde);
}

.emp-about__building{
	display: none;
	margin: 0;
}

.emp-about__building img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.emp-about__map{
	position: relative;
	width: 100%;
	aspect-ratio: 365/283;
	overflow: hidden;
	margin-top: 48px;
}

.emp-about__map-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.emp-about__map--iframe{
	aspect-ratio: auto;
}

.emp-about__map--iframe iframe{
	width: 100%;
	height: 283px;
}

.emp-about__map-pin{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 38px;
}

.emp-about__map-pin svg{
	display: block;
	width: 100%;
	height: 100%;
}

@media (min-width: 1200px){
	.emp-about{
		padding: 118px 0 102px;
		overflow: clip;
	}

	.emp-about__container{
		max-width: 1170px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: clamp(300px, 41%, 478px) 1fr;
		grid-template-rows: auto auto auto;
		gap: 0 120px;
		position: relative;
		z-index: 2;
	}

	.emp-about__title{
		max-width: 478px;
		font-size: clamp(2.25rem, 4.2vw, var(--title-1));
		grid-column: 1;
		grid-row: 1 / 3;
	}

	.emp-about__content{
		grid-column: 2;
		grid-row: 1;
		align-self: start;
	}

	.emp-about__description{
		max-width: 370px;
		margin-left: 0;
	}

	.emp-about__cta{
		align-self: flex-start;
		justify-self: start;
		margin-left: 0;
		margin-top: 40px;
		grid-column: 2;
		grid-row: 3;
	}

	.emp-about__features{
		grid-column: 2;
		grid-row: 2;
		gap: 12px;
		margin-top: 40px;
	}

	.emp-about__feature-icon{
		width: 46px;
		height: 46px;
	}

	.emp-about__feature-text{
		font-size: 1.125rem;
		line-height: 32px;
	}

	.emp-about__building{
		display: block;
		position: relative;
		top: -192px;
		margin-bottom: -192px;
		margin-left: 0;
		width: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 500px);
		height: 555px;
		overflow: hidden;
	}

	.emp-about__map{
		position: relative;
		top: -267px;
		margin-top: 0;
		margin-bottom: -267px;
		margin-left: auto;
		margin-right: calc((100% - 1170px) / 2 - 97px);
		width: 667px;
		aspect-ratio: 667/360;
	}

	.emp-about__map--iframe iframe{
		height: 360px;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — ARCHITECTS
   ======================================== */
.emp-architects{
	position: relative;
	width: 100%;
}

.emp-architect{
	position: relative;
	display: flex;
	flex-direction: column;
}

.emp-architect:nth-child(odd){
	background-color: var(--offwhite);
}

.emp-architect--alt{
	background-color: var(--verde-claro);
}

.emp-architect__photo{
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 0;
}

.emp-architect:nth-child(odd) .emp-architect__photo{
	aspect-ratio: 415/445;
}

.emp-architect--alt .emp-architect__photo{
	width: 94%;
	aspect-ratio: 391/320;
	margin-top: 24px;
}

.emp-architect__photo img{
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.emp-architect__text{
	position: relative;
	padding: 42px 24px 131px;
}

.emp-architect__name{
	font-size: var(--title-1);
	line-height: var(--title-1-lh);
	margin-bottom: 20px;
	max-width: 200px;
}

.emp-architect:nth-child(odd) .emp-architect__name{
	color: var(--azul);
}

.emp-architect--alt .emp-architect__text{
	color: var(--white);
	padding-bottom: 161px;
}

.emp-architect--alt .emp-architect__name{
	color: var(--white);
	margin-bottom: 8px;
}

.emp-architect__role{
	font-size: 1.125rem;
	line-height: 26px;
	text-transform: uppercase;
	margin-bottom: 41px;
	color: inherit;
}

.emp-architect__description{
	max-width: 270px;
	margin-left: auto;
	color: var(--verde);
}

.emp-architect--alt .emp-architect__description{
	color: var(--white);
}

@media (min-width: 600px){
	.emp-architect__description{
		max-width: none;
		margin-left: 0;
	}
}

@media (min-width: 992px){
	.emp-architect:nth-child(odd){
		padding: 70px 0 0;
	}

	.emp-architect:nth-child(odd) .emp-architect__photo{
		width: 669px;
		height: 745px;
		margin-left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 70px);
	}

	.emp-architect:nth-child(odd) .emp-architect__text{
		position: absolute;
		top: 140px;
		right: max(var(--gutter) / 2, (100% - 1170px) / 2);
		width: 470px;
		padding: 0;
	}

	.emp-architect__name{
		font-size: var(--title-2);
		line-height: var(--title-2-lh);
		margin-bottom: 30px;
		max-width: 369px;
	}

	.emp-architect--alt .emp-architect__name{
		margin-bottom: 16px;
	}

	.emp-architect__role{
		margin-bottom: 30px;
	}

	.emp-architect__description{
		max-width: 470px;
		margin-left: 0;
		line-height: 32px;
	}

	.emp-architect--alt{
		background-color: var(--offwhite);
		padding: 70px 0;
		overflow: hidden;
		min-height: 871px;
	}

	.emp-architect--alt::before{
		content: '';
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 100px);
		right: 0;
		top: 70px;
		height: 649px;
		background-color: var(--verde-claro);
		z-index: 0;
	}

	.emp-architect--alt .emp-architect__photo{
		position: absolute;
		right: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 100px);
		top: 0;
		width: 470px;
		height: 649px;
		z-index: 1;
		margin-top: 0;
	}

	.emp-architect--alt .emp-architect__text{
		position: relative;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 200px);
		width: 470px;
		padding: 107px 0 40px;
		z-index: 1;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — PLANTAS
   ======================================== */
.emp-plantas{
	background-color: var(--verde);
	color: var(--white);
	padding: 40px 0 40px;
}

.emp-plantas__container{
	padding: 0 24px;
}

.emp-plantas__label{
	display: none;
}

.emp-plantas__tabs{
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.emp-plantas__tab{
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	cursor: pointer;
	font-family: "dazzle-unicase", sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 20px;
	text-align: center;
	color: var(--verde-claro);
	padding: 0;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.emp-plantas__tab--active{
	color: var(--white);
}

.emp-plantas__tab:focus{
	outline: none;
}

.emp-plantas__tab:focus-visible{
	outline: 2px dotted var(--verde-claro);
	outline-offset: 4px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.emp-plantas__panels{
	position: relative;
	width: 100%;
}

.emp-plantas__panel-wrapper:not(.emp-plantas__panel-wrapper--active){
	display: none;
}

.emp-plantas__panel-wrapper{
	display: flex;
	flex-direction: column;
}

.emp-plantas__panel{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.emp-plantas__floor-selector{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	justify-content: center;
}

.emp-plantas__floor-btn{
	appearance: none;
	font-family: var(--font-body, "stolzl", sans-serif);
	font-weight: 400;
	font-size: 0.625rem;
	line-height: 12px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 20px;
	padding: 6px 12px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.emp-plantas__floor-btn--active{
	background: var(--verde-claro);
	border: 1px solid var(--verde-claro);
	color: var(--white);
}

.emp-plantas__floor-btn:not(.emp-plantas__floor-btn--active){
	background: transparent;
	border: 1px solid var(--verde-claro);
	color: inherit;
}

.emp-plantas__floor-btn:focus-visible{
	outline: 2px solid var(--verde-claro);
	outline-offset: 2px;
}

.emp-plantas__floor-content:not(.emp-plantas__floor-content--active){
	display: none;
}

.emp-plantas__plan-image{
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.emp-plantas__plan-image img{
	max-width: 100%;
	max-height: 500px;
	object-fit: contain;
}

.emp-plantas__specs{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.emp-plantas__area{
	font-weight: 500;
	font-size: 1.3125rem;
	line-height: 30px;
	color: inherit;
}

.emp-plantas__features{
	list-style: disc;
	padding-left: 24px;
	margin: 0;
	font-size: 1rem;
	line-height: 23px;
}

.emp-plantas__disclaimer{
	font-size: 0.625rem;
	line-height: 15px;
	color: inherit;
	opacity: 0.6;
	margin-top: 8px;
}

@media (max-width: 991px){
	.emp-plantas__panel{
		display: contents;
	}

	.emp-plantas__floor-content.emp-plantas__floor-content--active{
		display: contents;
	}

	.emp-plantas__floor-content:not(.emp-plantas__floor-content--active){
		display: none;
	}

	.emp-plantas__plan-image{
		order: 1;
		margin-bottom: 16px;
	}

	.emp-plantas__floor-selector{
		order: 2;
		margin-top: 8px;
		margin-bottom: 16px;
	}

	.emp-plantas__specs{
		order: 3;
	}
}

@media (min-width: 992px){
	.emp-plantas{
		padding: 70px 0 100px;
		min-height: 960px;
	}

	.emp-plantas__container{
		max-width: 1170px;
		margin: 0 auto;
		padding: 0;
		display: grid;
		grid-template-columns: 270px 1fr;
		grid-template-rows: auto auto;
		gap: 0 48px;
	}

	.emp-plantas__label{
		display: block;
		font-weight: 500;
		font-size: 1.125rem;
		line-height: 32px;
		color: var(--white);
		text-transform: uppercase;
		grid-column: 1;
		grid-row: 1;
		margin-bottom: 111px;
	}

	.emp-plantas__tabs{
		flex-direction: column;
		gap: 44px;
		grid-column: 1;
		grid-row: 2;
		align-self: start;
		overflow-x: visible;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.emp-plantas__tab{
		border: none;
		border-radius: 0;
		font-size: 1.875rem;
		line-height: 40px;
		text-align: left;
		padding: 0;
		white-space: normal;
		color: var(--verde-claro);
	}

	.emp-plantas__tab--active{
		color: var(--white);
	}

	.emp-plantas__panels{
		grid-column: 2;
		grid-row: 2;
	}

	.emp-plantas__panel-wrapper{
		display: flex;
		flex-direction: column;
	}

	.emp-plantas__panel{
		display: flex;
		flex-direction: column;
		gap: 16px;
		background: var(--cinza);
		border-radius: 0;
		padding: 86px 24px 24px 100px;
		position: relative;
		overflow: visible;
		width: 870px;
		min-height: 434px;
		color: var(--verde);
		margin-left: 82px;
		margin-top: 9px;
	}

	.emp-plantas__floor-content{
		display: grid;
		grid-template-columns: 250px 1fr;
		gap: 16px 24px;
	}

	.emp-plantas__floor-content:not(.emp-plantas__floor-content--active){
		display: none;
	}

	.emp-plantas__specs{
		grid-column: 1;
		grid-row: 1;
		align-self: start;
	}

	.emp-plantas__floor-selector{
		align-self: start;
		justify-content: flex-start;
		margin-top: 24px;
		margin-left: 0;
	}

	.emp-plantas__floor-btn{
		padding: 8px 16px;
	}

	.emp-plantas__plan-image{
		position: absolute;
		top: 40px;
		right: -108px;
		width: 610px;
		height: 546px;
	}

	.emp-plantas__plan-image img{
		max-height: 546px;
	}

	.emp-plantas__area{
		font-size: 1.5rem;
		line-height: 26px;
	}

	.emp-plantas__features{
		padding-left: 27px;
		font-size: 1.125rem;
		line-height: 22px;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — GALLERY
   ======================================== */
.emp-gallery{
	background-color: var(--verde);
	padding: 20px 0 35px;
}

.emp-gallery__label{
	display: block;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 16px;
}

.emp-gallery__carousel{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 24px;
}

.emp-gallery__slide{
	position: relative;
}

.emp-gallery__trigger{
	appearance: none;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: block;
	width: 100%;
	position: relative;
}

.emp-gallery__trigger img{
	display: block;
	width: 100%;
	height: 240px !important;
	object-fit: cover;
}

.emp-gallery__shadow{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 140px;
	height: 80px;
	mix-blend-mode: multiply;
	background-image: linear-gradient(149deg, rgba(255,255,255,0.5) 57%, rgba(0,0,0,0.5) 101%);
	pointer-events: none;
}

.emp-gallery__caption{
	position: absolute;
	bottom: 10px;
	right: 15px;
	color: var(--white);
	font-size: 1rem;
	line-height: normal;
	text-align: right;
	z-index: 1;
}

.emp-gallery__pagination.swiper-pagination-progressbar{
	margin-top: 24px;
	height: 6px;
	background: rgba(255,255,255,0.2);
	border-radius: 3px;
	position: relative;
}

.emp-gallery__pagination .swiper-pagination-progressbar-fill{
	background: var(--white);
	border-radius: 3px;
}

@media (min-width: 600px){
	.emp-gallery__trigger img{
		height: 400px !important;
	}

	.emp-gallery__carousel{
		min-height: 400px;
	}
}

@media (min-width: 992px){
	.emp-gallery{
		padding: 90px 0 60px;
		overflow: clip;
		min-height: 900px;
	}

	.emp-gallery__carousel{
		overflow: visible;
		padding: 0;
		min-height: 600px;
	}

	.emp-gallery__label{
		display: block;
		font-weight: 500;
		font-size: 1.125rem;
		line-height: 32px;
		text-transform: uppercase;
		color: var(--white);
		margin-bottom: 35px;
	}

	.emp-gallery__carousel .swiper-slide{
		width: 970px;
	}

	.emp-gallery__trigger img{
		height: 600px !important;
	}

	.emp-gallery__shadow{
		width: 350px;
		height: 200px;
	}

	.emp-gallery__caption{
		bottom: 30px;
		right: 20px;
	}

	.emp-gallery__pagination{
		max-width: 770px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Gallery Modal */
.emp-gallery__modal{
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border: none;
	background-color: rgba(0,0,0,0.9);
	z-index: 200;
	padding: 0;
	margin: 0;
}

.emp-gallery__modal::backdrop{
	background-color: rgba(0,0,0,0.9);
}

.emp-gallery__modal-inner{
	position: relative;
	width: 100%;
	height: 100%;
}

.emp-gallery__modal-close{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 210;
	appearance: none;
	border: none;
	background: none;
	color: var(--white);
	cursor: pointer;
	padding: 8px;
}

.emp-gallery__modal-swiper{
	height: 100%;
}

.emp-gallery__modal-swiper .swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
}

.emp-gallery__modal-swiper .swiper-slide img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.emp-gallery__modal-prev,
.emp-gallery__modal-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 210;
	color: var(--white);
	cursor: pointer;
	padding: 16px;
	appearance: none;
	background: none;
	border: none;
}

.emp-gallery__modal-prev{
	left: 8px;
}

.emp-gallery__modal-next{
	right: 8px;
}

.emp-gallery__modal-close:focus-visible,
.emp-gallery__modal-prev:focus-visible,
.emp-gallery__modal-next:focus-visible{
	outline: 2px solid var(--white);
	outline-offset: 4px;
}

@media (min-width: 992px){
	.emp-gallery__modal-prev{
		left: 24px;
	}

	.emp-gallery__modal-next{
		right: 24px;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — DIFERENCIAIS
   ======================================== */
.emp-diferenciais{
	background-color: var(--cinza);
	padding: 80px 24px 50px;
	overflow: clip;
}

.emp-diferenciais__title{
	font-size: var(--title-1);
	line-height: var(--title-1-lh);
	text-align: left;
	margin-bottom: 75px;
	color: var(--azul);
}

.emp-diferenciais__grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 16px;
}

.emp-diferenciais__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.emp-diferenciais__icon{
	width: 65px;
	height: 65px;
	flex-shrink: 0;
}

.emp-diferenciais__icon svg,
.emp-diferenciais__icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.emp-diferenciais__label{
	font-size: 1rem;
	line-height: 23px;
	margin: 0;
	color: var(--verde);
}

@media (min-width: 992px){
	.emp-diferenciais{
		padding: 70px 0 70px;
	}

	.emp-diferenciais__container{
		max-width: 1170px;
		margin: 0 auto;
	}

	.emp-diferenciais__title{
		font-size: var(--title-2);
		line-height: var(--title-2-lh);
		margin-bottom: 63px;
	}

	.emp-diferenciais__grid{
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 48px 24px;
		justify-items: center;
	}

	.emp-diferenciais__item{
		gap: 18px;
		max-width: 200px;
	}

	.emp-diferenciais__icon{
		width: 140px;
		height: 140px;
	}

	.emp-diferenciais__label{
		font-size: 1.25rem;
		line-height: 30px;
	}
}





/* ========================================
   SINGLE EMPREENDIMENTO — MOBILE ONLY (max-width: 767px)
   ======================================== */
@media (max-width: 767px){
	/* Hero emblem: Figma places it at ~48% from hero top, not centered */
	.emp-hero__emblem{
		top: 48%;
	}

	/* Gallery: In Figma mobile, the gallery is part of the plantas section
	   with no separate label. Hide label and reduce padding so the combined
	   plantas + gallery height matches the Figma combined section. */
	.emp-gallery{
		padding: 0 0 16px;
	}

	.emp-gallery__label{
		display: block;
		padding-left: 24px;
	}

	.emp-gallery__pagination.swiper-pagination-progressbar{
		margin-top: 12px;
	}

	/* Plantas: slightly increase bottom padding to fill gap from Figma combined section */
	.emp-plantas{
		padding-bottom: 48px;
	}
}



/* ========================================
   SINGLE EMPREENDIMENTO — TABLET (768-991)
   ======================================== */
@media (min-width: 768px) and (max-width: 991px){
	/* About — two-column layout */
	.emp-about{
		padding: 70px 40px 50px;
	}

	.emp-about__container{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px 40px;
	}

	.emp-about__title{
		grid-column: 1;
		grid-row: 1;
		align-self: start;
	}

	.emp-about__content{
		grid-column: 2;
		grid-row: 1;
		align-self: start;
	}

	.emp-about__cta{
		align-self: flex-start;
		margin-left: 0;
	}

	.emp-about__features{
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px 32px;
	}

	.emp-about__map{
		aspect-ratio: 16/9;
	}

	/* Architects — proportional photos */
	.emp-architect__photo{
		max-height: 500px;
	}

	.emp-architect:nth-child(odd) .emp-architect__photo{
		aspect-ratio: 768/445;
	}

	.emp-architect__text{
		padding: 42px 40px 60px;
	}

	.emp-architect__name{
		font-size: clamp(1.625rem, 4vw, 2.25rem);
	}

	/* Plantas */
	.emp-plantas{
		padding: 40px 0 40px;
	}

	.emp-plantas__container{
		padding: 0 40px;
	}

	.emp-plantas__plan-image img{
		max-height: 400px;
	}

	/* Gallery */
	.emp-gallery{
		padding: 30px 0 35px;
	}

	.emp-gallery__trigger img{
		height: 350px !important;
	}

	/* Diferenciais — 3 columns */
	.emp-diferenciais{
		padding: 60px 40px 50px;
	}

	.emp-diferenciais__title{
		margin-bottom: 50px;
	}

	.emp-diferenciais__grid{
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 24px;
	}

	.emp-diferenciais__icon{
		width: 80px;
		height: 80px;
	}
}


/* ========================================
   SINGLE EMPREENDIMENTO — NARROW DESKTOP (992-1199)
   ======================================== */
@media (min-width: 992px) and (max-width: 1199px){
	/* About — two-column grid similar to desktop but constrained */
	.emp-about{
		padding: 90px 40px 70px;
		overflow: clip;
	}

	.emp-about__container{
		max-width: 960px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 0 60px;
	}

	.emp-about__title{
		grid-column: 1;
		grid-row: 1 / 3;
		max-width: none;
		font-size: clamp(2rem, 3.5vw, 2.5rem);
	}

	.emp-about__content{
		grid-column: 2;
		grid-row: 1;
		align-self: start;
	}

	.emp-about__cta{
		align-self: flex-start;
	}

	.emp-about__features{
		grid-column: 2;
		grid-row: 2;
		margin-top: 30px;
	}

	.emp-about__map{
		margin-left: auto;
		margin-right: auto;
		max-width: 700px;
		aspect-ratio: 667/360;
	}

	/* Plantas — scale panel and image to fit viewport */
	.emp-plantas__container{
		max-width: 100%;
		padding: 0 40px;
		grid-template-columns: 200px 1fr;
		gap: 0 32px;
	}

	.emp-plantas__label{
		margin-bottom: 60px;
	}

	.emp-plantas__tab{
		font-size: 1.5rem;
		line-height: 34px;
	}

	.emp-plantas__tabs{
		gap: 32px;
	}

	.emp-plantas__panel{
		width: 100%;
		margin-left: 0;
		padding: 60px 24px 24px 40px;
		overflow: hidden;
	}

	.emp-plantas__floor-selector{
		margin-top: 24px;
		margin-left: 0;
	}

	.emp-plantas__floor-content{
		grid-template-columns: 200px 1fr;
	}

	.emp-plantas__plan-image{
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		height: auto;
		max-height: 420px;
		grid-column: 2;
		grid-row: 1 / 3;
	}

	.emp-plantas__plan-image img{
		max-height: 420px;
	}

	.emp-gallery__carousel .swiper-slide{
		width: 700px;
	}

	.emp-gallery__trigger img{
		height: 450px !important;
	}

	.emp-gallery__carousel{
		padding-left: calc(max(var(--gutter) / 2, (100% - 960px) / 2) + 60px);
		min-height: 450px;
	}

	.emp-gallery{
		min-height: 700px;
	}

	.emp-diferenciais__container{
		max-width: 960px;
	}

	.emp-diferenciais__icon{
		width: 100px;
		height: 100px;
	}

	.emp-diferenciais__title{
		margin-bottom: 50px;
	}

	.emp-architect:nth-child(odd) .emp-architect__text,
	.emp-architect--alt .emp-architect__text{
		width: 350px;
	}
}



/* ========================================
   SOBRE — CONTENT BLOCKS
   ======================================== */
.sobre-blocks{
	overflow: hidden;
}

.sobre-block-deco{
	display: none;
}

@media (min-width: 992px){
	.sobre-block:nth-child(2){
		position: relative;
		overflow: visible;
	}

	.sobre-block:nth-child(2) .sobre-block-deco{
		display: block;
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 868px);
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none;
		z-index: 0;
	}

	.sobre-block-inner{
		position: relative;
		z-index: 1;
	}

	.sobre-block-deco svg{
		width: 977px;
		height: 989px;
		color: var(--laranja);
	}
}

.sobre-block{
	padding: 30px 0;
}

.sobre-block-inner{
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.sobre-block-image img,
.sobre-block-image svg{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sobre-block-accent{
	display: block;
	font-family: "stolzl", sans-serif;
	font-weight: 500;
	font-size: 1.125rem;
	color: var(--laranja);
	margin-bottom: 9px;
	line-height: 23px;
}

.sobre-block-text h2{
	margin-bottom: 13px;
}

.sobre-block-description p{
	margin-bottom: 9px;
}

/* Sobre mobile — Figma-matched layout */
@media (max-width: 991px){
	.sobre-block{
		padding: 0;
	}

	.sobre-block-description p{
		font-size: 16px;
		line-height: 23px;
	}

	.sobre-block-accent{
		font-size: 18px;
		line-height: 23px;
	}

	.sobre-block-text h2{
		line-height: 37px;
	}

	.sobre-block-inner{
		gap: 0;
		padding: 0;
		width: 100%;
		max-width: 100%;
	}

	/* Remove container centering on mobile sobre */
	.sobre-block .container{
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0;
	}

	/* Block 1: title at y:214 (134px from content), text at y:373 (293px from content) */
	/* Block 1 total height: 711px */
	.sobre-block:nth-child(1){
		padding-top: 134px;
		min-height: 711px;
	}

	.sobre-block:nth-child(1) .sobre-block-inner{
		padding: 0;
	}

	.sobre-block:nth-child(1) .sobre-block-text{
		order: -1;
	}

	.sobre-block:nth-child(1) .sobre-block-text h2{
		padding-left: 120px;
		max-width: calc(253px + 120px);
		margin-bottom: 48px;
	}

	.sobre-block:nth-child(1) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(1) .sobre-block-text .sobre-block-description{
		padding-left: 25px;
		max-width: calc(270px + 25px);
	}

	.sobre-block:nth-child(1) .sobre-block-image{
		display: none;
	}

	/* Block 2: image at (120, 791), w:295, h:333 */
	/* Text at (24, 1173), w:270, h:478 */
	/* Block 2 total height: 936px */
	.sobre-block:nth-child(2){
		padding-top: 0;
		min-height: 936px;
	}

	.sobre-block:nth-child(2) .sobre-block-inner{
		gap: 49px;
	}

	.sobre-block:nth-child(2) .sobre-block-image{
		margin-left: 120px;
		width: 295px;
		height: 333px;
		overflow: hidden;
		flex-shrink: 0;
	}

	.sobre-block:nth-child(2) .sobre-block-text{
		padding: 0;
	}

	.sobre-block:nth-child(2) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(2) .sobre-block-text .sobre-block-description{
		padding-left: 24px;
		max-width: calc(270px + 24px);
	}

	/* Block 3: image at (0, 1727), w:295, h:418 */
	/* Text at (121, 2302), w:269, h:206 */
	/* Block 3 total height: 795px */
	.sobre-block:nth-child(3){
		padding-top: 0;
		min-height: 795px;
	}

	.sobre-block:nth-child(3) .sobre-block-inner{
		gap: 54px;
	}

	.sobre-block:nth-child(3) .sobre-block-image{
		width: 295px;
		height: 418px;
		overflow: hidden;
		margin-left: 0;
		flex-shrink: 0;
	}

	.sobre-block:nth-child(3) .sobre-block-text{
		padding: 0;
	}

	.sobre-block:nth-child(3) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(3) .sobre-block-text .sobre-block-description{
		padding-left: 121px;
		max-width: calc(269px + 121px);
	}
}

/* Sobre tablet — proportional layout for 768–991px */
@media (min-width: 768px) and (max-width: 991px){
	.sobre-block{
		padding: 0;
	}

	.sobre-block .container{
		width: 100%;
		max-width: 100%;
		padding: 0 30px;
		margin: 0;
	}

	.sobre-block-inner{
		flex-direction: row;
		align-items: stretch;
		gap: 30px;
		padding: 0;
		width: 100%;
		max-width: 100%;
	}

	/* Block 1: image-left, side-by-side */
	.sobre-block:nth-child(1){
		padding-top: 50px;
		min-height: auto;
	}

	.sobre-block:nth-child(1) .sobre-block-inner{
		padding: 0;
	}

	.sobre-block:nth-child(1) .sobre-block-text{
		order: 0;
		flex: 1;
		padding-top: 60px;
	}

	.sobre-block:nth-child(1) .sobre-block-text h2{
		padding-left: 0;
		max-width: none;
		margin-bottom: 20px;
	}

	.sobre-block:nth-child(1) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(1) .sobre-block-text .sobre-block-description{
		padding-left: 0;
		max-width: none;
	}

	.sobre-block:nth-child(1) .sobre-block-image{
		display: block;
		flex: 0 0 42%;
		height: 500px;
		overflow: hidden;
	}

	.sobre-block--image-left .sobre-block-image{
		order: -1;
	}

	.sobre-block--image-right .sobre-block-image{
		order: 1;
	}

	/* Block 2: image-right, side-by-side */
	.sobre-block:nth-child(2){
		padding-top: 0;
		min-height: auto;
	}

	.sobre-block:nth-child(2) .sobre-block-inner{
		gap: 30px;
	}

	.sobre-block:nth-child(2) .sobre-block-image{
		margin-left: 0;
		width: auto;
		height: 400px;
		overflow: hidden;
		flex: 0 0 42%;
	}

	.sobre-block:nth-child(2) .sobre-block-text{
		flex: 1;
		padding: 40px 0 0;
	}

	.sobre-block:nth-child(2) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(2) .sobre-block-text .sobre-block-description{
		padding-left: 0;
		max-width: none;
	}

	/* Block 3: image-left, side-by-side */
	.sobre-block:nth-child(3){
		padding-top: 0;
		min-height: auto;
		margin-top: 20px;
	}

	.sobre-block:nth-child(3) .sobre-block-inner{
		gap: 30px;
	}

	.sobre-block:nth-child(3) .sobre-block-image{
		width: auto;
		height: 350px;
		overflow: hidden;
		margin-left: 0;
		flex: 0 0 42%;
	}

	.sobre-block:nth-child(3) .sobre-block-text{
		flex: 1;
		padding: 40px 0 0;
	}

	.sobre-block:nth-child(3) .sobre-block-text .sobre-block-accent,
	.sobre-block:nth-child(3) .sobre-block-text .sobre-block-description{
		padding-left: 0;
		max-width: none;
	}

	.sobre-block-text{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.sobre-block-accent{
		font-size: 1.25rem;
		line-height: 1.4;
	}

	/* Destaque section tablet */
	.sobre-destaque{
		padding: 60px 0 50px;
		min-height: auto;
	}

	.sobre-destaque-inner{
		align-items: center;
		text-align: center;
		gap: 25px;
	}

	.sobre-destaque-title{
		max-width: none;
		margin-left: 0;
	}

	.sobre-destaque-image{
		width: 100%;
		max-width: 650px;
		margin-top: 20px;
	}

	.sobre-destaque-image img{
		aspect-ratio: 706/362;
	}

	.sobre-destaque-card{
		max-width: 650px;
		padding: 0;
		justify-content: space-between;
		align-items: center;
	}
}

@media (min-width: 992px){
	.sobre-block-inner{
		flex-direction: row;
		align-items: stretch;
	}

	.sobre-block--image-left .sobre-block-image{
		order: -1;
	}

	.sobre-block--image-right .sobre-block-image{
		order: 1;
	}

	.sobre-block-image{
		flex: 0 0 42%;
	}

	.sobre-block-text{
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 135px;
		padding-bottom: 40px;
	}

	.sobre-block-accent{
		font-size: 1.375rem;
		line-height: 1.4545;
	}

	.sobre-block-description{
		line-height: 32px;
	}

	.sobre-block--image-left .sobre-block-text{
		padding-left: 60px;
	}

	.sobre-block--image-right .sobre-block-text{
		padding-right: 100px;
	}

	.sobre-block--image-right .sobre-block-accent,
	.sobre-block--image-right .sobre-block-description{
		max-width: 518px;
	}

	.sobre-block--image-left .sobre-block-text h2{
		max-width: 590px;
	}

	.sobre-block--image-left .sobre-block-accent{
		max-width: 582px;
	}

	.sobre-block--image-left .sobre-block-description{
		max-width: 598px;
	}

	.sobre-block{
		overflow: hidden;
		padding: 0;
	}

	.sobre-block:first-child{
		padding-top: 78px;
	}

	.sobre-block:nth-child(1) .sobre-block-image{
		height: 766px;
		overflow: hidden;
	}

	.sobre-block:nth-child(2) .sobre-block-text{
		padding-top: 78px;
	}

	.sobre-block:nth-child(2) .sobre-block-image{
		height: 574px;
		overflow: hidden;
	}

	.sobre-block:nth-child(3){
		margin-top: 38px;
		padding-bottom: 0;
	}

	.sobre-block:nth-child(3) .sobre-block-text{
		padding-top: 128px;
	}

	.sobre-block:nth-child(3) .sobre-block-image{
		height: 418px;
		overflow: hidden;
	}

	.sobre-block--image-left .sobre-block-image{
		margin-left: -128px;
		flex: 0 0 498px;
	}

	.sobre-block--image-right .sobre-block-image{
		margin-right: -100px;
		flex: 0 0 570px;
	}
}



/* ========================================
   SOBRE — DESTAQUE
   ======================================== */
.sobre-destaque{
	background-color: var(--laranja);
	color: var(--azul);
	padding: var(--section-padding) 0;
	min-height: 695px;
}

.sobre-destaque-inner{
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	text-align: center;
}

.sobre-destaque-title{
	margin-bottom: 0;
}

.sobre-destaque-image{
	position: relative;
	max-width: 706px;
	width: 100%;
}

.sobre-destaque-image img{
	width: 100%;
	aspect-ratio: 706/362;
	object-fit: cover;
}

.sobre-destaque-image::after{
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.25);
	pointer-events: none;
}

.sobre-destaque-logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 300px;
	width: 60%;
	z-index: 1;
}

.sobre-destaque-logo svg,
.sobre-destaque-logo img{
	width: 100%;
	height: auto;
}

.sobre-destaque-card{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	max-width: 706px;
}

/* Sobre destaque mobile — Figma-matched */
@media (max-width: 991px){
	.sobre-destaque{
		padding: 78px 0 60px;
		min-height: 695px;
	}

	.sobre-destaque-inner{
		align-items: flex-start;
		text-align: left;
		gap: 21px;
	}

	.sobre-destaque-title{
		max-width: 260px;
		margin-left: calc(50% - 182.5px);
	}

	.sobre-destaque-image{
		width: 647px;
		max-width: none;
		align-self: center;
		margin-top: 42px;
	}

	.sobre-destaque-image img{
		width: 100%;
		aspect-ratio: 647/330;
		object-fit: cover;
	}

	.sobre-destaque-card{
		max-width: 100%;
		padding: 0 25px;
		justify-content: space-between;
		align-items: center;
	}

	.sobre-destaque-emp-name{
		font-family: "stolzl", sans-serif;
		font-weight: 400;
		font-size: 1.125rem;
		text-transform: uppercase;
		line-height: 32px;
		color: var(--azul);
	}

	.sobre-destaque-card .btn{
		padding: 14.5px 30px;
	}

	.sobre-destaque-logo{
		display: none;
	}
}

@media (max-width: 767px){
	.sobre-destaque-card{
		max-width: none;
		width: calc(100% + var(--gutter));
		margin-left: calc(var(--gutter) / -2);
	}
}

.sobre-destaque-emp-name{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	text-transform: uppercase;
	line-height: 26px;
}

@media (min-width: 992px){
	.sobre-destaque-card{
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 991px){
	.sobre-destaque-emp-name{
		display: block;
		line-height: 32px;
	}
}



/* ========================================
   CONTATO
   ======================================== */
.contato{
	margin-top: calc(var(--header-height) * -1);
}

.contato-inner{
	display: flex;
	flex-direction: column;
}

.contato-left{
	background-color: var(--laranja);
	color: var(--white);
	padding: 137px 0;
	padding-top: calc(var(--header-height) + 155px);
	position: relative;
	overflow: visible;
}

.contato-left::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background-color: var(--cinza);
	z-index: 0;
}

.contato-left-content{
	padding: 0 20px 0 0;
	max-width: 600px;
	position: relative;
	z-index: 1;
	margin-left: 29%;
}

.contato-left-content h1{
	margin-bottom: 6px;
	color: var(--white);
}

.contato-description{
	font-size: 1rem;
	line-height: 23px;
	color: var(--white);
}

.contato-description p{
	margin: 0;
}

.contato-left-image{
	position: absolute;
	left: -13%;
	top: 189px;
	width: 30%;
	height: 357px;
	z-index: 0;
}

@media (min-width: 600px) and (max-width: 991px){
	.contato-left{
		overflow: hidden;
	}

	.contato-left-image{
		width: 40%;
		bottom: 0;
		height: auto;
	}

	.contato-left-content{
		margin-left: 42%;
	}
}

.contato-left-image img,
.contato-left-image svg{
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.contato-right{
	background-color: var(--cinza);
	padding: 104px 0 63px;
}

.contato-form-wrapper{
	padding: 0 calc(var(--gutter) / 2);
	max-width: 600px;
	margin: 0 auto;
}

/* CF7 form styling */
.contato-form-wrapper .wpcf7-form{
	/* Reset CF7 defaults */
}

.contato-form-wrapper .wpcf7-form .hidden-fields-container{
	display: none;
}

.contato-form-wrapper .wpcf7-form p{
	margin: 0;
}

.contato-form-wrapper .wpcf7-form .wpcf7-form-control-wrap{
	display: block;
}

.contato-form-wrapper .wpcf7-form .wpcf7-response-output{
	margin: 0;
	padding: 0;
	border: 0;
}

.contato-form-wrapper .wpcf7-form .wpcf7-response-output[style]{
	margin-top: 10px;
}

.contato-form-wrapper .wpcf7-form label{
	display: block;
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	text-transform: none;
	letter-spacing: 0;
	margin-bottom: 0;
	color: #2B2B2B;
}

.contato-form-wrapper .wpcf7-form input[type="text"],
.contato-form-wrapper .wpcf7-form input[type="email"],
.contato-form-wrapper .wpcf7-form input[type="tel"],
.contato-form-wrapper .wpcf7-form textarea{
	display: block;
	width: 100%;
	height: 60px;
	padding: 14px 30px;
	border: 1px solid var(--primary);
	border-radius: 77px;
	background-color: transparent;
	font-family: "stolzl", sans-serif;
	font-size: 1rem;
	color: #2B2B2B;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.contato-form-wrapper .wpcf7-form > p,
.contato-form-wrapper .wpcf7-form > .contato-form-row{
	margin-bottom: 22px;
}

.contato-form-wrapper .wpcf7-form .contato-form-row > p{
	margin-bottom: 0;
}

.contato-form-wrapper .wpcf7-form input:focus,
.contato-form-wrapper .wpcf7-form textarea:focus{
	border-color: var(--laranja);
	outline: none;
}

.contato-form-wrapper .wpcf7-form textarea{
	height: 110px;
	resize: vertical;
	border-radius: 25px;
	padding: 18px 24px;
}

.contato-form-bottom{
	display: flex;
	flex-direction: column;
	padding-top: 7px;
}

.contato-form-checks > p{
	margin: 0;
}

.contato-form-checks > p > br{
	display: none;
}

.contato-form-wrapper .wpcf7-form p.contato-form-submit,
.contato-form-submit{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 48px;
}

.contato-form-wrapper .wpcf7-form input[type="submit"]{
	display: inline-block;
	appearance: none;
	border: 2px solid var(--primary);
	border-radius: 40px;
	text-align: center;
	font-family: "stolzl", sans-serif;
	font-weight: 500;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0;
	padding: 0 30px;
	width: 175px;
	height: 61px;
	line-height: 57px;
	background-color: transparent;
	color: var(--primary);
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: color, background-color, border-color;
}

.contato-form-wrapper .wpcf7-form input[type="submit"]:hover{
	background-color: var(--primary);
	color: var(--white);
}


.contato-form-wrapper .wpcf7-form .wpcf7-list-item{
	margin-left: 0;
	display: block;
}

.contato-form-wrapper .wpcf7-form .wpcf7-acceptance{
	display: block;
	margin-bottom: 13px;
}

.contato-form-wrapper .wpcf7-form .wpcf7-form-control-wrap:last-child .wpcf7-acceptance{
	margin-bottom: 0;
}

.contato-form-wrapper .wpcf7-form .wpcf7-acceptance label{
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.contato-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label{
	font-family: "stolzl", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	text-transform: none;
	letter-spacing: 0;
	color: #2B2B2B;
	line-height: 23px;
}

.contato-form-wrapper .wpcf7-form input[type="checkbox"]{
	appearance: none;
	width: 28px;
	height: 28px;
	border: 1px solid #2B2B2B;
	border-radius: 165px;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
}

.contato-form-wrapper .wpcf7-form input[type="checkbox"]:checked{
	background-color: var(--primary);
	border-color: var(--primary);
}

.contato-form-wrapper .wpcf7-form input[type="checkbox"]:checked::after{
	content: '';
	position: absolute;
	top: 4px;
	left: 8px;
	width: 6px;
	height: 11px;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.contato-form-row{
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* Fallback form selectors removed — CF7 is the primary form */

@media (min-width: 992px){
	.contato-inner{
		flex-direction: row;
	}

	.contato-left{
		flex: 0 0 calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 300px);
		padding-top: calc(var(--header-height) + 255px);
		padding-bottom: 351px;
		overflow: visible;
	}

	.contato-left::before{
		/* keep the cinza band visible over the orange panel behind the header */
	}

	.contato-left-content{
		margin-left: calc(100% - 300px);
		max-width: 270px;
		position: relative;
		z-index: 2;
	}

	.contato-left-image{
		position: absolute;
		left: calc(100% - 230px);
		right: auto;
		top: calc(var(--header-height) + 140px);
		transform: none;
		width: 330px;
		height: auto;
		aspect-ratio: 330 / 579;
		bottom: auto;
		margin-top: 0;
	}

	.contato-left-image img,
	.contato-left-image svg{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.contato-left-content h1{
		font-size: var(--title-3);
		line-height: var(--title-3-lh);
		margin-bottom: 45px;
	}

	.contato-description{
		font-size: 1.125rem;
		line-height: 32px;
	}

	.contato-form-row{
		flex-direction: row;
		gap: 30px;
	}

	.contato-form-row > p{
		flex: 1;
	}

	.contato-right{
		flex: 1;
		display: flex;
		align-items: flex-start;
		padding-top: calc(var(--header-height) + 255px);
		padding-right: max(calc(var(--gutter) / 2), calc((100% - 1170px) / 2));
		padding-bottom: 242px;
		padding-left: 199px;
	}

	.contato-form-wrapper{
		max-width: 670px;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	.contato-form-wrapper .wpcf7-form input[type="text"],
	.contato-form-wrapper .wpcf7-form input[type="email"],
	.contato-form-wrapper .wpcf7-form input[type="tel"],
	.contato-form-wrapper .wpcf7-form textarea{
		height: 50px;
		border-radius: 25px;
		font-size: 1.125rem;
		padding: 10px 24px;
	}

	.contato-form-wrapper .wpcf7-form > p,
	.contato-form-wrapper .wpcf7-form > .contato-form-row{
		margin-bottom: 30px;
	}

	.contato-form-wrapper .wpcf7-form textarea{
		height: 110px;
		border-radius: 25px;
		padding: 14px 24px;
	}

	.contato-form-wrapper .wpcf7-form input[type="checkbox"]{
		width: 20px;
		height: 20px;
		border-radius: 10px;
	}

	.contato-form-wrapper .wpcf7-form input[type="checkbox"]:checked::after{
		top: 2px;
		left: 5px;
		width: 5px;
		height: 9px;
	}

	.contato-form-wrapper .wpcf7-form .wpcf7-acceptance{
		margin-bottom: 10px;
	}

	.contato-form-wrapper .wpcf7-form .wpcf7-acceptance label{
		gap: 10px;
	}

	.contato-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label{
		font-size: 1.125rem;
		line-height: 26px;
	}

	.contato-form-bottom{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 0;
		padding-top: 0;
	}

	.contato-form-wrapper .wpcf7-form p.contato-form-submit,
	.contato-form-submit{
		text-align: right;
		margin-top: 0;
	}

	.contato-form-wrapper .wpcf7-form input[type="submit"]{
		height: 50px;
		line-height: 46px;
		width: auto;
	}
}

/* Contato – tablet adjustments (992-1199px) */
@media (min-width: 992px) and (max-width: 1199px){
	.contato-left{
		flex: 0 0 calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 250px);
	}

	.contato-left-content{
		margin-left: calc(100% - 250px);
		max-width: 230px;
	}

	.contato-left-content h1{
		font-size: 1.5rem;
		line-height: 133%;
		margin-bottom: 24px;
	}

	.contato-description{
		font-size: 1rem;
		line-height: 26px;
	}

	.contato-left-image{
		left: calc(100% - 190px);
		width: 280px;
		aspect-ratio: 280 / 490;
	}

	.contato-right{
		padding-top: calc(var(--header-height) + 180px);
		padding-left: 120px;
		padding-bottom: 180px;
	}

	.contato-form-wrapper .wpcf7-form input[type="text"],
	.contato-form-wrapper .wpcf7-form input[type="email"],
	.contato-form-wrapper .wpcf7-form input[type="tel"],
	.contato-form-wrapper .wpcf7-form textarea{
		font-size: 1rem;
	}

	.contato-form-wrapper .wpcf7-form > p,
	.contato-form-wrapper .wpcf7-form > .contato-form-row{
		margin-bottom: 20px;
	}

	.contato-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label{
		font-size: 0.875rem;
		line-height: 22px;
	}
}

/* Contato – small tablet adjustments (768-991px) */
@media (min-width: 768px) and (max-width: 991px){
	.contato-left{
		padding-top: calc(var(--header-height) + 120px);
		padding-bottom: 100px;
	}

	.contato-left-content h1{
		font-size: 1.875rem;
		line-height: 133%;
		margin-bottom: 16px;
	}

	.contato-description{
		font-size: 1rem;
		line-height: 26px;
	}

	.contato-right{
		padding: 80px 0 70px;
	}

	.contato-form-wrapper{
		max-width: 560px;
	}

	.contato-form-row{
		flex-direction: row;
		gap: 20px;
	}

	.contato-form-row > p{
		flex: 1;
	}

	.contato-form-bottom{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 0;
		padding-top: 0;
	}

	.contato-form-wrapper .wpcf7-form p.contato-form-submit,
	.contato-form-submit{
		text-align: right;
		margin-top: 0;
	}
}



/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.deco{
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.deco svg{
	width: 100%;
	height: 100%;
	display: block;
}

/* Home empreendimentos section decorative */
.home-empreendimentos{
	position: relative;
	overflow: hidden;
}

.home-emp-deco{
	display: none;
}

.home-emp-deco--left{
	display: none;
}

@media (min-width: 992px){
	.home-emp-deco{
		display: block;
		position: absolute;
		width: 300px;
		height: 300px;
		opacity: 0.5;
		pointer-events: none;
		color: var(--laranja);
	}

	.home-emp-deco--left{
		display: none;
	}

	.home-emp-deco--right{
		right: -130px;
		top: -111px;
		z-index: 1;
	}
}

/* Empreendimentos listing decorative */
.emp-archive-list{
	position: relative;
	overflow: hidden;
}

.emp-archive-list > .container{
	position: relative;
	z-index: 1;
	overflow: visible;
}

.emp-archive-deco{
	display: none;
}

@media (min-width: 992px){
	.emp-archive-deco{
		display: block;
		position: absolute;
		right: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 230px);
		top: 29px;
		width: 300px;
		height: 300px;
		pointer-events: none;
		z-index: 3;
	}

	.emp-archive-deco svg{
		width: 100%;
		height: 100%;
		color: var(--laranja);
	}
}

/* ========================================
   EMPREENDIMENTOS ARCHIVE — TABLET (768-991)
   ======================================== */
@media (min-width: 768px) and (max-width: 991px){

	/* Hero */
	.emp-archive-hero{
		min-height: 550px;
	}

	.emp-archive-hero-deco{
		display: none;
	}

	.emp-archive-hero-content{
		padding-top: calc(var(--header-height) + 120px);
	}

	.emp-archive-hero-content h1{
		max-width: 300px;
	}

	/* Cards */
	.emp-archive-card-info h2{
		max-width: 420px;
		margin-left: 0;
		min-height: 0;
		line-height: var(--title-2-lh);
		letter-spacing: 0;
		display: block;
	}

	.emp-archive-card-image{
		margin-top: 40px;
		margin-right: 0;
		margin-left: 0;
	}

	.emp-archive-card-image img{
		width: 100%;
		max-width: 100%;
		aspect-ratio: 16/10;
		object-position: center;
	}

	.emp-archive-card-info .emp-features{
		margin-top: 40px;
	}

	.emp-archive-card-info .btn{
		align-self: flex-start;
		margin-top: 40px;
	}

	.emp-archive-card + .emp-archive-card{
		margin-top: 80px;
	}

	.emp-archive-card-logo{
		max-width: 200px;
	}

	.emp-archive-list{
		padding: 80px 0 100px;
	}
}

/* ========================================
   EMPREENDIMENTOS ARCHIVE — NARROW DESKTOP (992-1199)
   ======================================== */
@media (min-width: 992px) and (max-width: 1199px){

	/* Hero */
	.emp-archive-hero-content h1{
		margin-left: clamp(300px, 50vw, 602px);
	}

	.emp-archive-hero-deco{
		width: clamp(300px, 40vw, 470px);
		height: clamp(300px, 40vw, 470px);
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 60px);
	}

	.emp-archive-hero-semicircle{
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 60px);
		width: clamp(300px, 40vw, 470px);
	}

	.emp-archive-hero-semicircle::before{
		width: clamp(300px, 40vw, 470px);
		height: clamp(300px, 40vw, 470px);
		left: 0;
	}

	/* Cards */
	.emp-archive-card-info{
		flex: 0 0 40%;
	}

	.emp-archive-card-image{
		flex: 0 0 60%;
	}

	.emp-archive-card-image img{
		width: 100%;
	}

	.emp-archive-card-info h2{
		font-size: 32px;
		line-height: 42px;
		max-width: 280px;
	}

	.emp-archive-card--alt .emp-archive-card-image{
		margin-left: calc(-1 * max(var(--gutter) / 2, (100vw - 1170px) / 2));
		flex: 0 0 calc(60% + max(var(--gutter) / 2, (100vw - 1170px) / 2));
	}

	.emp-archive-card--alt .emp-archive-card-image img{
		width: 100%;
		margin-left: 0;
	}

	.emp-archive-card--alt .emp-archive-card-info{
		flex: 0 0 40%;
		padding-left: 24px;
	}

	.emp-archive-card--alt .emp-archive-card-semicircle{
		left: -100px;
		width: 220px;
		height: 220px;
	}

	.emp-archive-card--alt .emp-archive-card-starburst{
		left: 50px;
		top: 180px;
		width: 220px;
		height: 220px;
	}

	.emp-archive-card + .emp-archive-card--alt{
		margin-top: 120px;
	}

	/* Deco */
	.emp-archive-deco{
		right: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) - 150px);
		width: 220px;
		height: 220px;
	}
}

/* Sobre destaque decorative */
.sobre-destaque{
	position: relative;
	overflow: hidden;
}

@media (min-width: 992px){
	.sobre-destaque{
		min-height: 719px;
		padding: 125px 0 88px;
	}

	.sobre-destaque-inner{
		gap: 0;
	}

	.sobre-destaque-image{
		margin-top: 28px;
	}

	.sobre-destaque-card{
		margin-top: 21px;
	}
}

.sobre-destaque-deco{
	display: none;
}

@media (min-width: 992px){
	.sobre-destaque-deco{
		display: block;
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 1212px);
		top: 50%;
		transform: translateY(-50%);
		width: 525px;
		height: 525px;
		pointer-events: none;
	}

	.sobre-destaque-deco svg{
		width: 100%;
		height: 100%;
		color: var(--cinza);
	}
}

/* Contato decorative */
.contato{
	position: relative;
	overflow: hidden;
}

.contato-deco{
	display: none;
}

@media (min-width: 1600px){
	.contato-deco{
		display: block;
		position: absolute;
		left: calc(max(var(--gutter) / 2, (100% - 1170px) / 2) + 1212px);
		top: 466px;
		width: 461px;
		height: 461px;
		pointer-events: none;
		z-index: 0;
	}

	.contato-deco svg{
		width: 100%;
		height: 100%;
		color: var(--laranja);
	}
}



/* ========================================
   DEFAULT STYLE & 404
   ======================================== */
.default-style{
	margin: 48px 0;
}

.default-style article h1:first-child{
	font-weight: 700;
	margin-bottom: 48px;
}

.page-not-found{
	text-align: center;
	margin: 120px 0;
}
