/* ══════════════════════════════════════════════════════
   ISLAS VERDES — LUXURY ESTATES — PREMIUM CSS 2026
   ══════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --black:      #000000;
  --black-off:  #080808;
  --black-mid:  #0e0e0e;
  --gray:       #424347;
  --gray-light: #6b6d72;
  --gray-pale:  #a8aaaf;
  --gold:       #d6af63;
  --gold-light: #e8ca89;
  --gold-dark:  #b8932e;
  --white:      #ffffff;
  --white-soft: #f0ede8;
  --glass-bg:   rgba(255,255,255,0.03);
  --glass-bdr:  rgba(214,175,99,0.15);
  --shadow-gold: 0 0 40px rgba(214,175,99,0.12);
  --radius:     16px;
  --radius-lg:  24px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;
  --nav-h:      80px;
  --section-pad: 120px;
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
select { appearance: none; -webkit-appearance: none; background: transparent; border: none; outline: none; color: var(--white); font-family: var(--font-sans); font-size: 0.88rem; cursor: pointer; width: 100%; }
select option { background: #1a1a1a; color: var(--white); }
input, textarea { background: transparent; border: none; outline: none; color: var(--white); font-family: var(--font-sans); font-size: 0.88rem; width: 100%; }
input::placeholder, textarea::placeholder { color: var(--gray-light); }

/* ── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ── UTILITY ────────────────────────────────────────── */
.gold { color: var(--gold); }
.d-none-mobile { display: inline; }
.mt-40 { margin-top: 2.5rem; display: inline-flex; }
.w-full { width: 100%; justify-content: center; }

/* ── GLASS ──────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ── LOGO IMAGE ─────────────────────────────────────── */
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(214,175,99,0.35);
}
.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-premium);
}
.btn-primary:hover .btn-shine { left: 150%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── SECTION HEADER ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--gray-pale);
  letter-spacing: 0.05em;
}
.section-cta {
  text-align: center;
  margin-top: 60px;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(214,175,99,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-premium);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { transform: scaleX(1); }

.btn-asesor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.btn-asesor:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.75) 70%,
    rgba(0,0,0,0.95) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(214,175,99,0.15);
  backdrop-filter: blur(16px);
  border-radius: 60px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-div {
  width: 1px;
  height: 36px;
  background: rgba(214,175,99,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════
   SEARCH
   ══════════════════════════════════════════════════════ */
.search-section {
  position: relative;
  z-index: 1;
  padding: 0 40px;
 
  margin-bottom: 10;
}
.search-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 44px;
  border-radius: var(--radius-lg);
}
.search-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.search-title p {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.gold-line {
  
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
  max-width: 120px;
}
.gold-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}
.search-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-group label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.select-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 10px;
  transition: border-color 0.3s;
}
.select-wrap:focus-within {
  border-color: var(--gold);
}
.sel-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-60%);
  pointer-events: none;
  color: var(--gray-light);
  width: 14px;
  height: 14px;
}
.btn-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(214,175,99,0.3);
}

/* ══════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════ */
.stats-section {
  padding: var(--section-pad) 40px;
  background: linear-gradient(180deg, var(--black) 0%, #050505 50%, var(--black) 100%);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark));
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.3s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(214,175,99,0.03); }
.stat-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: inline;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-pale);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════
   TERRENOS
   ══════════════════════════════════════════════════════ */
.terrenos-section {
  padding: var(--section-pad) 40px;
  background: var(--black-off);
}
.terrenos-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.terreno-card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s, border-color 0.4s;
}
.terreno-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(214,175,99,0.2);
  border-color: rgba(214,175,99,0.2);
}
.terreno-card.featured {
  border-color: rgba(214,175,99,0.3);
  box-shadow: var(--shadow-gold);
}
.card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-image-wrap img {
  transition: transform 0.7s var(--ease-premium);
}
.terreno-card:hover .card-image-wrap img {
  transform: scale(1.08);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 14px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--gold);
  border-radius: 30px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.card-badge.exclusive {
  background: rgba(214,175,99,0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.card-hover-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(0,0,0,0.3);
}
.terreno-card:hover .card-hover-actions { opacity: 1; }
.card-action-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s;
}
.card-action-btn:hover { transform: scale(1.05); }

.card-body {
  padding: 24px 26px 26px;
}
.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-pale);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.card-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.spec-div { color: rgba(255,255,255,0.15); }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.card-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
}
.card-link {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gray-pale);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.card-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   VISIÓN
   ══════════════════════════════════════════════════════ */
.vision-section {
  padding: var(--section-pad) 40px;
  background: var(--black);
}
.vision-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-image {
  position: relative;
  height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vision-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 100%);
}
.vision-img-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  padding: 20px 28px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(214,175,99,0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}
.vision-img-badge .gold { font-size: 1.1rem; display: block; margin-bottom: 8px; }
.vision-img-badge p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.vision-content { padding: 20px 0; }
.vision-content .section-eyebrow { margin-bottom: 18px; }
.vision-content .section-title { margin-bottom: 28px; }
.vision-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  line-height: 1.9;
}

/* ── PROYECTO VIDEO ────────────────────────────────── */
.proyecto-video-wrap {
  margin: 28px 0;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(214,175,99,0.04);
  border: 1px dashed rgba(214,175,99,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.video-placeholder:hover {
  background: rgba(214,175,99,0.07);
  border-color: rgba(214,175,99,0.5);
}
.video-placeholder-inner {
  text-align: center;
  padding: 24px;
}
.video-icon {
  width: 56px;
  height: 56px;
  background: rgba(214,175,99,0.12);
  border: 1px solid rgba(214,175,99,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 14px;
}
.video-placeholder-inner p {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.video-placeholder-inner small {
  font-size: 0.7rem;
  color: var(--gray-light);
}
.proyecto-video {
  width: 100%;
  border-radius: var(--radius);
  outline: none;
}

.vision-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vision-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,175,99,0.1);
  border: 1px solid rgba(214,175,99,0.2);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.vision-feat strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}
.vision-feat p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-pale);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIOS
   ══════════════════════════════════════════════════════ */
.testimonios-section {
  padding: var(--section-pad) 40px;
  background: var(--black-off);
}
.testimonios-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.test-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.test-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}
.test-author strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.test-author span {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-pale);
}

/* ══════════════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════════════ */
.contacto-section {
  padding: var(--section-pad) 40px;
  background: var(--black);
}
.contacto-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacto-info .section-title { margin-bottom: 20px; }
.contacto-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.9;
}
.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.dato-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dato-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(214,175,99,0.08);
  border: 1px solid rgba(214,175,99,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.dato-item strong {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.dato-item span {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-pale);
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.form-wrap {
  padding: 44px;
  border-radius: var(--radius-lg);
}
.form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.input-premium {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
  font-size: 0.88rem;
}
.input-premium:focus, .select-wrap:focus-within .input-premium {
  border-bottom-color: var(--gold);
}
.form-group .select-wrap {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0;
}
.form-group .select-wrap select {
  padding: 13px 0;
}
textarea.input-premium {
  min-height: 100px;
  resize: vertical;
  padding-top: 13px;
}
.form-note {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-light);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ── FORM SUCCESS ───────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.85rem;
  color: var(--gray-pale);
}

/* ── SPINNER ────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 40px 30px;
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 300px;
}
.footer-tagline {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-pale);
  line-height: 1.9;
}
.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 50px rgba(37,211,102,0.45);
}
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(0,0,0,0.85);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 300;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

[data-delay="0"] { transition-delay: 0s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .terrenos-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-inner { gap: 50px; }
  .search-fields {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .btn-search { grid-column: span 2; justify-self: center; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 40px;
    gap: 30px;
    border-bottom: 1px solid rgba(214,175,99,0.1);
    backdrop-filter: blur(20px);
  }
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .vision-image { height: 400px; }
  .contacto-inner { grid-template-columns: 1fr; gap: 50px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 700px) {
  :root { --nav-h: 68px; --section-pad: 60px; }
  .d-none-mobile { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero-title { font-size: 3rem; }
  .hero-badge { flex-direction: column; gap: 16px; padding: 20px 24px; border-radius: 20px; }
  .badge-div { width: 60px; height: 1px; }
  .terrenos-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .search-section { margin-top: -30px; padding: 0 16px; }
  .search-box { padding: 24px 20px; }
  .search-fields { grid-template-columns: 1fr; }
  .btn-search { grid-column: auto; width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
  .footer-links { gap: 40px; }
  .footer-top { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-ghost, .hero-actions .btn-primary { width: 100%; max-width: 280px; justify-content: center; }
  .search-title { gap: 12px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
