/* ================================================================
   DESIGN PREMIUM — Navy #0A1F3C · White #FFFFFF · Gold #C8A96E
   Estilo: Minimalista de alto padrão · Tipografia elegante
================================================================ */

:root {
  --navy:        #0A1F3C;
  --navy-2:      #122848;
  --navy-3:      #1C3454;
  --white:       #FFFFFF;
  --cream:       #F8F6F1;
  --cream-2:     #EDE9E0;
  --gold:        #C8A96E;
  --gold-2:      #A8894E;
  --gold-3:      #D4B87A;
  --text:        #0A1F3C;
  --text-2:      #3D5470;
  --muted:       #8896A7;
  --border:      #DDD8CE;
  --border-2:    #EDE9E0;

  --shadow-xs: 0 1px 4px rgba(10,31,60,.05);
  --shadow-sm: 0 2px 16px rgba(10,31,60,.08);
  --shadow-md: 0 8px 36px rgba(10,31,60,.13);
  --shadow-lg: 0 20px 60px rgba(10,31,60,.18);
  --shadow-gold: 0 8px 28px rgba(200,169,110,.32);

  --radius:    12px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s, height .3s;
}

.header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .4s;
}

.header.scrolled::after { opacity: 1; }
.header.scrolled {
  background: rgba(255,255,255,.97);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color .3s;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-weight: 800; flex-shrink: 0;
}
.logo span { color: var(--gold); }
.header.scrolled .logo { color: var(--navy); }

/* Nav */
nav {
  display: flex;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav a {
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  transition: color .2s;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
nav a:hover::after { width: 100%; }
nav a:hover { color: var(--gold); }
.header.scrolled nav a { color: var(--text-2); }
.header.scrolled nav a:hover { color: var(--gold); }

/* WhatsApp CTA button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-wa:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── MENU MOBILE ─────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.header.scrolled .menu-toggle span { background: var(--navy); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.65rem;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  transition: color .2s;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-mobile a:first-of-type { border-top: 1px solid rgba(255,255,255,.05); }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-cta {
  background: var(--gold); color: var(--navy);
  padding: 15px 48px; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: 32px; border: none;
  display: inline-block;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,31,60,.78) 0%,
    rgba(10,31,60,.42) 42%,
    rgba(10,31,60,.88) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: .67rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 26px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.72;
}

/* Hero search box */
.hero-search-wrap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.hero-search {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
}
.hero-search select {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  padding: 13px 40px 13px 16px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  width: 100%;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M5 6L0 0h10z' fill='%23C8A96E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .2s;
}
.hero-search select option { background: var(--navy); color: var(--white); }
.hero-search select:focus { outline: none; border-color: var(--gold); }
.btn-buscar {
  background: var(--gold); color: var(--navy);
  border: none; padding: 13px 28px;
  border-radius: 10px; font-weight: 700;
  font-size: .9rem; letter-spacing: .05em;
  text-transform: uppercase; white-space: nowrap;
  transition: all .25s var(--ease);
}
.btn-buscar:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hero trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero-trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: .62rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}
.hero-trust-sep {
  width: 1px; height: 38px;
  background: rgba(255,255,255,.1);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: bobble 2.6s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(200,169,110,.5), transparent);
}
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(10px); }
}

/* ── FILTROS ─────────────────────────────────────────────── */
.filtros-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 30px 5%;
  box-shadow: var(--shadow-sm);
}
.filtros-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 14px; align-items: end;
}
.filtro-group label {
  display: block;
  font-size: .63rem; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 8px;
}
.filtro-group select,
.filtro-group input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 11px 14px; border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.filtro-group select:focus,
.filtro-group input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.12);
  background: var(--white);
}
.filtro-btns { display: flex; gap: 8px; align-items: flex-end; }
.btn-filtrar {
  background: var(--navy); color: var(--white);
  border: none; padding: 11px 22px; border-radius: 9px;
  font-weight: 700; font-size: .84rem; letter-spacing: .04em;
  transition: all .22s var(--ease); white-space: nowrap; flex: 1;
}
.btn-filtrar:hover { background: var(--navy-2); box-shadow: 0 4px 16px rgba(10,31,60,.2); }
.btn-limpar {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border); padding: 11px 14px; border-radius: 9px;
  font-size: .84rem; transition: all .22s var(--ease); white-space: nowrap;
}
.btn-limpar:hover { border-color: var(--gold); color: var(--gold-2); }
.quartos-btns { display: flex; gap: 5px; }
.quartos-btn {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-2); padding: 8px 10px; border-radius: 7px;
  font-size: .82rem; font-weight: 600; flex: 1; text-align: center;
  transition: all .2s var(--ease); font-family: 'DM Sans', sans-serif;
}
.quartos-btn.active, .quartos-btn:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ── IMÓVEIS SECTION ─────────────────────────────────────── */
.imoveis-section {
  padding: 84px 5%;
  max-width: 1440px; margin: 0 auto;
}
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.section-header-left { }
.section-eyebrow {
  font-size: .62rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .2em;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-header-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--navy); line-height: 1.12;
}
.section-header-left h2 span { color: var(--gold); }
.section-rule {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 14px;
}
.section-header .result-count {
  color: var(--muted); font-size: .84rem; font-weight: 500; padding-bottom: 8px;
}

/* ── CARDS ───────────────────────────────────────────────── */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s;
  position: relative;
}
.card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,110,.22);
}

/* Card image */
.card-img {
  position: relative; aspect-ratio: 3/2;
  overflow: hidden; background: var(--cream-2);
}
.mini-slides {
  display: flex; height: 100%;
  transition: transform .44s var(--ease);
}
.mini-slide { min-width: 100%; height: 100%; }
.mini-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .mini-slide img { transform: scale(1.07); }
.mini-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.95); border: none;
  color: var(--navy); width: 36px; height: 36px;
  border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; opacity: 0; transition: opacity .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(10,31,60,.18); line-height: 1;
}
.mini-prev { left: 12px; }
.mini-next { right: 12px; }
.card-img:hover .mini-btn { opacity: 1; }
.mini-btn:hover { transform: translateY(-50%) scale(1.08); }
.mini-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.mini-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.5); transition: all .25s;
}
.mini-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* Badges */
.badge {
  position: absolute; padding: 5px 11px;
  border-radius: 20px; font-size: .62rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; z-index: 6;
}
.badge-tipo {
  top: 14px; left: 14px;
  background: rgba(10,31,60,.86); color: var(--white);
  backdrop-filter: blur(6px);
}
.badge-fin {
  top: 14px; left: auto; right: 14px;
  background: var(--gold); color: var(--navy);
}
.badge-dest {
  top: 52px; right: 14px;
  background: transparent; color: var(--gold);
  font-size: 1rem; padding: 0; letter-spacing: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* Card body */
.card-body { padding: 22px 24px 24px; }
.card-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--navy); line-height: 1.1;
  margin-bottom: 5px; display: flex; align-items: baseline; gap: 5px;
}
.card-preco-suf {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 400; color: var(--muted);
}
.card-titulo {
  font-size: .89rem; font-weight: 500; color: var(--text-2);
  margin-bottom: 14px; line-height: 1.52;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-hr { height: 1px; background: var(--border-2); margin-bottom: 14px; }
.card-features {
  display: flex; gap: 14px; color: var(--muted);
  font-size: .75rem; margin-bottom: 10px; flex-wrap: wrap;
}
.card-features span { display: flex; align-items: center; gap: 4px; font-weight: 500; }
.card-local {
  font-size: .73rem; color: var(--muted);
  margin-bottom: 18px; display: flex; align-items: center; gap: 4px;
}
.btn-ver {
  display: block; text-align: center;
  background: transparent; border: 1.5px solid var(--border-2);
  color: var(--text-2); padding: 10px; border-radius: 9px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: all .25s var(--ease);
}
.card:hover .btn-ver {
  border-color: rgba(200,169,110,.55);
  color: var(--gold-2);
  background: rgba(200,169,110,.05);
}

/* ── GALLERY ─────────────────────────────────────────────── */
.galeria-section {
  padding: 108px 5%;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.galeria-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.galeria-header {
  text-align: center; margin-bottom: 68px;
}
.galeria-eyebrow {
  font-size: .62rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .22em; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.galeria-eyebrow::before,
.galeria-eyebrow::after {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold); opacity: .45;
}
.galeria-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--white); margin-bottom: 14px;
}
.galeria-header h2 span { color: var(--gold); }
.galeria-header p { color: rgba(255,255,255,.36); font-size: .93rem; font-weight: 300; }
.galeria-masonry { columns: 3; column-gap: 14px; max-width: 1440px; margin: 0 auto; }
.galeria-item {
  break-inside: avoid; margin-bottom: 14px;
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; display: block;
  border: 1px solid rgba(255,255,255,.04);
}
.galeria-item img { width: 100%; display: block; transition: transform .58s var(--ease); }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,60,.95) 0%, rgba(10,31,60,0) 55%);
  opacity: 0; transition: opacity .32s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 6px;
}
.galeria-item-info {
  font-size: .72rem; color: rgba(255,255,255,.58);
  display: flex; justify-content: space-between; align-items: center;
}
.galeria-item-preco { color: var(--gold); font-weight: 700; font-size: .88rem; }
.galeria-ver-mais { text-align: center; margin-top: 56px; }
.galeria-ver-mais a {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,169,110,.4); color: var(--gold);
  padding: 14px 40px; border-radius: 10px;
  font-weight: 600; font-size: .86rem;
  letter-spacing: .07em; text-transform: uppercase;
  transition: all .25s var(--ease);
}
.galeria-ver-mais a:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}

/* ── PAGINATION ──────────────────────────────────────────── */
.paginacao {
  display: flex; gap: 8px; justify-content: center;
  margin: 64px 0 0; flex-wrap: wrap;
}
.paginacao a,
.paginacao span {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px; font-size: .88rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-2);
  transition: all .22s var(--ease); background: var(--white);
}
.paginacao a:hover,
.paginacao .atual { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CTA + CONTACT ───────────────────────────────────────── */
.cta-section {
  background: var(--cream);
  padding: 108px 5%;
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px; align-items: center;
}
.cta-eyebrow {
  font-size: .62rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .22em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.cta-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--navy);
  line-height: 1.1; margin-bottom: 20px;
}
.cta-left h2 span { color: var(--gold); }
.cta-left > p {
  color: var(--text-2); font-size: .97rem; line-height: 1.82;
  margin-bottom: 36px; max-width: 400px;
}
.cta-checklist {
  list-style: none; margin-bottom: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.cta-checklist li {
  display: flex; align-items: center; gap: 11px;
  font-size: .88rem; color: var(--text-2);
}
.cta-check-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 14px 36px; border-radius: 9px;
  font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .25s var(--ease);
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Contact card */
.contato-card {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.contato-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; color: var(--navy);
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border-2);
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream); border: 1.5px solid var(--border);
  color: var(--text); padding: 13px 16px; border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.1);
  background: var(--white);
}
.form-group textarea { height: 100px; resize: vertical; }
.btn-enviar {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 14px; border-radius: 9px;
  font-weight: 700; font-size: .88rem; font-family: 'DM Sans', sans-serif;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .22s var(--ease);
}
.btn-enviar:hover { background: var(--navy-2); box-shadow: 0 6px 20px rgba(10,31,60,.22); }
.msg-ok {
  background: #EEF8EE; border: 1px solid #7DC87D; color: #2B6B2B;
  padding: 13px 16px; border-radius: 9px; margin-top: 12px;
  display: none; font-size: .88rem;
}
.msg-erro { color: #c55; font-size: .88rem; margin-bottom: 12px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 84px 5% 36px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: .62rem; color: var(--gold); opacity: .6;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px;
}
.footer-grid p { color: rgba(255,255,255,.37); font-size: .85rem; line-height: 1.9; }
.footer-col h4 {
  color: var(--white); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 22px; padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 22px; height: 1px; background: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li,
.footer-col ul a { color: rgba(255,255,255,.37); font-size: .84rem; line-height: 1.8; }
.footer-col ul a { transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a::before {
  content: '→'; font-size: .65rem; color: var(--gold);
  opacity: 0; transform: translateX(-5px); transition: all .2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-col ul a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 12px; color: rgba(255,255,255,.2); font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── COOKIE ──────────────────────────────────────────────── */
#cookie-banner {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 20px 5%; z-index: 9999;
  align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(10,31,60,.08);
}
#cookie-banner p { font-size: .84rem; color: var(--text-2); flex: 1; }
#cookie-banner a { color: var(--gold); font-weight: 600; }
#btn-aceitar-cookies {
  background: var(--navy); color: var(--white);
  border: none; padding: 10px 28px; border-radius: 8px;
  font-weight: 700; font-size: .84rem;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
#btn-aceitar-cookies:hover { background: var(--navy-2); }

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; grid-column: 1/-1; }
.empty-state p { color: var(--muted); font-size: .97rem; line-height: 1.7; }

/* ── ANIMAÇÕES ───────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .imoveis-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; max-width: 640px; gap: 48px; }
}
@media (max-width: 1024px) {
  nav { gap: 28px; }
  .galeria-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .btn-wa { display: none; }
  .header { padding: 0 4%; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle { font-size: .9rem; margin-bottom: 28px; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hero-search .btn-buscar { grid-column: 1/-1; }
  .hero-trust { gap: 24px; }
  .hero-trust-sep { display: none; }
  .filtros-section { padding: 20px 4%; }
  .filtros-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filtro-btns { grid-column: 1/-1; }
  .imoveis-section { padding: 52px 4%; }
  .imoveis-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header-left h2 { font-size: 1.9rem; }
  .galeria-section { padding: 64px 4%; }
  .galeria-header h2 { font-size: 2.2rem; }
  .galeria-masonry { columns: 2; }
  .cta-section { padding: 72px 4%; }
  .cta-left h2 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  footer { padding: 56px 4% 28px; }
  .quartos-btn { font-size: .78rem; padding: 7px 8px; }
}
@media (max-width: 480px) {
  .hero-search { grid-template-columns: 1fr; }
  .hero-search .btn-buscar { grid-column: 1; }
  .hero { min-height: 92vh; }
  .filtros-grid { grid-template-columns: 1fr; }
  .filtro-btns { flex-direction: column; }
  .btn-filtrar, .btn-limpar { width: 100%; text-align: center; }
  .galeria-masonry { columns: 1; }
  .card-preco { font-size: 1.45rem; }
  .paginacao a, .paginacao span { width: 38px; height: 38px; font-size: .82rem; }
  .contato-card { padding: 28px 20px; }
}
@media (max-width: 360px) {
  .header { height: 64px; }
  .hero-content h1 { font-size: 1.8rem; }
  .imoveis-section { padding: 32px 3.5%; }
}
