
/* ========================================================
   DESIGN SYSTEM — Black & Gold Real Estate
   ======================================================== */

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

:root {
  /* Gold alias */
  --gold:          #E8C96A;
  --gold-light:    #F5DFA0;
  --gold-dim:      #B09240;
  --gold-glow:     rgba(232,201,106,0.14);
  --gold-line:     rgba(232,201,106,0.22);

  /* Gold accent */
  --gold:          #E8C96A;
  --gold-light:    #F5DFA0;
  --gold-dim:      #B09240;
  --gold-glow:     rgba(232,201,106,0.14);
  --gold-line:     rgba(232,201,106,0.22);

  /* Cream text */
  --cream:         #F5DFA0;
  --cream-dim:     rgba(245,223,160,0.78);

  /* Black base */
  --bg:            #050505;  
  --surface:       rgba(18,16,12,0.78);
  --surface-light: rgba(24,21,15,0.62);
  --border:        rgba(232,201,106,0.16);
  --border-hover:  rgba(232,201,106,0.42);

  /* Text */
  --text-hi:       #F5DFA0;
  --text-mid:      rgba(232,201,106,0.72);
  --text-lo:       rgba(232,201,106,0.42);

  /* Spacing */
  --s1: 0.5rem;  --s2: 1rem;  --s3: 1.5rem;
  --s4: 2rem;    --s6: 3rem;  --s8: 4rem;
  --s12: 6rem;   --s16: 8rem;

  /* Radius */
  --r1: 4px; --r2: 8px; --r3: 14px; --r4: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t2: 0.2s; --t4: 0.4s; --t6: 0.6s; --t9: 0.9s;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-hi);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================================
   FIXED CANVAS BACKGROUND
   ======================================================== */
#gold-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-wrap { position: relative; z-index: 1; }

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
.f-display {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.f-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.3;
}

.label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================================
   GLASS PANEL
   ======================================================== */
.glass {
  background: var(--surface);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid var(--border);
}

.glass-light {
  background: var(--surface-light);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--border);
}

/* ========================================================
   GOLD RULE
   ======================================================== */
.gold-rule {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.gold-rule::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 2em;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--r1);
  transition: all var(--t4) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: #050505;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,223,160,0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t2);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,201,106,0.28); }
.btn-gold:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* WhatsApp button */
.btn-wa { background: #075E54; color: #fff; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ========================================================
   SCROLL REVEAL
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t9) var(--ease), transform var(--t9) var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ========================================================
   NAVIGATION
   ======================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t4), backdrop-filter var(--t4), border-color var(--t4);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--s4);
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--t2);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta { display: flex; gap: var(--s2); }

.nav-burger {
  display: none;

  width: 44px;
  height: 44px;
  padding: 0;

  appearance: none;
  -webkit-appearance: none;

  /* border: 1px solid var(--gold-line); */
  border-radius: 999px;

  background:
    linear-gradient(145deg, rgba(232,201,106,0.10), rgba(5,5,5,0.72));

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 10px 28px rgba(0,0,0,0.28);

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  transition:
    border-color var(--t2),
    background var(--t2),
    transform var(--t2),
    box-shadow var(--t2);
}

.nav-burger:hover {
  border-color: var(--gold);
  background:
    linear-gradient(145deg, rgba(232,201,106,0.16), rgba(5,5,5,0.84));
}

.nav-burger:active {
  transform: scale(0.96);
}

.nav-burger span {
  display: block;

  width: 18px;
  height: 1.5px;

  border-radius: 999px;
  background: var(--gold-light);

  box-shadow: 0 0 10px rgba(232,201,106,0.22);

  transition:
    transform var(--t4) var(--ease),
    opacity var(--t2),
    width var(--t2),
    background var(--t2);
}

.nav-burger span:nth-child(2) {
  width: 13px;
}

.nav-burger:hover span:nth-child(2) {
  width: 18px;
}

/* Mobile nav =====================================================================================================*/
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(3,3,3,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t4);
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--t2);
}
.mobile-nav a:hover { color: var(--gold); }

/* ========================================================
   HERO
   ======================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s16) var(--s4) var(--s12);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, rgba(5,5,5,0.90), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.hero-eyebrow .line {
  width: 48px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--s3);
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto var(--s6);
  font-weight: 300;
  line-height: 1.78;
}

.hero-ctas {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s8);
}

.hero-stats {
  display: flex;
  gap: clamp(var(--s4), 5vw, var(--s8));
  flex-wrap: wrap;
  justify-content: center;
  padding: var(--s3) var(--s4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: var(--s4);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-lo);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ========================================================
   SECTION COMMON
   ======================================================== */
section {
  position: relative;
  padding: var(--s12) var(--s6);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s8);
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--cream);
  margin-top: var(--s2);
}

.section-fade-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(5,5,5,0.9), transparent);
  pointer-events: none;
}

.section-fade-bottom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
  pointer-events: none;
}

.container { max-width: 1200px; margin: 0 auto; position: relative; }
.container-sm { max-width: 800px; margin: 0 auto; position: relative; }

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about-section { padding: var(--s16) var(--s6); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 24px; left: -24px;
  right: 24px; bottom: -24px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r3);
  pointer-events: none;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r3);
  background: linear-gradient(160deg,
    rgba(232,201,106,0.08) 0%,
    rgba(5,5,5,0.80) 40%,
    rgba(18,16,12,0.12) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--s4);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,201,106,0.20), rgba(232,201,106,0.04));
  border: 1px solid var(--gold-line);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 0.5em 1.2em;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-content { padding: var(--s4) 0; }

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.45;
  margin: var(--s3) 0 var(--s4);
  padding-left: var(--s3);
  border-left: 2px solid var(--gold);
}

.about-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.82;
  margin-bottom: var(--s4);
}

.credentials {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-top: var(--s4);
}
.cred-item { display: flex; flex-direction: column; }
.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.cred-label {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-lo);
}

/* ========================================================
   CATALOG SECTION
   ======================================================== */
.catalog-section {
  padding: var(--s16) var(--s6);
  background: rgba(5,5,5,0.70);
  backdrop-filter: blur(4px);
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: var(--s1);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s6);
  padding: var(--s2);
  border-radius: var(--r3);
  background: rgba(18,16,12,0.45);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 0.55em 1.4em;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r2);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t2);
}
.filter-btn:hover { color: var(--cream); border-color: var(--border-hover); }
.filter-btn.active {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s3);
}

/* Catalog card */
.cat-card {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  transition: border-color var(--t4), transform var(--t4) var(--ease), box-shadow var(--t4);
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 40px rgba(232,201,106,0.07);
}

.cat-img-wrap {
  position: relative;
  overflow: hidden;
}
.cat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--t6) var(--ease);
}
.cat-card:hover .cat-img { transform: scale(1.05); }

.cat-img-ph {
  width: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cat-card:hover .cat-img-ph { transform: scale(1.05); }

/* Tags container over image */
.cat-tags {
  position: absolute;
  top: var(--s2); left: var(--s2);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cat-tag {
  padding: 0.28em 0.80em;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--r1);
  backdrop-filter: blur(8px);
}

.cat-tag-type {
  background: rgba(5,5,5,0.75);
  color: var(--gold-light);
  border: 1px solid var(--gold-line);
}

.cat-tag-destaque {
  background: rgba(232,201,106,0.18);
  color: var(--gold);
  border: 1px solid var(--gold-line);
}

.cat-tag-novo {
  background: rgba(232,201,106,0.80);
  color: #F5DFA0;
  border: 1px solid rgba(232,201,106,0.6);
}

.cat-fav {
  position: absolute;
  top: var(--s2); right: var(--s2);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t2);
}
.cat-fav:hover { border-color: var(--gold); }
.cat-fav svg { width: 14px; height: 14px; fill: var(--text-lo); transition: fill var(--t2); }
.cat-fav:hover svg, .cat-fav.active svg { fill: var(--gold); }

.cat-body { padding: var(--s3); }

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 4px;
  transition: color var(--t2);
}
.cat-card:hover .cat-name { color: var(--gold); }

.cat-location {
  font-size: 0.70rem;
  color: var(--text-lo);
  margin-bottom: var(--s2);
  display: flex; align-items: center; gap: 4px;
}
.cat-location svg { width: 10px; height: 10px; fill: var(--gold-dim); flex-shrink: 0; }

.cat-specs {
  display: flex;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s2);
}
.cat-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.cat-spec-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}
.cat-spec-key {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-top: 2px;
}

.cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
}

.cat-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
}

/* "Saiba Mais" button in catalog card */
.cat-saiba {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 1.1em;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: var(--r1);
  background: var(--gold-glow);
  transition: all var(--t2);
  flex-shrink: 0;
}
.cat-saiba svg { width: 11px; height: 11px; fill: currentColor; }
.cat-saiba:hover {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
}

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services-section { padding: var(--s16) var(--s6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.service-card {
  padding: var(--s4);
  border-radius: var(--r3);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  transition: all var(--t4) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--t4) var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r2);
  background: var(--gold-glow);
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.service-icon svg { width: 24px; height: 24px; fill: var(--gold); }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: var(--s1);
}
.service-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ========================================================
   CTA BAND
   ======================================================== */
.cta-band {
  padding: var(--s12) var(--s6);
  text-align: center;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(232,201,106,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  margin-bottom: var(--s3);
  color: var(--cream);
}

.cta-sub {
  max-width: 460px;
  margin: 0 auto var(--s6);
  color: var(--text-mid);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section { padding: var(--s16) var(--s6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.contact-link {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--t2);
}
.contact-link:hover { color: var(--gold-light); }
.contact-link svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* Form */
.form-glass {
  padding: var(--s4);
  border-radius: var(--r3);
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.form-row { margin-bottom: var(--s3); }
.form-row label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 0.75em 1em;
  background: rgba(232,201,106,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t2);
}
.form-input:focus { border-color: var(--gold-dim); }
.form-input::placeholder { color: var(--text-lo); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  padding: var(--s6);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  background: rgba(3,3,3,0.82);
  backdrop-filter: blur(12px);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  list-style: none;
  gap: var(--s4);
}
.footer-links a {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-lo);
  text-decoration: none;
  transition: color var(--t2);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.66rem; color: var(--text-lo); }

/* ========================================================
   FLOATING WHATSAPP
   ======================================================== */

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 32px rgba(37,211,102,0.45);
  transition: transform var(--t2), box-shadow var(--t2);
  text-decoration: none;
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(232,201,106,0.45); }
  50% { box-shadow: 0 6px 32px rgba(232,201,106,0.65), 0 0 0 12px rgba(232,201,106,0.08); }
}


/* ========================================================
   PROPERTY PHOTO PLACEHOLDERS
   ======================================================== */
.ph-1 { background: linear-gradient(145deg, #050505 0%, #0A0803 45%, rgba(232,201,106,0.18) 100%); }
.ph-2 { background: linear-gradient(160deg, #050505 0%, #0A0803 55%, rgba(232,201,106,0.12) 100%); }
.ph-3 { background: linear-gradient(135deg, #050505 0%, #0A0803 50%, rgba(232,201,106,0.16) 100%); }
.ph-4 { background: linear-gradient(150deg, #050505 0%, #0A0803 50%, rgba(232,201,106,0.13) 100%); }
.ph-5 { background: linear-gradient(165deg, #050505 0%, #0A0803 50%, rgba(232,201,106,0.15) 100%); }
.ph-6 { background: linear-gradient(140deg, #050505 0%, #0A0803 50%, rgba(232,201,106,0.11) 100%); }

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-label svg {
  opacity: 0.10;
  width: 48px;
  height: 48px;
  fill: var(--gold);
}


