/* ═══════════════════════════════════════════════════════════════════
   Parcelas — Design System
   Paleta: Verde bosque · Dorado tierra · Crema natural
   Tipografía: Playfair Display (headings) + Inter (body)
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --verde-oscuro:  #2D4A1E;
  --verde-medio:   #3B5323;
  --verde-claro:   #4a6b2a;
  --dorado:        #C8A96E;
  --dorado-oscuro: #A8893E;
  --crema:         #FAFAF7;
  --crema-arena:   #F0EBE1;
  --arena:         #E4D9C8;
  --texto:         #1A1A1A;
  --texto-suave:   #5a5a5a;
  --blanco:        #ffffff;
  --sombra-sm:     0 2px 8px rgba(0,0,0,.08);
  --sombra-md:     0 4px 20px rgba(0,0,0,.12);
  --sombra-lg:     0 8px 40px rgba(0,0,0,.18);
  --radio:         12px;
  --trans:         .28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { transition: color var(--trans), opacity var(--trans); }

/* ── HEADER / NAVBAR ────────────────────────────────────────────── */
header {
  background: var(--verde-oscuro);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1002;
  transition: background var(--trans), box-shadow var(--trans);
}

header.scrolled {
  background: #1A2E10;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

header img { height: 54px; }

/* Menú desktop */
.nav-desktop {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-desktop a {
  color: #E8F0E0;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: .4rem .75rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.nav-desktop a:hover {
  color: var(--dorado);
  background: #3d5e26;
}

/* Menú hamburguesa */
.hamburger {
  position: fixed;
  right: 20px;
  top: 20px;
  height: 36px;
  width: 36px;
  padding: 4px;
  cursor: pointer;
  z-index: 1003;
  display: none;
}
.hamburger ._layer {
  background: #fff;
  margin-bottom: 5px;
  border-radius: 3px;
  width: 28px;
  height: 3px;
  transition: all .25s ease;
}
.hamburger:hover .-top    { transform: translateY(-2px); }
.hamburger:hover .-bottom { transform: translateY(2px); }
.hamburger.is-active .-top    { transform: translateY(200%) rotate(45deg)  !important; }
.hamburger.is-active .-mid    { opacity: 0; }
.hamburger.is-active .-bottom { transform: translateY(-200%) rotate(135deg) !important; }

/* Menú móvil full-screen */
.menuppal {
  background: #1A2E10;
  position: fixed;
  inset: 0;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menuppal.is_active { transform: translateX(0); }

.close-menu {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: #B0C8A0;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--trans);
}
.close-menu:hover { color: var(--dorado); }

.menuppal ul { list-style: none; text-align: center; }
.menuppal ul li { padding: .7rem 0; }
.menuppal ul li a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #E8F0E0;
  text-decoration: none;
  letter-spacing: .02em;
  transition: color var(--trans);
}
.menuppal ul li a:hover { color: var(--dorado); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger   { display: block; }
  header       { padding: 0 1.25rem; }
}

/* ── HERO ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.Principal {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 2rem 3rem;
  max-width: 780px;
}

.Principal h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin-bottom: 1rem;
}

.Principal p {
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  color: #D8EAC8;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  margin-bottom: .6rem;
}

/* CTA hero */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  background: var(--dorado);
  color: var(--verde-oscuro);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(200,169,110,.4);
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,.55);
  filter: brightness(1.08);
  color: var(--verde-oscuro);
}

/* Animación hero — solo fade-in, queda visible */
.fade-text {
  animation: heroFadeIn .9s ease forwards;
  opacity: 0;
}
.fade-text:nth-child(1) { animation-delay: .1s; }
.fade-text:nth-child(2) { animation-delay: .35s; }
.fade-text:nth-child(3) { animation-delay: .55s; }
.hero-cta               { animation: heroFadeIn .9s ease .7s forwards; opacity: 0; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Vídeo de fondo */
.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(.55);
  transform: scale(1.05);
  z-index: 0;
}

/* Vídeo promo centrado */
.promo-video {
  position: relative;
  z-index: 2;
  width: min(75%, 900px);
  margin: 0 auto 2rem;
  display: block;
  border-radius: var(--radio);
  box-shadow: var(--sombra-lg);
}

.capa {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27,42,14,.6) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(27,42,14,.55) 100%
  );
  z-index: 1;
}

/* ── ÍCONOS DE CARACTERÍSTICAS ──────────────────────────────────── */
.icon-container {
  background: var(--crema-arena);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 1040px;
  margin-bottom: .5rem;
}

.icon {
  flex: 0 1 130px;
  text-align: center;
  background: var(--blanco);
  border-radius: var(--radio);
  padding: 1.4rem .8rem 1.1rem;
  box-shadow: var(--sombra-sm);
  border-top: 3px solid var(--dorado);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-md);
  border-top-color: var(--verde-oscuro);
}

.icon img {
  width: 52px;
  height: 52px;
  margin: 0 auto .7rem;
  object-fit: contain;
  border-radius: 10px;
}

.icon span {
  font-size: 2rem;
  display: block;
  margin-bottom: .45rem;
  line-height: 1;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Android Emoji', EmojiSymbols, sans-serif;
  color: initial;
}

.icon p {
  font-size: .8rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  line-height: 1.3;
  margin: 0;
}

/* ── SECCIONES GENERALES ────────────────────────────────────────── */
.features {
  padding: 5rem 1.5rem;
  text-align: center;
}

.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.features h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--texto-suave);
  margin-bottom: 2.5rem;
  letter-spacing: .03em;
}

.features h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--texto-suave);
  margin-bottom: 2rem;
  font-style: italic;
}

.features p {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorador dorado bajo título */
.features h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--dorado);
  margin: .75rem auto 0;
  border-radius: 2px;
}

/* Fondos alternados por sección */
#parcelacion  { background: var(--blanco); }
#ubicacion    { background: var(--crema-arena); }
#Precios      { background: var(--verde-oscuro); padding: 5rem 1.5rem; }
#Testimonios  { background: var(--blanco); }
#como-comprar { background: var(--crema-arena); }
#contacto     { background: var(--blanco); }
#galeria      { background: #111; padding: 5rem 0 0; }

#Precios h2, #Precios h3, #Precios p {
  color: #F0F7E8 !important;
}
#Precios h2::after { background: var(--dorado); }

/* ── PARCELACIÓN ────────────────────────────────────────────────── */
#no-key-msg {
  background: #fff8e6;
  border: 1px solid var(--dorado);
  border-radius: var(--radio);
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #6b4f0a;
}

.btn-visor {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--verde-medio);
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px #1e3510;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  margin-bottom: 1.5rem;
}
.btn-visor:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #1e3510;
  background: var(--verde-oscuro);
}

/* ── PRECIOS ────────────────────────────────────────────────────── */
#Precios .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  background: #3B5323;
  border: 1px solid #4d6b30;
  width: min(90%, 1100px);
  margin: 0 auto;
  border-radius: 20px;
}

#Precios .texto {
  flex: 1;
  color: #fff;
}

#Precios .texto h1,
#Precios .texto .precios-bloque-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.2;
}

#Precios #precio {
  background: var(--dorado);
  color: var(--verde-oscuro) !important;
  padding: .55rem 1.4rem;
  font-weight: 800;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(200,169,110,.35);
}

#Precios .texto p {
  font-size: 1rem !important;
  color: #C8DDB0 !important;
  text-align: left !important;
  line-height: 1.7;
  max-width: none;
}

#Precios h3 {
  color: #A8C88A !important;
  margin-bottom: 2.5rem;
}

#Precios .imagenes {
  flex: 1;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.wrapper div { overflow: hidden; border-radius: 10px; }
.wrapper img { width:100%; height:100%; object-fit:cover; border-radius:10px; transition: transform .4s; }
.wrapper div:hover img { transform: scale(1.04); }
.one   { grid-column: 1/3; grid-row: 1; }
.two   { grid-column: 1;   grid-row: 2; }
.three { grid-column: 2;   grid-row: 2; }

@media (max-width: 768px) {
  #Precios .container { flex-direction: column; }
  #Precios .texto h1,
  #Precios .texto .precios-bloque-titulo { text-align: center; }
  #Precios .texto p   { text-align: center !important; }
}

/* ── POR QUÉ INVERTIR ───────────────────────────────────────────── */
.why-invest {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  padding: 0 1rem;
}
.why-invest h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-bottom: 1.2rem;
}
.why-invest p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: 1rem;
  text-align: justify;
  max-width: none;
}

/* ── CÓMO COMPRAR ───────────────────────────────────────────────── */
#como-comprar .container { max-width: 1000px; margin: 0 auto; padding: 0 1rem; }

#como-comprar .steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  counter-reset: paso;
}

#como-comprar .step {
  counter-increment: paso;
  background: var(--blanco);
  padding: 2.2rem 1.8rem 1.8rem;
  border-radius: 20px;
  width: 280px;
  text-align: center;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--arena);
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
#como-comprar .step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}

/* Número del paso */
#como-comprar .step::before {
  content: counter(paso);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--dorado);
  color: var(--verde-oscuro);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(200,169,110,.4);
  line-height: 40px;
  text-align: center;
}

#como-comprar .step h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-bottom: .65rem;
}
#como-comprar .step p {
  font-size: .92rem;
  color: var(--texto-suave);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* Ocultar los círculos vacíos del HTML original */
#como-comprar .circle,
#como-comprar .bottom-circles,
#como-comprar .bottom-circle { display: none !important; }

/* ── CONTACTO / VENDEDORES ──────────────────────────────────────── */
.team-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--texto-suave);
  margin-bottom: 2.5rem;
  letter-spacing: .04em;
}

.team {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.team-member {
  background: var(--blanco);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--arena);
  width: 220px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}

.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--arena);
}

/* Avatar sin foto */
.team-member .avatar-placeholder {
  width: 100px;
  height: 100px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--arena);
}

.team-member h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.contact-info {
  background: #25D366;
  color: white;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(37,211,102,.3);
  transition: transform var(--trans), box-shadow var(--trans);
}
.contact-info:hover {
  transform: scale(1.04);
  box-shadow: 0 5px 18px rgba(37,211,102,.45);
}
.contact-info a { color: inherit; text-decoration: none; }

/* ── GALERÍA ────────────────────────────────────────────────────── */
#galeria h2 { color: #fff !important; }
#galeria h2::after { background: var(--dorado); }
#galeria h4 { color: #8A9E78 !important; }

.galeria-dinamica {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  padding: 1rem 1.5rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #222;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  display: block;
}
.galeria-item:hover img {
  transform: scale(1.07);
  filter: brightness(.75);
}
.galeria-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, #000000BF);
  color: #fff;
  font-size: .83rem;
  padding: 1.5rem .75rem .6rem;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.galeria-item:hover .galeria-caption { transform: translateY(0); }

/* Galería estática (grid clásico) */
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
  padding: 0 1.5rem 3rem;
}
.grid-item1,.grid-item2,.grid-item3,.grid-item4,
.grid-item5,.grid-item6,.grid-item7,.grid-item8 { min-height: 200px; background-size: cover; background-position: center; border-radius: 8px; }
.grid-item1 { background-image: url("Picture_Proyect/Imagen G 10.jpeg"); grid-column:1/4; grid-row:1/2; }
.grid-item2 { background-image: url("Picture_Proyect/Imagen G 5.jpeg");  grid-column:1/2; grid-row:2/5; }
.grid-item3 { background-image: url("Picture_Proyect/Imagen G 9.jpeg");  grid-column:1/5; grid-row:5/5; }
.grid-item4 { background-image: url("Picture_Proyect/Imagen G 12.jpeg"); grid-column:2/4; grid-row:2/5; }
.grid-item5 { background-image: url("Picture_Proyect/Imagen G 1.jpeg");  grid-column:4/6; grid-row:1/3; }
.grid-item6 { background-image: url("Picture_Proyect/Imagen G 8.jpeg");  grid-column:4/5; grid-row:3/5; }
.grid-item7 { background-image: url("Picture_Proyect/Imagen G 4.jpeg");  grid-column:5/6; grid-row:3/6; }
.grid-item8 { background-image: url("Picture_Proyect/Imagen G 13.jpeg"); grid-column:6/8; grid-row:1/6; }

@media (max-width: 768px) {
  .grid { grid-template-columns: repeat(2,1fr); padding: 0 .75rem 2rem; }
  .grid-item1,.grid-item2,.grid-item3,.grid-item4,
  .grid-item5,.grid-item6,.grid-item7,.grid-item8 { grid-column:span 2; grid-row:auto; }
}

/* ── MAPA ───────────────────────────────────────────────────────── */
.map-iframe {
  width: 65%;
  height: 480px;
  border: 0;
  border-radius: var(--radio);
  box-shadow: var(--sombra-md);
}
@media (max-width: 768px) {
  .map-iframe { width: 100%; height: 380px; }
}

/* ── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.activo { display: flex; }
.lightbox-overlay img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
}
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: #E8F0E0; font-size: .9rem;
  background: #000000AA; padding: .35rem 1.2rem;
  border-radius: 20px; white-space: nowrap;
}
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.8rem;
  color: #B0C8A0; font-size: 2.4rem;
  cursor: pointer; line-height: 1;
  transition: color var(--trans), transform var(--trans);
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #0D1A08;
  color: #8EA87A;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: .88rem;
  line-height: 2;
}
footer a {
  color: var(--dorado);
  text-decoration: none;
  font-weight: 500;
}
footer a:hover { color: #fff; }
footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #E8F0E0;
  margin-bottom: .25rem;
}
footer .footer-sep {
  width: 40px; height: 2px;
  background: var(--dorado);
  margin: .75rem auto;
  border-radius: 2px;
}

/* ── BOTÓN FLOTANTE WHATSAPP ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* Pulso animado */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  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: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* ── BADGES / STATS ─────────────────────────────────────────────── */
.stat-badge { padding: .4rem 1.1rem; border-radius: 20px; font-size: .84rem; font-weight: 600; color: #fff; }
.stat-disp  { background: #22c55e; }
.stat-res   { background: #f59e0b; }
.stat-vend  { background: #ef4444; }
.stats-parcelas { display:flex; gap:.75rem; justify-content:center; margin-bottom:1.5rem; flex-wrap:wrap; }

/* ── INFO WINDOW MAPA ───────────────────────────────────────────── */
.info-parcela { min-width: 180px; font-family: 'Inter', sans-serif; }
.info-parcela h4 { margin: 0 0 .4rem; font-size: 1rem; }
.info-parcela .estado-badge { display:inline-block; padding:.2rem .7rem; border-radius:12px; font-size:.8rem; font-weight:600; margin-bottom:.5rem; }
.info-parcela .estado-disponible { background:#dcfce7; color:#166534; }
.info-parcela .estado-reservada  { background:#fef9c3; color:#854d0e; }
.info-parcela .estado-vendida    { background:#fee2e2; color:#991b1b; }
.btn-wa { display:inline-block; background:#25D366; color:#fff; padding:.35rem .9rem; border-radius:8px; text-decoration:none; font-size:.85rem; margin-top:.4rem; font-weight:600; }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--verde-oscuro);
  padding: .65rem 2rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  margin-top: 72px;
}
.breadcrumb-bar a       { color: #A8C88A; text-decoration:none; }
.breadcrumb-bar a:hover { color: var(--dorado); }
.breadcrumb-bar .sep    { color: #5E7848; }
.breadcrumb-bar .current { color: #fff; font-weight: 600; }

/* ── BADGES META PROYECTO ───────────────────────────────────────── */
.proyecto-meta { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; margin-bottom:1.5rem; }
.proyecto-meta-badge {
  background: #EBF2E0;
  color: var(--verde-medio);
  border: 1px solid #C4D8A8;
  padding: .3rem .9rem; border-radius: 20px; font-size: .82rem; font-weight: 500;
}

/* ── LEYENDA MAPA ───────────────────────────────────────────────── */
.leyenda-mapa { display:flex; gap:1.5rem; justify-content:center; margin-top:1rem; flex-wrap:wrap; }
.leyenda-item { display:flex; align-items:center; gap:.4rem; font-size:.88rem; color: var(--texto-suave); }
.leyenda-dot  { width:13px; height:13px; border-radius:50%; display:inline-block; }
.dot-disp { background:#22c55e; }
.dot-res  { background:#f59e0b; }
.dot-vend { background:#ef4444; }

/* ── MAPA PARCELAS ──────────────────────────────────────────────── */
#mapa-parcelas { width:100%; height:520px; border-radius:var(--radio); box-shadow:var(--sombra-lg); }

/* ── RESPONSIVE GENERAL ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .features        { padding: 3.5rem 1.25rem; }
  .promo-video     { width: 95%; }
  #como-comprar .steps { gap: 2.5rem; }
  #como-comprar .step  { width: 100%; max-width: 340px; }
  .team            { gap: 1.25rem; }
  .team-member     { width: calc(50% - .65rem); min-width: 160px; }
  .galeria-dinamica { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap:6px; padding:.5rem .75rem 2rem; }
  .wa-float        { bottom:1.2rem; right:1.2rem; width:52px; height:52px; }
  /* Íconos: 4 por fila en tablet */
  .icon            { flex: 0 1 calc(25% - .75rem); }
}

@media (max-width: 480px) {
  .team-member { width: 100%; max-width: 280px; }
  .Principal h1 { font-size: 2rem; }
  /* Íconos: 2 por fila en móvil */
  .icon            { flex: 0 1 calc(50% - .5rem); }
  .icon img        { width: 44px; height: 44px; }
  .icon-container  { padding: 2rem 1rem; }
}

/* ══════════════════════════════════════════════════════════════════
   HERO — Botón CTA
══════════════════════════════════════════════════════════════════ */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .02em;
  padding: .8rem 1.9rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  transition: background var(--trans), border-color var(--trans);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════
   PARCELA CARDS — Grid en homepage
══════════════════════════════════════════════════════════════════ */
.parcelas-section-header {
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}
.parcelas-section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-bottom: .35rem;
}
.parcelas-section-header p {
  font-size: .95rem;
  color: var(--texto-suave);
}

#lista-parcelas {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 .5rem;
}

.parcela-card {
  background: var(--blanco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--arena);
  text-decoration: none;
  color: var(--texto);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.parcela-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
  border-color: var(--dorado);
  color: var(--texto);
}

/* Cabecera de la card — gradiente con número de lote */
.parcela-card-head {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-claro) 100%);
  padding: 1.1rem 1rem .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 80px;
  position: relative;
}
.parcela-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.parcela-card-estado {
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .65rem;
  border-radius: 20px;
  letter-spacing: .02em;
}
.parcela-card-estado.disponible { background: #dcfce7; color: #166534; }
.parcela-card-estado.reservada  { background: #fef9c3; color: #854d0e; }
.parcela-card-estado.vendida    { background: #fee2e2; color: #991b1b; }

/* Cuerpo */
.parcela-card-body {
  padding: .85rem 1rem .7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.parcela-card-m2 {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.parcela-card-m2 strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--verde-oscuro);
}
.parcela-card-m2 span {
  font-size: .7rem;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.parcela-card-precio {
  font-size: .88rem;
  color: var(--texto-suave);
  font-weight: 500;
}
.parcela-card-pm2 {
  font-size: .75rem;
  color: #999;
}

.parcela-card-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .65rem;
}

.parcela-card-attrs span {
  background: #eef7ee;
  border: 1px solid #d8ead8;
  color: #245624;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .5rem;
}

/* Footer de la card */
.parcela-card-footer {
  padding: .65rem 1rem;
  border-top: 1px solid var(--arena);
  font-size: .82rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans);
}
.parcela-card:hover .parcela-card-footer {
  background: #f8faf5;
  color: var(--verde-claro);
}
.parcela-card-footer::after {
  content: '→';
  font-size: .95rem;
  transition: transform var(--trans);
}
.parcela-card:hover .parcela-card-footer::after {
  transform: translateX(4px);
}

/* Botón "Cargar más" */
.btn-cargar-mas {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 2rem auto 0;
  padding: .75rem 2.2rem;
  background: var(--blanco);
  color: var(--verde-oscuro);
  border: 2px solid var(--verde-oscuro);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  text-align: center;
}
.btn-cargar-mas:hover {
  background: var(--verde-oscuro);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER — Multi-columna
══════════════════════════════════════════════════════════════════ */
footer {
  background: #0a1506;
  color: #7a9868;
  padding: 0;
  text-align: left;
  font-size: .88rem;
  line-height: 1.8;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
}
.footer-brand-col .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #E8F0E0;
  margin-bottom: .5rem;
}
.footer-brand-col p {
  font-size: .88rem;
  color: #6a8658;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #C8A96E;
  margin-bottom: .9rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-col ul li a {
  color: #7a9868;
  text-decoration: none;
  transition: color var(--trans);
  font-size: .88rem;
}
.footer-col ul li a:hover { color: #E8F0E0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: #7a9868;
  margin-bottom: .55rem;
  font-size: .88rem;
}
.footer-contact-item .fci-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.footer-contact-item a { color: var(--dorado); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: .75rem;
  transition: filter var(--trans);
}
.footer-wa-btn:hover { filter: brightness(1.12); color: #fff; }

.footer-bottom {
  border-top: 1px solid #1a2e10;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: .8rem;
  color: #4a6438;
}
.footer-bottom a { color: var(--dorado); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

.footer-sep {
  width: 36px; height: 2px;
  background: var(--dorado);
  margin: .6rem 0 1rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════
   FICHA PARCELA — Mejoras visuales
══════════════════════════════════════════════════════════════════ */

/* Hero foto de la parcela */
.ficha-hero {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
.ficha-hero-wrap {
  position: relative;
  overflow: hidden;
  background: #1a2a1a;
}
.ficha-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.55) 100%);
}

/* Calculadora — colores de marca */
.calc-card {
  border-radius: 10px;
  padding: .85rem 1rem;
  text-align: center;
}
.calc-card-lbl {
  font-size: .72rem;
  color: #6a7a6a;
  margin-bottom: .25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calc-card-val {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}
.calc-card-sub {
  font-size: .7rem;
  margin-top: .2rem;
  color: #888;
}
.calc-card.total    { background: #EBF4E0; }
.calc-card.total .calc-card-val    { color: #2D4A1E; }
.calc-card.pie      { background: #FEF4E1; }
.calc-card.pie .calc-card-val      { color: #92610A; }
.calc-card.financiar { background: #E9F2F9; }
.calc-card.financiar .calc-card-val { color: #1A537E; }
.calc-card.dividendo { background: #FDE8E8; }
.calc-card.dividendo .calc-card-val { color: #9B1C1C; }

/* Ficha técnica — valor tag color primario */
.ft-value { border-left-color: var(--verde-oscuro) !important; }

/* Otras parcelas — card con hover */
.otra-card-inner {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding: 1rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border: 1.5px solid transparent;
}
.otra-card:hover .otra-card-inner {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border-color: var(--dorado);
}

/* 404 parcela no encontrada */
.not-found-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--crema);
  font-family: 'Inter', Arial, sans-serif;
}
.not-found-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--verde-oscuro);
}
.not-found-wrap p { color: var(--texto-suave); font-size: 1rem; }
.not-found-wrap a {
  background: var(--verde-oscuro);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--trans);
}
.not-found-wrap a:hover { background: var(--verde-claro); }

/* ── Etapas de precio / Countdown ───────────────────────────────── */
.etapa-precio-wrap {
  margin: 1rem 0;
  display: inline-block;
  max-width: 100%;
}

.etapa-badge {
  background: linear-gradient(135deg, #f0fde8 0%, #e4f5cc 100%);
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: .9rem 1.2rem;
  display: inline-block;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(76,175,80,.18);
}

.etapa-badge-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .35rem;
}

.etapa-badge-icono {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

.etapa-badge-nombre {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #3B5323;
}

.etapa-badge-precio {
  font-size: 1.55rem;
  font-weight: 900;
  color: #1e4620;
  line-height: 1.1;
}

.etapa-badge-desc {
  font-size: .8rem;
  color: #5a7a2a;
  margin-top: .25rem;
}

.etapa-cupo {
  font-size: .78rem;
  color: #6b7280;
  margin-top: .3rem;
}

.etapa-cupo-alerta {
  font-size: .78rem;
  color: #92610a;
  background: #fef3c7;
  border-radius: 6px;
  padding: .2rem .55rem;
  margin-top: .35rem;
  display: inline-block;
  font-weight: 600;
}

/* Countdown */
.etapa-countdown-wrap {
  margin-top: .65rem;
}

.etapa-countdown-label {
  font-size: .72rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
  font-weight: 600;
}

.etapa-countdown {
  display: flex;
  align-items: center;
  gap: .2rem;
  font-variant-numeric: tabular-nums;
}

.etapa-cd-bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1e4620;
  border-radius: 7px;
  padding: .3rem .55rem;
  min-width: 42px;
  text-align: center;
}

.etapa-cd-bloque span:first-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .02em;
}

.etapa-cd-unit {
  font-size: .58rem !important;
  color: #a8d5a8 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .05rem;
}

.etapa-cd-sep {
  font-size: 1.2rem;
  font-weight: 900;
  color: #3B5323;
  margin: 0 .05rem;
  line-height: 1;
  padding-bottom: .6rem;
}

/* Variantes por contexto */
.etapa-badge-ctx-card .etapa-badge {
  padding: .65rem 1rem;
}
.etapa-badge-ctx-card .etapa-badge-precio {
  font-size: 1.25rem;
}
.etapa-badge-ctx-card .etapa-cd-bloque {
  min-width: 36px;
  padding: .25rem .45rem;
}
.etapa-badge-ctx-card .etapa-cd-bloque span:first-child {
  font-size: 1rem;
}

.etapa-badge-ctx-landing .etapa-badge {
  padding: 1rem 1.4rem;
}
.etapa-badge-ctx-landing .etapa-badge-precio {
  font-size: 1.75rem;
}

@media (max-width: 480px) {
  .etapa-badge {
    min-width: 0;
    width: 100%;
  }
  .etapa-cd-bloque {
    min-width: 34px;
    padding: .25rem .4rem;
  }
  .etapa-cd-bloque span:first-child {
    font-size: .95rem;
  }
}

/* ==========================================================================
   Visual refresh 2026
   ========================================================================== */
:root {
  --fx-bg: #07140f;
  --fx-bg-soft: #10261c;
  --fx-panel: rgba(255,255,255,.78);
  --fx-border: rgba(126, 211, 159, .28);
  --fx-glow: 0 18px 60px rgba(24, 87, 49, .18);
  --fx-gold-glow: 0 14px 42px rgba(214, 183, 108, .28);
  --fx-lime: #9fe870;
  --fx-mint: #5ce1a0;
  --fx-ink: #0d2218;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(159,232,112,.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(92,225,160,.11), transparent 24rem),
    linear-gradient(180deg, #f8faf6 0%, #eef5ed 52%, #f8faf6 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20,70,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,70,42,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 78%, transparent);
}

header {
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  height: 68px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: rgba(13, 34, 24, .72);
  border: 1px solid rgba(232,240,224,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(130%);
}

header.scrolled {
  background: rgba(7, 20, 15, .88);
  box-shadow: 0 20px 58px rgba(0,0,0,.32);
}

header img {
  height: 50px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.nav-desktop a {
  position: relative;
  border: 1px solid transparent;
}

.nav-desktop a:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,169,110,.28);
  box-shadow: inset 0 0 18px rgba(159,232,112,.08);
}

#hero {
  min-height: 96vh;
  isolation: isolate;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,15,11,.76) 0%, rgba(5,15,11,.24) 44%, rgba(5,15,11,.62) 100%),
    linear-gradient(180deg, rgba(5,15,11,.18), rgba(5,15,11,.78));
}

.Principal {
  max-width: 820px;
  padding: 2.2rem;
}

.Principal h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: .98;
  text-shadow: 0 18px 46px rgba(0,0,0,.52);
}

.Principal p {
  color: #dff5d2;
  font-weight: 500;
}

.hero-cta,
.btn-visor,
.btn-cargar-mas,
.footer-wa-btn,
.btn-wa,
.btn-wa-faq,
.btn-visor-cta {
  border-radius: 12px !important;
  box-shadow: var(--fx-gold-glow);
}

.hero-cta {
  background: linear-gradient(135deg, #ffe19a 0%, #cfa95a 100%);
  color: #102216;
  border: 1px solid rgba(255,255,255,.35);
}

.hero-cta-secondary {
  border-radius: 12px;
  background: rgba(255,255,255,.13);
  box-shadow: inset 0 0 24px rgba(255,255,255,.05);
}

.promo-video,
#mapa-parcelas,
#mapa-ubicacion,
.gc-main {
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.28), 0 0 0 1px rgba(159,232,112,.08);
}

.video-background {
  filter: blur(6px) brightness(.5) saturate(1.16);
}

.features {
  position: relative;
  overflow: hidden;
}

.features h2 {
  color: var(--fx-ink);
}

.features h2::after {
  width: 82px;
  height: 4px;
  background: linear-gradient(90deg, var(--fx-mint), var(--dorado));
  box-shadow: 0 0 18px rgba(92,225,160,.45);
}

#parcelacion,
#contacto,
#Testimonios {
  background: rgba(255,255,255,.72);
}

#ubicacion,
#como-comprar {
  background: linear-gradient(180deg, rgba(236,246,233,.92), rgba(247,250,244,.86));
}

#Precios {
  background:
    radial-gradient(circle at 12% 10%, rgba(159,232,112,.18), transparent 22rem),
    radial-gradient(circle at 88% 14%, rgba(200,169,110,.16), transparent 25rem),
    linear-gradient(145deg, #07140f 0%, #12311f 58%, #07140f 100%);
}

#Precios .container,
.asistente-panel,
.team-member,
#como-comprar .step,
.form-contacto-wrap,
.plusvalia-wrap,
.roi-wrap {
  background: var(--fx-panel) !important;
  border: 1px solid rgba(37, 99, 65, .16) !important;
  box-shadow: var(--fx-glow);
  backdrop-filter: blur(14px) saturate(120%);
}

#Precios .container {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05)) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.stat-badge,
.proyecto-meta-badge,
.parcela-card-estado,
.badge-disponible,
.badge-reservada,
.badge-vendida {
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.stat-disp { background: linear-gradient(135deg, #16a34a, #5ce1a0); }
.stat-res  { background: linear-gradient(135deg, #d97706, #f5c66b); }
.stat-vend { background: linear-gradient(135deg, #b91c1c, #fb7185); }

#lista-parcelas {
  gap: 1.25rem;
}

.parcela-card,
.proy-card,
.otra-card-inner,
.calc-card {
  border-radius: 14px !important;
  border: 1px solid rgba(37,99,65,.16) !important;
  box-shadow: 0 14px 42px rgba(18,49,31,.1);
}

.parcela-card {
  background: rgba(255,255,255,.9);
}

.parcela-card:hover,
.proy-card:hover,
.team-member:hover,
#como-comprar .step:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(15,57,33,.18), 0 0 0 1px rgba(92,225,160,.22);
}

.parcela-card-head {
  background:
    radial-gradient(circle at 20% 10%, rgba(159,232,112,.24), transparent 8rem),
    linear-gradient(135deg, #0a2518, #2e6d37 62%, #12311f);
}

.parcela-card-footer::after {
  content: '>';
}

.btn-cargar-mas {
  background: rgba(255,255,255,.86);
  border-color: rgba(45,74,30,.28);
}

.asistente-compra {
  background:
    radial-gradient(circle at 16% 18%, rgba(159,232,112,.22), transparent 22rem),
    linear-gradient(145deg, #07140f, #12311f 62%, #07140f);
  color: #eef9e9;
}

.asistente-copy h2,
.asistente-copy p {
  color: #eef9e9;
}

.asistente-kicker {
  color: var(--fx-lime);
}

.asistente-panel {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.asistente-form label {
  color: #e7f8df;
}

.asistente-form input,
.asistente-form select {
  background: rgba(255,255,255,.9);
  border-color: rgba(159,232,112,.28);
}

.asistente-form button {
  background: linear-gradient(135deg, #9fe870, #d7b46a);
  color: #102216;
  box-shadow: 0 14px 40px rgba(159,232,112,.24);
}

.asistente-resultado,
.asistente-card {
  background: rgba(255,255,255,.92);
}

.gc-main,
.galeria-item {
  box-shadow: 0 20px 60px rgba(0,0,0,.26);
}

footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(159,232,112,.1), transparent 22rem),
    linear-gradient(180deg, #07140f, #030806);
  border-top: 1px solid rgba(159,232,112,.12);
}

#wa-flotante,
.btn-wa-float,
#push-subscribe-btn,
#btn-favs-flotante,
#py-btn-favs-flotante {
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.24), 0 0 28px rgba(92,225,160,.18) !important;
}

@media (max-width: 900px) {
  header {
    top: 10px;
    width: calc(100% - 20px);
  }
  .hamburger {
    top: 26px;
    right: 28px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  #hero {
    min-height: 100svh;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 6.5rem 1rem 2rem;
    gap: 1rem;
  }

  #hero::after {
    background:
      linear-gradient(180deg, rgba(5,15,11,.68) 0%, rgba(5,15,11,.5) 42%, rgba(5,15,11,.86) 100%),
      linear-gradient(90deg, rgba(5,15,11,.5), rgba(5,15,11,.18));
  }

  .Principal {
    width: 100%;
    max-width: none;
    padding: 0;
    text-align: left;
  }
  .Principal h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3.15rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  .Principal p {
    max-width: 100%;
  }
  .hero-actions {
    gap: .75rem;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 0;
    min-height: 48px;
  }
  .promo-video {
    width: 100% !important;
    max-width: 100%;
    margin: .5rem 0 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    align-self: stretch;
  }
  .video-background {
    transform: scale(1.02);
  }
}
