/* ═══════════════════════════════════════════════════════
   COSTA BUCALEMU — styles.css
   Paleta: oceáno profundo + arena + blanco costero
═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:       #0d2b3e;
  --ocean-mid:   #1a4a6b;
  --ocean-light: #2a6896;
  --sand:        #c8a96e;
  --sand-light:  #e8d5b0;
  --sand-pale:   #f7f0e3;
  --white:       #ffffff;
  --fog:         #f0f4f7;
  --stone:       #6b7a85;
  --stone-light: #a8b5be;
  --coral:       #c0533a;
  --success:     #2d7a4f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ocean);
  overflow-x: hidden;
}

/* ─── BARRA SUPERIOR ──────────────────────────────── */
.topbar {
  background: var(--ocean);
  padding: .45rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar-right a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.topbar-right a:hover { color: var(--sand); }
.topbar-badge {
  background: var(--coral);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,43,62,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  transition: box-shadow .3s;
}
nav.shadow { box-shadow: 0 2px 20px rgba(13,43,62,.1); }
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ocean);
}
.nav-logo-main span { color: var(--sand); }
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width .3s;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--ocean);
  color: #fff;
  padding: .6rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--ocean-mid); transform: translateY(-1px); }

/* Vista Celulares */

/* Ocultamos el botón en PC */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1000;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--ocean);
  transition: all 0.3s ease-in-out;
}

/* Reglas solo para celulares */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap; /* Permite que el menú caiga abajo */
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: flex; /* Mostramos las 3 rayitas */
  }

  .nav-links {
    display: none; /* Ocultamos los botones al principio */
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    gap: 1rem;
  }

  /* Esta clase aparecerá cuando toquemos el botón */
  .nav-links.active {
    display: flex; 
  }

  /* Animación del botón hamburguesa al abrir (se vuelve una X) */
  .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(13,43,62,.1) 0%, rgba(13,43,62,.75) 60%, rgba(13,43,62,.92) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=85') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 9s ease;
}
.hero-bg.active { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 4rem 4rem 5rem;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.4);
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .6s .2s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand);
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  line-height: .98;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp .8s .4s forwards;
}
.hero h1 em { font-style: italic; color: var(--sand); display: block; }
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s .6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s .8s forwards;
}
.btn-sand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--ocean);
  padding: .95rem 2.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-sand:hover {
  background: #dabb84;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,.35);
}
.btn-outline-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,.85);
  padding: .95rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s, color .2s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
  display: flex;
  opacity: 0;
  animation: fadeIn .8s 1.2s forwards;
}
.hero-stat {
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}

/* ─── URGENCIA / DISPONIBILIDAD ───────────────────── */
.urgency-bar {
  background: var(--ocean);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.urgency-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.urgency-icon {
  width: 36px; height: 36px;
  background: rgba(192,83,58,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.urgency-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.urgency-text span {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
}
.urgency-lots {
  display: flex;
  gap: .5rem;
}
.lot-dot {
  width: 18px; height: 18px;
  border-radius: 3px;
  background: var(--success);
}
.lot-dot.sold { background: rgba(255,255,255,.15); }
.urgency-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: .6rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.urgency-cta:hover { background: #a8422b; }

/* ─── SECCIÓN GENÉRICA ────────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  display: block;
}

/* ─── BENEFICIOS / AMENIDADES ─────────────────────── */
.amenities {
  background: var(--fog);
  padding: 7rem 4rem;
}

.amenities-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.amenities-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.15;
  margin-bottom: .8rem;
}

.amenities-header h2 em { font-style: italic; color: var(--sand); }

.amenities-header p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}


.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}


.amenity-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200, 169, 110, 0.15); 
  box-shadow: 0 10px 30px rgba(13, 43, 62, 0.05); 
  transition: all .4s ease;
}

.amenity-card:hover {
  border-color: var(--sand);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 43, 62, 0.12);
}

.amenity-icon {
  width: 60px; 
  height: 60px;
  background: var(--sand-pale);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--sand);
}

.amenity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: .8rem;
}

.amenity-card p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}

/* ─── UBICACIÓN ───────────────────────────────────── */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.location-map {
  background: var(--ocean-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
}
.location-map-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 50%, var(--ocean-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-badge {
  text-align: center;
}
.map-badge svg { opacity: .4; margin-bottom: 1rem; }
.map-badge p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.map-pin-dot {
  width: 16px; height: 16px;
  background: var(--sand);
  border-radius: 50%;
  margin: 0 auto .5rem;
  box-shadow: 0 0 0 6px rgba(200,169,110,.3), 0 0 0 12px rgba(200,169,110,.1);
  animation: pinPulse 2.5s infinite;
}
.map-pin-label {
  background: var(--ocean);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 2px;
  white-space: nowrap;
}
.location-info {
  background: var(--white);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.location-info h2 em { font-style: italic; color: var(--sand); }
.distances {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2.5rem;
}
.distance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.2rem;
  background: var(--fog);
  border-radius: 4px;
  border-left: 3px solid var(--sand);
  transition: border-color .2s, background .2s;
}
.distance-item:hover {
  background: var(--sand-pale);
  border-color: var(--ocean-light);
}
.distance-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ocean);
  min-width: 52px;
  line-height: 1;
}
.distance-time small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  display: block;
  color: var(--stone);
  text-transform: uppercase;
}
.distance-place {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ocean);
}

/* ─── LOTES / PRECIOS ─────────────────────────────── */
.lots {
  background: var(--ocean);
  padding: 7rem 4rem;
}
.lots-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lots-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}
.lots-header h2 em { font-style: italic; color: var(--sand); }
.lots-header p {
  max-width: 300px;
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  text-align: right;
  line-height: 1.7;
}
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lot-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: background .3s, border-color .3s;
}
.lot-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,169,110,.3);
}
.lot-card.featured {
  border-color: var(--sand);
  background: rgba(200,169,110,.06);
}
.lot-badge {
  position: absolute;
  top: -10px; right: 1.5rem;
  background: var(--sand);
  color: var(--ocean);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 20px;
  font-weight: 600;
}
.lot-badge.sold-badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.4);
}
.lot-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: .6rem;
}
.lot-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #525050;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.lot-specs {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lot-spec {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
}
.lot-spec-key {
  font-weight: 300;
  color: rgba(255,255,255,.45);
}
.lot-spec-val {
  color: rgba(255,255,255,.85);
  font-weight: 400;
}
.lot-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
  margin-bottom: .3rem;
}
.lot-price-note {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
}
.lot-cta {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(200,169,110,.4);
  padding: .65rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lot-cta:hover {
  background: var(--sand);
  color: var(--ocean);
  border-color: var(--sand);
}
.lot-cta.disabled {
  color: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.1);
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── QUIÉNES SOMOS ───────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-image {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=900&q=80') center/cover no-repeat;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--white) 100%);
}
.about-text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--sand); }
.about-text p {
  font-size: .93rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-builder {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--fog);
  border-radius: 4px;
  border-left: 3px solid var(--sand);
}
.about-builder-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: .3rem;
}
.about-builder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ocean);
}

/* ─── TESTIMONIOS ─────────────────────────────────── */
.testimonials {
  background: var(--sand-pale);
  padding: 7rem 4rem;
  text-align: center;
}
.testimonials h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: .6rem;
}
.testimonials h2 em { font-style: italic; color: var(--sand); }
.testimonials-sub {
  font-size: .9rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 3.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.2rem;
  text-align: left;
  border: 1px solid var(--sand-light);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,43,62,.08);
}
.testimonial-stars {
  display: flex; gap: .2rem; margin-bottom: 1rem;
  color: var(--sand);
  font-size: 1rem;
}
.testimonial-text {
  font-size: .92rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.3rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: .8rem;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ocean-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ocean);
}
.testimonial-city {
  font-size: .78rem;
  font-weight: 300;
  color: var(--stone-light);
}

/* ─── CONTACTO ────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-info h2 em { font-style: italic; color: var(--sand); }
.contact-info > p {
  font-size: .93rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--fog);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail a,
.contact-detail span {
  font-size: .92rem;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
}
.contact-detail a:hover { color: var(--ocean); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--fog);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(13,43,62,.06);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: .2rem;
}
.form-subtitle {
  font-size: .83rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: .5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  background: var(--white);
  border: 1px solid rgba(13,43,62,.12);
  border-radius: 3px;
  padding: .75rem 1rem;
  color: var(--ocean);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(200,169,110,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: #e6f4ea;
  border: 1px solid #a8d5b5;
  border-radius: 4px;
  padding: 1rem 1.2rem;
  color: var(--success);
  font-size: .9rem;
}
.form-success.visible { display: block; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ocean);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .3rem;
}
.footer-brand .logo-text span { color: var(--sand); }
.footer-brand .logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .9rem;
}
.footer-brand > p {
  font-size: .83rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: .83rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  margin-bottom: .5rem;
  line-height: 1.5;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-builder {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-builder-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: .3rem;
}
.footer-builder-name {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom {
  background: #091e2d;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: .76rem;
  font-weight: 300;
  color: rgba(255,255,255,.2);
}

/* ─── WHATSAPP FLOTANTE ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex; align-items: center; gap: .7rem;
  background: #25d366;
  color: #fff;
  padding: .85rem 1.4rem .85rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
  animation: slideUp .5s 2s both;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}
.whatsapp-float-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
}
.whatsapp-float-text small {
  display: block;
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .04em;
  opacity: .85;
  text-transform: none;
}

/* ─── ANIMACIONES ─────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(200,169,110,.3), 0 0 0 12px rgba(200,169,110,.1); }
  50%       { box-shadow: 0 0 0 10px rgba(200,169,110,.2), 0 0 0 20px rgba(200,169,110,.05); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .lots-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 3rem 1.5rem 4rem; }
  .hero-stats { display: none; }
  .urgency-bar { flex-direction: column; padding: 1.2rem 1.5rem; text-align: center; gap: 1rem; }
  .urgency-lots { justify-content: center; }
  .amenities { padding: 4rem 1.5rem; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .location { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }
  .location-info { padding: 3rem 1.5rem; }
  .lots { padding: 4rem 1.5rem; }
  .lots-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .lots-header p { text-align: left; }
  .lots-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 280px; }
  .about-text { padding: 3rem 1.5rem; }
  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: .3rem; text-align: center; }
}
/* Ajuste de Ubicación para Celulares */
@media (max-width: 768px) {
  .location {
    grid-template-columns: 1fr; /* Cambia a 1 sola columna */
  }
  
  .location-map {
    min-height: 400px; /* Le da altura al mapa para que no desaparezca */
  }
  
  .location-info {
    padding: 3rem 2rem; /* Achica los bordes blancos en móvil */
  }
}
/* Forzar al mapa de Google a ocupar toda la caja y OCULTAR la barra gris superior */
.location-map {
  position: relative;
  overflow: hidden; /* Corta todo lo que se salga de la caja */
}

.location-map iframe {
  position: absolute !important;
  top: -55px !important; /* Empuja el mapa 55 pixeles hacia arriba (oculta la barra) */
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 55px) !important; /* Recupera los 55 pixeles abajo para que no quede un hueco */
  border: none !important;
}
