/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: #222; background: #fff; overflow-x: hidden; }

:root {
  --g0: #0f2e0f;
  --g1: #1a4d1a;
  --g2: #2e7d32;
  --g3: #43a047;
  --g4: #66bb6a;
  --g5: #a5d6a7;
  --white: #fff;
  --off: #f7f8f5;
  --text: #444;
  --max: 1100px;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ─── WHATSAPP FLOTANTE ────────────────────────────── */
#wa-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
#wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
#wa-btn svg { width: 28px; height: 28px; fill: #fff; }
#wa-btn .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: wa-ping 2s ease-out infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: padding .4s, background .4s, box-shadow .4s, backdrop-filter .4s;
}
nav.solid {
  padding: 14px 0;
  background: rgba(15,46,15,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; transition: height .4s; }
nav.solid .nav-logo img { height: 40px; }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--g4);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,10,.62);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  padding-top: 100px; padding-bottom: 80px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g3); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  padding: 8px 22px; border-radius: 30px; margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(67,160,71,.45);
  animation: badge-pulse 3s ease-in-out 1.5s infinite;
  opacity: 0; /* GSAP takes over */
}
.hero-badge svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 9.5vw, 112px);
  font-weight: 800; color: #fff;
  text-transform: uppercase; line-height: .95;
  margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 .line { display: block; overflow: hidden; opacity: 0; }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 500; color: rgba(255,255,255,.85);
  margin-bottom: 36px; line-height: 1.4;
  opacity: 0; /* GSAP takes over */
}
.hero-meta {
  display: flex; gap: 36px; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 600;
  opacity: 0; /* GSAP takes over */
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg  { width: 16px; height: 16px; fill: var(--g4); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0; /* GSAP takes over */
}
.scroll-hint .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 11px; position: relative;
}
.scroll-hint .wheel {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: rgba(255,255,255,.7);
  border-radius: 2px; animation: wheel-scroll 1.8s ease-in-out infinite;
}

/* ─── CONTAINER ────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ─── SECTION TITLE ────────────────────────────────── */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; color: var(--g2);
  text-transform: uppercase; letter-spacing: 2px;
  display: inline-block; margin-bottom: 44px;
}
.section-title .underline {
  display: block; height: 3px; background: var(--g3);
  width: 0; margin-top: 8px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.section-title.centered { display: block; text-align: center; }
.section-title.centered .underline { margin: 8px auto 0; }
.section-title.animated .underline { width: 52px; }

/* ─── REVEAL CLASSES (GSAP) ────────────────────────── */
.reveal        { opacity: 0; transform: translateY(28px); }
.reveal-left   { opacity: 0; transform: translateX(-36px); }
.reveal-right  { opacity: 0; transform: translateX(36px); }
.reveal-scale  { opacity: 0; transform: scale(.95); }

/* ─── INTRO ────────────────────────────────────────── */
.intro { padding: 72px 0; border-bottom: 1px solid #eee; }
.intro p {
  font-size: 15.5px; line-height: 1.85; color: var(--text);
  max-width: 800px; margin: 0 auto 14px; text-align: center;
}
.intro p:last-child { margin-bottom: 0; }
.intro strong { color: #222; }

/* ─── POTENCIA ─────────────────────────────────────── */
.potencia {
  padding: 80px 0; text-align: center;
  background: var(--off);
  position: relative; overflow: hidden;
}
.potencia::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(102,187,106,.08) 0%, transparent 70%);
  pointer-events: none;
}
.potencia h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800; color: var(--g2);
  text-transform: uppercase; line-height: 1.1;
  margin-bottom: 16px;
}
.potencia .desde {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: #444;
  margin: 20px 0 32px;
}
.potencia .desde strong {
  color: var(--g2);
  font-size: clamp(26px, 4vw, 42px);
  font-family: 'Barlow Condensed', sans-serif;
}
.potencia p {
  font-size: 15.5px; line-height: 1.8; color: var(--text);
  max-width: 680px; margin: 0 auto;
}

/* ─── SERVICIOS ────────────────────────────────────── */
.servicios { padding: 80px 0; text-align: center; }
.servicios-grid { display: flex; justify-content: center; gap: 72px; }
.servicio {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  cursor: default;
}
.servicio-icon-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--off);
  border: 2px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, border-color .35s, transform .35s, box-shadow .35s;
}
.servicio:hover .servicio-icon-wrap {
  background: var(--g2);
  border-color: var(--g2);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 28px rgba(46,125,50,.35);
}
.servicio-icon-wrap svg { width: 44px; height: 44px; }
.servicio-icon-wrap svg .cls-1 { fill: var(--g2); transition: fill .35s; }
.servicio:hover .servicio-icon-wrap svg .cls-1 { fill: #fff; }

/* ── LUZ: rayitas que pulsan ── */
@keyframes ray-pulse {
  0%, 100% { opacity: .2; }
  50%       { opacity: 1;  }
}
.ico-luz .ray { animation: ray-pulse 1.8s ease-in-out infinite; }
.ico-luz .ray:nth-child(5)  { animation-delay:  0s;   }
.ico-luz .ray:nth-child(6)  { animation-delay: .12s;  }
.ico-luz .ray:nth-child(7)  { animation-delay: .24s;  }
.ico-luz .ray:nth-child(8)  { animation-delay: .08s;  }
.ico-luz .ray:nth-child(9)  { animation-delay: .16s;  }
.ico-luz .ray:nth-child(10) { animation-delay: .20s;  }
.ico-luz .ray:nth-child(11) { animation-delay: .04s;  }
.servicio:hover .ico-luz .ray { animation-play-state: paused; opacity: 1; }

/* ── AGUA: gota que cae y rebota ── */
@keyframes agua-drip {
  0%   { transform: translateY(0)    scaleX(1)    scaleY(1);    }
  35%  { transform: translateY(-9px) scaleX(.93)  scaleY(1.08); }
  60%  { transform: translateY(5px)  scaleX(1.07) scaleY(.94);  }
  78%  { transform: translateY(-3px) scaleX(.97)  scaleY(1.03); }
  90%  { transform: translateY(1px)  scaleX(1.02) scaleY(.99);  }
  100% { transform: translateY(0)    scaleX(1)    scaleY(1);    }
}
.ico-agua {
  animation: agua-drip 2.8s cubic-bezier(.36,.07,.19,.97) infinite;
  transform-origin: center 88%;
}
.servicio:hover .ico-agua { animation-play-state: paused; transform: none; }

/* ── FUEGO: llama en movimiento ── */
@keyframes fuego-flicker {
  0%,100% { transform: scaleX(1)    scaleY(1)    rotate(0deg);    }
  18%     { transform: scaleX(1.05) scaleY(.96)  rotate(1.8deg);  }
  36%     { transform: scaleX(.96)  scaleY(1.04) rotate(-1.2deg); }
  54%     { transform: scaleX(1.03) scaleY(.97)  rotate(.8deg);   }
  72%     { transform: scaleX(.97)  scaleY(1.03) rotate(-1.5deg); }
}
.ico-fuego {
  animation: fuego-flicker .65s ease-in-out infinite;
  transform-origin: center 95%;
}
.servicio:hover .ico-fuego { animation-play-state: paused; transform: none; }

.servicio span {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #888;
  transition: color .3s;
}
.servicio:hover span { color: var(--g2); }

/* ─── PREVENTA + LOTEO (split) ─────────────────────── */
.preventa-loteo {
  display: grid; grid-template-columns: 5fr 7fr;
  min-height: 620px;
}
.pl-left {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px; text-align: center;
}
.pl-right {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  padding: 32px 24px; background: var(--off);
}
.preventa-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('../img/bg-hero-100.jpg') center / cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate-reverse;
  will-change: transform;
  transform-origin: center center;
}
.preventa-overlay {
  position: absolute; inset: 0;
  background: rgba(8,28,8,.87);
}
.preventa-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.preventa-inner { position: relative; z-index: 1; width: 100%; }
.preventa-tag {
  display: inline-block;
  border: 1px solid rgba(102,187,106,.5);
  color: rgba(255,255,255,.75);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 20px;
}
.preventa-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 800; line-height: .9;
  color: var(--g4);
  animation: pulse-glow 3s ease-in-out infinite;
  display: inline-block;
}
.pl-left h2 {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800; text-transform: uppercase; line-height: 1;
  margin-bottom: 16px;
}
.pl-left p {
  color: rgba(255,255,255,.8);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
}
.preventa-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3), transparent);
  margin: 20px auto;
}

/* ─── LOTEO (dentro de pl-right) ───────────────────── */
.loteo-img-wrap {
  display: flex; width: 100%;
  transition: transform .4s;
}
.loteo-img-wrap:hover { transform: scale(1.02); }
.loteo-img-wrap img { width: 100%; height: auto; display: block; }

/* ─── FEATURES ─────────────────────────────────────── */
.features { padding: 80px 0; background: var(--off); text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}
.feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-left: 3px solid var(--g3);
  border-radius: 8px; padding: 24px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-left-color .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(46,125,50,.13);
  border-left-color: var(--g1);
}
.feature-card .check-wrap {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off); border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: background .3s, border-color .3s;
}
.feature-card:hover .check-wrap { background: var(--g2); border-color: var(--g2); }
.feature-card:hover .check-wrap img { filter: brightness(0) invert(1); }
.feature-card .check-wrap img { width: 16px; height: 16px; transition: filter .3s; }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: #444; font-weight: 600; }

/* ─── UBICACIÓN ────────────────────────────────────── */
.ubicacion {
  position: relative; padding: 100px 0;
  overflow: hidden; min-height: 560px;
  display: flex; align-items: center;
}
.ubi-bg {
  position: absolute; inset: 0;
  background: url('../img/bg-ubicacion-100.jpg') -18% center / cover no-repeat;
}
.ubi-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,.15) 30%,
    rgba(255,255,255,.88) 46%,
    rgba(255,255,255,1)   56%,
    rgba(255,255,255,1)   100%);
}
.ubi-content { position: relative; z-index: 1; width: 100%; }
.ubicacion-grid {
  display: grid; grid-template-columns: 46% 54%;
  gap: 0; align-items: center;
}
.ubicacion-izq { /* spacer */ }
.ubicacion-der { text-align: center; }
.ubicacion-der p.ubi-intro {
  font-size: 15px; line-height: 1.8;
  color: var(--text); margin-bottom: 28px;
}
.ubicacion-der h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--g1);
  text-transform: uppercase; line-height: 1.15; margin-bottom: 28px;
}
.ubicacion-lista { list-style: none; }
.ubicacion-lista li {
  display: flex; align-items: flex-start; gap: 12px; justify-content: center;
  font-size: 15px; color: var(--text);
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.1);
  line-height: 1.5; transition: padding-left .2s, color .2s;
}
.ubicacion-lista li:hover { padding-left: 6px; color: var(--g2); }
.ubicacion-lista li:last-child { border: none; font-weight: 700; color: var(--g1); }
.ubicacion-lista li img {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(57%) saturate(500%) hue-rotate(90deg);
}

/* ─── FOTOS ────────────────────────────────────────── */
.fotos { display: grid; grid-template-columns: 1fr 1fr; }
.foto-item { position: relative; overflow: hidden; height: 340px; }
.foto-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  display: block;
}
.foto-item:hover img { transform: scale(1.08); }
.foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,10,.6) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.foto-item:hover .foto-overlay { opacity: 1; }

/* ─── AVANCE DE OBRA ───────────────────────────────── */
.avance {
  padding: 80px 0; background: var(--g0); text-align: center;
  position: relative; overflow: hidden;
}
.avance::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.avance .section-title { color: #fff; }
.avance .section-title .underline { background: var(--g4); }
.avance-sub {
  color: rgba(255,255,255,.7); font-size: 15px; font-weight: 500;
  letter-spacing: .5px; margin-top: -28px; margin-bottom: 36px;
}
.video-wrap {
  position: relative; max-width: 760px; margin: 0 auto;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-wrap video {
  width: 100%; aspect-ratio: 16 / 9;
  display: block; cursor: pointer;
}

/* Play overlay (YouTube-style) */
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,.22);
  transition: background .3s;
}
.play-overlay:hover { background: rgba(0,0,0,.08); }
.play-btn svg { width: 72px; height: 51px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.play-bg  { fill: rgba(0,0,0,.78); transition: fill .25s; }
.play-overlay:hover .play-bg { fill: #e00; }
.play-arrow { fill: #fff; }
.play-overlay.hidden { display: none; }

/* Avance subtitle date highlight */
.avance-fecha {
  color: var(--g4); font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; letter-spacing: .5px;
}

/* ─── CONTACTO ─────────────────────────────────────── */
.contacto { padding: 80px 0; }
.contacto-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 72px; align-items: start;
}
.field { position: relative; margin-bottom: 20px; }
.field input, .field textarea {
  width: 100%;
  padding: 20px 16px 8px;
  border: 2px solid #e0e0e0; border-radius: 6px;
  font-family: 'Barlow', sans-serif; font-size: 15px; color: #222;
  background: #fafafa; outline: none;
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field label {
  position: absolute; left: 16px; top: 14px;
  font-size: 14px; color: #999; font-weight: 500;
  transition: top .2s, font-size .2s, color .2s;
  pointer-events: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--g2); background: #fff; }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: 11px; color: var(--g2); font-weight: 700;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-enviar {
  background: var(--g2); color: #fff; border: none;
  padding: 14px 40px; font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700; border-radius: 6px;
  cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(46,125,50,.3);
}
.btn-enviar:hover {
  background: var(--g1); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,.4);
}
.btn-enviar:active { transform: translateY(0); }
.contacto-datos { padding-top: 8px; }
.dato {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 17px; color: #444; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
  transition: color .2s, padding-left .2s;
}
.dato:hover { color: var(--g1); padding-left: 4px; }
.dato:last-of-type { border: none; }
.dato svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; fill: var(--g3); }
.contacto-logo { margin-top: 32px; }
.contacto-logo img { height: 58px; }

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--g0); color: #fff; padding: 28px 0;
  border-top: 2px solid rgba(102,187,106,.2);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
footer p { font-size: 12px; opacity: .6; letter-spacing: .5px; }

/* ─── KEYFRAMES ────────────────────────────────────── */
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, .5%); }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(67,160,71,.45), 0 0 0 0 rgba(67,160,71,.4); }
  50%       { box-shadow: 0 4px 20px rgba(67,160,71,.45), 0 0 0 10px rgba(67,160,71,0); }
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(102,187,106,.4); }
  50%       { text-shadow: 0 0 40px rgba(102,187,106,.9), 0 0 80px rgba(102,187,106,.3); }
}
@keyframes wheel-scroll {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  60%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
  61%  { opacity: 0; transform: translateX(-50%) translateY(0); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-video, .preventa-bg { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .preventa-loteo  { grid-template-columns: 1fr; }
  .pl-left         { min-height: 420px; }
  .ubicacion-grid  { grid-template-columns: 1fr; gap: 40px; }
  .contacto-grid   { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .servicios-grid  { gap: 36px; }
  .fotos           { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-inner       { padding: 0 16px; }
  .nav-logo img    { height: 36px; }
  nav.solid .nav-logo img { height: 30px; }
  .nav-links       { gap: 12px; }
  .nav-links a     { font-size: 10px; letter-spacing: .8px; }
}
@media (max-width: 500px) {
  .features-grid   { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-inner    { flex-direction: column; gap: 10px; text-align: center; }
}
