/* ============================================================
   VISTAS RESERVA RESIDENCIAL — Stylesheet
   Sections: Hero, Certeza Legal, Testimonios,
             Ubicación & Lifestyle, Plusvalía, Contacto WA
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:        #F5F0E8;
  --sand-mid:    #EDE6D6;
  --sand-dark:   #E8E0D0;
  --ocean:       #1A3A4A;
  --ocean-mid:   #2C5F74;
  --ocean-light: #4A8FA8;
  --gold:        #C4943A;
  --gold-light:  #E8C27A;
  --gold-pale:   #F7EDD6;
  --white:       #FDFCFA;
  --text-dark:   #1A1A18;
  --text-mid:    #4A4A44;
  --text-light:  #8A8A80;
  --success:     #1D6B4A;
  --success-bg:  #E8F5EE;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ── TYPOGRAPHY UTILITIES ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--ocean);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── LAYOUT ── */
.page-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 40px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--sand-dark);
  margin: 0 40px;
}

/* ── BUTTONS ── */
.btn-ocean {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ocean);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-ocean:hover { background: var(--ocean-mid); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ocean);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--ocean);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--sand); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.9; }

/* SVG icon inside any button */
.btn-ocean svg, .btn-gold svg, .btn-outline svg,
.btn-outline-white svg, .btn-wa svg,
a svg, button svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle; flex-shrink: 0;
}

.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }


/* ================================================================
   1. NAV
   ================================================================ */
.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.nav-logo span { color: var(--gold-light); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  text-shadow: none !important;
}


/* ================================================================
   2. HERO
   ================================================================ */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('DJI_0806.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(16,30,38,0.84) 0%,
      rgba(16,30,38,0.62) 45%,
      rgba(16,30,38,0.28) 72%,
      rgba(16,30,38,0.15) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.28) 0%,
      rgba(0,0,0,0.00) 28%,
      rgba(0,0,0,0.00) 65%,
      rgba(0,0,0,0.48) 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  padding-top: 96px;
  min-height: 100vh;
}

/* Left copy */
.hero-left {
  padding: 72px 52px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-etapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,148,58,0.18);
  border: 1px solid rgba(196,148,58,0.5);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-etapa-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-etapa span { font-size: 12px; color: var(--gold-light); font-weight: 500; letter-spacing: 0.05em; }

.persona-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px; }
.ptab {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.ptab.active { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.5); }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
  min-height: 176px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-headline .gold { color: var(--gold-light); }

.hero-subline {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
  transition: opacity 0.3s ease;
  min-height: 80px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.tbadge svg { width:13px; height:13px; stroke:var(--gold-light); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right panel */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 44px 72px 28px;
  gap: 16px;
}

.hero-stats-panel {
  background: rgba(16,30,38,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px;
  backdrop-filter: blur(14px);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-card { background: rgba(255,255,255,0.04); padding: 20px 18px; }
.stat-card:first-child  { border-radius: 16px 0 0 0; }
.stat-card:nth-child(2) { border-radius: 0 16px 0 0; }
.stat-card:nth-child(3) { border-radius: 0 0 0 16px; }
.stat-card:nth-child(4) { border-radius: 0 0 16px 0; }
.stat-val { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 500; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.48); font-weight: 300; line-height: 1.4; }

.etapa-panel {
  background: rgba(16,30,38,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 28px;
  backdrop-filter: blur(14px);
}
.etapa-panel-title { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.38); font-weight: 400; margin-bottom: 18px; }
.etapa-items { display: flex; flex-direction: column; gap: 11px; }
.etapa-item { display: flex; align-items: center; gap: 8px; }
.etapa-name { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 300; white-space: nowrap; min-width: 112px; }
.etapa-bar-wrap { flex: 1; }
.etapa-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.etapa-fill { height: 100%; border-radius: 2px; }
.fill-sold   { background: #4A8FA8; }
.fill-avail  { background: var(--gold); }
.fill-future { background: rgba(255,255,255,0.15); }
.etapa-status { font-size: 11px; font-weight: 500; white-space: nowrap; }
.status-sold   { color: #7BBFD4; }
.status-avail  { color: var(--gold-light); }
.status-future { color: rgba(255,255,255,0.28); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: bounce 2.4s ease-in-out infinite;
}
.scroll-hint span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.scroll-hint svg { width:20px; height:20px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ================================================================
   3. TRUST STRIP (between hero and certeza)
   ================================================================ */
.trust-strip {
  background: var(--ocean);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.trust-label { font-size: 13px; font-weight: 500; color: var(--white); display: block; }
.trust-sub   { font-size: 11px; color: var(--gold-light); display: block; font-weight: 300; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }


/* ================================================================
   4. CERTEZA LEGAL
   ================================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand-dark);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.pillar { background: var(--white); padding: 36px 32px; position: relative; }
.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 400;
  color: var(--sand-dark);
  position: absolute; top: 20px; right: 24px;
  line-height: 1; user-select: none;
}
.pillar-icon-wrap {
  width: 48px; height: 48px;
  background: var(--success-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon-wrap svg { width:22px; height:22px; stroke:var(--success); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.pillar h3 { font-size: 16px; font-weight: 500; color: var(--ocean); margin-bottom: 10px; }
.pillar p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

.process-wrap { background: var(--sand); border-radius: 16px; padding: 48px 40px; margin-bottom: 40px; }
.process-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--ocean); margin-bottom: 36px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.step { text-align: center; padding: 0 16px; position: relative; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 1px;
  background: var(--gold-light);
}
.step-num {
  width: 48px; height: 48px;
  background: var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 16px; font-weight: 500; color: var(--white);
  position: relative; z-index: 1;
}
.step h4 { font-size: 13px; font-weight: 500; color: var(--ocean); margin-bottom: 6px; }
.step p  { font-size: 12px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }


/* ================================================================
   5. TESTIMONIOS
   ================================================================ */
.testimonios-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  border: 1.5px solid var(--sand-dark);
  background: var(--white);
  color: var(--text-mid);
  font-weight: 400;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.filter-tab.active, .filter-tab:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }

.featured-testimonial {
  background: var(--ocean);
  border-radius: 20px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.featured-quote { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 24px; }
.featured-author { display: flex; align-items: center; gap: 14px; }
.featured-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 500; color: var(--white); flex-shrink: 0; }
.featured-name   { font-size: 16px; font-weight: 500; color: var(--white); }
.featured-detail { font-size: 13px; color: var(--gold-light); font-weight: 300; }
.featured-stats-col { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.feat-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 500; color: var(--gold-light); display: block; line-height: 1; }
.feat-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 140px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card.hidden { display: none; }

.stars { display: flex; gap: 3px; }
.star  { width: 14px; height: 14px; fill: var(--gold); }

.persona-tag { display: inline-block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.tag-arizona     { background: #FAEEDA; color: #633806; }
.tag-empresario  { background: #E6F1FB; color: #0C447C; }
.tag-inversionista { background: #EEEDFE; color: #3C3489; }
.tag-wellness    { background: #E1F5EE; color: #085041; }
.tag-familiar    { background: #FAECE7; color: #712B13; }

.quote-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: var(--ocean); line-height: 1.5; flex: 1; }

.author-row { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--sand-dark); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; flex-shrink: 0; color: var(--white); }
.av-amber  { background: #BA7517; }
.av-blue   { background: #185FA5; }
.av-purple { background: #534AB7; }
.av-teal   { background: #0F6E56; }
.av-coral  { background: #993C1D; }
.author-name   { font-size: 14px; font-weight: 500; color: var(--ocean); }
.author-detail { font-size: 12px; color: var(--text-light); font-weight: 300; }

.video-cta { background: var(--sand); border-radius: 16px; padding: 40px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.video-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--ocean); margin-bottom: 8px; }
.video-cta p  { font-size: 15px; color: var(--text-mid); font-weight: 300; max-width: 420px; line-height: 1.6; }


/* ================================================================
   6. UBICACIÓN & LIFESTYLE
   ================================================================ */
.map-wrap {
  background: var(--sand);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.map-svg-area { background: #D4E8F0; border-radius: 16px; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.legend-title { font-size: 12px; font-weight: 500; color: var(--ocean); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.legend-item  { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.legend-dot   { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.dot-gold  { background: var(--gold); }
.dot-ocean { background: var(--ocean); }
.dot-mid   { background: var(--ocean-light); }
.legend-text-title { font-size: 13px; font-weight: 500; color: var(--ocean); margin-bottom: 2px; }
.legend-text-sub   { font-size: 12px; color: var(--text-mid); font-weight: 300; line-height: 1.5; }

.distance-pills { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--sand-dark); }
.dist-pill { display: flex; justify-content: space-between; align-items: center; background: var(--white); border-radius: 8px; padding: 9px 14px; }
.dist-pill-from { font-size: 13px; color: var(--text-mid); font-weight: 300; }
.dist-pill-time { font-size: 13px; font-weight: 500; color: var(--ocean); }

.lifestyle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.life-card { border-radius: 14px; overflow: hidden; }
.life-card-inner { background: var(--sand); padding: 28px 22px; height: 100%; }
.life-icon { width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.life-icon svg { width:22px; height:22px; stroke:var(--ocean); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.life-title { font-size: 15px; font-weight: 500; color: var(--ocean); margin-bottom: 8px; }
.life-body  { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }
.life-card.featured .life-card-inner { background: var(--ocean); }
.life-card.featured .life-icon  { background: rgba(255,255,255,0.12); }
.life-card.featured .life-icon svg { stroke: var(--gold-light); }
.life-card.featured .life-title { color: var(--white); }
.life-card.featured .life-body  { color: rgba(255,255,255,0.6); }

.poi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.poi-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 14px; padding: 28px 24px; }
.poi-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.poi-icon-wrap { width: 40px; height: 40px; background: var(--sand); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.poi-icon-wrap svg { width:20px; height:20px; stroke:var(--ocean); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.poi-name { font-size: 14px; font-weight: 500; color: var(--ocean); }
.poi-dist { font-size: 12px; color: var(--gold); font-weight: 300; }
.poi-desc { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }


/* ================================================================
   7. PLUSVALÍA & ROI
   ================================================================ */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.kpi-card { background: var(--ocean); border-radius: 14px; padding: 28px 24px; }
.kpi-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; font-weight: 400; }
.kpi-val   { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 500; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.kpi-desc  { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.5; }

.comparison-wrap { background: var(--sand); border-radius: 20px; padding: 40px; margin-bottom: 48px; }
.comparison-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--ocean); margin-bottom: 6px; }
.comparison-sub   { font-size: 14px; color: var(--text-mid); font-weight: 300; margin-bottom: 28px; }
.chart-area { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 180px 1fr 80px; align-items: center; gap: 14px; }
.bar-label strong { color: var(--ocean); font-weight: 500; }
.bar-label { font-size: 13px; color: var(--text-mid); }
.bar-track { background: var(--sand-dark); border-radius: 4px; height: 24px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 4px; display: flex; align-items: center; padding-left: 10px; }
.bar-fill span { font-size: 11px; font-weight: 500; color: var(--white); }
.bar-pct { font-size: 14px; font-weight: 500; color: var(--ocean); text-align: right; }
.chart-disclaimer { font-size: 12px; color: var(--text-light); margin-top: 18px; line-height: 1.5; }

.scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.scenario-card { border-radius: 16px; border: 1px solid var(--sand-dark); padding: 32px 28px; position: relative; }
.scenario-card.featured { border: 2px solid var(--gold); }
.scenario-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.scenario-icon { width: 44px; height: 44px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.scenario-icon svg { width:22px; height:22px; stroke:var(--ocean); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.scenario-title { font-size: 16px; font-weight: 500; color: var(--ocean); margin-bottom: 8px; }
.scenario-sub   { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.6; margin-bottom: 18px; }
.scenario-stat  { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.scenario-stat-val  { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: var(--gold); }
.scenario-stat-unit { font-size: 13px; color: var(--text-light); font-weight: 300; }
.scenario-divider   { border: none; border-top: 1px solid var(--sand-dark); margin: 14px 0; }
.scenario-detail    { font-size: 12px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }

.cred-wrap { background: var(--ocean); border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cred-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.cred-body  { font-size: 15px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.7; }
.cred-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cred-stat     { text-align: center; }
.cred-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 6px; }
.cred-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }


/* ================================================================
   8. WHATSAPP & CONTACTO
   ================================================================ */
.profile-selector { background: var(--sand); border-radius: 20px; padding: 48px; margin-bottom: 48px; }
.profile-intro { font-size: 16px; color: var(--ocean); font-weight: 500; margin-bottom: 8px; }
.profile-sub   { font-size: 14px; color: var(--text-mid); font-weight: 300; margin-bottom: 28px; }

.profiles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 32px; }
.profile-btn {
  padding: 16px 10px; border-radius: 12px; text-align: center; cursor: pointer;
  border: 1.5px solid var(--sand-dark); background: var(--white);
  font-family: 'DM Sans', sans-serif; transition: all 0.15s;
}
.profile-btn:hover, .profile-btn.active { border-color: var(--ocean); background: var(--ocean); }
.pb-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.pb-name { font-size: 12px; font-weight: 500; color: var(--ocean); line-height: 1.3; }
.profile-btn.active .pb-name, .profile-btn:hover .pb-name { color: var(--white); }

.chat-preview { background: #ECE5DD; border-radius: 16px; overflow: hidden; }
.chat-header  { background: var(--wa-dark); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-avatar  { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.chat-avatar svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.chat-name   { font-size: 15px; font-weight: 500; color: var(--white); }
.chat-status { font-size: 12px; color: rgba(255,255,255,0.65); }
.chat-body   { padding: 20px; min-height: 120px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble-wrap { display: flex; justify-content: flex-end; }
.chat-bubble {
  background: #DCF8C6; border-radius: 12px 12px 2px 12px;
  padding: 12px 16px; max-width: 85%; font-size: 14px; color: #1A1A18; line-height: 1.55; position: relative;
}
.chat-bubble::after { content: ''; position: absolute; right: -8px; bottom: 0; border: 8px solid transparent; border-bottom-color: #DCF8C6; border-right: none; }
.chat-time { font-size: 11px; color: #8A8A80; text-align: right; margin-top: 4px; }
.chat-footer { padding: 14px 20px; border-top: 1px solid #D4C5B0; }
.chat-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer; width: 100%;
  font-family: 'DM Sans', sans-serif; transition: opacity 0.2s;
}
.chat-cta-btn:hover { opacity: 0.9; }
.chat-cta-btn svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-card { border: 1px solid var(--sand-dark); border-radius: 16px; padding: 32px 28px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-icon svg { width:24px; height:24px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.icon-wa   { background: #E8F9EE; }  .icon-wa svg   { stroke: var(--wa-dark); }
.icon-call { background: var(--sand); } .icon-call svg { stroke: var(--ocean); }
.icon-visit{ background: #E6F1FB; }  .icon-visit svg{ stroke: #185FA5; }
.contact-title { font-size: 16px; font-weight: 500; color: var(--ocean); margin-bottom: 8px; }
.contact-body  { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.6; margin-bottom: 18px; }
.contact-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--ocean); text-decoration: none; }
.contact-link:hover { color: var(--gold); }
.contact-link svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.contact-cta-block { background: var(--ocean); border-radius: 20px; padding: 64px 52px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.contact-cta-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.contact-cta-block p  { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 400px; line-height: 1.7; }
.contact-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }


/* ================================================================
   FLOATING WA BUTTON
   ================================================================ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 100;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width:26px; height:26px; stroke:var(--white); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 360px; }
  .hero-headline { font-size: 50px; }
  .section-heading { font-size: 40px; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 0; }
  .hero-bg::after { background: linear-gradient(to bottom, rgba(16,30,38,0.65) 0%, rgba(16,30,38,0.55) 50%, rgba(16,30,38,0.80) 100%); }
  .hero-left  { padding: 56px 28px 32px; }
  .hero-right { padding: 0 28px 60px; }
  .hero-headline { font-size: 40px; min-height: auto; }
  .hero-subline  { min-height: auto; }
  .site-nav { padding: 20px 28px; }
  .site-nav .nav-links a:not(.nav-cta):not(.nav-lang) { display: none; }
  .featured-testimonial { grid-template-columns: 1fr; gap: 24px; }
  .featured-stats-col { flex-direction: row; justify-content: flex-start; }
  .map-wrap { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .cred-wrap { grid-template-columns: 1fr; }
  .contact-cta-block { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .page-section { padding: 64px 24px; }
  .section-heading { font-size: 34px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .poi-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 110px 1fr 56px; }
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 16px; padding: 16px 24px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
}
