/* ================================================
   PROPIETARIO FELIZ — Premium Design System
   ================================================ */

/* ── Variables ── */
:root {
  --navy:        #0D1B3E;
  --navy-mid:    #162B5B;
  --navy-light:  #1E3A73;
  --gold:        #C9943A;
  --gold-light:  #E8C07A;
  --gold-pale:   #F5E6C8;
  --cream:       #FDFAF5;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --text:        #111827;
  --text-mid:    #374151;
  --text-light:  #6B7280;
  --text-xs:     #9CA3AF;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(13,27,62,.06), 0 1px 2px rgba(13,27,62,.04);
  --shadow-md:   0 4px 16px rgba(13,27,62,.10), 0 2px 6px rgba(13,27,62,.06);
  --shadow-lg:   0 12px 40px rgba(13,27,62,.14), 0 4px 12px rgba(13,27,62,.08);
  --shadow-xl:   0 24px 64px rgba(13,27,62,.18), 0 8px 24px rgba(13,27,62,.10);

  --transition:  0.28s cubic-bezier(.4,0,.2,1);
}

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

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 76px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(13,27,62,.07), 0 4px 24px rgba(13,27,62,.06);
}
.nav.hero-nav { background: transparent; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-text .brand-top {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-logo-text .brand-sub {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav.hero-nav .brand-top { color: #fff; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav.hero-nav .nav-links a { color: rgba(255,255,255,.85); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav.hero-nav .nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,148,58,.35);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Fondo con gradiente y textura */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(30,58,115,.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201,148,58,.12) 0%, transparent 60%),
    linear-gradient(160deg, #060D1F 0%, #0D1B3E 45%, #162B5B 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}

/* LEFT */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,148,58,.14);
  border: 1px solid rgba(201,148,58,.38);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeUp .8s .2s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp .8s .3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .8s .4s both;
}

/* RIGHT — floating card stack */
.hero-cards {
  position: relative;
  height: 520px;
  animation: fadeUp .9s .5s both;
}

.hero-feat-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hfc-main {
  width: 340px;
  top: 40px;
  right: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}

.hfc-main .hfc-img {
  height: 200px;
  background: linear-gradient(135deg, #1E3A73, #0D1B3E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: .25;
  position: relative;
}
.hfc-main .hfc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,27,62,.8) 100%);
}
.hfc-main .hfc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.hfc-main .hfc-body { padding: 20px; }
.hfc-main .hfc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}
.hfc-main .hfc-loc {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  margin-bottom: 14px;
}
.hfc-main .hfc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hfc-main .hfc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hfc-main .hfc-yield {
  font-size: 11px;
  color: #5eead4;
  font-weight: 600;
  background: rgba(94,234,212,.12);
  padding: 3px 9px;
  border-radius: 100px;
}

/* Stat pills flotantes */
.hfc-pill {
  position: absolute;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  min-width: 130px;
}
.hfc-pill .p-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hfc-pill .p-lbl {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}

.pill-a { bottom: 30px; left: 0; animation: float 5s 1s ease-in-out infinite; }
.pill-b { top: 10px; left: 30px; animation: float 5.5s 2s ease-in-out infinite; }
.pill-c { bottom: 120px; right: -10px; animation: float 4.8s 0.5s ease-in-out infinite; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,148,58,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ================================================
   BOTONES
   ================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #B8832A);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,148,58,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,148,58,.45);
  background: linear-gradient(135deg, #D9A44A, var(--gold));
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.5);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-navy:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,148,58,.35);
}

/* ================================================
   SECTION BASE
   ================================================ */
.section { padding: 100px 5%; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
}
.section-title em { color: var(--gold); font-style: normal; }

.section-sub {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 480px;
  margin-top: 12px;
}

/* ================================================
   PROPIEDADES
   ================================================ */
.props-section { background: var(--cream); }

.props-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}

.props-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}

.prop-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.prop-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.prop-card:hover .prop-img img { transform: scale(1.07); }
.prop-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,62,.08) 0%, rgba(13,27,62,.55) 100%);
  z-index: 1;
}

.prop-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.prop-tag.tag-blue {
  background: #2563EB;
}
.prop-tag.tag-teal {
  background: #0D9488;
}

.prop-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.prop-fav:hover { background: rgba(201,148,58,.8); }

.prop-body { padding: 24px; }

.prop-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.prop-loc {
  color: var(--text-light);
  font-size: 12.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.prop-specs {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}
.prop-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-mid);
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid var(--gray-200);
}
.prop-spec:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.prop-price-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-xs);
  margin-top: 2px;
}
.prop-yield {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.prop-yield-num {
  font-size: 14px;
  font-weight: 700;
  color: #059669;
}
.prop-yield-lbl {
  font-size: 10.5px;
  color: var(--text-xs);
}

/* ================================================
   PROCESO — LÍNEA DE TIEMPO
   ================================================ */
.process-section { background: var(--white); }

.process-timeline {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.step-item.visible { opacity: 1; transform: none; }

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-item:hover .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(201,148,58,.12);
}
.step-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ================================================
   MÉTRICAS / TRUST STRIP
   ================================================ */
.metrics-strip {
  background: var(--navy);
  padding: 60px 5%;
}
.metrics-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.metric-item.visible { opacity: 1; transform: none; }
.metric-item:last-child { border-right: none; }

.metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.metric-label {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

/* ================================================
   TESTIMONIOS
   ================================================ */
.testimonials-section { background: var(--cream); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.test-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition);
}
.test-card.visible { opacity: 1; transform: none; }
.test-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.test-quote-icon {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  line-height: .8;
  color: var(--gold-pale);
  user-select: none;
}

.test-stars { margin-bottom: 14px; }
.test-stars span { color: var(--gold); font-size: 13px; }

.test-text {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}
.test-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.test-role { font-size: 12px; color: var(--text-xs); }

/* ================================================
   CONTACTO
   ================================================ */
.contact-section {
  background: linear-gradient(160deg, #060D1F 0%, var(--navy) 55%, #162B5B 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.contact-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.contact-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,.1) 0%, transparent 70%);
  right: -150px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,148,58,.14);
  border: 1px solid rgba(201,148,58,.32);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.contact-title em { color: var(--gold-light); font-style: normal; }

.contact-desc {
  color: rgba(255,255,255,.6);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,148,58,.15);
  border: 1px solid rgba(201,148,58,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.leads-counter {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.leads-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  min-width: 50px;
}
.leads-meta strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.leads-meta span {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}
.btn-download {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
  display: none;
  transition: all var(--transition);
}
.btn-download:hover { background: var(--gold-light); color: var(--navy); }

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
}
.form-card-header { margin-bottom: 28px; }
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-card-sub { color: var(--text-light); font-size: 13px; }

.form-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-single { margin-bottom: 14px; }

.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cf-input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--gray-50);
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.cf-input::placeholder { color: var(--text-xs); }
.cf-input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,27,62,.06);
}
.cf-input.err {
  border-color: #EF4444;
  background: #FFF5F5;
}
textarea.cf-input { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(13,27,62,.3);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), #B8832A);
  box-shadow: 0 8px 28px rgba(201,148,58,.4);
  transform: translateY(-1px);
}

.form-privacy {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-xs);
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 28px 16px 12px;
}
.success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.form-success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #060D1F;
  color: rgba(255,255,255,.5);
  padding: 70px 5% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-brand-desc {
  color: rgba(255,255,255,.45);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 250px;
  margin-top: 16px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: 13.5px;
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ================================================
   WHATSAPP
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,.5);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(34,197,94,.6);
  animation: none;
}

/* ================================================
   TOAST
   ================================================ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
  background: #15803D;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
  max-width: 280px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.error { background: #DC2626; }

/* ================================================
   ANIMACIONES
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,.5); }
  50%      { box-shadow: 0 4px 36px rgba(34,197,94,.8); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ================================================
   FORM — ESTADOS DE CARGA
   ================================================ */
.btn-loading {
  opacity: .75;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Spinner circular */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .65s linear infinite;
  flex-shrink: 0;
}

/* ================================================
   CARRUSEL DE PROPIEDADES
   ================================================ */

.carousel-outer {
  position: relative;
  margin-top: 8px;
}

/* Ventana visible — oculta el desbordamiento */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* Pista con todas las cards en fila */
.carousel-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  /* La transición la pone JS según contexto */
}

/* Cada card ocupa el ancho calculado por JS */
.carousel-track .prop-card {
  flex-shrink: 0;
  /* flex-basis se setea dinámicamente desde JS */
}

/* ── Controles inferiores ── */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: scale(1.06);
}
.carousel-arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.carousel-dot.active {
  width: 28px;
  background: var(--navy);
}
.carousel-dot:hover:not(.active) {
  background: var(--text-xs);
}

/* ── Touch progress bar ── */
.carousel-progress {
  height: 2px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px;
  transition: width .4s ease;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .process-timeline::before { display: none; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .metric-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 32px; }
  .metric-item:last-child, .metric-item:nth-child(3) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-cards { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 72px 5%; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .metrics-inner { grid-template-columns: 1fr 1fr; }
}
