/* ════════════════════════════════════════════════════════════════
   LP · Premium FX — capa de "agencia top mundial" sobre la base
   Inspiración: Sotheby's + Linear + Stripe + Apple + Framer
   ════════════════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES NUEVAS (no rompen las existentes) ─────────── */
:root {
  --glow-gold-sm: 0 0 30px rgba(201, 168, 76, 0.18);
  --glow-gold-md: 0 0 60px rgba(201, 168, 76, 0.25);
  --glow-gold-lg: 0 10px 80px rgba(201, 168, 76, 0.35);
  --glow-gold-hero: 0 30px 120px rgba(232, 201, 106, 0.18);

  --glass-bg: rgba(11, 24, 41, 0.55);
  --glass-bg-strong: rgba(11, 24, 41, 0.78);
  --glass-border: rgba(201, 168, 76, 0.16);
  --glass-border-hot: rgba(201, 168, 76, 0.4);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);

  --reveal-distance: 28px;
  --reveal-duration: 0.9s;

  --gradient-gold: linear-gradient(135deg, #F5DFA0 0%, #E8C96A 30%, #C9A84C 65%, #8B6520 100%);
  --gradient-gold-soft: linear-gradient(135deg, rgba(245, 223, 160, 0.12), rgba(139, 101, 32, 0.04));
  --gradient-navy: linear-gradient(180deg, #07101E 0%, #0B1829 100%);
  --gradient-hero: radial-gradient(ellipse at top center, rgba(201, 168, 76, 0.18) 0%, rgba(7, 16, 30, 0) 60%);
}

/* ─── 2. GRAIN / NOISE OVERLAY GLOBAL (sutil — 3%) ───────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23noiseFilter)'/></svg>");
  mix-blend-mode: overlay;
}

/* ─── 3. SCROLL REVEAL ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) var(--ease-out-expo),
              transform var(--reveal-duration) var(--ease-out-expo);
  will-change: transform, opacity;
}
[data-reveal="fade-up"] { transform: translateY(var(--reveal-distance)); }
[data-reveal="fade-down"] { transform: translateY(calc(-1 * var(--reveal-distance))); }
[data-reveal="fade-left"] { transform: translateX(calc(-1 * var(--reveal-distance))); }
[data-reveal="fade-right"] { transform: translateX(var(--reveal-distance)); }
[data-reveal="fade-scale"] { transform: scale(0.94); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Accessibility — reduced motion */
.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
.reduced-motion [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── 4. NAVBAR SCROLLED — glass blur effect ─────────────────── */
.navbar,
nav.nav {
  transition: background 0.35s var(--ease-out-expo),
              backdrop-filter 0.35s var(--ease-out-expo),
              border-color 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo);
}
.nav-scrolled {
  background: rgba(7, 16, 30, 0.88) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  border-bottom-color: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ─── 5. HERO PREMIUM — gradient animado + glow ─────────────── */
#hero {
  position: relative;
  isolation: isolate;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 1;
  animation: heroGlowPulse 8s var(--ease-in-out-quart) infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

#hero .hero-glow {
  transition: transform 0.1s linear;
}

/* Líneas decorativas finas en hero */
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.4) 30%,
    rgba(232, 201, 106, 0.6) 50%,
    rgba(201, 168, 76, 0.4) 70%,
    transparent 100%);
  z-index: 2;
}

/* Gradient text on hero h1 */
.hero-h1 .gold-text {
  background: linear-gradient(135deg, #F5DFA0 0%, #E8C96A 35%, #C9A84C 70%, #8B6520 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: goldShimmer 6s ease infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── 6. CARDS PREMIUM ──────────────────────────────────────── */
.card,
.servicio-card,
.porque-item,
.ia-feature,
.caso-card,
.test-card,
.team-card,
.faq-item {
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo);
  will-change: transform;
}

.card:hover,
.servicio-card:hover,
.porque-item:hover,
.ia-feature:hover,
.caso-card:hover,
.test-card:hover,
.team-card:hover {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    var(--glow-gold-sm),
    0 0 0 1px rgba(201, 168, 76, 0.25) inset;
}

/* ─── 7. BOTONES PREMIUM (sin tocar estilos base) ───────────── */
.btn-primary,
.btn-gold,
.hero-btn-primary,
.nav-cta,
a.btn-gold {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo),
              filter 0.3s var(--ease-out-expo);
}

.btn-primary::before,
.btn-gold::before,
.hero-btn-primary::before,
.nav-cta::before,
a.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%);
  transition: left 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.btn-primary:hover::before,
.btn-gold:hover::before,
.hero-btn-primary:hover::before,
.nav-cta:hover::before,
a.btn-gold:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-gold:hover,
.hero-btn-primary:hover,
.nav-cta:hover,
a.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-md), 0 12px 32px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}

.btn-pulse {
  animation: btnPulseGlow 1.4s var(--ease-in-out-quart) infinite;
}
@keyframes btnPulseGlow {
  0%, 100% { box-shadow: var(--glow-gold-sm), 0 8px 24px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: var(--glow-gold-lg), 0 14px 40px rgba(0, 0, 0, 0.4); }
}

/* ─── 8. SECTION EYEBROWS — animated underline ──────────────── */
.section-eyebrow,
.eyebrow {
  position: relative;
  display: inline-block;
}
.section-eyebrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s var(--ease-out-expo) 0.3s;
}
[data-reveal].revealed.section-eyebrow::after { transform: scaleX(1); }

/* ─── 9. LINKS UNDERLINE ANIMADO ────────────────────────────── */
.nav-links a:not(.nav-cta):not(.btn-gold) {
  position: relative;
  display: inline-block;
}
.nav-links a:not(.nav-cta):not(.btn-gold)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #E8C96A, #C9A84C);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:not(.nav-cta):not(.btn-gold):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── 10. IMAGE HOVER ZOOM ──────────────────────────────────── */
.servicio-img,
.caso-img,
.team-img,
.prop-img,
[data-img-zoom] {
  overflow: hidden;
}
.servicio-img img,
.caso-img img,
.team-img img,
.prop-img img,
[data-img-zoom] img {
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s var(--ease-out-expo);
  will-change: transform;
}
.servicio-card:hover .servicio-img img,
.caso-card:hover .caso-img img,
.team-card:hover .team-img img,
.prop-card:hover .prop-img img,
[data-img-zoom]:hover img {
  transform: scale(1.08);
}

/* ─── 11. STATS / NÚMEROS PREMIUM ───────────────────────────── */
.stat-num,
.hero-stat-n,
[data-count] {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1, "ss01" 1;
}

/* ─── 12. SCROLL INDICATOR (en hero opcional) ───────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 14px;
  z-index: 5;
  pointer-events: none;
}
.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: linear-gradient(180deg, #E8C96A, #C9A84C);
  border-radius: 2px;
  animation: scrollDown 2.2s var(--ease-in-out-quart) infinite;
}
@keyframes scrollDown {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ─── 13. SECTION DIVIDERS — finos con gradient ─────────────── */
section + section {
  position: relative;
}
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.18), transparent);
  pointer-events: none;
}

/* ─── 14. FORM INPUTS PREMIUM ───────────────────────────────── */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea,
select {
  transition: border-color 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo),
              background 0.25s var(--ease-out-expo);
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(201, 168, 76, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12), var(--glow-gold-sm) !important;
  outline: none !important;
}

/* ─── 15. GLASS-MORPHISM PARA CTAS DESTACADOS ───────────────── */
[data-glass] {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-border);
}
[data-glass]:hover {
  background: var(--glass-bg-strong) !important;
  border-color: var(--glass-border-hot);
}

/* ─── 16. SELECTION COLOR ───────────────────────────────────── */
::selection {
  background: rgba(201, 168, 76, 0.35);
  color: #fff;
  text-shadow: 0 0 14px rgba(232, 201, 106, 0.4);
}

/* ─── 17. CURSOR POINTER REFINADO ───────────────────────────── */
a, button, [role="button"], .clickable, [onclick] {
  cursor: pointer;
}

/* ─── 18. FOCUS-VISIBLE A11Y ────────────────────────────────── */
*:focus-visible {
  outline: 2px solid rgba(232, 201, 106, 0.8);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 19. LOADING SHIMMER (para placeholders futuros) ───────── */
.shimmer {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.04) 100%);
  background-size: 200% 100%;
  animation: shimmerSweep 1.6s linear infinite;
}
@keyframes shimmerSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── 20. SCROLLBAR ESTILIZADO (webkit) ─────────────────────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #07101E; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8B6520, #C9A84C);
  border-radius: 10px;
  border: 2px solid #07101E;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #C9A84C, #E8C96A);
}

/* ─── 21. PROPS GRID ENTRANCE ────────────────────────────── */
.props-grid > * {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

/* ─── 22. RESPONSIVE TUNES ─────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --reveal-distance: 18px;
    --reveal-duration: 0.7s;
  }
  body::before { opacity: 0.025; }
}

/* ─── 23. TIPOGRAFÍA REFINADA (tracking + features) ────────── */
.hero-h1,
.hero-italic,
.section-h,
h1, h2, h3 {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── 24. PRINT — limpieza ──────────────────────────────────── */
@media print {
  body::before, .scroll-indicator { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   HERO v9.0 — CINEMATOGRÁFICO CENTRADO · partículas + láser + glow
   ════════════════════════════════════════════════════════════════ */
.hero-v9 {
  position: relative;
  min-height: 100vh;
  padding: 100px 4% 40px;
  overflow: hidden;
  background: #07101E;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* LAYER 1: imagen base (foto premium GDL difuminada) */
.h9-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/portada.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: blur(6px) brightness(0.5) saturate(0.8);
  transform: scale(1.1);
  animation: h9BgZoom 30s ease-in-out infinite alternate;
}
@keyframes h9BgZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.18); }
}

/* LAYER 2: mesh con orbs gold animados */
.h9-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.h9-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.h9-orb-1 {
  top: -15%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232, 201, 106, 0.45), transparent 65%);
  animation: h9OrbFloat1 22s ease-in-out infinite;
}
.h9-orb-2 {
  bottom: -20%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.35), transparent 65%);
  animation: h9OrbFloat2 28s ease-in-out infinite;
}
.h9-orb-3 {
  top: 30%; left: 50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 101, 32, 0.3), transparent 65%);
  animation: h9OrbFloat3 25s ease-in-out infinite;
}
@keyframes h9OrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes h9OrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.08); }
}
@keyframes h9OrbFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-40%, -20px) scale(1.05); }
}

/* LAYER 3: grid pattern conic minimal */
.h9-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  pointer-events: none;
}

/* LAYER 4: LÁSER LINES dorados que cruzan */
.h9-lasers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.h9-laser {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232, 201, 106, 0.6) 30%,
    #F5DFA0 50%,
    rgba(232, 201, 106, 0.6) 70%,
    transparent 100%);
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(232, 201, 106, 0.8);
  opacity: 0;
  transform: translateX(-100%);
}
.h9-laser-1 {
  top: 20%;
  animation: h9LaserSweep 11s ease-in-out infinite;
  animation-delay: 1s;
}
.h9-laser-2 {
  top: 55%;
  animation: h9LaserSweep 13s ease-in-out infinite;
  animation-delay: 4s;
}
.h9-laser-3 {
  top: 80%;
  animation: h9LaserSweep 15s ease-in-out infinite;
  animation-delay: 7s;
}
@keyframes h9LaserSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* LAYER 5: canvas partículas */
.h9-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* LAYER 6: vignette overlay */
.h9-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(7, 16, 30, 0.5) 70%, rgba(7, 16, 30, 0.95) 100%),
    linear-gradient(180deg, rgba(7, 16, 30, 0.3) 0%, transparent 30%, transparent 70%, rgba(7, 16, 30, 0.6) 100%);
  pointer-events: none;
}

/* CONTENIDO CENTRADO */
.h9-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* EYEBROW pill premium */
.h9-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 22px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #E8C96A;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.h9-eb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8C96A;
  box-shadow: 0 0 12px #E8C96A, 0 0 24px #E8C96A;
  animation: h9DotPulse 1.8s ease-in-out infinite;
}
@keyframes h9DotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* LOGO con glow */
.h9-logo-wrap {
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.h9-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(232, 201, 106, 0.35)) drop-shadow(0 0 60px rgba(232, 201, 106, 0.2));
  animation: h9LogoFloat 6s ease-in-out infinite;
}
@keyframes h9LogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* HEADLINE GIGANTE 3 líneas — sin cortes feos */
.h9-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.h9-t-line {
  display: block;
  position: relative;
  white-space: nowrap;
}
.h9-t-line-1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 52px);
  color: #c5c8d3;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: -8px;
  opacity: 0.9;
}
.h9-t-line-2 {
  font-weight: 700;
  font-size: clamp(56px, 11vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}
.h9-t-line-3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 38px);
  color: #E8C96A;
  letter-spacing: 0.03em;
  margin-top: 4px;
  text-shadow: 0 4px 20px rgba(232, 201, 106, 0.4);
}
.h9-t-gold {
  position: relative;
  background: linear-gradient(135deg, #F5DFA0 0%, #E8C96A 25%, #C9A84C 55%, #F5DFA0 85%, #E8C96A 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: h9GoldShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(232, 201, 106, 0.75)) drop-shadow(0 8px 30px rgba(232, 201, 106, 0.4));
  font-weight: 900;
}
@media (max-width: 720px) {
  .h9-t-line { white-space: normal; }
  .h9-t-line-2 { display: block; }
}
@keyframes h9GoldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* DIVIDER ornamental */
.h9-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 420px;
  width: 100%;
}
.h9-div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 106, 0.6), transparent);
}
.h9-divider svg {
  filter: drop-shadow(0 0 12px rgba(232, 201, 106, 0.6));
  animation: h9DiamondSpin 8s linear infinite;
}
@keyframes h9DiamondSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SUBTÍTULO vendedor */
.h9-sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: #c5c8d3;
  max-width: 720px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.h9-sub strong {
  color: #fff;
  font-weight: 700;
}
.h9-sub em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #E8C96A;
  font-size: 1.08em;
  font-weight: 500;
}

/* 3 CTAs FUTURISTAS */
.h9-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.h9-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 16px 30px;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  border: 1px solid transparent;
}
.h9-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F5DFA0 0%, #E8C96A 30%, #C9A84C 70%, #8B6520 100%);
  background-size: 200% 200%;
  animation: h9GradMove 5s ease infinite;
  z-index: 0;
}
@keyframes h9GradMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.h9-cta-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.h9-cta-primary {
  color: #07101E;
  box-shadow:
    0 0 0 1px rgba(232, 201, 106, 0.5),
    0 8px 24px rgba(232, 201, 106, 0.35),
    0 16px 50px rgba(0, 0, 0, 0.4);
}
.h9-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s var(--ease-out-expo);
  z-index: 2;
}
.h9-cta-primary:hover::before { left: 100%; }
.h9-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(232, 201, 106, 0.8),
    0 14px 40px rgba(232, 201, 106, 0.5),
    0 24px 70px rgba(0, 0, 0, 0.5);
}
.h9-cta-primary .h9-cta-arrow {
  transition: transform 0.3s var(--ease-out-expo);
}
.h9-cta-primary:hover .h9-cta-arrow {
  transform: translateX(4px);
}

.h9-cta-secondary {
  color: #E8C96A;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.h9-cta-secondary:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.8);
  color: #F5DFA0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.h9-cta-wa {
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.h9-cta-wa:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

/* TRUST BAR estrellas */
.h9-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(7, 16, 30, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.h9-trust-stars {
  display: flex;
  gap: 1.5px;
}
.h9-trust-stars svg {
  filter: drop-shadow(0 0 6px rgba(232, 201, 106, 0.5));
}
.h9-trust-txt {
  font-size: 12.5px;
  color: #c5c8d3;
}
.h9-trust-txt strong {
  color: #E8C96A;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* STATS BAR — full width glass al pie */
.h9-stats-bar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 30px;
  margin: 40px auto 0;
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(135deg, rgba(11, 24, 41, 0.7), rgba(7, 16, 30, 0.85));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(232, 201, 106, 0.1);
}
.h9-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.h9-stat:last-child { border-right: none; }
.h9-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8C96A;
  flex-shrink: 0;
}
.h9-stat-emoji {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(232, 201, 106, 0.4));
  transition: transform 0.3s var(--ease-out-expo);
}
.h9-stat:hover .h9-stat-emoji {
  transform: scale(1.15) rotate(-5deg);
}
.h9-cta-emoji {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}
.h9-cta:hover .h9-cta-emoji {
  transform: scale(1.2) rotate(-8deg);
}

/* ════════════════════════════════════════════════════════════════
   TEAM PROMISE GRID — 4 cards con emojis grandes (reemplaza JP card)
   ════════════════════════════════════════════════════════════════ */
.team-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 52px auto 0;
}
.team-promise-card {
  background: linear-gradient(165deg, rgba(11, 24, 41, 0.92), rgba(7, 16, 30, 0.97));
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.team-promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 106, 0.5), transparent);
}
.team-promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 168, 76, 0.12);
}
.tpc-icon {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 8px 24px rgba(232, 201, 106, 0.35));
  transition: transform 0.4s var(--ease-out-expo);
}
.team-promise-card:hover .tpc-icon {
  transform: scale(1.15) translateY(-4px);
}
.tpc-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.tpc-text {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #A8A9AD;
}
@media (max-width: 980px) {
  .team-promise-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 520px) {
  .team-promise-grid { grid-template-columns: 1fr; gap: 12px; }
  .tpc-icon { font-size: 44px; }
}

/* ════════════════════════════════════════════════════════════════
   PROPIEDADES DESTACADAS — estilo Gonzara con Rendimiento Anual
   ════════════════════════════════════════════════════════════════ */

/* Badge GIGANTE de rendimiento (esquina derecha sobre la foto) */
.prop-rend-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(7, 16, 30, 0.92), rgba(11, 24, 41, 0.96));
  border: 1px solid rgba(124, 255, 177, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(124, 255, 177, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 3;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.prop-card:hover .prop-rend-badge {
  transform: scale(1.06) translateY(-2px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(124, 255, 177, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(124, 255, 177, 0.7);
}
.prop-rend-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #7CFFB1 0%, #25D366 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 8px rgba(124, 255, 177, 0.5));
}
.prop-rend-num span {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
}
.prop-rend-lbl {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #A8A9AD;
  text-align: center;
  margin-top: 4px;
  line-height: 1.3;
}

/* Overlay sobre la foto: colonia + precio (esquina inferior izquierda) */
.prop-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 16, 30, 0.85) 65%, rgba(7, 16, 30, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}
.prop-hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #E8C96A;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.prop-hero-name {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}
.prop-hero-mxn {
  font-size: 0.5em;
  font-weight: 400;
  color: #A8A9AD;
  margin-left: 4px;
  letter-spacing: 1px;
}

/* Specs row con emojis grandes (reemplaza prop-meta-row simple) */
.prop-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}
.prop-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.prop-spec .ps-emoji {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 8px rgba(232, 201, 106, 0.25));
}
.prop-spec .ps-val {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.prop-spec .ps-lbl {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #A8A9AD;
}

/* Mejorar tier badge (TIER en esquina superior izquierda) */
.prop-tier-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.95), rgba(139, 101, 32, 0.95));
  color: #07101E;
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
  border: 1px solid rgba(245, 223, 160, 0.5);
}

@media (max-width: 600px) {
  .prop-rend-badge { top: 12px; right: 12px; padding: 10px 14px; }
  .prop-rend-num { font-size: 22px; }
  .prop-rend-lbl { font-size: 7.5px; }
  .prop-hero-name { font-size: 22px; }
  .prop-tier-badge { font-size: 8.5px; padding: 5px 10px; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE CARDS v2 — emojis grandes premium (reemplaza SVGs feos)
   ════════════════════════════════════════════════════════════════ */
.scard.scard-v2 .s-ico,
.scard.scard-v2 .s-ico-wrap { display: none !important; }

.scard-v2 .s-emoji {
  font-size: 56px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 28px rgba(232, 201, 106, 0.4)) drop-shadow(0 0 12px rgba(232, 201, 106, 0.25));
  transition: transform 0.5s var(--ease-out-expo);
}
.scard-v2:hover .s-emoji {
  transform: scale(1.18) translateY(-4px) rotate(-6deg);
  filter: drop-shadow(0 14px 36px rgba(232, 201, 106, 0.55)) drop-shadow(0 0 20px rgba(232, 201, 106, 0.4));
}

@media (max-width: 600px) {
  .scard-v2 .s-emoji { font-size: 44px; margin-bottom: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   PROMESAS LP — reemplaza testimonios inventados
   ════════════════════════════════════════════════════════════════ */
.promesas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 52px auto 0;
}
.promesa-card {
  background: linear-gradient(165deg, rgba(11, 24, 41, 0.92), rgba(7, 16, 30, 0.97));
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}
.promesa-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 106, 0.6), transparent);
}
.promesa-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 168, 76, 0.12);
}
.promesa-emoji {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 8px 24px rgba(232, 201, 106, 0.35));
  transition: transform 0.4s var(--ease-out-expo);
}
.promesa-card:hover .promesa-emoji {
  transform: scale(1.15) rotate(-5deg);
}
.promesa-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.promesa-text {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #A8A9AD;
  margin-bottom: 16px;
}
.promesa-tag {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(124, 255, 177, 0.12), rgba(37, 211, 102, 0.06));
  border: 1px solid rgba(124, 255, 177, 0.3);
  border-radius: 999px;
  color: #7CFFB1;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .promesas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 520px) {
  .promesas-grid { grid-template-columns: 1fr; }
  .promesa-emoji { font-size: 42px; }
}

/* ════════════════════════════════════════════════════════════════
   PROCESO LP — 4 pasos numerados (reemplaza casos inventados)
   ════════════════════════════════════════════════════════════════ */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 52px auto 0;
}
.proceso-step {
  background: linear-gradient(165deg, rgba(11, 24, 41, 0.92), rgba(7, 16, 30, 0.97));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}
.proceso-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(232, 201, 106, 0.7), transparent);
}
.proceso-step:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 168, 76, 0.12);
}
.proceso-num {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(232, 201, 106, 0.5), rgba(139, 101, 32, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  display: inline-block;
}
.proceso-emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(232, 201, 106, 0.3));
}
.proceso-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.proceso-text {
  font-family: 'Raleway', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: #A8A9AD;
  margin-bottom: 14px;
}
.proceso-text strong {
  color: #d8dce8;
  font-weight: 600;
}
.proceso-time {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(232, 201, 106, 0.1);
  border: 1px solid rgba(232, 201, 106, 0.25);
  border-radius: 999px;
  color: #E8C96A;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .proceso-grid { grid-template-columns: 1fr 1fr; }
  .proceso-num { font-size: 58px; }
}
@media (max-width: 520px) {
  .proceso-grid { grid-template-columns: 1fr; }
  .proceso-num { font-size: 52px; }
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE COLONIAS — visualiza cobertura GDL (tendencia 2026)
   ════════════════════════════════════════════════════════════════ */
.marquee-colonias {
  position: relative;
  width: 100%;
  padding: 36px 0;
  background: linear-gradient(180deg, transparent, rgba(11,24,41,.5), transparent);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  overflow: hidden;
  z-index: 1;
}
.marquee-colonias::before,
.marquee-colonias::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee-colonias::before {
  left: 0;
  background: linear-gradient(90deg, #07101E, transparent);
}
.marquee-colonias::after {
  right: 0;
  background: linear-gradient(-90deg, #07101E, transparent);
}
.marquee-eyebrow {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeSlide 60s linear infinite;
}
.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(232, 201, 106, 0.18);
  white-space: nowrap;
  padding: 0 38px;
  transition: color 0.4s ease;
  cursor: default;
}
.marquee-item:hover {
  color: rgba(232, 201, 106, 0.85);
}
.marquee-item::after {
  content: "·";
  margin-left: 38px;
  color: rgba(201, 168, 76, 0.25);
}
.marquee-item:last-child::after { display: none; }
@keyframes marqueeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-colonias:hover .marquee-track {
  animation-play-state: paused;
}

/* ════════════════════════════════════════════════════════════════
   MOMENTOS LP — scrollytelling sticky (estilo Apple/Tesla)
   ════════════════════════════════════════════════════════════════ */
.momentos-section {
  position: relative;
  padding: 100px 5% 120px;
  background: linear-gradient(180deg, #07101E 0%, #0B1829 50%, #07101E 100%);
  overflow: hidden;
}
.momentos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232,201,106,.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,168,76,.04), transparent 50%);
  pointer-events: none;
}
.momentos-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.momentos-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  background: rgba(201,168,76,.06);
}
.momentos-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(38px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.momentos-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.momentos-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #A8A9AD;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}
.momentos-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.momentos-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.momento-step {
  padding: 36px 0;
  border-left: 2px solid rgba(201,168,76,.15);
  padding-left: 32px;
  position: relative;
  opacity: 0.35;
  transition: opacity 0.5s ease, border-left-color 0.5s ease;
}
.momento-step.is-active {
  opacity: 1;
  border-left-color: var(--gold);
}
.momento-step.is-active::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(232,201,106,.6);
}
.momento-num {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.momento-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 14px;
}
.momento-text {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #D0D1D5;
  max-width: 480px;
}
.momento-text strong { color: #fff; font-weight: 600; }
.momento-text em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold2);
  font-weight: 500;
}

.momentos-visual {
  position: sticky;
  top: 100px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(11,24,41,.9), rgba(7,16,30,.95));
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(201,168,76,.1);
}
.momento-visual-pane {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out-expo);
  padding: 40px;
  text-align: center;
}
.momento-visual-pane.is-active {
  opacity: 1;
}
.momento-visual-emoji {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 28px;
  filter: drop-shadow(0 16px 48px rgba(232,201,106,.4));
  animation: floatSubtle 4s ease-in-out infinite;
}
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.momento-visual-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.momento-visual-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.momento-visual-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.momento-visual-detail {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #A8A9AD;
  line-height: 1.5;
  max-width: 320px;
}

@media (max-width: 900px) {
  .momentos-grid { grid-template-columns: 1fr; gap: 40px; }
  .momentos-visual { position: relative; top: 0; height: 400px; order: -1; }
  .momento-visual-emoji { font-size: 140px; }
  .momentos-steps { gap: 50px; }
  .momento-step { padding: 24px 0 24px 24px; }
}

/* ════════════════════════════════════════════════════════════════
   UPGRADE WOW v9.5 — emojis gigantes, magnetic, cursor, confetti
   ════════════════════════════════════════════════════════════════ */

/* === EMOJIS MOMENTOS LP — de 120px a 240px GIGANTE === */
.momento-visual-emoji {
  font-size: 240px !important;
  line-height: 1;
  margin-bottom: 32px;
  filter:
    drop-shadow(0 24px 80px rgba(232, 201, 106, 0.7))
    drop-shadow(0 0 60px rgba(232, 201, 106, 0.5))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  animation: emojiGiantBreathe 4s ease-in-out infinite;
  display: inline-block;
  will-change: transform, filter;
}
@keyframes emojiGiantBreathe {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 24px 80px rgba(232, 201, 106, 0.7)) drop-shadow(0 0 60px rgba(232, 201, 106, 0.5)); }
  33%      { transform: translateY(-16px) scale(1.05) rotate(-3deg); }
  66%      { transform: translateY(-8px) scale(1.02) rotate(2deg); filter: drop-shadow(0 32px 100px rgba(232, 201, 106, 0.85)) drop-shadow(0 0 80px rgba(245, 223, 160, 0.7)); }
}
@media (max-width: 900px) {
  .momento-visual-emoji { font-size: 140px !important; }
}

/* === MOMENTOS LP HEADLINES OVERSIZED === */
.momento-visual-headline {
  font-size: clamp(40px, 6.5vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 0.95 !important;
}
.momento-title {
  font-size: clamp(34px, 5vw, 56px) !important;
}

/* === STICKER STRIP — emojis motivacionales después del hero === */
.sticker-strip {
  position: relative;
  padding: 60px 4% 80px;
  background:
    radial-gradient(ellipse at top, rgba(232,201,106,.05), transparent 60%),
    #07101E;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.sticker-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(201,168,76,.06);
}
.sticker-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(38px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 980px;
  margin: 0 auto 16px;
}
.sticker-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #F5DFA0, #E8C96A 40%, #C9A84C, #F5DFA0);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s ease infinite;
  filter: drop-shadow(0 0 32px rgba(232,201,106,.5));
}
.sticker-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 22px);
  color: #A8A9AD;
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.sticker-card {
  position: relative;
  padding: 36px 22px 30px;
  background: linear-gradient(165deg, rgba(11,24,41,.7), rgba(7,16,30,.85));
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 18px;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
  overflow: hidden;
  z-index: 1;
}
.sticker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232,201,106,.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.sticker-card:hover {
  transform: translateY(-12px) scale(1.04);
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 30px 70px rgba(0,0,0,.5),
    0 0 80px rgba(232,201,106,.25),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.sticker-card:hover::before { opacity: 1; }
.sticker-emoji {
  font-size: 88px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 36px rgba(232,201,106,.5)) drop-shadow(0 0 24px rgba(232,201,106,.3));
  transition: transform 0.5s var(--ease-out-expo);
  will-change: transform;
}
.sticker-card:hover .sticker-emoji {
  transform: scale(1.25) rotate(-12deg) translateY(-8px);
}
.sticker-card-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.sticker-card-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 6px 20px rgba(232,201,106,.4));
}
.sticker-card-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.8px;
  color: #A8A9AD;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .sticker-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 520px) {
  .sticker-grid { grid-template-columns: 1fr 1fr; }
  .sticker-emoji { font-size: 64px; }
  .sticker-card { padding: 24px 16px 20px; }
}

/* === CURSOR CUSTOM DORADO (solo desktop, solo en hero+sticker) === */
.lp-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 223, 160, 0.9) 0%, rgba(232, 201, 106, 0.4) 40%, transparent 70%);
  mix-blend-mode: screen;
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), opacity 0.3s;
  opacity: 0;
  filter: blur(2px);
}
.lp-cursor.is-visible { opacity: 1; }
.lp-cursor.is-hovering {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(245, 223, 160, 0.7) 0%, rgba(232, 201, 106, 0.3) 50%, transparent 80%);
}
@media (hover: none) { .lp-cursor { display: none !important; } }

/* === FAB WHATSAPP — pulse glow gigante === */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  text-decoration: none;
  box-shadow:
    0 12px 36px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease-out-expo);
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.12) rotate(-8deg);
  animation-play-state: paused;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5), 0 0 0 22px rgba(37, 211, 102, 0); }
}
.fab-whatsapp svg { color: #fff; }
.fab-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 24, 41, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #E8C96A;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(-6px); }
@media (max-width: 720px) {
  .fab-whatsapp { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .fab-tooltip { display: none; }
}

/* === MAGNETIC CTA — translate suave en hover de zona === */
.hv8-btn, .h9-cta, .btn-gold {
  will-change: transform;
}

/* === CONFETTI canvas overlay === */
#lp-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}
.h9-stat-info { text-align: left; }
.h9-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.h9-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #A8A9AD;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .h9-stats-bar { grid-template-columns: 1fr 1fr; gap: 0; padding: 16px; }
  .h9-stat { padding: 14px 12px; }
  .h9-stat:nth-child(2n) { border-right: none; }
  .h9-stat:nth-child(1), .h9-stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .h9-stat-icon { width: 36px; height: 36px; }
  .h9-stat-num { font-size: 22px; }
  .h9-stat-label { font-size: 9px; }
}
@media (max-width: 720px) {
  .hero-v9 { padding: 90px 5% 30px; }
  .h9-eyebrow { font-size: 9px; padding: 7px 16px; letter-spacing: 2px; }
  .h9-eb-text { font-size: 9px; }
  .h9-logo { width: 80px; }
  .h9-sub { font-size: 14px; }
  .h9-ctas { flex-direction: column; gap: 10px; width: 100%; max-width: 320px; }
  .h9-cta { width: 100%; justify-content: center; padding: 14px 20px; }
  .h9-trust { padding: 8px 14px; }
  .h9-trust-txt { font-size: 11px; }
}
@media (max-width: 480px) {
  .h9-laser { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   HERO v8.0 — Layout asimétrico estilo Compass/Linear/Stripe
   (legacy, mantenido por compatibilidad)
   ════════════════════════════════════════════════════════════════ */
.hero-v8 {
  position: relative;
  min-height: 100vh;
  padding: 100px 4% 60px;
  overflow: hidden;
  background: #07101E;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* MESH BACKGROUND — grid + orbs gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-mesh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.hero-mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.hero-mesh-orb-1 {
  top: -10%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.32), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite;
}
.hero-mesh-orb-2 {
  bottom: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(232, 201, 106, 0.22), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite reverse;
}
.hero-mesh-orb-3 {
  top: 40%;
  right: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(139, 101, 32, 0.25), transparent 70%);
  animation: orbFloat 25s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-v8-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
}

/* LEFT: COPY */
.hero-v8-copy { max-width: 640px; }

.hero-v8-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E8C96A;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hv8-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8C96A;
  box-shadow: 0 0 12px #E8C96A;
  animation: hv8DotPulse 2s ease-in-out infinite;
}
@keyframes hv8DotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px #E8C96A; }
  50% { opacity: 0.4; box-shadow: 0 0 4px #E8C96A; }
}

.hero-v8-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hv8-line-1 {
  font-weight: 400;
  color: #d8dce8;
}
.hv8-line-1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.hv8-line-2 {
  font-weight: 700;
  font-size: 1.05em;
}
.hv8-gold {
  background: linear-gradient(135deg, #F5DFA0 0%, #E8C96A 35%, #C9A84C 70%, #8B6520 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: goldShimmer 6s ease infinite;
}

.hero-v8-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #A8A9AD;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-v8-sub strong {
  color: #d8dce8;
  font-weight: 600;
}

.hero-v8-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hv8-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.hv8-btn-primary {
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #8B6520 100%);
  color: #07101E;
  box-shadow: var(--glow-gold-md), 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hv8-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold-lg), 0 18px 40px rgba(0, 0, 0, 0.4);
}
.hv8-btn-primary svg {
  transition: transform 0.3s var(--ease-out-expo);
}
.hv8-btn-primary:hover svg {
  transform: translateX(4px);
}
.hv8-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #E8C96A;
  backdrop-filter: blur(8px);
}
.hv8-btn-ghost:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
}

.hero-v8-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hv8-trust-stars {
  display: flex;
  gap: 2px;
}
.hv8-trust-txt {
  font-size: 13px;
  color: #A8A9AD;
}
.hv8-trust-txt strong {
  color: #E8C96A;
  font-weight: 700;
}

/* RIGHT: VISUAL MOCKUP */
.hero-v8-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv8-float-card {
  position: absolute;
  width: 280px;
  background: linear-gradient(165deg, rgba(11, 24, 41, 0.92), rgba(7, 16, 30, 0.96));
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    var(--glow-gold-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-out-expo);
}
.hv8-float-card-1 {
  top: 20px;
  right: 60px;
  z-index: 3;
  animation: floatCard1 8s ease-in-out infinite;
}
.hv8-float-card-2 {
  bottom: 30px;
  left: 30px;
  z-index: 2;
  transform: rotate(-3deg);
  animation: floatCard2 9s ease-in-out infinite;
  opacity: 0.92;
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

.hv8-fc-img {
  height: 160px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hv8-fc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 16, 30, 0.7) 100%);
}
.hv8-fc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #E8C96A;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hv8-fc-body { padding: 14px 16px 16px; }
.hv8-fc-loc {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #A8A9AD;
  margin-bottom: 6px;
}
.hv8-fc-price {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hv8-fc-price span {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 2px;
}
.hv8-fc-specs {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: #D0D1D5;
  font-weight: 500;
}

.hv8-float-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(7, 16, 30, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(124, 255, 177, 0.3);
  border-radius: 999px;
  font-size: 11.5px;
  color: #D0D1D5;
  font-weight: 500;
  z-index: 4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 8px)) translateX(-4px); }
}

.hv8-float-pin {
  position: absolute;
  bottom: 100px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.95), rgba(139, 101, 32, 0.95));
  color: #07101E;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 5;
  box-shadow: var(--glow-gold-md), 0 12px 32px rgba(0, 0, 0, 0.4);
  animation: floatBadge 7s ease-in-out infinite reverse;
}

/* STATS BAR full-width abajo */
.hero-v8-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(135deg, rgba(11, 24, 41, 0.55), rgba(7, 16, 30, 0.75));
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hv8-stat { text-align: center; }
.hv8-stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #F5DFA0, #C9A84C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.hv8-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #A8A9AD;
  line-height: 1.4;
}
.hv8-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* RESPONSIVE HERO v8 */
@media (max-width: 1100px) {
  .hero-v8-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-v8-visual { height: 380px; max-width: 460px; margin: 0 auto; }
  .hv8-float-card { width: 240px; }
  .hv8-float-card-1 { right: 20px; }
  .hv8-float-card-2 { left: 10px; bottom: 10px; }
}
@media (max-width: 720px) {
  .hero-v8 { padding: 90px 5% 40px; min-height: auto; }
  .hero-v8-title { font-size: clamp(38px, 9vw, 56px); }
  .hero-v8-sub { font-size: 15px; }
  .hero-v8-visual { display: none; }
  .hero-v8-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .hv8-stat-divider { display: none; }
  .hv8-btn { padding: 14px 22px; font-size: 12px; }
  .hero-v8-ctas { flex-direction: column; }
  .hv8-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-v8-stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR REFINADO — minimal premium
   ════════════════════════════════════════════════════════════════ */
#nav, nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 16, 30, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.35s var(--ease-out-expo);
}
#nav.nav-scrolled {
  padding: 10px 40px;
  background: rgba(7, 16, 30, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
  #nav { padding: 12px 16px; }
  #nav.nav-scrolled { padding: 10px 16px; }
}
