/* ============================================================
   LILAFKEN — MAIN.CSS
   Futuristic · Warm · Conversion-Optimized
   Pichilemu, Chile — Capital del Surf de Sudamérica
   ============================================================ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand colors */
  --carbon:       #06100A;
  --forest-deep:  #0B1D13;
  --forest:       #1A3C2E;
  --forest-mid:   #2A5C45;
  --forest-light: #3D7A5E;
  --gold:         #C9A040;
  --gold-light:   #E8C060;
  --gold-dark:    #A07828;
  --gold-glow:    rgba(201,160,64,0.25);
  --electric:     #4DFFD2;
  --cream:        #FFF8F0;
  --sand:         #F5EFE0;

  /* Text */
  --text-white:   #F0F7F4;
  --text-muted:   rgba(240,247,244,0.55);
  --text-dark:    #0D1A0F;

  /* Glass morphism */
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.09);
  --glass-gold:   rgba(201,160,64,0.15);
  --glass-gold-b: rgba(201,160,64,0.3);

  /* Shadows */
  --glow-gold:    0 0 40px rgba(201,160,64,0.2), 0 0 80px rgba(201,160,64,0.08);
  --glow-forest:  0 0 40px rgba(26,60,46,0.4);
  --shadow-sm:    0 2px 16px rgba(0,0,0,0.15);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.25);
  --shadow-lg:    0 24px 80px rgba(0,0,0,0.4);
  --shadow-xl:    0 40px 120px rgba(0,0,0,0.5);

  /* Radii */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 100px;

  /* Backwards-compat aliases */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --forest-l:  #2A5C45;
  --ocean:     #0B1D13;
  --ocean-l:   #163352;
  --gold-l:    #E8C060;
  --gold-d:    #A07828;
  --sand-d:    #E0D8CB;
  --white:     #FFFFFF;
  --off-white: #FFF8F0;
  --text:      #0D1A0F;
  --text-m:    #3A4A3E;
  --text-l:    #6A7A6E;
  --border:    rgba(201,160,64,0.2);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition:  all 0.45s var(--ease-out);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --nav-h: 76px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--carbon);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.body-xl { font-size: 1.25rem; line-height: 1.7; }
.body-lg { font-size: 1.05rem; line-height: 1.7; }
.body-md { font-size: 0.95rem; line-height: 1.65; }
.body-sm { font-size: 0.82rem; line-height: 1.6; }

.label-xs {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-gold     { color: var(--gold); }
.text-electric { color: var(--electric); }
.text-muted    { color: var(--text-muted); }
.text-white    { color: var(--text-white); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--electric) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--r-full);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #06100A;
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(201,160,64,0.35), 0 0 120px rgba(201,160,64,0.12);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--glass-gold-b);
}

.btn-ghost:hover {
  background: var(--glass-gold);
  border-color: var(--gold);
  transform: scale(1.04);
}

.btn-forest {
  background: var(--forest);
  color: var(--text-white);
  border: 1px solid rgba(61,122,94,0.3);
}

.btn-forest:hover {
  background: var(--forest-mid);
  transform: scale(1.04);
}

.btn-white {
  background: #ffffff;
  color: var(--carbon);
}

.btn-white:hover {
  background: var(--cream);
  transform: scale(1.04);
}

.btn-electric {
  background: var(--electric);
  color: var(--carbon);
  font-weight: 700;
}

.btn-electric:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(77,255,210,0.35);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.w-full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6,16,10,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover  { color: #ffffff; }
.nav-links a.active { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── GLASS CARDS ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.glass-card:hover {
  border-color: var(--glass-gold-b);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.glass-card-gold {
  background: var(--glass-gold);
  border: 1px solid var(--glass-gold-b);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  transition: var(--transition);
}

.glass-card-gold:hover {
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.glass-card-dark {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  transition: var(--transition);
}

.glass-card-dark:hover {
  border-color: var(--glass-gold-b);
  box-shadow: var(--glow-gold);
}

/* ─── AURORA BACKGROUND ──────────────────────────────────────── */
.aurora {
  position: relative;
  overflow: hidden;
}

.aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(26,60,46,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,160,64,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(77,255,210,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.aurora > * {
  position: relative;
  z-index: 1;
}

/* ─── MESH BACKGROUND ────────────────────────────────────────── */
.mesh-bg {
  background: linear-gradient(135deg, var(--carbon) 0%, var(--forest-deep) 50%, var(--carbon) 100%);
  position: relative;
}

.mesh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 0%, rgba(26,60,46,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(201,160,64,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: mesh-drift 12s ease-in-out infinite alternate;
}

.mesh-bg > * { position: relative; z-index: 1; }

@keyframes mesh-drift {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50%       { box-shadow: 0 0 40px rgba(201,160,64,0.4); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loading-fill {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.badge-gold     { background: var(--glass-gold);            border-color: var(--glass-gold-b);          color: var(--gold); }
.badge-green    { background: rgba(34,197,94,0.15);         border-color: rgba(34,197,94,0.3);           color: #22c55e; }
.badge-white    { background: rgba(255,255,255,0.1);        border-color: rgba(255,255,255,0.15);        color: #ffffff; }
.badge-electric { background: rgba(77,255,210,0.12);        border-color: rgba(77,255,210,0.25);         color: var(--electric); }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label-line {
  height: 1px;
  width: 32px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.section-label-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  padding: 16px 40px;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.marquee-item span { color: var(--gold); margin: 0 8px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--forest-deep);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-link:hover { color: #ffffff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  text-decoration: none;
}

.footer-social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--glass-gold);
}

.footer-social svg { width: 18px; height: 18px; }

/* ─── LOADING SCREEN ─────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--carbon);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s var(--ease-out);
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.12em;
  animation: fadeIn 0.4s var(--ease-out);
}

.loading-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeIn 0.4s 0.1s var(--ease-out) both;
}

.loading-bar {
  width: 180px;
  height: 2px;
  background: var(--glass-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.loading-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  border-radius: 2px;
  animation: loading-fill 1.5s ease-in-out forwards;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float.hidden { display: none; }

/* ─── FORM INPUTS ────────────────────────────────────────────── */
.input-field {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text-white);
  font-size: 0.88rem;
  transition: border-color 0.3s, background 0.3s;
  font-family: var(--font-body);
}

.input-field:focus {
  border-color: var(--gold);
  background: rgba(201,160,64,0.06);
}

.input-field::placeholder { color: var(--text-muted); }
.input-field option { background: var(--forest-deep); color: var(--text-white); }

.input-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

/* ─── FEATURE ROWS ───────────────────────────────────────────── */
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border);
}

.feature-row:last-child { border-bottom: none; }

.feature-icon  { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.feature-title { font-size: 1rem; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.feature-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── BRAND CARDS ────────────────────────────────────────────── */
.brand-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-gold), var(--shadow-xl);
}

.brand-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.brand-card:hover .brand-card-bg { transform: scale(1.05); }

.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,10,0.95) 0%, rgba(6,16,10,0.5) 50%, rgba(6,16,10,0.1) 100%);
  transition: background 0.4s;
}

.brand-card:hover .brand-card-overlay {
  background: linear-gradient(to top, rgba(6,16,10,0.98) 0%, rgba(6,16,10,0.6) 60%, rgba(6,16,10,0.15) 100%);
}

.brand-card-content { position: relative; z-index: 1; padding: 28px; }

.brand-card-stats { display: flex; gap: 16px; margin: 12px 0; flex-wrap: wrap; }
.brand-card-stat  { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.brand-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
  transition: gap 0.3s;
}

.brand-card:hover .brand-card-cta { gap: 10px; }

/* ─── VIDEO EMBED ────────────────────────────────────────────── */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── TESTIMONIAL CARDS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--glass-gold-b);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text  { font-size: 0.92rem; line-height: 1.7; color: var(--text-white); font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-size: 0.82rem; font-weight: 600; color: var(--text-white); }
.testimonial-meta  { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ─── SCROLL INDICATOR ───────────────────────────────────────── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator svg { width: 20px; height: 20px; }

/* ─── MICRO-STATS ────────────────────────────────────────────── */
.micro-stat { display: flex; flex-direction: column; gap: 4px; }

.micro-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.micro-stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ─── BOOKING WIDGET ─────────────────────────────────────────── */
.booking-widget      { display: flex; flex-direction: column; gap: 12px; }
.booking-row         { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.booking-or {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.booking-or::before,
.booking-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--glass-border);
}

.booking-or::before { left: 0; }
.booking-or::after  { right: 0; }

.booking-platforms { display: flex; gap: 8px; justify-content: center; }

.booking-platform-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-platform-link:hover { color: var(--gold); }

.booking-badge {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  background: var(--glass-gold);
  border: 1px solid var(--glass-gold-b);
  border-radius: var(--r-full);
  padding: 6px 14px;
}

/* ─── CTA CARDS ──────────────────────────────────────────────── */
.cta-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-card:hover {
  border-color: var(--glass-gold-b);
  box-shadow: var(--glow-gold);
  transform: translateY(-6px);
  background: var(--glass-gold);
}

.cta-card-icon  { font-size: 2.5rem; line-height: 1; }
.cta-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-white); }
.cta-card-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── QUOTE BLOCK ────────────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.65;
}

.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }

.quote-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-body);
}

/* ─── GLOW DOTS ──────────────────────────────────────────────── */
.glow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 12px var(--electric), 0 0 24px rgba(77,255,210,0.5);
  animation: pulse-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.glow-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201,160,64,0.5);
}

/* ─── SECTION VARIANTS ───────────────────────────────────────── */
.section-dark   { background: var(--carbon); }
.section-forest { background: var(--forest-deep); }
.section-light  { background: var(--cream); color: var(--text-dark); }

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

@media (max-width: 768px) {
  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,16,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-white);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }

  .booking-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .display-xl    { font-size: clamp(2rem, 8vw, 3rem); }
  .display-lg    { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .section-pad    { padding: 48px 0; }
  .section-pad-sm { padding: 32px 0; }
  .footer-grid   { grid-template-columns: 1fr; }
  .container     { padding: 0 16px; }
  .trust-strip   { gap: 16px; }
  .glass-card    { padding: 20px; }
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.hidden          { display: none !important; }
.overflow-hidden { overflow: hidden; }
.relative        { position: relative; }

.bg-carbon      { background: var(--carbon); }
.bg-forest      { background: var(--forest); }
.bg-forest-deep { background: var(--forest-deep); }
.bg-cream       { background: var(--cream); color: var(--text-dark); }
.bg-sand        { background: var(--sand);  color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED STYLES — Premium Upgrades
   ═══════════════════════════════════════════════════════════════ */

/* ─── REVEAL SCALE ───────────────────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── ANIMATED COUNTER SECTION ───────────────────────────────── */
.counter-section {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--carbon) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,160,64,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.counter-item {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.counter-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.counter-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 768px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { padding: 40px 20px; border-bottom: 1px solid var(--glass-border); }
  .counter-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-value { font-size: 2.5rem; }
}

/* ─── EXPERIENCIAS SECTION ───────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.exp-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,160,64,0.15);
}
.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.exp-card:hover .exp-card-bg { transform: scale(1.1); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,10,0.95) 0%, rgba(6,16,10,0.3) 50%, rgba(6,16,10,0.05) 100%);
}
.exp-card-content {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.exp-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,160,64,0.15);
  border: 1px solid rgba(201,160,64,0.3);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
  margin-bottom: 12px;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.exp-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.exp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s;
}
.exp-card:hover .exp-card-cta { gap: 12px; }

@media (max-width: 1024px) { .exp-grid { grid-template-columns: 1fr; } .exp-card { min-height: 340px; } .exp-card-content { min-height: 340px; } }

/* ─── REVIEWS CAROUSEL ───────────────────────────────────────── */
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
}
.review-card {
  min-width: 360px;
  max-width: 360px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
  transition: border-color 0.4s, transform 0.4s;
}
.review-card:hover {
  border-color: var(--glass-gold-b);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-white);
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-size: 1.05rem;
}
.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}
.review-author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}
.reviews-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}
.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  transition: all 0.3s;
  cursor: pointer;
}
.reviews-dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,160,64,0.5);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .review-card { min-width: 300px; max-width: 300px; padding: 24px 20px; }
}

/* ─── GALLERY MASONRY ────────────────────────────────────────── */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.masonry-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.masonry-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.masonry-item--tall { grid-row: span 2; }
.masonry-item--wide { grid-column: span 2; }
.masonry-item--featured { grid-column: span 2; grid-row: span 2; }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,10,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-caption {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .masonry-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 768px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .masonry-item--featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .masonry-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
}

/* ─── CHATBOT TRIGGER ────────────────────────────────────────── */
.chat-trigger {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--carbon);
  box-shadow: 0 8px 24px rgba(201,160,64,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  z-index: 998;
  cursor: pointer;
  border: none;
  font-size: 1.3rem;
}
.chat-trigger:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(201,160,64,0.55);
}
.chat-trigger-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: chat-pulse 2s ease-out infinite;
}
@keyframes chat-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── LIGHTBOX (GALLERY) ─────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,16,10,0.97);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s;
}
.gallery-lightbox-close:hover { transform: rotate(90deg); }
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10001;
}
.gallery-lightbox-nav:hover { background: rgba(201,160,64,0.3); border-color: var(--gold); }
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

/* ─── HERO VIDEO BACKGROUND ─────────────────────────────────── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ─── URGENCY INDICATORS ─────────────────────────────────────── */
.urgency-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 59, 48, 0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: urgency-pulse 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.popularity-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(201,160,64,0.9);
  color: var(--carbon);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ─── UNIT CARD IMAGE CAROUSEL ───────────────────────────────── */
.unit-carousel {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.unit-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s var(--ease-out);
}
.unit-carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.unit-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.unit-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s;
  cursor: pointer;
}
.unit-carousel-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}
.unit-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(6,16,10,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.unit-card:hover .unit-carousel-arrow { opacity: 1; }
.unit-carousel-arrow:hover { background: rgba(201,160,64,0.5); }
.unit-carousel-prev { left: 8px; }
.unit-carousel-next { right: 8px; }

/* ─── PARALLAX HELPER ────────────────────────────────────────── */
.parallax-container {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ─── IMPROVED CTA SECTION ───────────────────────────────────── */
.cta-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 60%, var(--carbon) 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, rgba(201,160,64,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 70%, rgba(77,255,210,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-premium > * { position: relative; z-index: 1; }
.cta-glow-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* ─── STAGGER CHILDREN ───────────────────────────────────────── */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.10s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.20s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.30s; }

/* ─── FLOATING ANIMATION VARIANTS ────────────────────────────── */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.anim-float { animation: float 6s ease-in-out infinite; }
.anim-float-slow { animation: float-slow 8s ease-in-out infinite; }
.anim-float-delayed { animation: float-delayed 7s ease-in-out 1s infinite; }

/* ─── GUIA PICHILEMU ENHANCEMENTS ────────────────────────────── */
.guia-preview-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.guia-preview-card::before {
  content: 'VISTA PREVIA';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--gold);
  color: var(--carbon);
  padding: 4px 40px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  transform: rotate(45deg);
}
.guia-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201,160,64,0.06);
  border: 1px solid rgba(201,160,64,0.15);
  border-radius: 16px;
  margin-top: 24px;
}
.guia-buyers-count {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.guia-buyers-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--carbon);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── FONT DISPLAY ───────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
  src: local('Playfair Display');
}
@font-face {
  font-family: 'Inter';
  font-display: swap;
  src: local('Inter');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-display: swap;
  src: local('Cormorant Garamond');
}

/* ─── IMPROVED MOBILE NAV ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: transform 0.3s, opacity 0.3s;
    display: block;
  }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6,16,10,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    z-index: 999;
    animation: slideDown 0.3s var(--ease-out);
  }
  .nav-mobile-open a {
    font-size: 1.1rem;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    transition: background 0.2s;
  }
  .nav-mobile-open a:hover {
    background: rgba(201,160,64,0.1);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── LOADING STATES ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}

@keyframes skeleton-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── BETTER FORM STATES ─────────────────────────────────────── */
input:invalid:not(:placeholder-shown) {
  border-color: #e05555;
}
input:valid:not(:placeholder-shown) {
  border-color: rgba(34,197,94,0.3);
}
