/* ==========================================================
   ÉLITE IMÓVEIS — style.css
   Arquivo CSS compartilhado por todas as páginas
   ========================================================== */

/* ---------- RESET & VARIÁVEIS ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:         #07091a;
  --navy-mid:     #0d1226;
  --navy-light:   #162040;
  --gold:         #c9a96e;
  --gold-light:   #dfc08e;
  --cream:        #faf7f2;
  --white:        #ffffff;
  --gray:         #8a8fa0;
  --gray-light:   #c8ccd8;
  --text:         #1a1e2e;
  --border-gold:  rgba(201,169,110,0.22);
  --border-dark:  rgba(255,255,255,0.07);
  --shadow-lg:    0 24px 64px rgba(7,9,26,0.18);
  --shadow-gold:  0 8px 32px rgba(201,169,110,0.2);
  --ff-serif:     'Cormorant Garamond', Georgia, serif;
  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-sans:      'Jost', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--ff-sans); cursor: pointer; }
input, textarea, select { font-family: var(--ff-sans); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- LOADER ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--ff-display);
  font-size: 2.2rem; color: var(--white); letter-spacing: 0.08em;
}
.loader-logo span { color: var(--gold); font-style: italic; }
.loader-bar { width: 140px; height: 1px; background: rgba(255,255,255,0.08); overflow: hidden; }
.loader-bar::after {
  content: ''; display: block; height: 100%; width: 0;
  background: var(--gold);
  animation: loaderFill 1.4s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9000;
  background: var(--navy-mid); color: var(--white);
  padding: 15px 22px; border-left: 3px solid var(--gold);
  font-size: 0.84rem; display: flex; align-items: center; gap: 12px;
  transform: translateX(130%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--gold); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled,
.navbar.solid {
  background: rgba(7,9,26,0.97);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-gold);
  height: 68px;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.55rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--gold); font-weight: 700;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
  transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 22px;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: 0.3s; }

/* Mobile menu overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 790;
  background: rgba(7,9,26,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.75); font-size: 1.3rem;
  font-family: var(--ff-serif); font-weight: 500;
  letter-spacing: 0.06em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 28px; right: 28px;
  color: var(--gray); font-size: 1.4rem; cursor: pointer; background: none; border: none;
}

/* ---------- BOTÕES ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  border: none; padding: 15px 34px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s var(--ease); cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white); padding: 15px 34px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text); padding: 14px 30px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---------- ELEMENTOS COMUNS ---------- */
.tag-line {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.tag-line::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text); letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--gray); font-size: 0.93rem;
  font-weight: 300; line-height: 1.85;
  max-width: 460px; margin-top: 14px;
}
.section-sub.light { color: rgba(255,255,255,0.42); }
.gold-rule { width: 52px; height: 2px; background: var(--gold); margin: 22px 0; }
.gold-rule.center { margin: 22px auto; }

/* ---------- PAGE HERO (páginas internas) ---------- */
.page-hero {
  background: var(--navy);
  padding: 148px 64px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 85% 50%, rgba(201,169,110,0.07) 0%, transparent 65%);
}
.page-hero-inner { position: relative; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: rgba(255,255,255,0.04);
  padding: 12px 64px;
  display: flex; gap: 8px; align-items: center;
  font-size: 0.73rem; color: rgba(255,255,255,0.38);
}
.breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.3; }
.breadcrumb .cur { color: var(--gold); }

/* ---------- CARD DE IMÓVEL ---------- */
.property-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-card:hover .card-thumb img { transform: scale(1.07); }
.card-thumb { position: relative; height: 254px; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: var(--navy);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 13px;
}
.card-badge.dark { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.card-fav {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  background: rgba(7,9,26,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  transition: all 0.3s; cursor: pointer;
}
.card-fav:hover,
.card-fav.faved { background: var(--gold); color: var(--white); border-color: var(--gold); }
.card-body { padding: 26px; }
.card-location {
  font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.13em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 9px;
  display: flex; align-items: center; gap: 7px;
}
.card-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem; font-weight: 500;
  color: var(--navy); line-height: 1.3; margin-bottom: 14px;
}
.card-price {
  font-family: var(--ff-serif);
  font-size: 1.55rem; font-weight: 600; color: var(--navy);
  margin-bottom: 18px;
}
.card-price small { font-family: var(--ff-sans); font-size: 0.72rem; color: var(--gray); font-weight: 400; }
.card-feats {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.07);
}
.card-feat { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--gray); }
.card-feat i { color: var(--gold); font-size: 0.8rem; }

/* ---------- GRIDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ---------- PAGINAÇÃO ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 0 64px 64px; }
.pag-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.1); font-size: 0.82rem; color: var(--gray);
  background: none; transition: all 0.3s; cursor: pointer;
}
.pag-btn:hover, .pag-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- MAPA PLACEHOLDER ---------- */
.map-wrap { height: 420px; background: var(--navy-mid); position: relative; overflow: hidden; }
.map-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(0deg, rgba(201,169,110,0.03) 0px, rgba(201,169,110,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(201,169,110,0.03) 0px, rgba(201,169,110,0.03) 1px, transparent 1px, transparent 60px),
    var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.map-placeholder i { font-size: 2.8rem; color: var(--gold); animation: mapBounce 2s ease-in-out infinite; }
.map-placeholder p { color: rgba(255,255,255,0.28); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
@keyframes mapBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #050813;
  padding: 80px 64px 40px;
  border-top: 1px solid var(--border-gold);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 60px;
}
.footer-brand .nav-logo { pointer-events: none; }
.footer-brand p {
  font-size: 0.855rem; color: rgba(255,255,255,0.35);
  line-height: 1.85; margin-top: 18px; max-width: 270px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 26px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.8rem; transition: all 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.67rem; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.38); font-size: 0.855rem;
  font-weight: 300; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.22); }
.footer-bottom a { color: var(--gold); }
.creci-tag { font-size: 0.72rem; color: rgba(255,255,255,0.22); display: flex; align-items: center; gap: 6px; }
.creci-tag span { color: var(--gold); }

/* ---------- ANIMAÇÕES DE SCROLL ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ==========================================================
   PÁGINA: index.html — HOME
   ========================================================== */

/* Hero */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,37,64,0.8) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-img-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; overflow: hidden;
}
.hero-img-wrap::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 42%; z-index: 2;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) saturate(0.8); }
.hero-content { position: relative; z-index: 3; padding: 148px 64px 80px; max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 28px;
}
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.6); font-size: 1rem; font-weight: 300; max-width: 420px; line-height: 1.8; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 60px; left: 64px;
  display: flex; gap: 60px; z-index: 3;
}
.hero-stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.42);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px;
}
.hero-scroll-indicator {
  position: absolute; right: 64px; bottom: 60px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
  height: 100%;
}
@keyframes scrollDown { 0%{top:-100%} 50%{top:0%} 100%{top:100%} }

/* Search bar */
.search-section { background: var(--navy-mid); padding: 32px 64px; border-bottom: 1px solid var(--border-gold); }
.search-bar {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1px; background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.search-field { background: var(--navy-light); padding: 18px 24px; display: flex; flex-direction: column; gap: 4px; }
.search-field label { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.search-field input,
.search-field select { background: none; border: none; outline: none; color: var(--white); font-family: var(--ff-sans); font-size: 0.88rem; font-weight: 300; width: 100%; }
.search-field select option { background: var(--navy-mid); }
.search-btn {
  background: var(--gold); border: none; padding: 0 28px;
  color: var(--navy); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.3s; white-space: nowrap;
}
.search-btn:hover { background: var(--gold-light); }

/* Seções da home */
.section-home { padding: 100px 64px; }
.section-dark { background: var(--navy); padding: 100px 64px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.section-header-row .section-sub { margin-top: 0; }

/* Imóvel destaque especial */
.featured-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto;
  border: 1px solid var(--border-gold);
}
.featured-img-col { position: relative; overflow: hidden; min-height: 500px; }
.featured-img-col img { width: 100%; height: 100%; object-fit: cover; }
.featured-img-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,9,26,0.28) 0%, transparent 60%);
}
.featured-tag-overlay {
  position: absolute; top: 28px; left: 28px; z-index: 2;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 18px; display: flex; align-items: center; gap: 8px;
}
.featured-content-col { padding: 60px; background: var(--navy-light); }
.featured-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.feat-meta-item dt { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.feat-meta-item dd { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--white); font-weight: 500; }
.featured-price { font-family: var(--ff-serif); font-size: 2.4rem; color: var(--gold); font-weight: 600; margin-bottom: 32px; line-height: 1; }
.featured-price small { font-size: 0.8rem; color: var(--gray); font-family: var(--ff-sans); display: block; margin-top: 6px; }

/* Diferenciais */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; }
.why-card { padding: 44px 28px; text-align: center; position: relative; transition: transform 0.3s; }
.why-card:hover { transform: translateY(-5px); }
.why-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 36px; height: 2px; background: var(--gold); }
.why-icon { width: 64px; height: 64px; margin: 0 auto 24px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.why-title { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--navy); font-weight: 500; margin-bottom: 14px; }
.why-text { font-size: 0.875rem; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* Depoimentos */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.testimonial-card { padding: 38px; border: 1px solid var(--border-gold); background: rgba(255,255,255,0.03); transition: border-color 0.3s, transform 0.3s; }
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 5px; margin-bottom: 20px; }
.testimonial-text { font-family: var(--ff-serif); font-style: italic; font-size: 1.08rem; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-light); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; }
.testimonial-name { font-size: 0.85rem; color: var(--white); font-weight: 600; }
.testimonial-role { font-size: 0.72rem; color: var(--gray); margin-top: 3px; }

/* CTA banner */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 64px; text-align: center;
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ==========================================================
   PÁGINA: imoveis.html — LISTAGEM
   ========================================================== */

.filters-bar {
  background: var(--white);
  padding: 22px 64px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky; top: 68px; z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.filter-btn {
  background: none; border: 1px solid rgba(0,0,0,0.12);
  padding: 8px 20px; font-family: var(--ff-sans);
  font-size: 0.78rem; font-weight: 500; color: var(--gray);
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.05em;
}
.filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.filter-count { margin-left: auto; font-size: 0.78rem; color: var(--gray); }
.listings-section { padding: 56px 64px; background: var(--cream); }

/* ==========================================================
   PÁGINA: imovel.html — DETALHE
   ========================================================== */

.detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr;
  height: 480px; gap: 4px;
}
.detail-gallery-main { overflow: hidden; }
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.detail-gallery-side img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery-more { position: relative; overflow: hidden; cursor: pointer; }
.detail-gallery-more img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); transition: filter 0.3s; }
.detail-gallery-more:hover img { filter: brightness(0.35); }
.detail-gallery-more-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  color: var(--white); font-family: var(--ff-serif);
}
.detail-gallery-more-overlay i { font-size: 1.4rem; color: var(--gold); }
.detail-gallery-more-overlay span { font-size: 0.85rem; letter-spacing: 0.1em; }

.detail-body {
  padding: 60px 64px; background: var(--cream);
  display: grid; grid-template-columns: 1fr 360px;
  gap: 52px; align-items: start;
}
.detail-tags-row { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.detail-badge { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; background: var(--gold); color: var(--navy); }
.detail-location { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.detail-title { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 400; color: var(--navy); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 14px; }
.detail-price-row { display: flex; align-items: baseline; gap: 18px; margin-bottom: 32px; }
.detail-price { font-family: var(--ff-serif); font-size: 2.4rem; color: var(--navy); font-weight: 600; }
.detail-ref { font-size: 0.78rem; color: var(--gray); }
.detail-feats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.07); margin-bottom: 40px; }
.detail-feat-item { background: var(--white); padding: 20px; text-align: center; }
.detail-feat-item i { font-size: 1.2rem; color: var(--gold); margin-bottom: 8px; display: block; }
.detail-feat-item strong { display: block; font-family: var(--ff-serif); font-size: 1.2rem; color: var(--navy); font-weight: 500; }
.detail-feat-item span { font-size: 0.68rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.detail-section-title { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--navy); font-weight: 500; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.detail-desc { font-size: 0.9rem; color: #555; line-height: 1.95; font-weight: 300; margin-bottom: 32px; }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.amenity-item { background: rgba(201,169,110,0.07); border: 1px solid var(--border-gold); padding: 8px 16px; font-size: 0.78rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.amenity-item i { color: var(--gold); font-size: 0.72rem; }

/* Card lateral de contato */
.contact-sidebar { background: var(--white); padding: 36px; border: 1px solid rgba(0,0,0,0.08); position: sticky; top: 90px; box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.agent-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.agent-av { width: 54px; height: 54px; border-radius: 50%; background: var(--navy-light); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; overflow: hidden; }
.agent-av img { width: 100%; height: 100%; object-fit: cover; }
.agent-name { font-family: var(--ff-serif); font-size: 1rem; color: var(--navy); font-weight: 500; }
.agent-creci { font-size: 0.72rem; color: var(--gray); margin-top: 3px; }
.contact-sidebar h3 { font-family: var(--ff-serif); font-size: 1rem; color: var(--navy); margin-bottom: 20px; }
.contact-sidebar input,
.contact-sidebar textarea {
  width: 100%; border: 1px solid rgba(0,0,0,0.1); padding: 12px 16px;
  font-family: var(--ff-sans); font-size: 0.875rem;
  outline: none; margin-bottom: 10px; transition: border-color 0.3s;
  background: var(--cream); color: var(--text);
}
.contact-sidebar input:focus,
.contact-sidebar textarea:focus { border-color: var(--gold); background: var(--white); }
.contact-sidebar textarea { height: 100px; resize: none; }
.sidebar-phone { text-align: center; margin-top: 16px; font-size: 0.78rem; color: var(--gray); }
.sidebar-phone a { color: var(--gold); font-weight: 600; }

/* ==========================================================
   PÁGINA: blog.html — BLOG
   ========================================================== */

.blog-section { padding: 60px 64px; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--white); cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb { height: 220px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.blog-cat { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
.blog-date { font-size: 0.75rem; color: var(--gray-light); display: flex; align-items: center; gap: 5px; }
.blog-date i { font-size: 0.65rem; color: var(--gray); }
.blog-title { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--navy); line-height: 1.4; margin-bottom: 12px; font-weight: 500; }
.blog-excerpt { font-size: 0.855rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.blog-read-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; transition: gap 0.2s; }
.blog-card:hover .blog-read-more { gap: 12px; }

/* ==========================================================
   PÁGINA: contato.html — CONTATO
   ========================================================== */

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.contact-left { background: var(--navy); padding: 80px 64px; position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%); }
.contact-left .section-title { font-size: 2.2rem; margin-bottom: 14px; }
.contact-info-block { margin-top: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.ci-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; }
.ci-label { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 5px; }
.ci-value { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }
.contact-right { background: var(--white); padding: 80px 64px; }
.contact-right .section-title { font-size: 1.9rem; margin-bottom: 8px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border: 1px solid rgba(0,0,0,0.1);
  padding: 14px 18px; font-family: var(--ff-sans);
  font-size: 0.88rem; outline: none; transition: border-color 0.3s;
  background: var(--cream); color: var(--text);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { height: 130px; resize: none; }

/* ==========================================================
   RESPONSIVO
   ========================================================== */

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 130px 24px 60px; }
  .hero-img-wrap { width: 100%; opacity: 0.25; }
  .hero-img-wrap::before { width: 100%; }
  .hero-stats { left: 24px; flex-wrap: wrap; gap: 32px; }
  .hero-scroll-indicator { display: none; }
  .search-section { padding: 24px; }
  .search-bar { grid-template-columns: 1fr; }
  .section-home, .section-dark, .listings-section, .blog-section { padding: 60px 24px; }
  .filters-bar { padding: 18px 24px; }
  .breadcrumb { padding: 12px 24px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-wrap { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; height: 320px; }
  .detail-gallery-side { display: none; }
  .detail-body { grid-template-columns: 1fr; padding: 32px 24px; }
  .detail-feats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 56px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 24px 60px; }
  .site-footer { padding: 60px 24px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pagination { padding: 0 24px 48px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 70px 24px; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-feats-grid { grid-template-columns: 1fr 1fr; }
}
