@charset "UTF-8";

/*
Theme Name: Correx Theme 2
Theme URI: https://correx.com.br
Description: Segundo tema Correx - Layout moderno
Author: Marcos Lunardelli
Author URI: https://marcoslunardelli.com.br
Version: 2.3.1
Details URI: https://updates.correx.com.br/?action=get_metadata&slug=correx-theme-2
*/

/* ===================================================
   VARIÁVEIS DO NOVO DESIGN (mapeadas do ACF)
   =================================================== */
:root {
	--orange: var(--cor_primaria, #E87722);
	--orange-dark: #c96010;
	--orange-light: color-mix(in srgb, var(--orange) 12%, white);
	--correx-orange: #E87722;
	--charcoal: var(--cor_secundaria, #1a1a1a);
	--warm-gray: #6b6259;
	--stone: #f7f4f0;
	--stone2: #ede9e3;
	--white: #ffffff;
	--sans: 'DM Sans', system-ui, sans-serif;
}

/* ===================================================
   RESET GLOBAL DO NOVO TEMA
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===================================================
   TOPBAR (todas as páginas)
   =================================================== */
.topbar {
	background: var(--charcoal);
	color: rgba(255,255,255,0.65);
	font-family: var(--sans);
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	padding: 9px 0;
}
.topbar-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.creci-badge {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	padding: 3px 10px; border-radius: 20px;
	font-size: 11px; letter-spacing: 0.06em;
}

/* ===================================================
   NAV PRINCIPAL (todas as páginas)
   =================================================== */
nav.site-nav {
	background: var(--white);
	border-bottom: 1px solid var(--stone2);
	position: sticky; top: 0; z-index: 100;
	box-shadow: 0 1px 24px rgba(0,0,0,0.06);
	font-family: var(--sans);
}
.admin-bar nav.site-nav { top: 32px; }
.admin-bar .ip-filter-bar { top: calc(72px + 32px); }
@media screen and (max-width: 782px) {
	.admin-bar nav.site-nav { top: 46px; }
}
.nav-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	display: flex; justify-content: space-between; align-items: center;
	height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
	width: 36px; height: 36px;
	background: var(--orange);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--sans); font-size: 18px; font-weight: 700; color: white;
}
.logo-text { font-family: var(--sans); font-size: 19px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; }
.logo-text span { color: var(--orange); }
.logo-img { max-height: 50px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
	text-decoration: none; color: var(--warm-gray);
	font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em;
	transition: color .2s; font-family: var(--sans);
}
.nav-links a:hover,
.nav-links li.current-menu-item a { color: var(--charcoal); }
.nav-cta {
	background: var(--orange); color: white;
	padding: 10px 22px; border-radius: 6px;
	font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
	text-decoration: none; transition: background .2s, transform .15s;
	display: flex; align-items: center; gap: 7px;
	font-family: var(--sans);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); color: white; }
.nav-menu-toggle {
	display: none; background: none; border: none; cursor: pointer;
	flex-direction: column; gap: 5px; padding: 5px;
}
.nav-menu-toggle span {
	display: block; width: 24px; height: 2px;
	background: var(--charcoal); transition: all .3s;
}
.nav-mobile-menu {
	display: none;
	background: var(--white);
	border-bottom: 1px solid var(--stone2);
	padding: 0.25rem 1.5rem 0.75rem;
}
.nav-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.nav-mobile-menu ul li { border-bottom: 1px solid var(--stone2); }
.nav-mobile-menu ul li:last-child { border-bottom: none; }
.nav-mobile-menu ul li a {
	display: flex; align-items: center;
	padding: 9px 0; line-height: 1.2;
	color: var(--charcoal); text-decoration: none;
	font-size: 14px; font-family: var(--sans);
	transition: color .2s;
}
.nav-mobile-menu ul li a:hover { color: var(--orange); }
.nav-mobile-menu .nav-cta { margin-top: 0.75rem; justify-content: center; }

/* ===================================================
   FOOTER (todas as páginas)
   =================================================== */
footer.site-footer {
	background: #0f0f0f;
	padding: 4rem 0 2rem;
	font-family: var(--sans);
	border-top: none;
}
footer.site-footer * { font-family: var(--sans); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer-top {
	display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
	padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text { font-size: 18px; color: white; font-family: var(--sans); font-weight: 700; }
.footer-brand .logo-text span { color: var(--orange); }
.footer-brand-name { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 0.6rem; font-weight: 500; letter-spacing: 0.02em; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-copy a { color: var(--orange); text-decoration: none; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-contact-name { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); margin-top: 20px; margin-bottom: 3px; }
.footer-contact-creci { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-contact-social { margin-top: 0; margin-bottom: 1rem; }
.footer-contact-wpp {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 13px; color: var(--orange); text-decoration: none;
	transition: color .2s; margin-bottom:10px;
}
.footer-contact-wpp:hover { color: var(--orange-dark); }
.social-link {
	width: 36px; height: 36px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px; display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
	transition: all .2s;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* Flutuante WhatsApp */
#wpp_icone_v2 {
	position: fixed; bottom: 30px; right: 30px; z-index: 9999;
}
#wpp_icone_v2 a {
	display: flex; align-items: center; gap: 10px;
	background: #25D366; color: white;
	border-radius: 50px; padding: 12px 20px;
	text-decoration: none; font-family: var(--sans); font-size: 14px; font-weight: 500;
	box-shadow: 0 8px 30px rgba(37,211,102,0.3);
	transition: all .2s;
}
#wpp_icone_v2 a:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.4); }
#wpp_icone_v2 .wpp-text { display: none; }
@media (min-width: 768px) { #wpp_icone_v2 .wpp-text { display: inline; } }

/* ===================================================
   HOMEPAGE DESIGN (body.home)
   =================================================== */
body.home {
	font-family: var(--sans);
	color: var(--charcoal);
	background: var(--white);
	overflow-x: hidden;
	font-size: 15px;
	line-height: 1.6;
}

/* HERO */
body.home .hero {
	min-height: 72vh;
	display: grid; grid-template-columns: 1fr 1fr;
	position: relative; overflow: hidden;
}
body.home .hero-left {
	background: var(--stone);
	display: flex; flex-direction: column; justify-content: center;
	/* padding-left segue o mesmo ponto inicial do nav (max-width 1280px centralizado) */
	padding: 4rem 4rem 4rem max(2rem, calc((100vw - 1280px) / 2 + 2rem));
	position: relative;
}
body.home .hero-left::after {
	content: '';
	position: absolute; right: -40px; top: 0; bottom: 0;
	width: 80px;
	background: var(--stone);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	z-index: 2;
}
body.home .hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
	color: var(--orange); text-transform: uppercase;
	margin-bottom: 1.5rem;
}
body.home .hero-eyebrow::before {
	content: ''; width: 24px; height: 1.5px; background: var(--orange);
}
body.home .hero-title {
	font-family: var(--sans);
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}
body.home .hero-title em { font-style: normal; color: var(--orange); }
body.home .hero-subtitle {
	font-size: 15px; color: var(--warm-gray); line-height: 1.75;
	max-width: 400px; margin-bottom: 1.5rem;
}
body.home .hero-actions { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
body.home .btn-primary {
	background: var(--charcoal); color: white;
	padding: 13px 26px; border-radius: 6px;
	font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em;
	text-decoration: none; transition: all .2s;
	border: 2px solid var(--charcoal);
}
body.home .btn-primary:hover { background: var(--orange); border-color: var(--orange); color: white; }
body.home .btn-ghost {
	color: var(--charcoal);
	padding: 13px 26px; border-radius: 6px;
	font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em;
	text-decoration: none; transition: all .2s;
	border: 2px solid var(--stone2);
	display: flex; align-items: center; gap: 8px;
}
body.home .btn-ghost:hover { border-color: var(--charcoal); }
body.home .hero-stats {
	display: flex; gap: 2rem; padding-top: 1.5rem;
	border-top: 1px solid var(--stone2);
}
body.home .stat-num {
	font-family: var(--sans); font-size: 1.75rem; font-weight: 700;
	color: var(--charcoal); line-height: 1;
}
body.home .stat-num span { color: var(--orange); }
body.home .stat-label { font-size: 12px; color: var(--warm-gray); margin-top: 5px; letter-spacing: 0.03em; }

body.home .hero-right {
	position: relative;
	background: var(--charcoal);
	display: flex; align-items: flex-end;
	overflow: hidden;
}
body.home .hero-img-placeholder {
	width: 100%; height: 100%; min-height: 500px;
	background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 100%);
	display: flex; align-items: flex-end; justify-content: flex-start;
	/* padding-right espelha o offset do nav à direita */
	padding: 2rem max(2rem, calc((100vw - 1280px) / 2 + 2rem)) 3rem 3rem;
	position: relative;
}
/* overlay sobre a imagem do imóvel */
body.home .hero-img-placeholder::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.25) 55%, rgba(10,10,10,0.05) 100%);
	z-index: 1;
}
body.home .hero-prop-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 1;
}
body.home .hero-corretor-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.55;
	mix-blend-mode: luminosity;
}

/* Hero card - imóvel em destaque */
body.home .hero-card {
	background: white; border-radius: 12px;
	padding: 1.4rem 1.6rem;
	position: relative; z-index: 2;
	width: 100%; max-width: 340px;
	display: flex; flex-direction: column;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	text-decoration: none; color: inherit;
}
body.home .hero-card-tag {
	font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--orange);
	background: var(--orange-light); padding: 4px 10px;
	border-radius: 4px; display: inline-block; width: fit-content;
	margin-bottom: 10px;
}
body.home .hero-card-value {
	font-family: var(--sans); font-size: 1.05rem; font-weight: 700;
	color: var(--charcoal); line-height: 1.35; margin-bottom: 4px;
}
body.home .hero-card-location {
	font-size: 13px; color: var(--warm-gray); display: flex; align-items: center; gap: 3px;
}
body.home .hero-card-price {
	font-family: var(--sans); font-size: 1.3rem; font-weight: 700;
	color: var(--orange); margin-top: 10px;
}
body.home .hero-card-feats {
	display: flex; gap: 14px; margin-top: 10px;
	font-size: 12px; color: var(--warm-gray);
	padding-top: 10px; border-top: 1px solid var(--stone2);
	flex-wrap: wrap;
}

/* SEARCH */
body.home .search-section {
	background: var(--white);
	padding: 0;
	position: relative;
	z-index: 10;
}
body.home .search-container {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
body.home .search-box {
	background: var(--charcoal);
	border-radius: 12px;
	padding: 2rem;
	margin-top: -3.5rem;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
/* Abas Comprar / Alugar – estilo tab com indicador underline */
body.home .search-tabs {
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	margin-bottom: 1.5rem;
}
body.home .search-tab {
	padding: 0 0 12px;
	margin-right: 2rem;
	cursor: pointer;
	font-size: 15px; font-weight: 600;
	color: rgba(255,255,255,0.4);
	background: transparent; border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px; /* sobrepõe a borda do container */
	transition: color .2s, border-color .2s;
	font-family: var(--sans); letter-spacing: 0.01em;
}
body.home .search-tab:hover { color: rgba(255,255,255,0.75); }
body.home .search-tab.active {
	color: white;
	border-bottom-color: var(--orange);
}
body.home .search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end; }
body.home .search-field label {
	display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
	text-transform: uppercase; color: rgba(255,255,255,0.4);
	margin-bottom: 8px;
}
body.home .search-field select, body.home .search-field input {
	width: 100%; padding: 12px 16px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px; color: white; font-size: 14px;
	font-family: var(--sans); outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
}
body.home .search-field select:focus, body.home .search-field input:focus {
	border-color: var(--orange);
}
body.home .search-field select option { background: #2a2a2a; color: white; }
body.home .btn-search {
	width: 100%; padding: 13px; background: var(--orange); color: white;
	border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
	cursor: pointer; transition: background .2s; font-family: var(--sans);
	display: flex; align-items: center; justify-content: center; gap: 8px;
}
body.home .btn-search:hover { background: var(--orange-dark); }

/* SECTIONS GENÉRICOS */
body.home .section { padding: 5rem 0; }
body.home .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
body.home .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
body.home .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--orange); text-transform: uppercase; margin-bottom: 0.6rem; }
body.home .section-title {
	font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 1.9rem);
	font-weight: 700; line-height: 1.2; color: var(--charcoal);
}
body.home .section-title em { font-style: normal; color: var(--orange); }
body.home .link-all { font-size: 13px; color: var(--warm-gray); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; white-space: nowrap; }
body.home .link-all:hover { color: var(--orange); }
body.home .link-all::after { content: '→'; }

/* CARDS DE IMÓVEIS */
body.home .properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
body.home .prop-card {
	background: var(--white); border-radius: 12px;
	border: 1px solid var(--stone2);
	overflow: hidden; transition: all .25s; cursor: pointer;
}
body.home .prop-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
body.home .prop-img {
	height: 220px;
	background: var(--stone);
	position: relative;
	overflow: hidden;
}
body.home .prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
body.home .prop-card:hover .prop-img img { transform: scale(1.04); }
body.home .prop-badge {
	position: absolute; top: 12px; left: 12px;
	background: var(--charcoal); color: white;
	font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
body.home .prop-badge.sale { background: var(--orange); }
body.home .prop-fav {
	position: absolute; top: 12px; right: 12px;
	width: 34px; height: 34px; background: white; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 17px; cursor: pointer; border: none; outline: none;
	color: #d0d0d0; transition: color .2s, transform .2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
body.home .prop-fav:hover { transform: scale(1.15); color: #e74c3c; }
body.home .prop-fav.ativo { color: #e74c3c; }
body.home .prop-body { padding: 1.25rem; }
body.home .prop-price {
	font-family: var(--sans); font-size: 1.2rem; font-weight: 700;
	color: var(--charcoal); margin-bottom: 0.4rem;
}
body.home .prop-title { font-size: 13.5px; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
body.home .prop-location { font-size: 12.5px; color: var(--warm-gray); display: flex; align-items: center; gap: 4px; margin-bottom: 1rem; }
body.home .prop-features { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--stone2); flex-wrap: wrap; }
body.home .prop-feat { font-size: 12px; color: var(--warm-gray); display: flex; align-items: center; gap: 4px; }
body.home .prop-feat strong { color: var(--charcoal); font-weight: 600; }

/* IMÓVEIS NEGOCIADOS */
body.home .neg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
body.home .neg-card {
	border-radius: 10px; overflow: hidden;
	position: relative; aspect-ratio: 3/4;
	background: var(--stone);
	cursor: pointer;
}
body.home .neg-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: all .4s; }
body.home .neg-card:hover img { filter: grayscale(0); transform: scale(1.04); }
body.home .neg-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 50%);
}
body.home .neg-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
body.home .neg-status {
	display: inline-block;
	background: rgba(255,255,255,0.15); color: white;
	font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 20px; margin-bottom: 6px;
	border: 1px solid rgba(255,255,255,0.25);
}
body.home .neg-status.sold { background: color-mix(in srgb, var(--orange) 30%, transparent); border-color: color-mix(in srgb, var(--orange) 50%, transparent); }
body.home .neg-name { font-family: var(--sans); font-size: 0.9rem; color: white; font-weight: 500; line-height: 1.3; }
body.home .neg-loc { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }
body.home .neg-img-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #d0cbc5, #bbb8b2);
}

/* SOBRE */
body.home .about-section { background: var(--stone); padding: 8rem 0 5rem; overflow: hidden; }
body.home .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
/* Quadro/frame: visível com a foto saindo por cima */
body.home .about-img-wrap {
	position: relative;
	background: var(--stone2);
	border-radius: 20px;
	height: 420px;
	overflow: visible;
}
body.home .about-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	height: calc(100% + 15rem);
	object-fit: contain;
	object-position: bottom center;
	display: block;
}
body.home .about-accent {
	position: absolute; bottom: -24px; right: -24px;
	width: 160px; height: 160px;
	background: var(--orange); border-radius: 16px; z-index: -1;
}
body.home .about-years {
	position: absolute; bottom: 24px; left: -20px;
	background: var(--charcoal); color: white;
	padding: 1.25rem 1.5rem; border-radius: 12px; text-align: center;
	z-index: 2;
}
body.home .about-years-num {
	font-family: var(--sans); font-size: 2rem; font-weight: 700;
	color: var(--orange); line-height: 1;
}
body.home .about-years-label { font-size: 11px; letter-spacing: 0.08em; margin-top: 4px; color: rgba(255,255,255,0.6); }
body.home .about-content { padding-right: 1rem; padding-bottom: 2rem; }
body.home .about-text {
	font-size: 15.5px; color: var(--warm-gray); line-height: 1.85;
	margin-bottom: 1.5rem;
}
body.home .about-text p {
	margin-bottom: 1.35rem;
	line-height: 1.85;
}
body.home .about-text p:last-child { margin-bottom: 0; }
body.home .about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
body.home .about-feat { display: flex; gap: 1rem; align-items: flex-start; }
body.home .feat-icon {
	width: 44px; height: 44px; background: var(--orange-light);
	border-radius: 10px; display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; font-size: 1.4rem; line-height: 1;
}

body.home .feat-title { font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
body.home .feat-desc { font-size: 12.5px; color: var(--warm-gray); line-height: 1.55; }

/* DEPOIMENTOS */
body.home .testimonials-section { background: var(--charcoal); padding: 5rem 0; }
body.home .testimonials-section .section-eyebrow { color: var(--orange); }
body.home .testimonials-section .section-title { color: white; }
body.home .testimonials-section .link-all { color: rgba(255,255,255,0.4); }
body.home .testimonials-section .link-all:hover { color: var(--orange); }
body.home .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
body.home .testi-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px; padding: 1.75rem;
}
body.home .testi-quote {
	font-family: var(--sans); font-size: 3rem; font-weight: 700;
	color: var(--orange); line-height: 0.8; margin-bottom: 1rem;
}
body.home .testi-text {
	font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75;
	margin-bottom: 1.5rem; font-style: italic;
}
body.home .testi-author { display: flex; align-items: center; gap: 12px; }
body.home .testi-avatar {
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--orange); display: flex; align-items: center; justify-content: center;
	font-family: var(--sans); font-size: 0.85rem; color: white; font-weight: 700;
	flex-shrink: 0;
}
body.home .testi-name { font-size: 13px; font-weight: 600; color: white; }
body.home .testi-city { font-size: 12px; color: rgba(255,255,255,0.4); }

/* CTA BANNER */
body.home .cta-banner { background: var(--orange); padding: 4rem 0; }
body.home .cta-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	display: flex; justify-content: space-between; align-items: center;
}
body.home .cta-title {
	font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 1.9rem);
	font-weight: 700; color: white; line-height: 1.25;
}
body.home .cta-title em { font-style: normal; opacity: 0.85; }
body.home .cta-sub { font-size: 14.5px; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }
body.home .btn-white {
	background: white; color: var(--orange);
	padding: 14px 30px; border-radius: 8px;
	font-size: 14.5px; font-weight: 600;
	text-decoration: none; white-space: nowrap;
	transition: all .2s; font-family: var(--sans);
}
body.home .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); color: var(--orange); }

/* CONTATO */
body.home .contact-section { padding: 5rem 0; }
body.home .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
body.home .contact-map { border-radius: 16px; overflow: hidden; height: 360px; background: var(--stone); }
body.home .contact-map iframe { width: 100%; height: 100%; border: none; }
body.home .contact-cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--orange); text-transform: uppercase; margin-bottom: 1rem; }
body.home .contact-cta-title {
	font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 1.9rem);
	font-weight: 700; line-height: 1.25; color: var(--charcoal); margin-bottom: 1.25rem;
}
body.home .contact-cta-title em { font-style: normal; color: var(--orange); }
body.home .contact-cta-text { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 2rem; }
body.home .contact-actions { display: flex; flex-direction: column; gap: 1rem; }
body.home .btn-whatsapp {
	background: #25D366; color: white;
	padding: 15px 28px; border-radius: 8px;
	font-size: 14.5px; font-weight: 600;
	text-decoration: none; transition: all .2s;
	display: flex; align-items: center; gap: 10px; width: fit-content;
	font-family: var(--sans);
}
body.home .btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); color: white; }
body.home .contact-phone { font-size: 14px; color: var(--warm-gray); display: flex; align-items: center; gap: 8px; }

/* ===================================================
   RESPONSIVO
   =================================================== */
@media (max-width: 1024px) {
	body.home .hero { grid-template-columns: 1fr; min-height: auto; }
	body.home .hero-left { padding: 4rem 3rem; }
	body.home .hero-left::after { display: none; }
	body.home .hero-right { min-height: 520px; }
	/* card ocupa largura total e alinha com o search box */
	body.home .hero-card { max-width: 100%; }
	body.home .hero-img-placeholder {
		padding: 2rem 2rem 2rem 2rem;
		align-items: flex-end;
	}
	body.home .hero-subtitle { text-align: center; }
	body.home .hero-card-price { margin-bottom: 1.4rem; }
	.footer-brand { text-align: center; }
	.footer-brand > a { justify-content: center; }
	.footer-brand .social-links { justify-content: center; }
	.footer-col-nav, .footer-col-imoveis { display: none; }
	body.home .about-section { padding: 6rem 0 5rem; }
	body.home .about-grid { grid-template-columns: 1fr; gap: 2rem; }
	body.home .about-content { padding-right: 0; }
	body.home .about-years { left: auto; right: -12px; bottom: 12px; }
	body.home .about-img-wrap { height: 360px; }
	body.home .about-img { height: calc(100% + 5rem); }
	body.home .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	body.home .testi-grid { grid-template-columns: 1fr 1fr; }
	body.home .neg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nav-links { display: none; }
	/* garante que o ul dentro do menu mobile fique visível */
	.nav-mobile-menu ul.nav-links,
	.nav-mobile-menu .nav-links { display: flex; flex-direction: column; gap: 0.5rem; }
	.nav-mobile-menu .nav-links a { text-align: center; }
	.nav-cta { display: none; }
	.nav-menu-toggle { display: flex; }
	body.home .hero-left { padding: 3rem 1.5rem 3rem 1.5rem; }
	body.home .search-fields { grid-template-columns: 1fr; }
	body.home .properties-grid { grid-template-columns: 1fr; }
	body.home .testi-grid { grid-template-columns: 1fr; }
	body.home .neg-grid { grid-template-columns: repeat(2, 1fr); }
	body.home .cta-inner { flex-direction: column; gap: 2rem; text-align: center; }
	/* footer: brand em largura total; nav + imóveis lado a lado */
	.footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
	.topbar-left { display: none; }
}

/* admin bar no mobile: não é fixed — nav deve ficar em top:0 após ela rolar */
@media (max-width: 782px) {
	.admin-bar nav.site-nav { top: 0 !important; }
}

/* touch-action: manipulation — remove 300ms tap delay no Safari em todos os botões */
button, [role="button"], .search-tab, .nav-menu-toggle, .btn-primary, .btn-ghost,
.nav-cta, .ip-view-btn, .ip-pill, .ip-counter-btn, select, input[type="submit"] {
	touch-action: manipulation;
}

/* pseudo-elementos decorativos não devem capturar toque */
body.home .hero-left::after,
body.home .hero-img-placeholder::after {
	pointer-events: none;
}

/* hero-stats e hero-mobile-content: desktop ↔ mobile */
body.home .hero-stats--mobile,
body.home .hero-mobile-content {
	display: none;
}

@media (max-width: 1024px) {
	/* esconde o hero-left (texto) — aparece abaixo da busca via hero-mobile-content */
	body.home .hero-left { display: none; }

	/* bloco de texto reposicionado após a busca */
	body.home .hero-mobile-content {
		display: block;
		background: var(--stone);
		padding: 2.5rem 1.5rem 1.5rem;
		text-align: center;
	}
	body.home .hero-mobile-content .hero-eyebrow { justify-content: center; }
	body.home .hero-mobile-content .hero-actions { justify-content: center; }

	/* stats desktop ocultos; mobile visíveis */
	body.home .hero-stats--desktop { display: none; }
	body.home .hero-stats--mobile {
		display: flex;
		justify-content: center;
		gap: 2.5rem;
		background: var(--stone);
		padding: 1.5rem 1.5rem 2.5rem;
		border-top: 1px solid var(--stone2);
	}
}

@media (max-width: 480px) {
	body.home .hero-stats { flex-direction: column; gap: 1rem; }
	body.home .hero-stats--mobile {
		gap: 1.5rem;
		text-align: center;
	}
	body.home .neg-grid { grid-template-columns: 1fr; }
	body.home .about-feats { grid-template-columns: 1fr; }
	/* nav + imóveis somem em tela muito pequena, ficando só a marca */
	.footer-col-nav,
	.footer-col-imoveis { display: none; }
}

/* ===================================================
   PÁGINA DE IMÓVEIS (page-imoveis.php)
   =================================================== */

/* base da página */
.page-imoveis .ip-header,
.page-imoveis .ip-filter-bar,
.page-imoveis .ip-layout,
.page-imoveis .ip-cta-banner,
.ip-header, .ip-filter-bar, .ip-layout, .ip-cta-banner {
	font-family: var(--sans);
}

/* ── Page Header ── */
.ip-header {
	background: var(--charcoal);
	padding: 3rem 0 2.5rem;
	position: relative;
	overflow: hidden;
}
.ip-header::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(var(--orange), 0.1) 0%, transparent 70%);
	pointer-events: none;
}
.ip-header-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	position: relative; z-index: 1;
}
.ip-breadcrumb {
	display: flex; align-items: center; gap: 8px;
	font-size: 12px; color: rgba(255,255,255,0.35);
	letter-spacing: 0.06em; text-transform: uppercase;
	margin-bottom: 1.25rem;
}
.ip-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.ip-breadcrumb a:hover { color: var(--orange); }
.ip-breadcrumb-sep { color: rgba(255,255,255,0.2); }
.ip-breadcrumb-current { color: var(--orange); }
.ip-title {
	font-family: var(--sans);
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 700; color: white; line-height: 1.15;
	letter-spacing: -0.02em;
}
.ip-title em { font-style: normal; color: var(--orange); }
.ip-meta { margin-top: 1rem; }
.ip-count { font-size: 13px; color: rgba(255,255,255,0.45); }
.ip-count strong { color: rgba(255,255,255,0.75); font-weight: 600; }

/* ── Filter Bar ── */
.ip-filter-bar {
	background: var(--white);
	border-bottom: 1px solid var(--stone2);
	padding: 0.85rem 0;
	position: sticky; top: 72px; z-index: 99;
}
.ip-filter-bar-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
}
.ip-pill {
	padding: 6px 15px; border-radius: 24px;
	font-size: 12.5px; font-weight: 500; cursor: pointer;
	border: 1.5px solid var(--stone2); color: var(--warm-gray);
	background: var(--white); transition: all .2s;
	text-decoration: none; white-space: nowrap;
}
.ip-pill:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ip-pill.active { background: var(--charcoal); border-color: var(--charcoal); color: white; }
.ip-filter-sep { width: 1px; height: 22px; background: var(--stone2); margin: 0 0.25rem; flex-shrink: 0; }
.ip-filter-bar-right { margin-left: auto; display: flex; gap: 0.6rem; align-items: center; }
.ip-sort-select {
	padding: 6px 14px; border: 1.5px solid var(--stone2); border-radius: 24px;
	font-size: 12.5px; font-family: var(--sans); color: var(--warm-gray);
	background: var(--white); outline: none; cursor: pointer;
	transition: border-color .2s;
}
.ip-sort-select:focus { border-color: var(--charcoal); }
.ip-view-toggle { display: flex; gap: 4px; }
.ip-view-btn {
	width: 32px; height: 32px;
	border: 1.5px solid var(--stone2); border-radius: 7px;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; background: var(--white);
	color: var(--warm-gray); transition: all .2s;
}
.ip-view-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ip-view-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: white; }
.ip-view-btn svg { width: 14px; height: 14px; }

/* ── Main Layout ── */
.ip-layout {
	max-width: 1280px; margin: 0 auto;
	padding: 2.5rem 2rem 5rem;
	display: grid; grid-template-columns: 260px 1fr; gap: 2rem;
	align-items: start;
}

/* ── Sidebar ── */
.ip-sidebar { position: sticky; top: 140px; }
.ip-sidebar-card {
	background: var(--white);
	border: 1px solid var(--stone2);
	border-radius: 14px; overflow: hidden;
}
.ip-sidebar-header {
	padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--stone2);
	display: flex; justify-content: space-between; align-items: center;
}
.ip-sidebar-title {
	font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; color: var(--charcoal);
}
.ip-sidebar-clear { font-size: 12px; color: var(--orange); text-decoration: none; transition: opacity .2s; }
.ip-sidebar-clear:hover { opacity: 0.7; }

.ip-filter-group {
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid var(--stone2);
}
.ip-filter-group:last-child { border-bottom: none; }
.ip-filter-group-title {
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.85rem;
}
.ip-filter-options { display: flex; flex-direction: column; gap: 0.5rem; }
.ip-filter-option {
	display: flex; align-items: center; gap: 9px; cursor: pointer;
	position: relative;
}
.ip-check-native { position: absolute; opacity: 0; width: 0; height: 0; }
.ip-custom-check {
	width: 15px; height: 15px; flex-shrink: 0;
	border: 1.5px solid var(--stone2); border-radius: 4px;
	transition: all .15s; display: flex; align-items: center; justify-content: center;
}
.ip-filter-option:hover .ip-custom-check { border-color: var(--charcoal); }
.ip-filter-option.checked .ip-custom-check {
	background: var(--charcoal); border-color: var(--charcoal);
}
.ip-filter-option.checked .ip-custom-check::after {
	content: '✓'; font-size: 9px; color: white; font-weight: 700;
}
.ip-filter-label { font-size: 13px; color: var(--charcoal); flex: 1; }
.ip-filter-count {
	font-size: 11px; color: var(--warm-gray);
	background: var(--stone); padding: 2px 7px; border-radius: 10px;
}

/* counter buttons (quartos, vagas, finalidade) */
.ip-counter-group { display: flex; flex-wrap: wrap; gap: 5px; }
.ip-counter-btn {
	padding: 5px 13px; border: 1.5px solid var(--stone2); border-radius: 20px;
	font-size: 12.5px; font-family: var(--sans); color: var(--warm-gray);
	background: var(--white); cursor: pointer; transition: all .2s;
}
.ip-counter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ip-counter-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: white; }

/* price inputs */
.ip-filter-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 0.25rem; }
.ip-filter-input {
	padding: 8px 10px; border: 1.5px solid var(--stone2); border-radius: 8px;
	font-size: 12.5px; font-family: var(--sans); color: var(--charcoal);
	outline: none; width: 100%; text-align: center;
	transition: border-color .2s;
}
.ip-filter-input::placeholder { color: var(--warm-gray); font-size: 12px; }
.ip-filter-input:focus { border-color: var(--orange); }

.ip-filter-apply { padding: 1.1rem 1.25rem; }
.ip-btn-apply {
	width: 100%; padding: 11px; background: var(--orange); color: white;
	border: none; border-radius: 8px; font-size: 13.5px; font-weight: 600;
	font-family: var(--sans); cursor: pointer; transition: background .2s;
}
.ip-btn-apply:hover { background: var(--orange-dark); }

/* ── Results area ── */
.ip-results-header { margin-bottom: 1.5rem; }
.ip-results-info { font-size: 13.5px; color: var(--warm-gray); }
.ip-results-info strong { color: var(--charcoal); font-weight: 600; }

/* ── Property Grid ── */
.ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Card */
.ip-card {
	background: var(--white); border: 1px solid var(--stone2);
	border-radius: 14px; overflow: hidden;
	transition: all .25s;
	display: flex; flex-direction: column;
	position: relative; z-index: 1;
}
.ip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.09);
	border-color: transparent;
}
.ip-card-img {
	height: 200px; background: var(--stone);
	position: relative; overflow: hidden; flex-shrink: 0;
}
.ip-card-img img {
	width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.ip-card:hover .ip-card-img img { transform: scale(1.05); }
.ip-card-img-empty { width: 100%; height: 100%; background: var(--stone2); }
.ip-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; flex-wrap: wrap; }
.ip-badge {
	font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; padding: 4px 11px; border-radius: 20px;
}
.ip-badge-sale { background: var(--orange); color: white; }
.ip-badge-rent { background: var(--charcoal); color: white; }
.ip-badge-dest { background: rgba(255,255,255,0.95); color: var(--charcoal); }
.ip-fav {
	position: absolute; top: 12px; right: 12px;
	width: 32px; height: 32px; background: white; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 15px; cursor: pointer; border: none; outline: none;
	color: #d0d0d0; transition: color .2s, transform .2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ip-fav:hover { transform: scale(1.15); color: #e74c3c; }
.ip-fav.ativo { color: #e74c3c; }
.adicionado_favorito { /* shared class from correx */ }

.ip-card-body { padding: 1.1rem 1.25rem 0; flex: 1; }
.ip-card-price {
	font-family: var(--sans); font-size: 1.2rem; font-weight: 700;
	color: var(--charcoal); margin-bottom: 4px;
}
.ip-card-price-sub { font-size: 0.85rem; font-weight: 400; color: var(--warm-gray); }
.ip-card-title {
	font-size: 13.5px; font-weight: 500; color: var(--charcoal);
	margin-bottom: 4px; line-height: 1.4;
}
.ip-card-loc { font-size: 12.5px; color: var(--warm-gray); margin-bottom: 0.85rem; }
.ip-card-feats {
	display: flex; gap: 0; flex-wrap: wrap;
	padding-top: 0.85rem; border-top: 1px solid var(--stone2);
}
.ip-card-feat {
	font-size: 12px; color: var(--warm-gray);
	display: flex; align-items: center; gap: 3px;
	padding-right: 10px; margin-right: 10px;
	border-right: 1px solid var(--stone2);
}
.ip-card-feat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.ip-card-feat strong { color: var(--charcoal); font-weight: 600; }

/* Card CTA row */
.ip-card-cta {
	display: flex; justify-content: space-between; align-items: center;
	padding: 0.8rem 1.25rem; border-top: 1px solid var(--stone2);
	margin-top: 0.85rem;
}
.ip-btn-details {
	font-size: 13px; color: var(--charcoal); font-weight: 500;
	text-decoration: none; transition: color .2s;
}
.ip-btn-details:hover { color: var(--orange); }
.ip-btn-wpp {
	width: 30px; height: 30px; background: #25D366;
	border-radius: 8px; display: flex; align-items: center; justify-content: center;
	transition: transform .2s;
}
.ip-btn-wpp:hover { transform: scale(1.1); }

/* ── List view ── */
.ip-grid.ip-list-view { grid-template-columns: 1fr; }
.ip-grid.ip-list-view .ip-card {
	flex-direction: row;
}
.ip-grid.ip-list-view .ip-card-img {
	width: 240px; height: auto; min-height: 180px;
	flex-shrink: 0; border-radius: 0;
}
/* Garante que o wrapper <a> do body ocupe todo o espaço disponível */
.ip-grid.ip-list-view .ip-card > a {
	flex: 1;
	min-width: 0;
	display: flex !important;
	flex-direction: column;
}
.ip-grid.ip-list-view .ip-card-body { padding: 1.1rem 1.25rem; flex: 1; }
.ip-grid.ip-list-view .ip-card-cta {
	flex-direction: column; justify-content: center; align-items: flex-start;
	gap: 0.75rem; padding: 1.1rem 1.5rem; border-top: none; border-left: 1px solid var(--stone2);
	width: 150px; flex-shrink: 0; margin-top: 0;
}

/* ── No results ── */
.ip-no-results {
	grid-column: 1 / -1; text-align: center;
	padding: 5rem 2rem;
}
.ip-no-results-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.ip-no-results-title {
	font-family: var(--sans); font-size: 1.3rem; font-weight: 600;
	color: var(--charcoal); margin-bottom: 0.5rem;
}
.ip-no-results-sub { font-size: 14px; color: var(--warm-gray); }

/* ── Pagination ── */
.ip-pagination { margin-top: 3rem; }
.ip-pagination ul {
	display: flex; align-items: center; justify-content: center;
	gap: 6px; list-style: none; padding: 0; margin: 0;
}
.ip-pagination ul li a,
.ip-pagination ul li span {
	display: flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 10px;
	border: 1.5px solid var(--stone2); border-radius: 8px;
	font-size: 13px; color: var(--warm-gray);
	text-decoration: none; transition: all .2s;
	font-family: var(--sans);
}
.ip-pagination ul li a:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ip-pagination ul li span.current {
	background: var(--charcoal); border-color: var(--charcoal);
	color: white; font-weight: 600;
}
.ip-pagination ul li a.prev, .ip-pagination ul li a.next { padding: 0 14px; }

/* ── CTA Banner ── */
.ip-cta-banner { background: var(--orange); padding: 3.5rem 0; }
.ip-cta-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 2rem;
	display: flex; justify-content: space-between; align-items: center;
}
.ip-cta-title {
	font-family: var(--sans); font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 700; color: white; line-height: 1.25;
}
.ip-cta-sub { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 0.4rem; }
.ip-btn-white {
	background: white; color: var(--orange);
	padding: 13px 28px; border-radius: 8px;
	font-size: 14px; font-weight: 600;
	text-decoration: none; white-space: nowrap;
	transition: all .2s; font-family: var(--sans);
}
.ip-btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.ip-layout { grid-template-columns: 220px 1fr; gap: 1.5rem; }
	.ip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.ip-filter-bar { display: none; }
	.ip-layout { grid-template-columns: 1fr; padding: 1.5rem 1rem 4rem; }
	.ip-sidebar { position: static; }
	.ip-grid { grid-template-columns: 1fr; }
	.ip-cta-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
	.ip-filter-bar-inner { gap: 0.35rem; }
	.ip-grid.ip-list-view .ip-card { flex-direction: column; }
	.ip-grid.ip-list-view .ip-card-img { width: 100%; min-height: 200px; }
	.ip-grid.ip-list-view .ip-card > a { display: block !important; width: 100%; }
	.ip-grid.ip-list-view .ip-card-cta { flex-direction: row; border-left: none; border-top: 1px solid var(--stone2); width: auto; }
}

/* ===================================================
   PÁGINA DETALHE DO IMÓVEL (.sd-)
   =================================================== */

/* Breadcrumb bar */
.sd-breadcrumb-bar { background: var(--stone); border-bottom: 1px solid var(--stone2); padding: 0.85rem 0; }
.sd-breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; position: relative; }
.sd-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--warm-gray); font-family: var(--sans); }
.sd-breadcrumb a { color: var(--warm-gray); text-decoration: none; transition: color .2s; }
.sd-breadcrumb a:hover { color: var(--orange); }
.sd-bc-sep { color: var(--stone2); }
.sd-bc-current { color: var(--charcoal); font-weight: 500; }
.sd-bc-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.sd-action-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1.5px solid var(--stone2); border-radius: 24px; font-size: 12.5px; font-weight: 500; color: var(--warm-gray); background: white; cursor: pointer; transition: all .2s; text-decoration: none; font-family: var(--sans); white-space: nowrap; }
.sd-action-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.sd-action-fav { color: #d0d0d0; }
.sd-action-fav.ativo { color: #e74c3c; border-color: rgba(231,76,60,.3); }
.sd-action-fav:hover { color: #e74c3c; }
/* Sobrescreve regras globais do correx-base.css no contexto do breadcrumb */
.sd-bc-actions .favorito { position: static !important; top: auto !important; right: auto !important; width: auto !important; height: auto !important; z-index: auto !important; display: inline-flex !important; }
.adicionado_favorito { position: absolute; right: 0; bottom: -44px; background: var(--charcoal); color: white; font-size: 12px; padding: 8px 16px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .3s; white-space: nowrap; z-index: 10; }
.adicionado_favorito.ativo { opacity: 1 !important; width: auto !important; height: auto !important; background: var(--charcoal) !important; background-color: var(--charcoal) !important; padding: 8px 16px !important; position: absolute !important; bottom: -44px !important; border-radius: 8px !important; }

/* Gallery */
.sd-gallery { max-width: 1280px; margin: 0 auto; padding: 1.75rem 2rem 0; }
.sd-gallery-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 340px 210px; gap: 8px; border-radius: 16px; overflow: hidden; }
.sd-gallery-single { grid-template-columns: 1fr; grid-template-rows: 460px; }
.sd-gallery-main { grid-row: 1 / 3; position: relative; overflow: hidden; background: var(--stone); display: block; }
.sd-gallery-single .sd-gallery-main { grid-row: 1; }
.sd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.sd-gallery-main:hover img { transform: scale(1.03); }
.sd-gallery-thumb { position: relative; overflow: hidden; background: var(--stone2); display: block; }
.sd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; filter: brightness(.9); display: block; }
.sd-gallery-thumb:hover img { transform: scale(1.05); filter: brightness(1); }
.sd-gallery-more { position: relative; overflow: hidden; background: var(--charcoal); display: flex; align-items: center; justify-content: center; }
.sd-gallery-more img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); display: block; }
.sd-gallery-more-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; }
.sd-gallery-more-overlay span { font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.sd-gallery-more-overlay small { font-size: 11px; opacity: .7; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; display: block; }
.sd-gallery-empty { background: var(--stone2); }
.sd-gallery-badge { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 3; }
.sd-gbadge { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 24px; font-family: var(--sans); }
.sd-gbadge-sale { background: var(--orange); color: white; }
.sd-gbadge-rent { background: var(--charcoal); color: white; }
.sd-gbadge-sold { background: #888; color: white; }
.sd-gallery-code { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,.5); color: rgba(255,255,255,.8); font-size: 11px; padding: 5px 12px; border-radius: 6px; letter-spacing: .08em; z-index: 3; font-family: var(--sans); }

/* Content layout */
.sd-content-wrap { max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem 5rem; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.sd-content-wrap > * { min-width: 0; }

/* Property header */
.sd-prop-header { margin-bottom: 2rem; }
.sd-status-row { display: flex; align-items: center; gap: 8px; margin-bottom: 0.85rem; }
.sd-status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }
.sd-status-dot-sold { background: #aaa; }
.sd-status-text { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #22c55e; font-family: var(--sans); }
.sd-status-sold { color: #aaa; }
.sd-prop-title { font-family: var(--sans); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 0.75rem; }
.sd-prop-location { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--warm-gray); font-family: var(--sans); flex-wrap: wrap; }
.sd-loc-sep { color: var(--stone2); margin: 0 2px; }
.sd-loc-map-link { color: var(--orange); font-size: 13px; text-decoration: none; }
.sd-loc-map-link:hover { text-decoration: underline; }
.sd-prop-price-row { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--stone2); flex-wrap: wrap; }
.sd-prop-price-main { font-family: var(--sans); font-size: 2.2rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.sd-prop-price-meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.sd-price-badge { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; font-family: var(--sans); }
.sd-price-badge-sale { background: var(--orange-light); color: var(--orange); }
.sd-price-badge-rent { background: rgba(26,26,26,.08); color: var(--charcoal); }
.sd-price-type { font-size: 13px; color: var(--warm-gray); font-family: var(--sans); }

/* Key numbers */
.sd-key-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 1px; background: var(--stone2); border: 1px solid var(--stone2); border-radius: 12px; overflow: hidden; margin-bottom: 2.5rem; }
.sd-key-num { background: white; padding: 1.25rem 1rem; text-align: center; }
.sd-key-icon { font-size: 1.3rem; margin-bottom: 6px; display: block; }
.sd-key-val { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1; display: block; }
.sd-key-label { font-size: 11px; color: var(--warm-gray); margin-top: 4px; letter-spacing: .04em; display: block; font-family: var(--sans); }

/* Section blocks */
.sd-section-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--stone2); }
.sd-section-block:last-child { border-bottom: none; }
.sd-section-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; font-family: var(--sans); }
.sd-section-label::after { content: ''; flex: 1; height: 1px; background: var(--stone2); }

/* Description */
.sd-desc { font-size: 15px; color: var(--warm-gray); line-height: 1.85; font-family: var(--sans); }
.sd-desc p { margin-bottom: 1rem; }

/* Features grid */
.sd-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sd-feature-item { display: flex; align-items: center; gap: 12px; padding: 1rem; background: var(--stone); border-radius: 10px; }
.sd-feature-icon { width: 36px; height: 36px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--stone2); }
.sd-feature-val { font-size: 14px; font-weight: 600; color: var(--charcoal); line-height: 1.2; font-family: var(--sans); }
.sd-feature-label { font-size: 11.5px; color: var(--warm-gray); font-family: var(--sans); }

/* Amenities */
.sd-amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.sd-amenity { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--charcoal); padding: 8px 12px; border-radius: 8px; border: 1px solid var(--stone2); background: white; font-family: var(--sans); }
.sd-amenity-check { width: 18px; height: 18px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--orange); font-weight: 700; }

/* Map */
.sd-map-wrap { border-radius: 12px; overflow: hidden; height: 280px; border: 1px solid var(--stone2); }
.sd-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.sd-map-address { margin-top: 1rem; display: flex; align-items: flex-start; gap: 10px; padding: 1rem 1.25rem; background: var(--stone); border-radius: 10px; }
.sd-map-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.sd-map-text { font-size: 14px; color: var(--charcoal); line-height: 1.5; font-family: var(--sans); }

/* Related */
.sd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sd-rel-card { background: white; border: 1px solid var(--stone2); border-radius: 12px; overflow: hidden; text-decoration: none; transition: all .25s; display: block; }
.sd-rel-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: transparent; }
.sd-rel-img { height: 140px; background: var(--stone2); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sd-rel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sd-rel-img-placeholder { font-size: 2rem; color: #ccc; }
.sd-rel-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; font-family: var(--sans); }
.sd-rel-badge-sale { background: var(--orange); color: white; }
.sd-rel-badge-rent { background: var(--charcoal); color: white; }
.sd-rel-body { padding: 1rem; }
.sd-rel-price { font-family: var(--sans); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 3px; }
.sd-rel-title { font-size: 13px; color: var(--charcoal); font-weight: 500; margin-bottom: 3px; line-height: 1.3; font-family: var(--sans); }
.sd-rel-loc { font-size: 12px; color: var(--warm-gray); font-family: var(--sans); }

/* Sidebar */
.sd-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.25rem; }
.sd-contact-card { background: white; border: 1px solid var(--stone2); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.sd-contact-header { background: var(--charcoal); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.sd-corretor-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.2); flex-shrink: 0; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; }
.sd-corretor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.sd-corretor-avatar span { color: white; font-size: 1.3rem; font-weight: 700; font-family: var(--sans); }
.sd-corretor-name { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: white; line-height: 1.2; }
.sd-corretor-creci { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .06em; margin-top: 3px; font-family: var(--sans); }
.sd-corretor-online { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4ade80; margin-top: 5px; font-family: var(--sans); }
.sd-corretor-online::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.sd-contact-body { padding: 1.5rem; }
.sd-price-display { background: var(--stone); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.sd-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--warm-gray); margin-bottom: 4px; font-family: var(--sans); }
.sd-price-val { font-family: var(--sans); font-size: 1.4rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.sd-price-ref { font-size: 12px; color: var(--warm-gray); margin-top: 3px; font-family: var(--sans); }
.sd-price-badge-sm { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 20px; white-space: nowrap; font-family: var(--sans); flex-shrink: 0; margin-top: 4px; }
.sd-price-badge-sm.sd-price-badge-sale { background: var(--orange-light); color: var(--orange); }
.sd-price-badge-sm.sd-price-badge-rent { background: rgba(26,26,26,.08); color: var(--charcoal); }
.sd-btn-wpp { width: 100%; padding: 14px; background: #25D366; color: white; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: var(--sans); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 0.75rem; text-decoration: none; }
.sd-btn-wpp:hover { background: #1ebe5d; transform: translateY(-1px); }
.sd-btn-share { width: 100%; padding: 11px; background: white; color: var(--charcoal); border: 1.5px solid var(--stone2); border-radius: 10px; font-size: 13.5px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 1rem; }
.sd-btn-share:hover { border-color: var(--charcoal); }
.sd-divider { border: none; border-top: 1px solid var(--stone2); margin: 1rem 0; }
.sd-contact-extras { display: flex; flex-direction: column; gap: 0.6rem; }
.sd-contact-extra-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--warm-gray); font-family: var(--sans); }
.sd-extra-icon { width: 30px; height: 30px; background: var(--stone); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* Ref card */
.sd-ref-card { background: var(--stone); border: 1px solid var(--stone2); border-radius: 12px; padding: 1.25rem; }
.sd-ref-title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1rem; font-family: var(--sans); }
.sd-ref-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--stone2); font-size: 13px; font-family: var(--sans); }
.sd-ref-row:last-child { border-bottom: none; }
.sd-ref-label { color: var(--warm-gray); }
.sd-ref-val { color: var(--charcoal); font-weight: 500; }
.sd-ref-avail { color: #22c55e; }
.sd-ref-sold { color: #aaa; }

/* Share card */
.sd-share-card { background: var(--stone); border: 1px solid var(--stone2); border-radius: 12px; padding: 1.25rem; }
.sd-share-title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1rem; font-family: var(--sans); }
.sd-share-btns { display: flex; gap: 8px; }
.sd-share-btn { flex: 1; padding: 9px; border-radius: 8px; font-size: 12.5px; font-weight: 500; font-family: var(--sans); cursor: pointer; border: none; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; }
.sd-share-wpp { background: #E7F9EE; color: #1a7a3c; }
.sd-share-wpp:hover { background: #d0f5e0; }
.sd-share-copy { background: var(--stone2); color: var(--charcoal); }
.sd-share-copy:hover { background: #ddd8d0; }

/* CTA banner */
.sd-cta-banner { background: var(--orange); padding: 3.5rem 0; }
.sd-cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.sd-cta-title { font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 700; color: white; line-height: 1.2; }
.sd-cta-sub { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 0.4rem; font-family: var(--sans); }
.sd-cta-btn { background: white; color: var(--orange); padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: var(--sans); text-decoration: none; white-space: nowrap; transition: all .2s; }
.sd-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.15); }

/* Restricted section */
.sd-restricted { background: var(--stone); border-top: 1px solid var(--stone2); padding: 3rem 0 4rem; }
.sd-restricted-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.sd-restricted-title { font-family: var(--sans); font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 2rem; }
.sd-restricted-section { margin-bottom: 1.5rem; }
.sd-restricted-sub { font-size: 13px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 0.75rem; font-family: var(--sans); }
.sd-restricted-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--orange); color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 500; font-family: var(--sans); cursor: pointer; text-decoration: none; margin-right: 12px; margin-bottom: 8px; transition: background .2s; }
.sd-restricted-btn:hover { background: var(--orange-dark); }
.sd-restricted-text { font-size: 14px; color: var(--warm-gray); line-height: 1.7; font-family: var(--sans); }

/* ── Responsive 1024px ── */
@media (max-width: 1024px) {
	.sd-content-wrap { grid-template-columns: 1fr 300px; gap: 2rem; }
	.sd-features-grid { grid-template-columns: repeat(2, 1fr); }
	.sd-amenities-grid { grid-template-columns: repeat(3, 1fr); }
	.sd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
	.sd-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 280px; }
	.sd-gallery-main { grid-row: 1; }
	.sd-gallery-thumb, .sd-gallery-more { display: none; }
	.sd-breadcrumb-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
	.sd-bc-actions { flex-wrap: wrap; }
	.sd-content-wrap { grid-template-columns: 1fr; padding: 1.5rem 2rem 4rem; }
	.sd-sidebar { position: static; }
	.sd-features-grid { grid-template-columns: 1fr 1fr; }
	.sd-amenities-grid { grid-template-columns: repeat(2, 1fr); }
	.sd-related-grid { grid-template-columns: 1fr; }
	.sd-prop-price-main { font-size: 1.8rem; }
	.sd-key-numbers { grid-template-columns: repeat(3, 1fr); }
	.sd-cta-inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   PÁGINA FAVORITOS  (.fv-*)
   ══════════════════════════════════════════════════════════════ */

/* ── Page header ── */
.fv-page-header { background: var(--charcoal); padding: 3rem 0 2.5rem; position: relative; overflow: hidden; }
.fv-page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 120% at 90% 50%, rgba(232,119,34,.1) 0%, transparent 70%); pointer-events: none; }
.fv-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.fv-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.fv-breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.fv-breadcrumb a:hover { color: var(--orange); }
.fv-bc-sep { color: rgba(255,255,255,.2); }
.fv-bc-current { color: var(--orange); }
.fv-page-title { font-family: var(--sans); font-size: clamp(1.7rem, 2.6vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -0.02em; }
.fv-page-title em { font-style: normal; color: var(--orange); }
.fv-page-subtitle { font-size: 14px; color: rgba(255,255,255,.45); margin-top: .5rem; }
.fv-header-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.fv-hdr-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 500; font-family: var(--sans); cursor: pointer; border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); transition: all .2s; white-space: nowrap; }
.fv-hdr-btn:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.fv-hdr-btn--primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.fv-hdr-btn--primary:hover { background: var(--orange-dark, #c96010); border-color: var(--orange-dark, #c96010); }

/* ── Toolbar ── */
.fv-toolbar { background: #fff; border-bottom: 1px solid var(--stone2); padding: .85rem 0; }
.fv-toolbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.fv-toolbar-left { display: flex; align-items: center; gap: 1rem; }
.fv-toolbar-count { font-size: 13.5px; color: var(--warm-gray); }
.fv-toolbar-count strong { color: var(--charcoal); font-weight: 500; }
.fv-toolbar-right { display: flex; align-items: center; gap: .6rem; }
.fv-tbr-sep { width: 1px; height: 22px; background: var(--stone2); }
.fv-tbr-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500; font-family: var(--sans); cursor: pointer; border: 1.5px solid var(--stone2); color: var(--warm-gray); background: #fff; transition: all .2s; white-space: nowrap; }
.fv-tbr-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.fv-tbr-wpp { background: #25D366; border-color: #25D366; color: #fff; }
.fv-tbr-wpp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }
.fv-tbr-danger { border-color: rgba(239,68,68,.25); color: #ef4444; }
.fv-tbr-danger:hover { background: #fef2f2; border-color: #ef4444; }

/* ── Main layout ── */
.fv-main-wrap { max-width: 1280px; margin: 0 auto; padding: 2rem 2rem 5rem; display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.fv-content-col { min-width: 0; }

/* ── Grid ── */
.fv-grid { display: flex; flex-direction: column; gap: 1rem; }

/* ── Card ── */
.fv-card { background: #fff; border: 1px solid var(--stone2); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 220px 1fr; transition: box-shadow .25s, border-color .25s, opacity .3s, transform .3s; position: relative; }
.fv-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: transparent; }
.fv-card--removing { opacity: 0; transform: scale(.97) translateX(-12px); }

/* Card image */
.fv-card-img { position: relative; overflow: hidden; background: var(--stone2); }
.fv-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.fv-card:hover .fv-card-img img { transform: scale(1.04); }
.fv-img-placeholder { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #b0a9a0; }
.fv-badges { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.fv-badge { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.fv-badge--venda { background: var(--orange); color: #fff; }
.fv-badge--locacao { background: var(--charcoal); color: #fff; }
.fv-badge--sold { background: rgba(0,0,0,.55); color: #fff; }

/* Card body */
.fv-card-body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: .9rem; }
.fv-card-top { }
.fv-code { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 4px; }
.fv-price { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1.1; display: flex; align-items: baseline; gap: 4px; letter-spacing: -0.02em; }
.fv-price-sub { font-size: .875rem; font-weight: 300; color: var(--warm-gray); font-family: var(--sans); }
.fv-price-consult { font-size: 1.1rem; color: var(--warm-gray); font-family: var(--sans); font-weight: 400; }
.fv-title { font-size: 15px; font-weight: 500; color: var(--charcoal); line-height: 1.35; margin: 4px 0 2px; }
.fv-location { font-size: 12.5px; color: var(--warm-gray); display: flex; align-items: center; gap: 5px; }
.fv-features { display: flex; gap: 0; flex-wrap: wrap; padding: .8rem 0; border-top: 1px solid var(--stone2); border-bottom: 1px solid var(--stone2); }
.fv-feat { font-size: 12.5px; color: var(--warm-gray); display: flex; align-items: center; gap: 5px; padding-right: 12px; margin-right: 12px; border-right: 1px solid var(--stone2); }
.fv-feat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.fv-feat strong { color: var(--charcoal); font-weight: 500; }
.fv-card-actions { display: flex; gap: .5rem; align-items: center; }
.fv-btn-ver { flex: 1; padding: 10px 16px; background: var(--charcoal); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 500; font-family: var(--sans); text-decoration: none; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: background .2s; border: none; cursor: pointer; }
.fv-btn-ver:hover { background: var(--orange); color: #fff; }
.fv-btn-ver--disabled { background: #ccc; cursor: default; }
.fv-btn-ver--disabled:hover { background: #ccc; }
.fv-btn-wpp { width: 38px; height: 38px; background: #25D366; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; text-decoration: none; transition: all .2s; flex-shrink: 0; }
.fv-btn-wpp:hover { background: #1ebe5d; transform: scale(1.05); }
.fv-btn-remove { width: 38px; height: 38px; background: var(--stone); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--stone2); cursor: pointer; transition: all .2s; flex-shrink: 0; color: var(--warm-gray); }
.fv-btn-remove:hover { background: #fef2f2; border-color: #ef4444; color: #ef4444; }

/* ── Empty state ── */
.fv-empty { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5rem 2rem; background: #fff; border-radius: 16px; border: 1px solid var(--stone2); }
.fv-empty--visible { display: flex; }
.fv-empty-icon { font-size: 3.5rem; opacity: .25; margin-bottom: 1.5rem; }
.fv-empty-title { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: .6rem; letter-spacing: -0.02em; }
.fv-empty-text { font-size: 14px; color: var(--warm-gray); line-height: 1.7; max-width: 360px; margin-bottom: 2rem; }
.fv-btn-explore { padding: 12px 26px; background: var(--charcoal); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s; }
.fv-btn-explore:hover { background: var(--orange); color: #fff; }

/* ── Sidebar ── */
.fv-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.25rem; }
.fv-summary-card { background: #fff; border: 1px solid var(--stone2); border-radius: 14px; overflow: hidden; }
.fv-summary-header { background: var(--charcoal); padding: 1.25rem 1.5rem; }
.fv-summary-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.fv-summary-count { font-family: var(--sans); font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.fv-summary-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.fv-btn-wpp-full { width: 100%; padding: 13px; background: #25D366; color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; }
.fv-btn-wpp-full:hover { background: #1ebe5d; color: #fff; }
.fv-btn-clear-all { width: 100%; padding: 11px; background: #fff; color: #ef4444; border: 1.5px solid rgba(239,68,68,.25); border-radius: 10px; font-size: 13px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: all .2s; }
.fv-btn-clear-all:hover { background: #fef2f2; border-color: #ef4444; }
.fv-tip-card { background: var(--orange-light); border: 1px solid rgba(232,119,34,.2); border-radius: 14px; padding: 1.25rem 1.5rem; }
.fv-tip-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.fv-tip-title { font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: .4rem; }
.fv-tip-text { font-size: 12.5px; color: var(--warm-gray); line-height: 1.65; }
.fv-tip-name { font-size: 12px; color: var(--orange); font-style: italic; margin-top: .6rem; }

/* ── CTA banner ── */
.fv-cta-banner { background: var(--orange); padding: 3.5rem 0; }
.fv-cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.fv-cta-title { font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
.fv-cta-sub { font-size: 14px; color: rgba(255,255,255,.75); margin-top: .4rem; }
.fv-cta-btn { background: #fff; color: var(--orange); padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; white-space: nowrap; transition: all .2s; display: inline-flex; align-items: center; gap: 7px; }
.fv-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.15); color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .fv-main-wrap { grid-template-columns: 1fr; }
    .fv-sidebar { position: static; }
    .fv-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 680px) {
    .fv-header-inner { flex-direction: column; align-items: flex-start; }
    .fv-header-actions { width: 100%; }
    .fv-hdr-btn { width: 100%; justify-content: center; }
    .fv-card { grid-template-columns: 1fr; }
    .fv-card-img { min-height: 200px; }
    .fv-features { gap: .5rem; }
    .fv-feat { border-right: none; padding-right: 0; margin-right: 0; }
    .fv-toolbar-inner { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════════
   PÁGINA SOBRE  (.sb-*)
   ══════════════════════════════════════════════════════════════ */

/* ── Utilitários compartilhados ── */
.sb-section  { padding: 5.5rem 0; }
.sb-inner    { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.sb-eyebrow  { font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--orange); text-transform: uppercase; margin-bottom: .75rem; display: flex; align-items: center; gap: 8px; }
.sb-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--orange); }
.sb-eyebrow--light { color: var(--orange); }
.sb-section-title { font-family: var(--sans); font-size: clamp(1.7rem, 2.5vw, 2.5rem); font-weight: 700; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1rem; }
.sb-section-title em { font-style: normal; color: var(--orange); }
.sb-section-title--light { color: white; }
.sb-section-title--light em { color: var(--orange); }
.sb-section-sub { font-size: 15px; color: var(--warm-gray); line-height: 1.75; max-width: 520px; margin-top: .5rem; }
.sb-section-header--center { text-align: center; margin-bottom: 3.5rem; display: flex; flex-direction: column; align-items: center; }
.sb-section-header--center .sb-eyebrow::before { display: none; }
.sb-section-header--center .sb-section-sub { text-align: center; }

/* Botões reutilizados */
.sb-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--charcoal); color: white; border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; border: 2px solid var(--charcoal); transition: all .2s; cursor: pointer; }
.sb-btn-primary:hover { background: var(--orange); border-color: var(--orange); color: white; }
.sb-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: white; color: var(--charcoal); border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; border: 2px solid var(--stone2); transition: all .2s; }
.sb-btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ── Hero split ── */
.sb-hero-section { background: linear-gradient(to right, var(--charcoal) 50%, var(--white) 50%); }
.sb-hero { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 68vh; }
.sb-hero-photo-col { position: relative; background: var(--charcoal); overflow: hidden; }
.sb-hero-photo-col::after { content: ''; position: absolute; right: -1px; top: 0; bottom: 0; width: 60px; background: var(--white); clip-path: polygon(100% 0, 100% 100%, 0 100%); z-index: 3; }
.sb-hero-photo { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 95%; height: calc(100% + 5rem); object-fit: cover; object-position: top center; display: block; z-index: 1; }
.sb-hero-photo-placeholder { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; min-height: 500px; background: linear-gradient(160deg, #2e2e2e 0%, var(--charcoal) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 6rem; font-weight: 700; color: rgba(255,255,255,.15); z-index: 1; }
.sb-hero-name-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 2.5rem 2.5rem; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%); z-index: 2; }
.sb-hero-name { font-family: var(--sans); font-size: 1.6rem; font-weight: 700; color: white; letter-spacing: -0.02em; }
.sb-hero-role { font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-top: 6px; }
.sb-hero-socials { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.sb-hero-social-pill { display: inline-flex; align-items: center; padding: 5px 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; color: rgba(255,255,255,.8); font-size: 11.5px; font-weight: 500; text-decoration: none; transition: all .2s; font-family: var(--sans); letter-spacing: .03em; }
.sb-hero-social-pill:hover { background: var(--orange); border-color: var(--orange); color: white; }
.sb-hero-text-col { background: var(--white); display: flex; flex-direction: column; justify-content: center; padding: 5rem 5rem 5rem 6rem; }
.sb-hero-title { font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.sb-hero-title em { font-style: normal; color: var(--orange); }
.sb-hero-bio { font-size: 15.5px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 1.75rem; max-width: 480px; }
.sb-hero-credentials { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.sb-credential { display: flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 24px; border: 1.5px solid var(--stone2); font-size: 12.5px; color: var(--warm-gray); background: var(--stone); }
.sb-cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.sb-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Stats strip ── */
.sb-stats-strip { background: var(--charcoal); }
.sb-stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.sb-stat { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.sb-stat:last-child { border-right: none; }
.sb-stat-num { font-family: var(--sans); font-size: 2.8rem; font-weight: 700; color: white; line-height: 1; letter-spacing: -0.03em; }
.sb-stat-num span { color: var(--orange); }
.sb-stat-icon { font-size: 2rem; margin-bottom: .5rem; }
.sb-stat-label { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 8px; }
.sb-stat-desc { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 4px; line-height: 1.4; }

/* ── About ── */
#sobre.sb-section { padding-top: 9rem; }
.sb-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.sb-about-img-col { position: relative; }
.sb-about-frame { position: relative; background: var(--stone2); border-radius: 20px; height: 440px; overflow: visible; }
.sb-about-cover { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 90%; height: calc(100% + 5rem); object-fit: contain; object-position: bottom center; display: block; }
.sb-about-cover--empty { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; background: linear-gradient(160deg, var(--stone2) 0%, #ddd8d2 100%); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.4); border-radius: 20px; }
.sb-about-accent { position: absolute; bottom: -24px; right: -24px; width: 140px; height: 140px; background: var(--orange); border-radius: 16px; z-index: -1; }
.sb-float-card { position: absolute; bottom: -1.5rem; right: -2rem; background: var(--charcoal); border-radius: 16px; padding: 1.25rem 1.5rem; min-width: 180px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.sb-float-num { font-family: var(--sans); font-size: 2.5rem; font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -0.03em; }
.sb-float-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .06em; }
.sb-about-body { font-size: 15.5px; color: var(--warm-gray); line-height: 1.85; margin-top: 1.5rem; }
.sb-about-body p { margin-bottom: 1.25rem; }
.sb-about-body p:last-child { margin-bottom: 0; }

/* ── Differentials ── */
.sb-diff-section { background: var(--stone); }
.sb-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.sb-diff-card { background: var(--white); border-radius: 16px; padding: 2rem 1.75rem; border: 1.5px solid var(--stone2); transition: all .25s; position: relative; overflow: hidden; }
.sb-diff-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--stone2); transition: background .25s; }
.sb-diff-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.08); border-color: transparent; }
.sb-diff-card:hover::before { background: var(--orange); }
.sb-diff-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.6rem; }
.sb-diff-title { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: .6rem; }
.sb-diff-text { font-size: 13.5px; color: var(--warm-gray); line-height: 1.7; }

/* ── Areas ── */
.sb-areas-section { background: var(--charcoal); padding: 5rem 0; }
.sb-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sb-area-card { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 2rem 1.75rem; background: rgba(255,255,255,.04); transition: all .25s; }
.sb-area-card:hover { background: rgba(255,255,255,.07); border-color: color-mix(in srgb, var(--orange) 35%, transparent); }
.sb-area-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.sb-area-name { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: white; margin-bottom: .4rem; }
.sb-area-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 1rem; }
.sb-area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sb-area-tag { font-size: 11px; padding: 4px 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; color: rgba(255,255,255,.55); }

/* ── Testimonials ── */
.sb-testi-section { background: var(--stone); }
.sb-testi-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.sb-testi-cta-col { position: sticky; top: 100px; }
.sb-testi-cta-text { font-size: 14.5px; color: var(--warm-gray); line-height: 1.75; margin-top: .75rem; }
.sb-testi-list { display: flex; flex-direction: column; gap: 1.25rem; }
.sb-testi-card { background: var(--white); border-radius: 14px; padding: 1.75rem; border: 1px solid var(--stone2); transition: all .2s; }
.sb-testi-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.06); border-color: transparent; }
.sb-testi-quote { font-size: 3rem; line-height: .8; color: var(--orange); margin-bottom: .75rem; display: block; font-family: Georgia, serif; }
.sb-testi-text { font-size: 14.5px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 1.25rem; }
.sb-testi-author { display: flex; align-items: center; gap: 12px; }
.sb-testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: .85rem; font-weight: 600; color: white; flex-shrink: 0; }
.sb-testi-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.sb-testi-city { font-size: 12px; color: var(--warm-gray); }

/* ── Contact ── */
.sb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.sb-contact-lead { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-top: 1rem; margin-bottom: 2.5rem; }
.sb-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.sb-contact-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 12px; background: var(--stone); border: 1px solid var(--stone2); transition: all .2s; text-decoration: none; }
.sb-contact-item:not(.sb-contact-item--static):hover { border-color: var(--orange); background: var(--orange-light); }
.sb-contact-item--static { cursor: default; }
.sb-contact-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; background: white; border: 1px solid var(--stone2); }
.sb-contact-label { font-size: 11px; color: var(--warm-gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.sb-contact-val { font-size: 14.5px; font-weight: 500; color: var(--charcoal); }
.sb-contact-arrow { margin-left: auto; color: var(--warm-gray); transition: transform .2s, color .2s; }
.sb-contact-item:hover .sb-contact-arrow { transform: translateX(4px); color: var(--orange); }
.sb-map-col { }
.sb-map-wrap { border-radius: 16px; overflow: hidden; height: 380px; border: 1px solid var(--stone2); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.sb-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CTA banner ── */
.sb-cta-banner { background: var(--orange); padding: 4rem 0; position: relative; overflow: hidden; }
.sb-cta-banner::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: rgba(255,255,255,.06); border-radius: 50%; pointer-events: none; }
.sb-cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; position: relative; z-index: 1; }
.sb-cta-title { font-family: var(--sans); font-size: clamp(1.4rem, 2.2vw, 2.2rem); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.02em; }
.sb-cta-sub { font-size: 14px; color: rgba(255,255,255,.75); margin-top: .4rem; }
.sb-cta-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.sb-cta-btn-white { background: white; color: var(--orange); padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; white-space: nowrap; transition: all .2s; }
.sb-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.15); color: var(--orange); }
.sb-cta-btn-outline { border: 2px solid rgba(255,255,255,.4); color: white; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; white-space: nowrap; transition: all .2s; }
.sb-cta-btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sb-diff-grid { grid-template-columns: repeat(2, 1fr); }
    .sb-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .sb-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sb-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .sb-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
    .sb-stat:last-child { border-bottom: none; }
}
@media (max-width: 900px) {
    .sb-hero-section { background: var(--charcoal); }
    .sb-hero { grid-template-columns: 1fr; min-height: auto; }
    .sb-hero-photo-col { height: 480px; overflow: hidden; }
    .sb-hero-photo-col::after { display: none; }
    .sb-hero-photo { left: 0; transform: none; width: 100%; height: 100%; }
    .sb-hero-photo-placeholder { min-height: 0; height: 100%; }
    .sb-hero-text-col { padding: 4rem 2rem; }
    .sb-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sb-about-frame { height: 360px; }
    .sb-about-accent { display: none; }
    .sb-float-card { position: static; margin-top: 1.5rem; }
    .sb-testi-layout { grid-template-columns: 1fr; gap: 3rem; }
    .sb-testi-cta-col { position: static; }
    .sb-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sb-cta-inner { flex-direction: column; text-align: center; }
    .sb-cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
    .sb-diff-grid { grid-template-columns: 1fr; }
    .sb-areas-grid { grid-template-columns: 1fr; }
    .sb-stats-inner { grid-template-columns: 1fr 1fr; }
    .sb-hero-text-col { padding: 3rem 1.5rem; }
    .sb-section { padding: 4rem 0; }
}

/* ════════════════════════════════════════
   CONTATO  (prefix: ct-)
   ════════════════════════════════════════ */

/* Page header */
.ct-page-header { background: var(--charcoal); padding: 3rem 0 5rem; position: relative; overflow: hidden; }
.ct-page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 120% at 100% 50%, rgba(232,119,34,.1) 0%, transparent 65%); }
.ct-page-header::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.ct-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ct-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.25rem; }
.ct-breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.ct-breadcrumb a:hover { color: var(--orange); }
.ct-page-title { font-family: var(--sans); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -0.025em; }
.ct-page-title em { font-style: normal; color: var(--orange); }
.ct-page-sub { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 1rem; max-width: 420px; }

/* Corretor card no header */
.ct-corretor-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 2rem; display: flex; gap: 1.5rem; align-items: center; backdrop-filter: blur(8px); }
.ct-corretor-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.15); flex-shrink: 0; background: var(--warm-gray); }
.ct-corretor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.ct-corretor-name { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: white; letter-spacing: -0.02em; margin-bottom: 4px; }
.ct-corretor-role { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.ct-corretor-creci { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.ct-corretor-status { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #4ade80; font-weight: 500; }
.ct-corretor-status::before { content: ''; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,.2); flex-shrink: 0; }

/* Main wrapper */
.ct-main { max-width: 1280px; margin: 0 auto; padding: 4rem 2rem 5rem; }

/* Channels grid */
.ct-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.ct-channel-card { border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--stone2); transition: all .25s; text-decoration: none; background: var(--white); }
.ct-channel-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.09); border-color: transparent; }

/* WPP — card destaque */
.ct-channel-card.ct-wpp { background: var(--charcoal); border-color: transparent; grid-column: 1 / -1; flex-direction: row; align-items: center; }
.ct-channel-card.ct-wpp:hover { box-shadow: 0 24px 60px rgba(0,0,0,.2); transform: translateY(-4px); }
.ct-wpp-left { flex: 1; padding: 2.5rem 3rem; }
.ct-wpp-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #25D366; margin-bottom: .75rem; display: flex; align-items: center; gap: 8px; }
.ct-wpp-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #25D366; }
.ct-wpp-title { font-family: var(--sans); font-size: clamp(1.5rem, 2.2vw, 2.2rem); font-weight: 700; color: white; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: .75rem; }
.ct-wpp-title em { font-style: normal; color: #25D366; }
.ct-wpp-sub { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1.75rem; max-width: 420px; }
.ct-btn-wpp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: var(--sans); text-decoration: none; transition: all .2s; animation: ct-wpp-pulse 2.5s ease-out infinite; }
.ct-btn-wpp:hover { background: #1ebe5d; transform: translateY(-2px); }
@keyframes ct-wpp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.ct-wpp-right { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; border-left: 1px solid rgba(255,255,255,.07); min-width: 260px; }
.ct-wpp-detail { display: flex; align-items: center; gap: 12px; }
.ct-wpp-detail-icon { width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ct-wpp-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.ct-wpp-detail-val { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }

/* Cards secundários */
.ct-channel-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.ct-channel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; flex-shrink: 0; }
.ct-icon-phone { background: #e8f0fe; }
.ct-icon-ig { background: linear-gradient(135deg, #fdf0e6 0%, #fce4ec 100%); }
.ct-icon-fb { background: #e8f0fe; }
.ct-channel-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 5px; }
.ct-channel-value { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; letter-spacing: -0.02em; }
.ct-channel-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.55; margin-bottom: 1.25rem; flex: 1; }
.ct-channel-action { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; transition: gap .2s; }
.ct-channel-action::after { content: '→'; }
.ct-channel-card:hover .ct-channel-action { gap: 11px; }

/* Info grid */
.ct-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.ct-info-card { background: var(--stone); border: 1px solid var(--stone2); border-radius: 16px; padding: 2rem; }
.ct-info-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; }
.ct-info-title::after { content: ''; flex: 1; height: 1px; background: var(--stone2); }
.ct-schedule-text { font-size: 15px; color: var(--charcoal); line-height: 1.75; }
.ct-schedule-note { margin-top: 1.25rem; font-size: 13px; color: var(--warm-gray); background: var(--white); border: 1px solid var(--stone2); border-radius: 10px; padding: 12px 16px; line-height: 1.6; }
.ct-region-item { display: flex; align-items: flex-start; gap: 12px; padding: 1rem 1.25rem; background: var(--white); border-radius: 10px; border: 1px solid var(--stone2); transition: border-color .2s; margin-bottom: .6rem; }
.ct-region-item:last-child { margin-bottom: 0; }
.ct-region-item:hover { border-color: var(--orange); }
.ct-region-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.ct-region-text { font-size: 14px; color: var(--charcoal); line-height: 1.6; }

/* Mapa */
.ct-map-section { margin-bottom: 3rem; }
.ct-map-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.ct-map-title::after { content: ''; flex: 1; height: 1px; background: var(--stone2); }
.ct-map-wrap { border-radius: 16px; overflow: hidden; height: 400px; border: 1px solid var(--stone2); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.ct-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Redes sociais */
.ct-social-section { margin-bottom: 3rem; }
.ct-social-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.ct-social-title::after { content: ''; flex: 1; height: 1px; background: var(--stone2); }
.ct-social-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.ct-social-card { border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem; border: 1px solid var(--stone2); background: var(--white); text-decoration: none; transition: all .25s; }
.ct-social-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: transparent; }
.ct-social-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.ct-social-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.ct-social-handle { font-size: 12.5px; color: var(--warm-gray); }
.ct-social-cta { font-size: 12px; color: var(--orange); font-weight: 600; }
.ct-sc-ig .ct-social-icon { background: linear-gradient(135deg, #fce4ec 0%, #fdf0e6 100%); }
.ct-sc-ig:hover { border-color: #e1306c; }
.ct-sc-fb .ct-social-icon { background: #e8f0fe; }
.ct-sc-fb:hover { border-color: #1877f2; }

/* CTA final */
.ct-cta { background: var(--charcoal); border-radius: 24px; padding: 3.5rem; display: flex; justify-content: space-between; align-items: center; gap: 3rem; position: relative; overflow: hidden; }
.ct-cta::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,119,34,.12) 0%, transparent 70%); }
.ct-cta-left { position: relative; z-index: 1; }
.ct-cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .75rem; display: flex; align-items: center; gap: 8px; }
.ct-cta-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--orange); }
.ct-cta-title { font-family: var(--sans); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; color: white; line-height: 1.15; letter-spacing: -0.025em; }
.ct-cta-title em { font-style: normal; color: var(--orange); }
.ct-cta-sub { font-size: 14px; color: rgba(255,255,255,.5); margin-top: .75rem; max-width: 440px; line-height: 1.65; }
.ct-cta-actions { display: flex; gap: 1rem; flex-shrink: 0; position: relative; z-index: 1; }
.ct-btn-wpp-large { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 15px 28px; border-radius: 10px; font-size: 14.5px; font-weight: 600; font-family: var(--sans); text-decoration: none; transition: all .2s; white-space: nowrap; }
.ct-btn-wpp-large:hover { background: #1ebe5d; transform: translateY(-2px); }
.ct-btn-imoveis { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; font-family: var(--sans); text-decoration: none; transition: all .2s; white-space: nowrap; }
.ct-btn-imoveis:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: white; }

/* Responsive */
@media (max-width: 900px) {
    .ct-header-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .ct-corretor-card { display: none; }
    .ct-channel-card.ct-wpp { flex-direction: column; }
    .ct-wpp-right { border-left: none; border-top: 1px solid rgba(255,255,255,.07); min-width: 0; width: 100%; flex-direction: row; flex-wrap: wrap; gap: .75rem; padding: 1.5rem 2.5rem; }
    .ct-wpp-detail { flex: 1 1 44%; }
    .ct-channels { grid-template-columns: 1fr; }
    .ct-info-grid { grid-template-columns: 1fr; }
    .ct-cta { flex-direction: column; text-align: center; }
    .ct-cta-eyebrow, .ct-cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
    .ct-wpp-left { padding: 2rem 1.5rem; }
    .ct-wpp-right { padding: 1.25rem 1.5rem; flex-direction: column; }
    .ct-wpp-detail { flex: none; }
    .ct-cta { padding: 2.5rem 1.5rem; }
    .ct-cta-actions { flex-direction: column; }
}
