/* ═══════════════════════════════════════
   CRISTIAN CAFFER — STYLES.CSS
   Inspired by Compass + The Agency
   Dark luxury, modern, tech-forward
═══════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FFFFFF;
  --bg2:         #F7F8FA;
  --bg3:         #EDEEF2;
  --surface:     #F7F8FA;
  --border:      rgba(0,0,0,.08);
  --border2:     rgba(0,0,0,.13);
  --text:        #111827;
  --text2:       #6B7280;
  --text3:       rgba(17,24,39,.28);
  --gold:        #DC2626;
  --gold2:       #EF4444;
  --gold-muted:  rgba(220,38,38,.13);
  --white:       #FFFFFF;
  --danger:      #F85149;
  --success:     #3FB950;
  --play:        'Playfair Display', Georgia, serif;
  --out:         'Outfit', sans-serif;
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease2:       cubic-bezier(.16,1,.3,1);
  --r4:          4px;
  --r8:          8px;
  --r12:         12px;
  --r16:         16px;
}

html { scroll-behavior: smooth; font-size: 16px; width: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--out);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  width: 100%;
  min-width: 0;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--out); cursor: none; }
input, select, textarea { font-family: var(--out); }
select option { background: var(--bg2); color: var(--text); }

/* ─── CURSOR ─── */
#cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(220,38,38,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .1s var(--ease), top .1s var(--ease), width .25s, height .25s, opacity .25s, border-color .25s;
}
#cursor-ring.hover { width: 50px; height: 50px; border-color: rgba(220,38,38,.25); }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--play); font-size: 48px; font-weight: 700;
  color: var(--gold); letter-spacing: -.02em;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--gold);
  width: 0; border-radius: 2px;
  animation: loadAnim 1.5s var(--ease) forwards;
}
@keyframes loadAnim { to { width: 100%; } }

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease2) var(--d, 0s), transform .7s var(--ease2) var(--d, 0s);
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  width: 100%;
  transition: background .35s var(--ease), box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: padding .35s;
}
#navbar.scrolled .nav-inner { padding: 14px 40px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 52px; height: 52px; }
.logo-mark {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: var(--r4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--play); font-size: 20px; font-weight: 700;
  color: var(--bg);
  letter-spacing: -.01em; flex-shrink: 0;
}
.logo-mark.small { width: 28px; height: 28px; font-size: 11px; }
.logo-text {
  font-family: var(--play); font-size: 26px; font-weight: 600;
  color: var(--text); letter-spacing: -.01em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text2);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-call {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--text2);
  padding: 8px 14px;
  border: 1px solid var(--border2);
  border-radius: var(--r8);
  transition: all .2s;
}
.btn-call:hover { color: var(--text); border-color: var(--gold); }
.btn-nav-cta {
  font-size: 13px; font-weight: 600;
  background: var(--gold); color: var(--bg);
  padding: 9px 20px; border-radius: var(--r8); border: none;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.mobile-menu.open { display: flex; }
.mm-link {
  padding: 14px 0;
  font-size: 16px; font-weight: 400; color: var(--text2);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mm-link:last-child { border: none; }
.mm-link:hover { color: var(--text); }

/* ─── HERO ─── */
#hero {
  min-height: 82vh;
  width: 100%; max-width: 100% !important; margin: 0 !important;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 40px 0;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 85%, rgba(220,38,38,.07) 0%, transparent 60%),
    var(--bg);
}
.hero-center {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  width: 100%; max-width: 760px;
  padding-bottom: 52px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-muted);
  border: 1px solid rgba(220,38,38,.3);
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 24px; width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.45); }
  50%      { box-shadow: 0 0 0 7px rgba(220,38,38,0); }
}
.hero-h1 {
  font-family: var(--play);
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.025em;
  color: var(--white); margin-bottom: 18px; text-align: center;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(230,237,243,.6); line-height: 1.72;
  margin-bottom: 32px; text-align: center; max-width: 560px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-cta-main {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; border: none;
  padding: 14px 26px; border-radius: var(--r8);
  font-size: 15px; font-weight: 600; font-family: var(--out);
  transition: background .2s, transform .15s;
}
.hero-cta-main:hover { background: var(--gold2); transform: translateY(-2px); }
.hero-cta-sec {
  display: flex; align-items: center; gap: 8px;
  color: var(--text2); font-size: 14px; font-weight: 500;
  border: 1px solid var(--border2); padding: 13px 22px;
  border-radius: var(--r8); transition: all .2s;
}
.hero-cta-sec:hover { color: var(--text); border-color: var(--gold); }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0; display: block;
  animation: heroZoom 14s var(--ease) forwards;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.80);
  z-index: 1;
}
#hero .hero-center { position: relative; z-index: 2; }
#hero .hero-stats  { position: relative; z-index: 2; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-float-card {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(13,17,23,.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(220,38,38,.22);
  border-radius: 14px; padding: 13px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hfc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0;
}
.hfc-n { font-family: var(--play); font-size: 20px; font-weight: 700; color: var(--gold); line-height: 1; }
.hfc-l { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }
.hero-float-tag {
  position: absolute; top: 20px; right: 20px;
  background: rgba(13,17,23,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px; padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 7px;
}
.hero-stats {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--r12) var(--r12) 0 0; border-bottom: none;
  backdrop-filter: blur(20px);
  width: 100%; max-width: 1200px;
}
.hs-stat {
  flex: 1; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.hs-stat > span:first-child {
  font-family: var(--play); font-size: 28px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hs-l { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; }
.hs-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
@media (max-width: 900px) {
  #hero { padding: 90px 24px 0; }
  .hero-h1 { font-size: clamp(34px, 8vw, 52px); }
}
@media (max-width: 600px) {
  #hero { padding: 80px 16px 0; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta-main, .hero-cta-sec { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hs-divider:nth-child(4) { display: none; }
}

/* ─── FEATURED BAND ─── */
.featured-band {
  display: flex; align-items: center;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
  white-space: nowrap;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text2);
  position: relative;
}
.band-track {
  display: flex; align-items: center;
  gap: 20px;
  flex-shrink: 0;
  animation: bandScroll 22s linear infinite;
  padding-right: 20px;
}
.band-track span, .band-track .band-dot { flex-shrink: 0; }
.band-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .5; }
@keyframes bandScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ─── SECTIONS ─── */
section { padding: 96px 40px; max-width: 1280px; margin: 0 auto; width: 100%; }
section.section-dark {
  max-width: 100%;
  width: 100%;
  background: var(--bg2);
  padding: 96px 40px;
}
section.section-dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-family: var(--play);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.02em; color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-sub { font-size: 16px; color: var(--text2); line-height: 1.7; max-width: 480px; }
.section-sub.light { color: rgba(230,237,243,.5); }
.section-intro { margin-bottom: 52px; }

/* ─── PROPERTY FILTERS ─── */
.prop-filter-bar {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1.5px solid var(--border);
}
.pf-btn {
  display: flex; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: .025em;
  padding: 10px 20px 12px;
  border: none; border-bottom: 2.5px solid transparent;
  background: transparent; color: var(--text3);
  transition: color .18s, border-color .18s;
  margin-bottom: -1.5px;
}
.pf-btn:hover { color: var(--text); }
.pf-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.pf-dot { display: none; }
.pf-count {
  margin-left: auto;
  font-size: 11px; color: var(--text3);
  letter-spacing: .07em; text-transform: uppercase;
  padding-bottom: 2px;
}

/* ─── PROPERTIES GRID ─── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.prop-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  transition: transform .3s var(--ease2), box-shadow .3s, border-color .3s;
  cursor: none;
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  border-color: rgba(220,38,38,.18);
}
.pc-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.pc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.prop-card:hover .pc-img img { transform: scale(1.06); }
.pc-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 4px;
  background: rgba(12,12,12,.68); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: none;
}
.pc-badge.terreno  { background: rgba(220,38,38,.88); color: #fff; }
.pc-badge.reservada{ background: rgba(220,38,38,.82); color: #fff; }
.pc-fav {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,17,23,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .2s;
}
.pc-fav:hover { background: rgba(220,38,38,.2); border-color: var(--gold); }
.pc-fav svg { stroke: rgba(230,237,243,.7); transition: stroke .2s; }
.pc-fav:hover svg { stroke: var(--gold); }
.pc-body { padding: 20px; }
.pc-price {
  font-family: var(--play); font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 6px; letter-spacing: -.01em;
}
.pc-title {
  font-size: 15px; font-weight: 500; color: var(--text2);
  margin-bottom: 4px; line-height: 1.4;
}
.pc-loc {
  font-size: 12px; color: var(--text3);
  display: flex; align-items: center; gap: 4px; margin-bottom: 16px;
}
.pc-loc svg { flex-shrink: 0; }
.pc-features {
  display: flex; gap: 16px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.pc-feat {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text2);
}
.pc-feat svg { opacity: .6; }
.pc-cta {
  width: 100%; margin-top: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: transparent; color: var(--text2);
  border: 1.5px solid var(--border);
  padding: 10px 16px; border-radius: 6px;
  transition: all .2s;
}
.pc-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.props-empty {
  grid-column: 1/-1;
  padding: 80px 40px; text-align: center;
  color: var(--text2);
}
.props-empty svg { margin: 0 auto 16px; opacity: .25; }
.props-empty p { font-size: 18px; font-family: var(--play); font-style: italic; }
.hidden { display: none !important; }

/* ─── PROPERTY MODAL ─── */
.prop-modal-overlay {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.prop-modal-overlay.open { opacity: 1; pointer-events: all; }
.prop-modal {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r16);
  width: 100%; max-width: 720px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px); opacity: 0;
  transition: transform .35s var(--ease2), opacity .35s;
}
.prop-modal-overlay.open .prop-modal { transform: none; opacity: 1; }
.pm-close {
  position: sticky; top: 0; float: right;
  margin: 16px 16px 0 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: none; z-index: 1;
  transition: all .2s;
}
.pm-close:hover { background: var(--danger); color: white; border-color: var(--danger); }
.pm-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r12) var(--r12) 0 0; }
.pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pm-body { padding: 28px; }
.pm-badge { display: inline-block; margin-bottom: 12px; }
.pm-price { font-family: var(--play); font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pm-title { font-size: 18px; font-weight: 400; color: var(--text2); margin-bottom: 16px; }
.pm-specs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.pm-spec {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text2);
  background: var(--bg3); padding: 6px 12px; border-radius: var(--r8);
  border: 1px solid var(--border);
}
.pm-desc { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.pm-cta { width: 100%; }

/* ─── BUTTONS ─── */
.cta-band-content {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-band-content h3 {
  font-family: var(--play); font-size: 26px; font-weight: 700;
  color: var(--text); margin-bottom: 6px; letter-spacing: -.01em;
}
.cta-band-content p { font-size: 15px; color: var(--text2); }
.btn-primary-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg);
  font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--r8);
  border: none; transition: background .2s, transform .15s;
  cursor: none; white-space: nowrap;
}
.btn-primary-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-primary-gold.small { font-size: 13px; padding: 9px 20px; }
.btn-primary-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg3); color: var(--text);
  font-size: 14px; font-weight: 500;
  padding: 13px 28px; border-radius: var(--r8);
  border: 1px solid var(--border2);
  transition: all .2s; cursor: none;
}
.btn-primary-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-small {
  background: none; color: var(--text2);
  font-size: 13px; padding: 9px 16px;
  border: 1px solid var(--border); border-radius: var(--r8);
  transition: all .2s;
}
.btn-ghost-small:hover { border-color: var(--border2); color: var(--text); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--r16); overflow: hidden;
  position: relative; aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--bg);
  border-radius: var(--r12); padding: 14px 18px;
  text-align: center;
}
.aib-n { display: block; font-family: var(--play); font-size: 30px; font-weight: 700; line-height: 1; }
.aib-l { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.about-img-secondary {
  position: absolute; right: -24px; top: 36px;
  width: 42%; border-radius: var(--r12); overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  aspect-ratio: 4/3;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-card {
  position: absolute; left: 24px; top: 36px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(22,27,34,.95);
  border: 1px solid var(--border2);
  backdrop-filter: blur(12px);
  border-radius: var(--r8); padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--success);
}
.about-text p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 32px 0;
}
.about-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.af-icon {
  width: 40px; height: 40px; border-radius: var(--r8); flex-shrink: 0;
  background: var(--gold-muted); border: 1px solid rgba(220,38,38,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.about-feature strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 3px; }
.about-feature p { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ─── PROCESS ─── */
.process-timeline {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  max-width: 1280px; margin: 0 auto;
}
.pt-step {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background .3s;
  position: relative;
}
.pt-step:hover { background: var(--bg3); }
.pt-num {
  font-family: var(--play); font-size: 52px; font-weight: 700;
  color: rgba(220,38,38,.15); line-height: 1;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.pt-icon {
  width: 44px; height: 44px; border-radius: var(--r8);
  background: var(--gold-muted); border: 1px solid rgba(220,38,38,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px;
}
.pt-content h3 {
  font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px;
}
.pt-content p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px;
}
.testi-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r12); padding: 28px;
  transition: border-color .25s, transform .25s var(--ease);
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.testi-card.featured {
  background: linear-gradient(135deg, rgba(220,38,38,.08), rgba(220,38,38,.03));
  border-color: rgba(220,38,38,.25);
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--play); font-style: italic;
  font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-muted); border: 1px solid rgba(220,38,38,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--text); }
.testi-author span { font-size: 12px; color: var(--text2); }
.rating-block {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 24px 32px; border-radius: var(--r12);
  background: var(--bg2); border: 1px solid var(--border);
  max-width: 480px;
}
.rating-score {
  font-family: var(--play); font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; }
.rating-text { font-size: 14px; color: var(--text2); }
.rating-link {
  margin-left: auto; font-size: 13px; font-weight: 500; color: var(--gold);
  border-bottom: 1px solid rgba(220,38,38,.3); padding-bottom: 2px;
  transition: border-color .2s;
}
.rating-link:hover { border-color: var(--gold); }

/* ─── CONTACT ─── */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start;
  max-width: 1280px; margin: 0 auto;
}
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.cd-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r8);
  transition: background .2s;
}
.cd-item:hover { background: rgba(255,255,255,.04); }
.cd-icon {
  width: 38px; height: 38px; border-radius: var(--r8); flex-shrink: 0;
  background: var(--gold-muted); border: 1px solid rgba(220,38,38,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cd-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text2); margin-bottom: 3px; }
.cd-value { font-size: 15px; color: var(--text); }
.contact-form-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r16); padding: 36px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-field label {
  font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text2);
}
.cf-field input, .cf-field select, .cf-field textarea {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r8); padding: 12px 16px;
  font-size: 14px; color: var(--text);
  transition: border-color .2s; outline: none; resize: none;
}
.cf-field.dark input { background: var(--bg3); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--gold); }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--text3); }
.cf-field textarea { min-height: 110px; }
.cf-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--bg);
  font-size: 14px; font-weight: 600;
  padding: 14px; border-radius: var(--r8); border: none;
  transition: background .2s, transform .15s;
}
.cf-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.cf-success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--r8);
  background: rgba(63,185,80,.1); border: 1px solid rgba(63,185,80,.25);
  font-size: 14px; color: var(--success); margin-top: 12px;
}

/* ─── FOOTER ─── */
#footer { background: var(--bg); border-top: 1px solid var(--border); width: 100%; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 40px 48px;
  max-width: 1280px; margin: 0 auto;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(220,38,38,.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
  width: 100%;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r8);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact-col h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text2); margin-bottom: 20px;
}
.footer-links a, .footer-contact-col a {
  display: block; font-size: 14px; color: var(--text2);
  margin-bottom: 10px; transition: color .2s;
}
.footer-links a:hover, .footer-contact-col a:hover { color: var(--gold); }
.footer-contact-col p { font-size: 14px; color: var(--text2); margin-bottom: 10px; }
.footer-hours { font-size: 12px; color: var(--text3); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text3);
  max-width: 1280px; margin: 0 auto;
  flex-wrap: wrap; gap: 8px;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 96px; right: 24px; z-index: 400;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .25s var(--ease2), box-shadow .25s;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-tooltip {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text); font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r8);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── ADMIN TRIGGER ─── */
.admin-trigger {
  position: fixed; bottom: 32px; right: 24px; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text2); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.admin-trigger:hover { background: var(--gold-muted); border-color: var(--gold); color: var(--gold); }

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r16); padding: 40px;
  width: 100%; max-width: 400px; position: relative;
  transform: translateY(16px); opacity: 0;
  transition: transform .35s var(--ease2), opacity .35s;
}
.modal-overlay.open .modal-box { transform: none; opacity: 1; }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); font-size: 12px; cursor: none;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal-close-btn:hover { background: var(--danger); color: white; border-color: var(--danger); }
.lm-logo { margin-bottom: 20px; }
.login-modal h2 { font-family: var(--play); font-size: 24px; color: var(--text); margin-bottom: 6px; }
.login-modal p { font-size: 14px; color: var(--text2); margin-bottom: 24px; }
.lm-hint { font-size: 12px; color: var(--text3); margin-bottom: 12px; }
.lm-hint strong { color: var(--gold); }
.lm-error { font-size: 13px; color: var(--danger); margin-bottom: 12px; background: rgba(248,81,73,.1); border: 1px solid rgba(248,81,73,.25); padding: 8px 12px; border-radius: var(--r8); }

/* ─── ADMIN PANEL ─── */
.admin-panel {
  position: fixed; inset: 0; z-index: 900;
  display: flex;
  transform: translateY(100%);
  transition: transform .5s var(--ease2);
  background: var(--bg);
}
.admin-panel.open { transform: none; }
.ap-sidebar {
  width: 220px; flex-shrink: 0;
  background: var(--bg2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 24px 0;
}
.ap-sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  font-family: var(--play); font-size: 16px; font-weight: 600; color: var(--text);
}
.ap-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 0 12px; }
.ap-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r8);
  background: none; border: none; color: var(--text2);
  font-size: 14px; font-weight: 400; text-align: left;
  transition: all .2s; position: relative;
}
.ap-nav-btn:hover { background: var(--bg3); color: var(--text); }
.ap-nav-btn.active { background: var(--gold-muted); color: var(--gold); }
.ap-badge {
  margin-left: auto;
  background: var(--gold); color: var(--bg);
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
}
.ap-logout {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px; color: var(--text3);
  background: none; border: none;
  font-size: 13px; transition: color .2s;
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px;
}
.ap-logout:hover { color: var(--danger); }
.ap-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.ap-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  font-family: var(--play); font-size: 20px; font-weight: 600; color: var(--text);
  flex-shrink: 0;
}
.ap-close-btn {
  width: 36px; height: 36px; border-radius: var(--r8);
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.ap-close-btn:hover { background: var(--danger); color: white; border-color: var(--danger); }
.ap-tab { display: none; flex: 1; overflow-y: auto; padding: 28px 32px; }
.ap-tab.active { display: block; }
.ap-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 32px;
}
.ap-stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r12); padding: 20px;
}
.ap-stat-card .asc-n {
  font-family: var(--play); font-size: 32px; font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.ap-stat-card .asc-l { font-size: 12px; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; }
.ap-stat-card .asc-icon { float: right; color: var(--gold); opacity: .6; }
.ap-section { margin-bottom: 36px; }
.ap-section-title {
  font-family: var(--play); font-size: 18px; font-weight: 600; color: var(--text);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.apt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.apt-header .ap-section-title { margin-bottom: 0; border: none; padding: 0; }
.btn-add-prop {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--r8); border: none;
  transition: background .2s;
}
.btn-add-prop:hover { background: var(--gold2); }

/* Prop form card */
.prop-form-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r12); padding: 24px; margin-bottom: 24px;
}
.pfc-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.pfc-header h4 { font-size: 15px; font-weight: 600; color: var(--text); }
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pf-row.three { grid-template-columns: 1fr 1fr 1fr; }
.pf-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.pf-field label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text2); }
.pf-field input, .pf-field select, .pf-field textarea {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r8); padding: 9px 14px;
  font-size: 13px; color: var(--text);
  transition: border-color .2s; outline: none; resize: vertical;
}
.pf-field input:focus, .pf-field select:focus, .pf-field textarea:focus { border-color: var(--gold); }
.pf-field input::placeholder, .pf-field textarea::placeholder { color: var(--text3); }
.pf-field textarea { min-height: 80px; }
.pf-actions { display: flex; gap: 10px; margin-top: 4px; }

/* Prop table */
.prop-table-header, .prop-table-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 90px 100px 90px;
  gap: 12px; align-items: center;
  padding: 12px 16px;
}
.prop-table-header {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text2); border-bottom: 1px solid var(--border);
}
.prop-table-row {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.prop-table-row:hover { background: var(--bg2); }
.ptr-img { width: 56px; height: 42px; border-radius: var(--r4); object-fit: cover; background: var(--bg3); }
.ptr-title { font-size: 13px; color: var(--text); font-weight: 500; }
.ptr-sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.ptr-price { font-size: 13px; color: var(--gold); font-weight: 600; }
.ptr-badge { display: inline-block; font-size: 10px; padding: 3px 8px; border-radius: 20px; }
.ptr-status-active  { color: var(--success); background: rgba(63,185,80,.1); }
.ptr-status-reserved{ color: #F0883E; background: rgba(240,136,62,.1); }
.ptr-status-sold    { color: var(--text2); background: var(--bg3); }
.ptr-btns { display: flex; gap: 6px; }
.ptr-btn {
  width: 28px; height: 28px; border-radius: var(--r4);
  border: 1px solid var(--border); background: none;
  color: var(--text2); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.ptr-btn:hover { border-color: var(--border2); color: var(--text); }
.ptr-btn.del:hover { border-color: var(--danger); color: var(--danger); background: rgba(248,81,73,.08); }

/* Messages */
.msg-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r12); padding: 18px 20px; margin-bottom: 12px;
  transition: border-color .2s;
}
.msg-item:hover { border-color: var(--border2); }
.msg-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.msg-name { font-size: 14px; font-weight: 600; color: var(--text); }
.msg-date { font-size: 11px; color: var(--text3); }
.msg-contact { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.msg-text { font-size: 13px; color: var(--text2); line-height: 1.5; }
.msg-empty { padding: 48px; text-align: center; font-size: 16px; font-style: italic; color: var(--text3); font-family: var(--play); }

/* Settings */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.setting-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r12); padding: 24px;
}
.setting-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 20px; }
.setting-card.danger-zone { border-color: rgba(248,81,73,.2); }
.setting-card.danger-zone h4 { color: var(--danger); }
.setting-card.danger-zone p { font-size: 13px; color: var(--text2); margin-bottom: 16px; }
.btn-danger {
  background: rgba(248,81,73,.1); color: var(--danger);
  border: 1px solid rgba(248,81,73,.3);
  padding: 9px 18px; border-radius: var(--r8);
  font-size: 13px; font-weight: 600; cursor: none;
  transition: all .2s;
}
.btn-danger:hover { background: var(--danger); color: white; }

/* Recent props (dashboard) */
.rp-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.rp-item:last-child { border: none; }
.rp-img { width: 52px; height: 40px; border-radius: var(--r4); object-fit: cover; background: var(--bg3); flex-shrink: 0; }
.rp-title { font-size: 13px; color: var(--text); font-weight: 500; }
.rp-price { font-size: 12px; color: var(--gold); }
.rp-op { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; }

/* ─── FILE IMAGE PICKER ─── */
.img-picker-wrap { position: relative; }
.img-picker-label {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px dashed var(--border2);
  border-radius: var(--r8); padding: 10px 14px;
  font-size: 13px; color: var(--text2); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.img-picker-label:hover { border-color: var(--gold); color: var(--gold); }
.img-picker-label input[type="file"] { display: none; }
.img-picker-preview {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r8); margin-top: 8px;
  border: 1px solid var(--border);
  display: none;
}
.img-picker-preview.show { display: block; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px);
  z-index: 9999;
  background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text); font-size: 13px; font-weight: 500;
  padding: 12px 20px; border-radius: var(--r8);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: all .3s var(--ease2);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: rgba(63,185,80,.15); border-color: rgba(63,185,80,.3); color: var(--success); }
.toast.error   { background: rgba(248,81,73,.15); border-color: rgba(248,81,73,.3); color: var(--danger); }
.toast.gold    { background: var(--gold-muted); border-color: rgba(220,38,38,.3); color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: -12px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-call { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: clamp(36px, 8vw, 64px); }
  .hs-bar { flex-wrap: wrap; }
  .hs-select-wrap { display: none; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .ap-sidebar { width: 60px; }
  .ap-sidebar-logo span:last-child { display: none; }
  .ap-nav-btn span { display: none; }
  .ap-nav-btn { justify-content: center; }
  .ap-logout span { display: none; }
  .ap-stats-grid { grid-template-columns: 1fr 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .prop-table-header, .prop-table-row { grid-template-columns: 50px 1fr 90px 70px; }
  .prop-table-header span:nth-child(5), .prop-table-row .ptr-btns { display: flex; }
  section { padding: 64px 20px; }
  section.section-dark { padding: 64px 20px; }
  .footer-top { padding: 40px 20px 32px; gap: 32px; }
  .footer-bottom { padding: 16px 20px; }
  .nav-inner { padding: 16px 20px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; }
  .hs-divider { display: none; }
  .hs-stat { min-width: 45%; }
  .props-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .prop-table-header { display: none; }
  .prop-table-row { grid-template-columns: 50px 1fr auto; }
  .ptr-badge, .ptr-price { display: none; }
  .cta-band-content { flex-direction: column; }
}
/* ═══════════════════════════════════════
   AGREGAR AL FINAL DE styles.css
   Estilos de carrusel de imágenes
═══════════════════════════════════════ */

/* ─── CAROUSEL EN CARDS ─── */
.pc-carousel {
  position: relative; width: 100%; height: 100%;
}
.pc-slides {
  width: 100%; height: 100%;
  position: relative;
}
.pc-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.pc-slide.active {
  opacity: 1; pointer-events: all;
}
.pc-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.prop-card:hover .pc-slide.active img { transform: scale(1.06); }

/* Flechas en cards */
.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,17,23,.75); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  color: white; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s, background .2s;
  cursor: pointer;
}
.pc-arrow-prev { left: 10px; }
.pc-arrow-next { right: 10px; }
.prop-card:hover .pc-arrow { opacity: 1; }
.pc-arrow:hover { background: rgba(220,38,38,.85); }

/* Dots en cards */
.pc-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.pc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none;
  cursor: pointer; transition: all .2s; padding: 0;
}
.pc-dot.active { background: var(--gold); transform: scale(1.3); }

/* Contador en cards */
.pc-counter {
  position: absolute; top: 10px; right: 10px; z-index: 10;
}
.pc-counter-text {
  font-size: 11px; font-weight: 600;
  background: rgba(13,17,23,.75); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.8);
  padding: 3px 8px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
}

/* ─── CAROUSEL EN MODAL ─── */
.pm-carousel {
  position: relative; width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r12) var(--r12) 0 0;
  overflow: hidden;
}
.pm-slides { width: 100%; height: 100%; position: relative; }
.pm-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s ease;
}
.pm-slide.active { opacity: 1; }
.pm-slide img { width: 100%; height: 100%; object-fit: cover; }

.pm-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,17,23,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: white; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.pm-arrow-prev { left: 14px; }
.pm-arrow-next { right: 14px; }
.pm-arrow:hover { background: rgba(220,38,38,.85); }

.pm-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.pm-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none;
  cursor: pointer; transition: all .2s; padding: 0;
}
.pm-dot.active { background: var(--gold); transform: scale(1.3); }

.pm-img-counter {
  position: absolute; top: 12px; right: 14px; z-index: 10;
}
.pm-counter-txt {
  font-size: 12px; font-weight: 600;
  background: rgba(13,17,23,.75);
  color: rgba(255,255,255,.85);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
}

/* ─── BOTÓN VER MAPA EN MODAL ─── */
.pm-map-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid rgba(220,38,38,.3);
  padding: 7px 14px; border-radius: var(--r8);
  transition: all .2s;
}
.pm-map-btn:hover { background: rgba(220,38,38,.25); }

/* ═══════════════════════════════════════════════
   TEMA CLARO — overrides
   ═══════════════════════════════════════════════ */

/* Navbar siempre con fondo blanco */
#navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.nav-links a { color: #374151; }
.nav-links a:hover { color: #111827; }
.logo-text { color: #111827; font-family: var(--play); }
.btn-call { color: #374151; border-color: rgba(0,0,0,.18); }
.btn-call:hover { color: #111827; border-color: var(--gold); }
.btn-nav-cta { color: #fff !important; }
.hamburger span { background: #111827; }
.mm-link { color: #374151; border-color: rgba(0,0,0,.08); }
.mm-link:hover { color: #111827; }

/* Hero textos sobre fondo blanco */
.hero-h1 { color: #111827; }
.hero-sub { color: #6B7280; }
.hero-cta-sec { color: #374151; border-color: rgba(0,0,0,.18); }
.hero-cta-sec:hover { color: #111827; }
.hs-l { color: #6B7280; }
.hs-divider { background: rgba(0,0,0,.1); }

/* Featured band */
.featured-band { background: #F7F8FA; border-color: rgba(0,0,0,.07); color: #9CA3AF; }
.band-dot { background: var(--gold); }

/* Tarjetas de propiedades */
.prop-card {
  background: #fff;
  border-color: rgba(0,0,0,.09);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.prop-card:hover {
  box-shadow: 0 16px 44px rgba(0,0,0,.11);
  border-color: rgba(220,38,38,.3);
}
.pc-price { color: #111827; }
.pc-title { color: #1F2937; font-weight: 500; }
.pc-loc { color: #9CA3AF; }
.pc-features { border-color: rgba(0,0,0,.07); }
.pc-feat { color: #6B7280; }
.pc-cta { color: #374151; border-color: rgba(0,0,0,.13); }
.pc-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Filtros */
.prop-filter-bar { border-color: rgba(0,0,0,.1); }
.pf-btn { color: #9CA3AF; background: transparent; border-color: transparent; }
.pf-btn:hover { color: #374151; }
.pf-btn.active { background: transparent; color: var(--gold); border-bottom-color: var(--gold); }
.pf-count { color: #9CA3AF; }

/* Títulos de sección */
.section-title { color: #111827; }
.section-sub { color: #6B7280; }
.section-eyebrow { color: var(--gold); }
.section-eyebrow::before { background: var(--gold); }

/* About */
.about-text p { color: #374151; }
.about-accent-card { background: #fff; color: #111827; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.about-img-badge { background: #fff; }
.aib-n { color: #111827; }
.aib-l { color: #6B7280; }
.about-feature { background: #F7F8FA; border-color: rgba(0,0,0,.07); }
.af-icon { background: rgba(220,38,38,.1); }

/* Proceso */
.cd-item { background: #fff; border-color: rgba(0,0,0,.09); }
.cd-icon { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.22); }
.pt-step { color: #374151; }

/* Testimonios */
.testi-card { background: #fff; border-color: rgba(0,0,0,.09); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.testi-text { color: #374151; }
.testi-name { color: #111827; }
.testi-role { color: #9CA3AF; }

/* CTA band */
.cta-band { background: #111827; }
.cta-band h3, .cta-band p { color: #fff; }
.btn-primary-gold { background: var(--gold); color: #fff; }
.btn-primary-gold:hover { background: var(--gold2); }

/* Formulario de contacto */
.cf-label { color: #374151; }
.cf-input, .cf-select, .cf-textarea {
  background: #fff;
  border-color: rgba(0,0,0,.14);
  color: #111827;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: #9CA3AF; }
.cf-input:focus, .cf-textarea:focus { border-color: var(--gold); }

/* Props empty */
.props-empty { color: #9CA3AF; }
.props-empty svg { color: #D1D5DB; }

/* Toast */
.toast { background: #fff; color: #111827; border-color: rgba(0,0,0,.12); }
.toast.gold { background: rgba(220,38,38,.08); color: #B91C1C; border-color: rgba(220,38,38,.3); }

/* Modal de propiedad */
.prop-modal { background: #fff; border-color: rgba(0,0,0,.12); }
.pm-body { background: #fff; }
.pm-price { color: #111827; }
.pm-title { color: #374151; }
.pm-desc { color: #6B7280; }
.pm-spec { background: #F7F8FA; border-color: rgba(0,0,0,.09); color: #374151; }
.pm-close { color: #374151; background: #F7F8FA; border-color: rgba(0,0,0,.09); }
.pm-close:hover { background: #EDEEF2; }
.pm-arrow { background: #F7F8FA; border-color: rgba(0,0,0,.09); color: #374151; }
.pm-arrow:hover { background: var(--gold); color: #fff; }

/* Fixes adicionales de visibilidad */
.hero-h1 { color: #111827; }
.hero-sub { color: #6B7280; }
.pc-fav svg { stroke: rgba(17,24,39,.45); }
.cd-item:hover { background: rgba(0,0,0,.04); }
.about-accent-card { background: #fff; color: #111827; border: 1px solid rgba(0,0,0,.09); box-shadow: 0 4px 16px rgba(0,0,0,.07); backdrop-filter: none; }
.cf-submit { color: #fff; }
.btn-primary-gold { color: #111827; }

/* Secciones con título claro — forzar texto oscuro en tema claro */
.section-title.light    { color: #111827; }
.section-sub.light      { color: #6B7280; }
.section-eyebrow.light  { color: var(--gold); }

/* CTA band — texto blanco sobre fondo oscuro */
.cta-band h3  { color: #fff !important; }
.cta-band p   { color: rgba(255,255,255,.72) !important; }

footer { background: var(--bg); }
.footer-vertex { color: var(--text3); }
.footer-vertex:hover { color: var(--gold); }