:root {
  --green: #123f31;
  --green-2: #0b2d23;
  --green-3: #1f5845;
  --ivory: #f4f0df;
  --ivory-2: #e7dfc2;
  --linen: #faf7ee;
  --gold: #c9b37b;
  --gold-2: #e7d59c;
  --ink: #16201b;
  --muted: #6d756f;
  --white: #ffffff;
  --line: rgba(18, 63, 49, 0.14);
  --dark-line: rgba(244, 240, 223, 0.14);
  --shadow: 0 26px 80px rgba(18, 63, 49, 0.18);
  --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--linen);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

/* ===== Animaciones al hacer scroll ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.reveal-left  { transform: translateX(-44px); }
  .reveal.reveal-right { transform: translateX(44px); }
  .reveal.reveal-zoom  { transform: scale(0.94); }
  .reveal.reveal-fade  { transform: none; }
  .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  .stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .stagger.is-visible > * { opacity: 1; transform: translateY(0); }
  .stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
  .stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
  .stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
  .stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
  .stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
  .stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
  .stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
  .stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }

  .parallax { will-change: transform; transition: transform 0.1s linear; }

  .hero h1, .hero .hero-copy, .hero .hero-actions, .hero .eyebrow, .hero .hero-proof {
    opacity: 0;
    transform: translateY(28px);
    animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero .eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.2s; }
  .hero .hero-copy { animation-delay: 0.35s; }
  .hero .hero-actions { animation-delay: 0.5s; }
  .hero .hero-proof { animation-delay: 0.65s; }
  .lead-panel {
    opacity: 0;
    transform: translateY(40px);
    animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  }

  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .property-card { transition: transform 0.4s ease, box-shadow 0.4s ease; }
  .property-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0,0,0,0.18); }
  .property-visual { transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
  .property-card:hover .property-visual { transform: scale(1.06); }

  .showcase-card { transition: transform 0.5s ease; }
  .showcase-card:hover { transform: scale(1.02); }

  .service { transition: background 0.3s ease, transform 0.3s ease; }
  .service:hover { background: rgba(18, 63, 49, 0.03); transform: translateY(-4px); }

  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    z-index: 200;
    transition: width 0.1s linear;
  }
}

.announcement {
  background: var(--green-2);
  color: rgba(244, 240, 223, 0.92);
  border-bottom: 1px solid var(--dark-line);
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 750;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(18, 63, 49, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 240, 223, 0.12);
  color: var(--ivory);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 45, 35, 0.96);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: min-height 0.3s ease;
}
.nav.scrolled .nav-inner { min-height: 68px; }

.brand { display: flex; align-items: center; gap: 16px; min-width: max-content; }
.brand-symbol {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(231, 213, 156, 0.38);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  letter-spacing: -0.07em;
  font-weight: 300;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}
.brand-symbol::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  background: var(--gold-2);
  bottom: 18px;
  left: 15%;
  transform: rotate(-3deg);
  opacity: 0.8;
}
.wordmark strong {
  display: block;
  color: var(--ivory);
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.16em;
  line-height: 1;
}
.wordmark span {
  display: block;
  color: rgba(244, 240, 223, 0.66);
  font-size: 12px;
  margin-top: 7px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(244, 240, 223, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after { width: 100%; }

/* Link dorado con glow pulsante */
.nav-links a.nav-gold {
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(231, 213, 156, 0.45);
  animation: navGlow 2.4s ease-in-out infinite;
}
.nav-links a.nav-gold:hover {
  color: #fff1c3;
}
@keyframes navGlow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(231, 213, 156, 0.25), 0 0 8px rgba(231, 213, 156, 0.15);
    color: var(--gold);
  }
  50% {
    text-shadow:
      0 0 8px rgba(231, 213, 156, 0.85),
      0 0 18px rgba(231, 213, 156, 0.55),
      0 0 32px rgba(231, 213, 156, 0.35);
    color: #fff1c3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-links a.nav-gold { animation: none; }
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-2); color: #20180a; box-shadow: 0 18px 40px rgba(201, 179, 123, 0.26); }
.btn-dark { background: var(--green); color: var(--ivory); box-shadow: 0 18px 40px rgba(18, 63, 49, 0.26); }
.btn-outline-light { background: transparent; color: var(--ivory); border: 1px solid rgba(244, 240, 223, 0.3); }
.btn-outline-dark { background: transparent; color: var(--green); border: 1px solid rgba(18, 63, 49, 0.22); }
.btn-instagram {
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf, #4f5bd5);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(214, 41, 118, 0.22);
}

.hero {
  background: var(--green);
  color: var(--ivory);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 63, 49, 0.96), rgba(18, 63, 49, 0.78) 46%, rgba(18, 63, 49, 0.42)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  z-index: -2;
  transform: translateZ(0);
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(231, 213, 156, 0.18), transparent 28%),
    linear-gradient(rgba(244, 240, 223, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 223, 0.04) 1px, transparent 1px);
  background-size: auto, 82px 82px, 82px 82px;
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  min-height: calc(100vh - 125px);
}
.hero-rail {
  border-right: 1px solid rgba(244, 240, 223, 0.14);
  padding: 54px 34px 54px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}
.rail-number {
  font-size: 88px;
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: rgba(231, 213, 156, 0.9);
  font-weight: 200;
}
.rail-text {
  color: rgba(244, 240, 223, 0.68);
  line-height: 1.65;
  max-width: 310px;
  font-size: 15px;
}
.hero-main {
  padding: 86px 0 92px 54px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-2); }
h1 {
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.86;
  letter-spacing: -0.085em;
  font-weight: 850;
  max-width: 850px;
}
.hero-copy {
  color: rgba(244, 240, 223, 0.82);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
  margin-top: 26px;
  max-width: 690px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 48px; max-width: 760px; }
.proof { border: 1px solid rgba(244, 240, 223, 0.16); padding: 18px; background: rgba(244, 240, 223, 0.045); }
.proof strong { display: block; font-size: 25px; color: var(--gold-2); letter-spacing: -0.04em; }
.proof span { display: block; margin-top: 5px; color: rgba(244, 240, 223, 0.68); font-size: 13px; line-height: 1.35; font-weight: 700; }

.lead-panel {
  background: var(--ivory);
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.lead-panel::before {
  content: "Para propietarios";
  position: absolute;
  top: -15px;
  left: 22px;
  background: var(--gold-2);
  color: #211806;
  padding: 8px 13px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 950;
}
.lead-panel h2 { color: var(--green); font-size: 34px; line-height: 0.95; letter-spacing: -0.055em; margin-bottom: 10px; }
.lead-panel p { color: var(--muted); line-height: 1.5; margin-bottom: 20px; font-size: 15px; }
.form-grid { display: grid; gap: 13px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-3);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 49, 0.16);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  padding: 14px 13px;
  outline: 0;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 63, 49, 0.09);
}
.lead-panel .btn { width: 100%; }

.section { padding: 96px 0; }
.section.compact { padding: 66px 0; }
.section-head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}
.kicker { color: var(--green-3); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; }
.section h2 { color: var(--green); font-size: clamp(38px, 4.8vw, 72px); line-height: 0.9; letter-spacing: -0.075em; font-weight: 850; }
.section-lead { color: var(--muted); line-height: 1.7; font-size: 17px; max-width: 650px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(18,63,49,0.08);
}
.service { padding: 25px; border-right: 1px solid var(--line); min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.service:last-child { border-right: 0; }
.service-number { color: var(--gold); font-size: 13px; font-weight: 950; letter-spacing: 0.16em; }
.service h3 { color: var(--green); font-size: 22px; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 10px; }
.service p { color: var(--muted); line-height: 1.55; font-size: 14px; }

.hub { background: var(--green-2); color: var(--ivory); position: relative; overflow: hidden; }
.hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(231,213,156,0.16), transparent 28%), radial-gradient(circle at 88% 68%, rgba(255,255,255,0.06), transparent 26%);
  pointer-events: none;
}
.hub-inner { position: relative; }
.hub h2 { color: var(--ivory); }
.hub .section-lead { color: rgba(244,240,223,0.68); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tab-btn {
  border: 1px solid rgba(244,240,223,0.18);
  background: rgba(244,240,223,0.05);
  color: rgba(244,240,223,0.76);
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tab-btn:hover { transform: translateY(-2px); }
.tab-btn.active { background: var(--ivory); color: var(--green); }
.panel { display: none; animation: panelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.owner-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.owner-card { border: 1px solid rgba(244,240,223,0.16); background: rgba(244,240,223,0.06); padding: 28px; min-height: 240px; transition: background 0.3s ease, transform 0.3s ease; }
.owner-card:hover { background: rgba(244,240,223,0.10); transform: translateY(-6px); }
.owner-card h3 { color: var(--gold-2); font-size: 28px; line-height: 1; letter-spacing: -0.055em; margin-bottom: 12px; }
.owner-card p { color: rgba(244,240,223,0.72); line-height: 1.62; }

.property-toolbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  border: 1px solid rgba(244,240,223,0.18);
  background: transparent;
  color: rgba(244,240,223,0.74);
  padding: 10px 13px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: var(--gold-2); color: #1d1608; border-color: var(--gold-2); }
.property-count { color: rgba(244,240,223,0.62); font-size: 13px; font-weight: 800; }

.property-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.property-card {
  background: var(--ivory);
  color: var(--ink);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  overflow: hidden;
}
.property-visual {
  height: 210px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.property-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,63,49,0.04), rgba(18,63,49,0.58)); }
.property-visual::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: rgba(18,63,49,0.72);
  color: var(--ivory);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.photo-living { background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=85"); }
.photo-kitchen { background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=85"); }
.photo-bedroom { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=85"); }
.photo-dining { background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1200&q=85"); }
.photo-house { background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=85"); }
.photo-view { background-image: url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1200&q=85"); }
.photo-premium { background-image: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=85"); }
.photo-office { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=85"); }

.property-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.property-meta { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.badge { background: rgba(18,63,49,0.1); color: var(--green); padding: 7px 9px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 950; }
.price { color: var(--green); font-weight: 950; font-size: 13px; }
.property-card h3 { color: var(--green); font-size: 22px; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 9px; }
.property-card p { color: var(--muted); line-height: 1.5; font-size: 14px; margin-bottom: 16px; }
.property-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; margin-bottom: 16px; }
.mini-pill { border: 1px solid rgba(18,63,49,0.16); padding: 7px 8px; color: var(--green-3); font-size: 12px; font-weight: 850; background: rgba(255,255,255,0.45); }

/* ===== Catálogo marketplace ===== */
.catalog-page-header {
  background: var(--green-2);
  color: var(--ivory);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}
.catalog-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11,45,35,0.92), rgba(11,45,35,0.55)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  z-index: 0;
}
.catalog-page-header > * { position: relative; z-index: 1; }
.catalog-page-header h1 {
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 850;
  color: var(--ivory);
  max-width: 900px;
}
.catalog-page-header p {
  color: rgba(244,240,223,0.78);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  margin-top: 18px;
  max-width: 640px;
}
.catalog-section { background: var(--green-2); color: var(--ivory); padding: 40px 0 96px; }

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 18px;
  background: rgba(244,240,223,0.06);
  border: 1px solid rgba(244,240,223,0.14);
}
.catalog-toolbar .filter-group { gap: 8px; }
.catalog-sort {
  background: rgba(244,240,223,0.05);
  color: var(--ivory);
  border: 1px solid rgba(244,240,223,0.18);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalog-card {
  background: var(--ivory);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.catalog-card:hover { transform: translateY(-10px); box-shadow: 0 32px 80px rgba(0,0,0,0.24); }
.catalog-gallery {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #ddd;
}
.catalog-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.catalog-card:hover .catalog-gallery img { transform: scale(1.06); }
.catalog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-2);
  color: #1d1608;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.catalog-tag.arriendo { background: var(--green); color: var(--ivory); }
.catalog-tag.destacada { background: #b1442a; color: var(--white); }
.catalog-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11,45,35,0.7);
  backdrop-filter: blur(8px);
  border: 0;
  color: var(--ivory);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.catalog-fav:hover { background: var(--green); transform: scale(1.1); }
.catalog-fav.active { color: #ff5a5f; background: rgba(244,240,223,0.95); }
.catalog-thumbs {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.catalog-thumb {
  flex: 1;
  height: 4px;
  background: rgba(244,240,223,0.4);
  cursor: pointer;
  transition: background 0.2s ease;
}
.catalog-thumb.active { background: var(--ivory); }
.catalog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.catalog-price {
  color: var(--green);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.catalog-price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 6px;
}
.catalog-uf {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.catalog-card h3 {
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.catalog-location {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.catalog-specs {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(18,63,49,0.10);
  border-bottom: 1px solid rgba(18,63,49,0.10);
  margin-bottom: 16px;
}
.catalog-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.catalog-spec strong {
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.catalog-spec span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.catalog-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.catalog-amenities .mini-pill { font-size: 11px; padding: 5px 8px; }
.catalog-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.catalog-actions .btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 13px;
}
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(244,240,223,0.5);
  border: 1px dashed rgba(244,240,223,0.18);
}

.showcase-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; grid-template-rows: 280px 280px; gap: 14px; }
.showcase-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}
.showcase-card.large { grid-row: span 2; }
.showcase-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,63,49,0.06), rgba(18,63,49,0.74)); }
.showcase-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--ivory);
}
.showcase-copy span { display: inline-flex; background: rgba(231,213,156,0.9); color: #1d1608; padding: 7px 9px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 950; margin-bottom: 10px; }
.showcase-copy h3 { font-size: 28px; line-height: 0.98; letter-spacing: -0.05em; margin-bottom: 8px; }
.showcase-copy p { color: rgba(244,240,223,0.78); line-height: 1.45; font-size: 14px; }

.difference { background: var(--linen); }
.difference-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: stretch; }
.quote-card { background: var(--green); color: var(--ivory); padding: 42px; display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; }
.quote-card h2 { color: var(--ivory); }
.quote-card p { color: rgba(244,240,223,0.72); line-height: 1.65; margin-top: 24px; font-size: 17px; }
.audit-list { display: grid; gap: 12px; }
.audit-item { background: var(--white); border: 1px solid var(--line); padding: 24px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.audit-item:hover { transform: translateX(6px); box-shadow: 0 18px 40px rgba(18,63,49,0.10); }
.audit-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ivory); color: var(--green); font-weight: 950; }
.audit-item h3 { color: var(--green); font-size: 21px; letter-spacing: -0.035em; margin-bottom: 6px; }
.audit-item p { color: var(--muted); line-height: 1.55; font-size: 15px; }

.final-cta { background: var(--green-2); color: var(--ivory); padding: 88px 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11,45,35,0.94), rgba(11,45,35,0.72)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  opacity: 0.95;
}
.final-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.final-inner h2 { color: var(--ivory); font-size: clamp(42px, 5.2vw, 78px); line-height: 0.9; letter-spacing: -0.075em; }
.final-inner p { color: rgba(244,240,223,0.72); line-height: 1.6; font-size: 18px; margin-top: 18px; max-width: 640px; }

footer { background: #061d16; color: rgba(244,240,223,0.65); padding: 34px 0; font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-2);
  color: var(--ivory);
  border: 1px solid rgba(244,240,223,0.18);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 120;
}
.toast.active { opacity: 1; transform: translateX(-50%) translateY(0); }
.sticky-mobile {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  background: rgba(250,247,238,0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18,63,49,0.22);
  padding: 8px;
  gap: 8px;
}
.sticky-mobile .btn { flex: 1; padding: 13px 12px; font-size: 13px; }

@media (max-width: 1120px) {
  .hero-layout, .hero-main, .section-head, .difference-layout, .final-inner { grid-template-columns: 1fr; }
  .hero-rail { display: none; }
  .hero-main { padding-left: 0; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service:nth-child(3) { border-right: 0; }
  .property-grid, .owner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card.large { grid-row: auto; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { min-height: 74px; }
  .brand-symbol { width: 48px; height: 48px; }
  .wordmark strong { font-size: 20px; }
  .hero-main { padding: 56px 0 70px; }
  .hero-proof, .two-cols, .owner-grid, .property-grid, .showcase-grid, .service-grid, .catalog-grid { grid-template-columns: 1fr; }
  .service { border-right: 0; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: 0; }
  .section, .section.compact { padding: 64px 0; }
  .btn { width: 100%; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 82px; }
}
