/* ============================================================
   Oasis de Longacho — Egomsa Propiedades
   HTML/CSS/JS plano — sin frameworks, sin build, sin Node.js
   ============================================================ */

/* ---- Tokens de diseño (mismos valores que el proyecto Lovable) ---- */
:root {
  --radius: 0.875rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Paleta cálida oasis
     Cada color se declara dos veces a propósito: primero en hex (respaldo
     para navegadores que no soportan oklch()), y después en oklch() (que
     sobrescribe el hex solo en navegadores modernos que sí lo soportan).
     Si oklch() no es válido para el navegador, esa segunda línea se ignora
     y queda el hex — no rompe nada. */
  --background: #fff9f0;
  --background: oklch(0.985 0.014 82);
  --foreground: #271610;
  --foreground: oklch(0.22 0.03 40);
  --cream: #fcf4e6;
  --cream: oklch(0.97 0.02 82);
  --sand: #f0dabe;
  --sand: oklch(0.9 0.045 75);

  --card: #fffffb;
  --card: oklch(1 0.006 85);
  --card-foreground: #271610;
  --card-foreground: oklch(0.22 0.03 40);

  --primary: #c94c18;
  --primary: oklch(0.58 0.17 40);
  --primary-foreground: #fffbf4;
  --primary-foreground: oklch(0.99 0.01 85);

  --secondary: #f3e6d2;
  --secondary: oklch(0.93 0.03 78);
  --secondary-foreground: #3a221a;
  --secondary-foreground: oklch(0.28 0.04 40);

  --muted: #f2eadd;
  --muted: oklch(0.94 0.02 80);
  --muted-foreground: #645048;
  --muted-foreground: oklch(0.45 0.03 45);

  --accent: #f4a437;
  --accent: oklch(0.78 0.15 70);
  --accent-foreground: #271610;
  --accent-foreground: oklch(0.22 0.03 40);

  --palm: #267b4c;
  --palm: oklch(0.52 0.11 155);
  --palm-foreground: #fffbf4;
  --palm-foreground: oklch(0.99 0.01 85);

  --border: #dfd6c9;
  --border: oklch(0.88 0.02 75);
  --ring: #c94c18;
  --ring: oklch(0.58 0.17 40);

  --gradient-hero: linear-gradient(135deg, #c94c18 0%, #e1791b 55%, #f4a437 100%);
  --gradient-hero: linear-gradient(135deg, oklch(0.58 0.17 40) 0%, oklch(0.68 0.16 55) 55%, oklch(0.78 0.15 70) 100%);
  --gradient-warm: linear-gradient(180deg, #fff9f0 0%, #f8e9d2 100%);
  --gradient-warm: linear-gradient(180deg, oklch(0.985 0.014 82) 0%, oklch(0.94 0.035 78) 100%);
  --shadow-warm: 0 20px 50px -20px rgba(183, 75, 33, 0.35);
  --shadow-warm: 0 20px 50px -20px oklch(0.55 0.15 40 / 0.35);
  --shadow-soft: 0 8px 24px -12px rgba(95, 62, 51, 0.18);
  --shadow-soft: 0 8px 24px -12px oklch(0.4 0.05 40 / 0.18);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.container {
  max-width: 72rem; /* 1152px, = max-w-6xl */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section { padding: 6rem 0; }
}

/* ---- Botón CTA reutilizable ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
  border: none;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1.05rem;
  box-shadow: var(--shadow-warm);
}
.btn-primary.btn-lg:hover { transform: scale(1.02); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--secondary); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid oklch(0.88 0.02 75 / 0.6);
  background: oklch(0.985 0.014 82 / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.nav-brand img {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
}
.nav-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.nav-links a:hover { color: var(--foreground); }

.nav-cta {
  display: none;
}
.nav-cta.btn { font-size: 0.85rem; padding: 0.55rem 1rem; }

/* Botón hamburguesa — solo visible en mobile */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  flex: none;
}
.nav-toggle svg { width: 1.35rem; height: 1.35rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Panel desplegable mobile */
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  padding: 0.75rem 0 1rem;
}
.nav-mobile-panel.is-open { display: flex; }
.nav-mobile-panel a {
  padding: 0.65rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: 0.5rem;
}
.nav-mobile-panel a:hover { background: var(--secondary); }
.nav-mobile-panel .btn {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile-panel { display: none !important; }
}

/* Números de teléfono adicionales (bajo la fila principal del Nav) */
.nav-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  padding-bottom: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}
.nav-phones a { color: inherit; font-weight: 500; }
.nav-phones a:hover { color: var(--primary); }
.nav-phones .sep { color: var(--border); }
@media (min-width: 640px) {
  .nav-phones { justify-content: flex-end; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0.22 0.03 40 / 0.4), oklch(0.22 0.03 40 / 0.25) 45%, var(--background));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
@media (min-width: 640px) {
  .hero-content { padding-top: 7rem; padding-bottom: 9rem; }
}
@media (min-width: 768px) {
  .hero-content { padding-top: 9rem; padding-bottom: 11rem; }
}

.hero-brand {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: oklch(0.97 0.02 82 / 0.6);
}

.hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid oklch(0.97 0.02 82 / 0.4);
  background: oklch(0.22 0.03 40 / 0.2);
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.hero-stamp .dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  margin-top: 1.25rem;
  max-width: 44rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--cream);
}

.hero-lede {
  margin-top: 1.25rem;
  max-width: 40rem;
  font-size: 1rem;
  color: oklch(0.97 0.02 82 / 0.9);
}
.hero-lede strong { color: var(--cream); }
@media (min-width: 640px) { .hero-lede { font-size: 1.125rem; } }

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; align-items: center; }
}
.hero-actions .btn-outline {
  border-color: oklch(0.97 0.02 82 / 0.5);
  background: oklch(0.22 0.03 40 / 0.1);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.hero-actions .btn-outline:hover { background: oklch(0.22 0.03 40 / 0.2); }

.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 34rem;
}
@media (min-width: 640px) { .hero-stats { gap: 1.5rem; } }
.hero-stat {
  border-radius: 1rem;
  border: 1px solid oklch(0.97 0.02 82 / 0.25);
  background: oklch(0.22 0.03 40 / 0.15);
  padding: 0.75rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .hero-stat { padding: 1rem; } }
.hero-stat .k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
}
@media (min-width: 640px) { .hero-stat .k { font-size: 1.4rem; } }
.hero-stat .v {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: oklch(0.97 0.02 82 / 0.8);
}

/* ============================================================
   SECTION HEAD (reutilizable)
   ============================================================ */
.section-head {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 640px) { .section-head p { font-size: 1.05rem; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(0.93 0.03 78 / 0.6);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--secondary-foreground);
}
@media (min-width: 640px) {
  .trust-strip-inner { grid-template-columns: repeat(4, 1fr); padding: 1rem 1.5rem; }
}
.trust-strip-inner .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.trust-strip-inner .item svg { width: 1rem; height: 1rem; flex: none; color: var(--palm); }
.trust-strip-inner .item span { font-weight: 500; }

/* ============================================================
   BENEFICIOS (tarjetas 3 columnas)
   ============================================================ */
.cards-3 {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.card-feature {
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.card-feature .card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-feature .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card-feature:hover .card-img img { transform: scale(1.05); }
.card-feature .card-body { padding: 1.5rem; }
.card-feature .card-icon {
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-2xl);
  background: oklch(0.58 0.17 40 / 0.1);
  color: var(--primary);
}
.card-feature .card-icon svg { width: 1.4rem; height: 1.4rem; }
.card-feature h3 { font-size: 1.25rem; }
.card-feature p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================================
   BONO CIERRE PERIMETRAL
   ============================================================ */
.bono {
  position: relative;
  overflow: hidden;
  background-image: var(--gradient-hero);
}
.bono-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: center;
}
@media (min-width: 640px) { .bono-grid { padding: 6rem 0; } }
@media (min-width: 768px) { .bono-grid { grid-template-columns: 1fr 1fr; } }

.bono-copy { color: var(--primary-foreground); }
.bono-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid oklch(0.99 0.01 85 / 0.4);
  background: oklch(0.22 0.03 40 / 0.1);
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.bono-copy h2 {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.15;
}
.bono-copy > p {
  margin-top: 1rem;
  font-size: 1rem;
  color: oklch(0.99 0.01 85 / 0.9);
}
@media (min-width: 640px) { .bono-copy > p { font-size: 1.1rem; } }
.bono-copy ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: oklch(0.99 0.01 85 / 0.9);
}
@media (min-width: 640px) { .bono-copy ul { font-size: 1rem; } }
.bono-copy ul li { display: flex; align-items: flex-start; gap: 0.75rem; }
.bono-copy ul svg { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.1rem; color: var(--accent); }
.bono-copy .btn { margin-top: 2rem; background: var(--background); color: var(--primary); }
.bono-copy .btn:hover { transform: scale(1.02); }

.bono-photo { position: relative; }
.bono-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-warm);
}
.bono-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--background);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
  box-shadow: var(--shadow-warm);
}
.bono-badge .dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--palm); }

/* ============================================================
   POR QUÉ PICA
   ============================================================ */
.why-pica { background-image: var(--gradient-warm); }
.cards-2 {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cards-2 { grid-template-columns: 1fr 1fr; } }
.card-attraction {
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-attraction:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.card-attraction .card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-attraction .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card-attraction:hover .card-img img { transform: scale(1.05); }
.card-attraction .card-body { padding: 1.5rem; }
@media (min-width: 640px) { .card-attraction .card-body { padding: 1.75rem; } }
.card-attraction h3 { font-size: 1.4rem; }
.card-attraction p { margin-top: 0.5rem; font-size: 0.95rem; color: var(--muted-foreground); line-height: 1.6; }

.pica-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .pica-stats { grid-template-columns: repeat(4, 1fr); padding: 2rem; } }
.pica-stats .k { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--primary); }
@media (min-width: 640px) { .pica-stats .k { font-size: 1.75rem; } }
.pica-stats .v { margin-top: 0.25rem; font-size: 0.8rem; color: var(--muted-foreground); }

/* ============================================================
   NUMEROS
   ============================================================ */
.numeros-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .numeros-grid { grid-template-columns: repeat(4, 1fr); } }
.numeros-grid .stat {
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}
.numeros-grid .k { font-family: var(--font-display); font-weight: 600; font-size: 1.75rem; color: var(--primary); }
@media (min-width: 640px) { .numeros-grid .k { font-size: 2.1rem; } }
.numeros-grid .v { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); }

/* ============================================================
   PAGOS
   ============================================================ */
.pagos { background: oklch(0.93 0.03 78 / 0.5); }

.price-highlight {
  margin: 1.75rem auto 0;
  max-width: 26rem;
  text-align: center;
  border-radius: var(--radius-2xl);
  background: oklch(0.52 0.11 155 / 0.1);
  border: 1px solid oklch(0.52 0.11 155 / 0.3);
  padding: 1rem 1.5rem;
}
.price-highlight .amount { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--palm); }
.price-highlight .note {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-foreground);
}
.price-highlight .note svg { width: 1rem; height: 1rem; color: var(--palm); flex: none; }

.cards-pay {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .cards-pay { grid-template-columns: 1fr 1fr; } }
.card-pay {
  border-radius: var(--radius-3xl);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  padding: 2rem;
}
.card-pay .card-icon {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-2xl);
  background: oklch(0.52 0.11 155 / 0.15);
  color: var(--palm);
}
.card-pay .card-icon svg { width: 1.4rem; height: 1.4rem; }
.card-pay h3 { font-size: 1.4rem; }
.card-pay > p { margin-top: 0.5rem; color: var(--muted-foreground); }
.card-pay ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.card-pay ul li { display: flex; align-items: flex-start; gap: 0.5rem; }
.card-pay ul svg { width: 1.1rem; height: 1.1rem; flex: none; margin-top: 0.1rem; color: var(--palm); }
.card-pay ul li strong { font-weight: 700; }

.card-pay.featured {
  position: relative;
  background-image: var(--gradient-hero);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-warm);
  border: none;
}
.card-pay.featured .card-icon { background: oklch(0.99 0.01 85 / 0.2); color: var(--primary-foreground); }
.card-pay.featured > p { color: oklch(0.99 0.01 85 / 0.9); }
.card-pay.featured ul { color: oklch(0.99 0.01 85 / 0.95); }
.card-pay.featured ul svg { color: var(--accent); }
.card-pay.featured .btn { margin-top: 1.5rem; background: var(--background); color: var(--primary); }
.card-pay.featured .btn:hover { transform: scale(1.02); }
.card-pay .ribbon {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  border-radius: 999px;
  background: var(--background);
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
}

.pagos-fineprint {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
}
.gallery-grid .g-big { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ============================================================
   VIDEO (recorrido del terreno)
   ============================================================ */
.video-section-frame {
  position: relative;
  max-width: 23rem;
  margin: 3rem auto 0;
  background: var(--card);
  border-radius: var(--radius-3xl);
  padding: 1rem 1rem 1.5rem;
  box-shadow: var(--shadow-warm);
}

/* Badge decorativo tipo "sello", superpuesto en la esquina */
.video-frame-badge {
  position: absolute;
  top: -0.9rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background-image: var(--gradient-hero);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-warm);
  border: 3px solid var(--card);
}
.video-frame-badge svg { width: 1.3rem; height: 1.3rem; }

/* Borde con degradado sutil terracota/ámbar alrededor del video */
.video-frame-gradient-border {
  border-radius: var(--radius-2xl);
  padding: 3px;
  background-image: linear-gradient(135deg, var(--primary), var(--accent));
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: calc(var(--radius-2xl) - 3px);
  background-image: linear-gradient(160deg, oklch(0.32 0.05 40) 0%, oklch(0.55 0.12 60) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-frame .play-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: oklch(0.99 0.01 85 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: opacity 0.3s ease;
}
.video-frame .play-badge svg { width: 1.75rem; height: 1.75rem; margin-left: 3px; }
.video-frame.is-loaded .play-badge { opacity: 0; pointer-events: none; }

.video-caption {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

/* ============================================================
   UBICACION
   ============================================================ */
.ubicacion { background-image: var(--gradient-warm); }
.ubicacion-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .ubicacion-grid { grid-template-columns: 1fr 1fr; } }

.ubicacion-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.ubicacion-list li { display: flex; gap: 0.5rem; }
.ubicacion-list .label { width: 7rem; flex: none; font-weight: 600; color: var(--primary); }
.ubicacion-list .value { color: var(--muted-foreground); }
.ubicacion-copy .btn { margin-top: 2rem; }

.ubicacion-photo { position: relative; overflow: hidden; border-radius: var(--radius-3xl); box-shadow: var(--shadow-warm); }
.ubicacion-photo img { width: 100%; height: 380px; object-fit: cover; }
@media (min-width: 640px) { .ubicacion-photo img { height: 460px; } }
.ubicacion-photo-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, oklch(0.22 0.03 40 / 0.7), transparent);
  padding: 1rem;
  color: var(--cream);
  pointer-events: none;
}
.ubicacion-photo-caption .tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: oklch(0.97 0.02 82 / 0.8); }
.ubicacion-photo-caption p { margin-top: 0.25rem; font-size: 0.95rem; }

.ubicacion-map-intro {
  margin-top: 2.5rem;
  max-width: 48rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}
.ubicacion-map-frame {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-soft);
}
.ubicacion-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
@media (min-width: 640px) { .ubicacion-map-frame iframe { height: 400px; } }

/* ============================================================
   IMAGINA TU PROYECTO AQUÍ
   ============================================================ */
.project-banner { position: relative; overflow: hidden; }
.project-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.22 0.03 40 / 0.85) 0%,
    oklch(0.22 0.03 40 / 0.4) 38%,
    oklch(0.22 0.03 40 / 0) 68%
  );
}
.project-banner-content {
  position: relative;
  min-height: 26rem;
  padding: 4rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  text-align: center;
  color: var(--cream);
}
@media (min-width: 640px) { .project-banner-content { min-height: 32rem; padding-bottom: 3.5rem; } }

/* Etiqueta flotante arriba (fuera de la franja del techo de la foto),
   con fondo propio para que se lea sin importar qué color haya detrás */
.project-banner-tag {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  border: 1px solid oklch(0.97 0.02 82 / 0.4);
  background: oklch(0.22 0.03 40 / 0.35);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .project-banner-tag {
    top: 2rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}
.project-banner-content h2 {
  max-width: 36rem;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  color: var(--cream);
}
.project-banner-content p {
  max-width: 40rem;
  font-size: 0.92rem;
  color: oklch(0.97 0.02 82 / 0.92);
}
@media (min-width: 640px) { .project-banner-content p { font-size: 0.98rem; } }
.project-banner-content .btn { margin-top: 0.4rem; }

.project-banner-disclaimer {
  margin: 0.6rem auto 0;
  max-width: 72rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .project-banner-disclaimer { padding: 0 1.5rem; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.4rem;
  transition: box-shadow 0.2s ease;
}
@media (min-width: 640px) { .faq-item { padding: 1.25rem 1.5rem; } }
.faq-item[open] { box-shadow: var(--shadow-warm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
@media (min-width: 640px) { .faq-item summary .q { font-size: 1.1rem; } }
.faq-item .plus {
  flex: none;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: oklch(0.58 0.17 40 / 0.1);
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .a { margin-top: 0.75rem; font-size: 0.92rem; color: var(--muted-foreground); line-height: 1.65; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-final-overlay { position: absolute; inset: 0; background: oklch(0.22 0.03 40 / 0.7); }
.cta-final-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
  text-align: center;
  color: var(--cream);
}
.cta-final-content h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
.cta-final-content p { margin-top: 1rem; font-size: 1.05rem; color: oklch(0.97 0.02 82 / 0.9); }
.cta-final-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .cta-final-actions { flex-direction: row; justify-content: center; } }
.cta-final-actions .btn-outline {
  border-color: oklch(0.97 0.02 82 / 0.6);
  color: var(--cream);
}
.cta-final-actions .btn-outline:hover { background: oklch(0.22 0.03 40 / 0.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--background); }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img { height: 2.25rem; width: 2.25rem; border-radius: 999px; object-fit: cover; flex: none; }
.footer-brand span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.footer-col .desc { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  font-weight: 600;
}
.footer-col ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-col ul a:hover { color: var(--primary); }
.footer-col ul .muted { color: var(--muted-foreground); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--palm);
  color: var(--palm-foreground);
  box-shadow: var(--shadow-warm);
  border: 4px solid var(--background);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; }
