/* ==========================================================================
   Núcleo Central Inmobiliaria — Landing
   Premium · Minimal · Mobile-first
   ========================================================================== */

:root {
  /* Color system */
  --bone: #F7F4EE;
  --bone-2: #EFEBE2;
  --paper: #FFFFFF;
  --ink: #14242F;          /* main dark - navy slate */
  --ink-2: #1F3340;
  --ink-soft: #4A5A66;
  --muted: #8B96A0;
  --line: rgba(20, 36, 47, 0.08);
  --line-strong: rgba(20, 36, 47, 0.16);

  --gold: #C5A572;
  --gold-2: #B08D58;
  --gold-soft: rgba(197, 165, 114, 0.18);

  --wa: #25D366;
  --wa-dark: #128C7E;

  /* Type */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(20,36,47,.04), 0 4px 14px rgba(20,36,47,.06);
  --shadow-2: 0 8px 24px rgba(20,36,47,.08), 0 24px 60px rgba(20,36,47,.10);
  --shadow-gold: 0 14px 40px rgba(197, 165, 114, 0.35);

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

::selection { background: var(--gold); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== NAV ==================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.site-nav.site-nav--solid {
  background: rgba(247, 244, 238, 0.96);
  border-bottom-color: var(--line);
}
.site-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 238, 0.94);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  transition: padding .3s var(--ease);
}
.site-nav.scrolled .nav-inner { padding: 10px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 44px;
  width: auto;
  transition: transform .4s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(20,36,47,.04); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav-cta:hover { background: var(--ink-2); transform: translateY(-1px); }
.nav-cta svg { color: var(--wa); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color .25s var(--ease);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(20,36,47,.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 24px 28px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 49;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active { background: var(--bone); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .brand-logo { height: 38px; }
  .brand-text strong { font-size: 16px; }
  .brand-text em { font-size: 9.5px; letter-spacing: 2.5px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}
@media (max-width: 380px) {
  .brand-text { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: kenburns 18s var(--ease) infinite alternate;
  z-index: 0;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,36,47,.55) 0%, rgba(20,36,47,.35) 35%, rgba(20,36,47,.85) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  color: var(--bone);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-title .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(247, 244, 238, 0.85);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-sub strong {
  color: var(--bone);
  font-weight: 600;
}

.price-card {
  display: inline-flex;
  flex-direction: column;
  padding: 22px 32px;
  background: rgba(247, 244, 238, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 36px;
}
.price-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.price-value {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.price-value .price-unit {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--gold);
  margin-left: 6px;
}
.price-meta {
  font-size: 14px;
  color: rgba(247,244,238,.7);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-large {
  padding: 22px 40px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 16px 28px;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 1.5px solid rgba(247, 244, 238, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 70px; }
  .hero-scroll { display: none; }
  .price-card { padding: 18px 24px; }
}

/* ==================== SECTIONS ==================== */
section { position: relative; }

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-head--center .section-eyebrow { padding-left: 0; }
.section-head--center .section-eyebrow::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-title .accent {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 400;
}
.section-lead {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 56ch;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ==================== QUICK INFO ==================== */
.quick-info {
  padding: 100px 0;
  background: var(--bone);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--gold-soft);
}
.info-card:hover::before { transform: scaleX(1); }

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  margin-bottom: 22px;
}
.info-value {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.info-label {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .quick-info { padding: 80px 0; }
  .info-card { padding: 28px 22px; }
  .info-value { font-size: 22px; }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ==================== GALLERY ==================== */
.gallery {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 620px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone-2);
}
.gallery-item--main {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,36,47,.25));
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item { aspect-ratio: 16/10; }
  .gallery-item--main { grid-row: auto; aspect-ratio: 16/10; }
}

/* ==================== LOCATION ==================== */
.location {
  padding: 100px 0;
  background: var(--bone);
}
.location-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: center;
}
.location-text .section-eyebrow { margin-bottom: 18px; }
.location-text .btn { margin-top: 32px; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  height: 460px;
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.02) saturate(0.9);
}
@media (max-width: 900px) {
  .location { padding: 80px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map { height: 360px; }
}

/* ==================== REQUISITOS ==================== */
.requisitos {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.req-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 38px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.req-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--gold-soft);
}

.req-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.req-icon {
  grid-row: 1 / span 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-2);
  flex-shrink: 0;
}
.req-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0;
  padding: 0;
  align-self: end;
}
.req-num::before { display: none; }
.req-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  align-self: start;
}

.req-block {
  margin-bottom: 24px;
}
.req-block:last-of-type { margin-bottom: 0; }
.req-block h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.req-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.req-list {
  list-style: none;
  margin: 0;
}
.req-list li {
  font-size: 15px;
  color: var(--ink);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  line-height: 1.5;
}
.req-list li:last-child { border-bottom: none; }
.req-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.req-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

.req-footnote {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bone);
  border: 1px dashed var(--gold-soft);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.2px;
}
.req-footnote svg { color: var(--gold-2); flex-shrink: 0; }
.req-footnote strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .requisitos { padding: 80px 0; }
  .req-grid { grid-template-columns: 1fr; gap: 16px; }
  .req-card { padding: 32px 26px; }
  .req-card h3 { font-size: 22px; }
  .req-footnote { font-size: 13px; padding: 12px 18px; }
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  padding: 120px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-grain {
  position: absolute; inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.eyebrow-light {
  color: var(--gold) !important;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 16px 0 22px;
  letter-spacing: -0.015em;
}
.cta-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.cta-lead {
  font-size: 17px;
  color: rgba(247, 244, 238, 0.75);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .final-cta { padding: 90px 0; }
}

/* ==================== FOOTER (corporate) ==================== */
.site-footer {
  background: #0B1822;
  color: rgba(247, 244, 238, 0.62);
  padding: 80px 0 28px;
  border-top: 1px solid rgba(197, 165, 114, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.08);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.62);
  margin-bottom: 10px;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-addr { color: rgba(247, 244, 238, 0.5) !important; font-size: 13px !important; line-height: 1.7; }

.footer-brand-col .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(1.1);
}
.footer-quote-line {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 18px !important;
  color: var(--bone) !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}
.footer-tag {
  font-size: 13px !important;
  color: rgba(247, 244, 238, 0.5) !important;
  max-width: 32ch;
}

.footer-bar {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(247, 244, 238, 0.45);
}
.footer-mini { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold) !important; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-bar { flex-direction: column; text-align: center; }
}

/* ==================== FLOATING WHATSAPP ==================== */
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.floating-wa:hover {
  transform: scale(1.06) translateY(-2px);
  background: var(--wa-dark);
}
.floating-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 640px) {
  .floating-wa {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-image { animation: none; }
  .floating-wa-pulse { animation: none; }
  .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   CORPORATE PAGES — added components
   ========================================================================== */

/* HOME HERO (split-feel, full bg) */
.home-hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
}
.home-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.home-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: kenburns 22s var(--ease) infinite alternate;
}
/* Slider del hero: imágenes apiladas con cross-fade */
.home-hero-slider .home-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.home-hero-slider .home-hero-slide.is-active {
  opacity: 1;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(11,24,34,.92) 0%, rgba(11,24,34,.78) 38%, rgba(11,24,34,.55) 70%, rgba(11,24,34,.45) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.home-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
  max-width: 18ch;
}
.home-hero-title .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.home-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(247,244,238,.78);
  max-width: 56ch;
  line-height: 1.65;
  margin-bottom: 36px;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.btn-light {
  background: var(--bone);
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--bone);
  padding: 16px 28px;
  border: 1.5px solid rgba(247,244,238,.35);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.btn-outline-light:hover {
  background: rgba(247,244,238,.08);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(247,244,238,.15);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,244,238,.6);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .home-hero { padding: 120px 0 70px; }
  .hero-stats { gap: 24px; }
  .hero-stat { flex: 1 1 30%; }
  .hero-stat-label { font-size: 10.5px; letter-spacing: 1.5px; }
}

/* SECTION HEAD ROW (title + link) */
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head--row .section-title { margin-top: 12px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 0.3px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-soft);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--ink); }

/* FEATURED / CATALOG GRID */
.featured { padding: 120px 0; background: var(--bone); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
@media (max-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .featured { padding: 90px 0; }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* PROPERTY CARD */
.prop-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--gold-soft);
}
.prop-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-2);
}
.prop-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.prop-card:hover .prop-card-media img { transform: scale(1.06); }

.prop-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(20,36,47,.12);
}
.prop-tag--is-renta { background: var(--ink); color: var(--gold); }
.prop-tag--is-compra { background: var(--gold); color: var(--ink); }

.prop-card-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prop-code {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.prop-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.prop-name a { color: inherit; transition: color .25s var(--ease); }
.prop-name a:hover { color: var(--gold-2); }

.prop-zone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.prop-zone svg { color: var(--gold-2); flex-shrink: 0; }

.prop-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.prop-highlights li {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.prop-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.prop-price-block { display: flex; flex-direction: column; }
.prop-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.prop-price-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.prop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background .25s var(--ease), gap .25s var(--ease), transform .25s var(--ease);
}
.prop-cta:hover { background: var(--gold-2); transform: translateY(-1px); gap: 10px; }

/* ABOUT */
.about { padding: 120px 0; background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 18px 26px;
  background: var(--bone);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(20,36,47,.15);
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
}
.about-badge-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.about-text .section-lead { margin-bottom: 18px; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.mv-card {
  padding: 26px 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.mv-card:hover { transform: translateY(-3px); border-color: var(--gold-soft); }
.mv-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.mv-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.mv-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 980px) {
  .about { padding: 90px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { aspect-ratio: 16 / 11; }
}
@media (max-width: 480px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* SERVICES */
.services { padding: 120px 0; background: var(--bone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--gold-soft);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 980px) {
  .services { padding: 90px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* DIFFERENTIATORS (dark) */
.diff {
  padding: 120px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(197,165,114,.15) 0%, transparent 70%);
  pointer-events: none;
}
.diff-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.section-title--light { color: var(--bone); }
.section-lead--light { color: rgba(247,244,238,.7); }

.diff-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.diff-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(247,244,238,.1);
}
.diff-list li:last-child { border-bottom: none; }
.diff-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  padding-top: 4px;
}
.diff-list h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.diff-list p { font-size: 15px; color: rgba(247,244,238,.65); line-height: 1.6; }

@media (max-width: 980px) {
  .diff { padding: 90px 0; }
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* COVERAGE */
.coverage { padding: 120px 0; background: var(--paper); }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coverage-card {
  padding: 28px 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.coverage-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  background: var(--paper);
}
.coverage-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.coverage-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 900px) {
  .coverage { padding: 90px 0; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--bone);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 18px;
  justify-content: center;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-2);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-icon--wa {
  background: rgba(37,211,102,.15);
  color: var(--wa-dark);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.contact-value--small { font-size: 16px; line-height: 1.35; }
.contact-meta { font-size: 13px; color: var(--ink-soft); }

@media (max-width: 980px) {
  .contact { padding: 90px 0; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FINAL CTA — multi action */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* CATALOG PAGE */
.page-catalog { padding-top: 0; background: var(--bone); }
.catalog-header {
  background: var(--paper);
  padding: 130px 0 60px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-soft); transition: color .25s var(--ease); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }
.catalog-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 18px;
}
.catalog-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.65;
  margin-bottom: 40px;
}

.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.filter-chip:hover { color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--bone);
}
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: rgba(20,36,47,.08);
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.filter-chip.is-active .filter-count { background: var(--gold); color: var(--ink); }

.catalog-section { padding: 60px 0 100px; }
.catalog-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.catalog-empty p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 22px;
}

.coming-soon {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(197,165,114,.08), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197,165,114,.06), transparent 50%);
  pointer-events: none;
}
.coming-soon-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.coming-soon h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--ink);
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
}
.coming-soon p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.coming-soon .btn { color: var(--ink); }

@media (max-width: 640px) {
  .catalog-header { padding: 110px 0 48px; }
  .filter-chip { padding: 10px 14px; font-size: 12px; }
  .coming-soon { padding: 40px 24px; }
}
