:root {
    --ivory: #FDFBF7; --warm-beige: #F2EBE0; --nude: #DCCAB8;
    --terracotta: #B87C68; --rose-brown: #8C5E52; --mocha: #4A3B32;
    --gold: #C5A47E; --gold-light: #E8D5B5; --black-matte: #1A1816; --nav-blue: #0F1C2E;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
    --container: min(92vw, 1600px);
    --section-pad: clamp(80px, 12vh, 180px);
    --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--ivory); color: var(--mocha); font-family: var(--font-sans); overflow-x: hidden; cursor: none; width: 100%; }

/* =========================================
   OPTIMIZADO: content-visibility para secciones lejanas
   El navegador NO las renderiza hasta que el usuario se acerca
   ========================================= */
.editorial-intro,
.space-section,
.pricing-section,
.social-section,
.location-section,
.premium-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* EFECTOS GLOBALES */
.grain-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.04; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 10000; pointer-events: none; }
.cursor-dot { width: 6px; height: 6px; background: var(--terracotta); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--rose-brown); transition: width 0.3s, height 0.3s, background 0.3s; }
body:hover .cursor-outline.hovered { width: 60px; height: 60px; background: rgba(184,124,104,0.1); border-color: transparent; }

/* TIPOGRAFÍA Y UTILIDADES */
.serif-font { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }
.sans-font { font-family: var(--font-sans); font-weight: 300; line-height: 1.7; letter-spacing: 0.02em; }
.script-font { font-family: var(--font-script); font-weight: 400; }
.accent-color { color: var(--terracotta); }
.italic { font-style: italic; }
.gradient-text { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 4s ease-in-out infinite; }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.section-padding { padding: var(--section-pad) 0; }
.container { width: var(--container); margin: 0 auto; position: relative; }
.center-align { text-align: center; }

/* BOTONES */
.btn-primary, .btn-secondary { display: inline-block; padding: 18px 40px; text-decoration: none; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; transition: all 0.6s var(--ease-luxury); }
.btn-primary { background: var(--mocha); color: var(--ivory); border: 1px solid var(--mocha); }
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); }
.btn-secondary { background: transparent; color: var(--mocha); border: 1px solid var(--mocha); }
.btn-secondary:hover { background: var(--mocha); color: var(--ivory); }
.btn-primary.gold { background: var(--gold); color: var(--nav-blue); border: 1px solid var(--gold); margin-top: 20px; }
.btn-primary.gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-light { display: inline-block; padding: 18px 40px; text-decoration: none; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ivory); border: 1px solid rgba(253,251,247,0.4); transition: all 0.6s var(--ease-luxury); }
.btn-outline-light:hover { background: var(--ivory); color: var(--nav-blue); border-color: var(--ivory); }

/* NAVBAR */
.luxury-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
    padding: 0 clamp(30px, 4vw, 80px); height: 90px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(15, 28, 46, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(197, 164, 126, 0.08);
    transition: all 0.6s var(--ease-luxury);
}
.luxury-nav.nav-hidden { transform: translateY(-100%); }
.luxury-nav.scrolled { height: 70px; background: rgba(15, 28, 46, 0.95); border-bottom-color: rgba(197, 164, 126, 0.15); }
.nav-logo { text-decoration: none; color: var(--gold); line-height: 1; flex-shrink: 0; transition: opacity 0.3s ease; }
.nav-logo:hover { opacity: 0.8; }
.logo-nissi { font-size: clamp(1.8rem, 2.2vw, 2.6rem); color: var(--gold); display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(25px, 3.5vw, 60px); }
.nav-links a {
    text-decoration: none; color: var(--ivory); font-size: 0.75rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: 0.18em; position: relative;
    opacity: 0.75; transition: all 0.4s var(--ease-luxury); white-space: nowrap; padding: 8px 0;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease-luxury);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 12px 32px !important; border: 1px solid rgba(197, 164, 126, 0.4) !important;
    color: var(--gold) !important; opacity: 1 !important;
    margin-left: clamp(10px, 2vw, 30px); transition: all 0.4s var(--ease-luxury) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold) !important; color: var(--nav-blue) !important;
    border-color: var(--gold) !important; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.25);
}

/* HAMBURGER */
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; z-index: 300; padding: 15px; mix-blend-mode: difference; }
.hamburger-box { width: 32px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger-line { display: block; width: 100%; height: 1.5px; background: var(--gold); transition: all 0.5s var(--ease-luxury); transform-origin: center; }
.hamburger-btn.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* FULLSCREEN MENU */
.fullscreen-menu { position: fixed; inset: 0; z-index: 250; background: var(--ivory); visibility: hidden; opacity: 0; transition: visibility 0s 0.8s, opacity 0.8s var(--ease-luxury); }
.fullscreen-menu.active { visibility: visible; opacity: 1; transition-delay: 0s; }
.menu-grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.menu-content { display: grid; grid-template-columns: 1.2fr 0.8fr; height: 100%; padding: clamp(100px, 15vh, 160px) 5vw 40px; }
.menu-links-col { display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 4vh, 40px); }
.menu-link { display: flex; align-items: baseline; gap: 20px; text-decoration: none; color: var(--mocha); opacity: 0; transform: translateY(60px); transition: color 0.3s; }
.fullscreen-menu.active .menu-link { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury), color 0.3s; }
.fullscreen-menu.active .menu-link:nth-child(1) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-link:nth-child(2) { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-link:nth-child(3) { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-link:nth-child(4) { transition-delay: 0.5s; }
.link-num { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--terracotta); }
.link-text { font-size: clamp(3rem, 6vw, 6rem); line-height: 1; letter-spacing: -0.02em; transition: transform 0.4s var(--ease-luxury); }
.menu-link:hover .link-text { transform: translateX(20px); color: var(--terracotta); }
.menu-link:hover .link-num { color: var(--gold); }
.menu-visual-col { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding-left: clamp(30px, 5vw, 80px); }
.menu-img-wrapper { position: absolute; top: 15%; right: 0; bottom: 20%; left: clamp(30px, 5vw, 80px); overflow: hidden; opacity: 0; transform: scale(0.95); transition: all 0.8s var(--ease-luxury) 0.3s; }
.fullscreen-menu.active .menu-img-wrapper { opacity: 1; transform: scale(1); }
.menu-bg-img { width: 100%; height: 100%; object-fit: cover; }
.menu-footer-info { display: flex; justify-content: space-between; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-brown); opacity: 0; transition: opacity 0.6s var(--ease-luxury) 0.6s; }
.fullscreen-menu.active .menu-footer-info { opacity: 1; }

/* HERO */
.hero-section { position: relative; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-curtain { position: absolute; inset: 0; background: var(--nav-blue); z-index: 10; transform-origin: top; }
.hero-media-wrapper { position: absolute; inset: 0; z-index: 0; }
.hero-bg { width: 100%; height: 120%; object-fit: cover; object-position: center 30%; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,28,46,0.3), rgba(15,28,46,0.7)); }
.hero-content { position: relative; z-index: 2; text-align: left; color: var(--ivory); padding: 0 4vw; width: 100%; max-width: 1600px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.hero-tag { font-size: clamp(1.5rem, 2vw, 2.5rem); margin-bottom: 0.5rem; opacity: 0; align-self: flex-start; }
.hero-title { font-size: clamp(4rem, 10vw, 11rem); text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.85; margin-bottom: clamp(30px, 5vh, 60px); }
.title-row { display: block; overflow: hidden; }
.title-row.offset { padding-left: clamp(40px, 8vw, 180px); }
.word-mask { display: block; overflow: hidden; }
.word { display: block; transform: translateY(120%); will-change: transform; }
.hero-bottom-bar { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid rgba(253,251,247,0.2); padding-top: 20px; opacity: 0; }
.hero-subtitle { font-size: clamp(0.9rem, 1.2vw, 1.2rem); max-width: 500px; color: var(--warm-beige); }
.hero-ctas { display: flex; gap: 15px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--ivory); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 3; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%{transform:translateY(-100%)} 100%{transform:translateY(100%)} }

/* INTRO */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 120px); align-items: center; }
.intro-img-wrap { overflow: hidden; aspect-ratio: 3/4; max-height: 800px; }
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.section-number { font-size: clamp(3rem, 4vw, 5rem); color: var(--nude); opacity: 0.4; display: block; margin-bottom: -20px; }
.intro-text h2 { font-size: clamp(2.5rem, 4vw, 4.5rem); margin-bottom: 2rem; color: var(--mocha); }
.lead-text { font-size: clamp(1rem, 1.1vw, 1.2rem); color: var(--mocha); margin-bottom: 2rem; }
.signature { font-size: clamp(1.5rem, 2vw, 2rem); color: var(--terracotta); margin-top: 2rem; }

/* SPACE */
.amenities-marquee { padding: 60px 0; border-top: 1px solid var(--nude); border-bottom: 1px solid var(--nude); margin: var(--section-pad) 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3.5rem); color: var(--mocha); padding: 0 20px; font-style: italic; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.space-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.space-card { position: relative; overflow: hidden; aspect-ratio: 4/3; max-height: 500px; contain: layout style paint; }
.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-luxury); }
.space-card:hover img { transform: scale(1.05); }
.card-caption { position: absolute; bottom: 20px; left: 20px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(15,28,46,0.6); padding: 8px 16px; backdrop-filter: blur(4px); }
.offset-top { margin-top: 0; }

/* GALERÍA HORIZONTAL */
.gallery-section { overflow: hidden; padding: var(--section-pad) 0; width: 100%; }
.gallery-wrapper { width: 100%; max-width: 100vw; margin: 0 auto; overflow: hidden; }
.gallery-track { display: flex; gap: 30px; width: max-content; padding: 0 4vw; }
.gallery-item { width: clamp(300px, 35vw, 600px); height: clamp(400px, 50vh, 700px); flex-shrink: 0; overflow: hidden; contain: layout style paint; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* PRICING */
.pricing-section { background: var(--ivory); }
.pricing-layout-correct { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }

/* CLAVE: Restaurar sticky y bajar el 'top' de 100px a 30px para que suba */
.pricing-sticky-left { position: sticky; top: 30px; align-self: start; padding-top: 0; }

.spaces-main-title { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--black-matte); font-weight: 700; margin-top: 0; margin-bottom: 40px; line-height: 1.1; }
.spaces-list-simple { display: flex; flex-direction: column; gap: 30px; margin-top: 0; }

.space-simple { position: relative; padding-bottom: 25px; margin-bottom: 25px; }
.space-simple:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.space-simple::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60%; height: 1px; background: linear-gradient(90deg, var(--nude), transparent); }
.space-simple:first-child { padding-top: 0; }
.space-simple-header { display: flex; align-items: baseline; gap: 15px; margin-bottom: 12px; }
.space-simple-number { font-size: 1rem; color: var(--terracotta); opacity: 0.8; font-weight: 500; }
.space-simple h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--black-matte); font-weight: 600; margin-bottom: 0; }
.space-simple-desc { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--black-matte); line-height: 1.8; font-weight: 500; }
.space-simple-capacity { display: flex; align-items: baseline; gap: 12px; padding-top: 10px; }
.space-simple-capacity .sans-font { font-size: 0.8rem; color: var(--mocha); font-weight: 600; opacity: 1; text-transform: uppercase; letter-spacing: 0.15em; }
.space-simple-capacity .serif-font { font-size: 1.2rem; color: var(--terracotta); font-weight: 600; }

/* COLUMNA DERECHA INTACTA */
.pricing-scroll-right { padding-top: 0; margin-top: 180px; }
.pricing-cards-scroll { display: flex; flex-direction: column; gap: 30px; }
.price-card { padding: clamp(30px, 3vw, 45px); border: 1px solid var(--nude); transition: all 0.5s var(--ease-luxury); position: relative; contain: layout style paint; }
.price-card.featured { background: var(--warm-beige); border-color: var(--gold); }
.badge { position: absolute; top: -15px; right: 30px; background: var(--terracotta); color: #fff; padding: 5px 20px; font-size: 1.2rem; }
.price-card h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin-bottom: 15px; color: var(--mocha); font-weight: 600; }
.price { font-family: var(--font-serif); font-size: clamp(2.2rem, 3vw, 2.8rem); color: var(--mocha); margin-bottom: 25px; font-weight: 600; }
.price small { font-size: 0.9rem; font-family: var(--font-sans); letter-spacing: 0.1em; font-weight: 500; }
.inclusions-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.inclusions-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--mocha); line-height: 1.6; }
.inclusions-list li .check-icon { color: var(--terracotta); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
/* REDES SOCIALES & IPHONE */
.social-section { background: var(--warm-beige); overflow: hidden; }
.social-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.social-title { font-size: clamp(2.5rem, 4vw, 4.5rem); margin-bottom: 2rem; color: var(--mocha); }
.social-desc { font-size: clamp(1rem, 1.1vw, 1.1rem); color: var(--mocha); margin-bottom: 3rem; max-width: 500px; }
.social-links { display: flex; gap: 20px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border: 1px solid var(--mocha); color: var(--mocha); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.4s var(--ease-luxury); }
.social-btn:hover { background: var(--mocha); color: var(--ivory); }
.social-visual-col { display: flex; justify-content: center; perspective: 1000px; }
.iphone-mockup { position: relative; width: clamp(260px, 20vw, 320px); height: clamp(520px, 40vw, 640px); transform-style: preserve-3d; }
.floating-anim { animation: floatPhone 6s ease-in-out infinite; }
@keyframes floatPhone { 0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); } 50% { transform: translateY(-20px) rotateY(5deg) rotateX(-5deg); } }
.iphone-frame { width: 100%; height: 100%; background: #1a1a1a; border-radius: 45px; box-shadow: 0 0 0 2px #333, 0 0 0 4px #1a1a1a, 20px 40px 60px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.05); position: relative; overflow: hidden; z-index: 2; }
.iphone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 30px; background: #1a1a1a; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; z-index: 10; }
.iphone-screen { position: absolute; inset: 8px; background: #fff; border-radius: 38px; overflow: hidden; display: flex; flex-direction: column; }
.screen-header { padding: 40px 20px 15px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); z-index: 5; border-bottom: 1px solid rgba(0,0,0,0.05); }
.app-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(45deg, var(--gold), var(--terracotta)); }
.app-name { font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem; color: #333; }
.screen-feed { flex: 1; overflow: hidden; position: relative; }
.feed-track { display: flex; flex-direction: column; animation: scrollFeed 20s linear infinite; }
.feed-item { width: 100%; height: 350px; flex-shrink: 0; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scrollFeed { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.iphone-reflection { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.05) 100%); pointer-events: none; z-index: 20; border-radius: 45px; }

/* UBICACIÓN */
.location-section { background: var(--nav-blue); padding: clamp(60px, 10vh, 120px) 0; position: relative; overflow: hidden; }
.location-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.location-info { color: var(--ivory); }
.location-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; color: var(--ivory); }
.location-desc { font-size: clamp(0.95rem, 1.1vw, 1.1rem); color: rgba(253, 251, 247, 0.7); margin-bottom: 2rem; max-width: 450px; }
.location-address { font-style: normal; font-size: 1rem; line-height: 1.8; color: var(--gold); margin-bottom: 2rem; letter-spacing: 0.03em; }
.location-map-wrapper { width: 100%; height: clamp(300px, 40vw, 500px); border-radius: 12px; overflow: hidden; border: 1px solid rgba(197, 164, 126, 0.15); position: relative; }
.location-map-wrapper iframe { width: 100%; height: 100%; filter: invert(90%) hue-rotate(180deg) sepia(30%) saturate(0.8) brightness(0.9); transition: filter 0.5s ease; }
.location-map-wrapper:hover iframe { filter: invert(90%) hue-rotate(180deg) sepia(10%) saturate(1) brightness(1); }

/* FOOTER */
.premium-footer { position: relative; background-color: var(--nav-blue); color: var(--ivory); padding: clamp(80px, 10vh, 140px) 0 40px; overflow: hidden; }
.footer-grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.footer-horizon-line { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%); opacity: 0.6; animation: horizonGlow 4s ease-in-out infinite alternate; }
@keyframes horizonGlow { 0% { opacity: 0.3; transform: scaleX(0.8); } 100% { opacity: 0.8; transform: scaleX(1); } }
.footer-container { width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.footer-brand-block { margin-bottom: clamp(60px, 8vh, 100px); }
.footer-title { font-size: clamp(3.5rem, 8vw, 9rem); line-height: 0.9; color: var(--ivory); letter-spacing: -0.02em; }
.footer-tagline { font-size: clamp(1.5rem, 2vw, 2.5rem); color: var(--gold); margin-top: 20px; opacity: 0.9; }
.footer-grid { display: grid; gap: clamp(30px, 4vw, 80px); padding-bottom: clamp(60px, 8vh, 100px); border-bottom: 1px solid rgba(197,164,126,0.15); }
.footer-grid-2col { grid-template-columns: 1fr 1fr; }
.footer-col-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
.footer-contact-link { display: block; font-size: 1.1rem; color: var(--ivory); text-decoration: none; margin-bottom: 12px; opacity: 0.8; transition: opacity 0.3s, color 0.3s, transform 0.3s var(--ease-luxury); }
.footer-contact-link:hover { opacity: 1; color: var(--gold); transform: translateX(8px); }
.footer-note { font-size: 0.9rem; opacity: 0.7; line-height: 1.7; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-size: 0.75rem; opacity: 0.5; }
.footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-links a { color: var(--ivory); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }
.premium-footer .fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury); transition-delay: var(--delay, 0s); }
.premium-footer .fade-up.visible { opacity: 1; transform: translateY(0); }

/* FLOATING WA */
.floating-wa { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 60px; height: 60px; background: var(--nav-blue); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.3s; border: 1px solid rgba(197,164,126,0.3); }
.floating-wa svg { width: 30px; height: 30px; }
.floating-wa:hover { transform: scale(1.1); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .intro-grid, .pricing-layout, .space-gallery-grid, .social-layout { grid-template-columns: 1fr; gap: 40px; }
    .offset-top { margin-top: 0; }
    .sticky-col { position: relative; top: 0; }
    .gallery-item { width: 70vw; height: 50vh; }
}

@media (max-width: 900px) {
    .luxury-nav { height: 70px; padding: 0 5vw; }
    .luxury-nav.scrolled { height: 60px; }
    .hamburger-btn { display: block; }
    .nav-links { display: none; }
    .menu-content { grid-template-columns: 1fr; padding-top: 120px; }
    .menu-visual-col { display: none; }
    .link-text { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-content { text-align: center; align-items: center; }
    .hero-tag { align-self: center; }
    .title-row.offset { padding-left: 0; }
    .hero-bottom-bar { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .gallery-item { width: 80vw; height: 50vh; }
    .hero-title { font-size: clamp(3.5rem, 15vw, 5rem); }
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    .footer-grid-2col { grid-template-columns: 1fr !important; gap: 40px; }
    .footer-title { font-size: clamp(3rem, 12vw, 5rem); }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .social-desc { margin: 0 auto 3rem; text-align: center; }
    .social-links { justify-content: center; }
    .iphone-mockup { width: 260px; height: 520px; margin-top: 40px; }
    .floating-anim { animation: floatPhoneMobile 6s ease-in-out infinite; }
    @keyframes floatPhoneMobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
    .location-layout { grid-template-columns: 1fr; gap: 40px; }
    .location-map-wrapper { height: 300px; }

    /* =========================================
       🚀 OPTIMIZACIONES MÓVIL
       ========================================= */

    /* 1. Desactivar grain overlay (no se percibe en pantallas pequeñas) */
    .grain-overlay,
    .menu-grain,
    .footer-grain {
        display: none !important;
    }

    /* 2. Reducir backdrop-filter del navbar (blur de 20px a 10px) */
    .luxury-nav {
        backdrop-filter: blur(10px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(10px) saturate(150%) !important;
    }
/* 3. Galería horizontal en móvil con GSAP */
.gallery-section {
    height: 100vh !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}
.gallery-wrapper { 
    width: 100% !important; 
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}
.gallery-track { 
    width: max-content !important; 
    padding: 0 5vw !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    will-change: transform !important;
}
.gallery-item { 
    width: 85vw !important; 
    height: 60vh !important;
    flex-shrink: 0 !important;
}

    /* 4. Pausar animaciones infinitas cuando no son visibles */
    .marquee-track {
        animation-duration: 60s; /* Más lento = menos repaints */
    }
    .feed-track {
        animation-duration: 40s;
    }

    /* 5. Simplificar floating del iPhone (sin 3D transforms) */
    .iphone-mockup {
        transform-style: flat !important;
    }
    .floating-anim {
        animation: floatPhoneMobile 6s ease-in-out infinite !important;
    }
    @keyframes floatPhoneMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* 6. Desactivar perspective en social-visual-col */
    .social-visual-col {
        perspective: none !important;
    }

    /* 7. Reducir el blur de las cards en móvil */
    .card-caption {
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    .screen-header {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    /* 8. Pricing: desactivar sticky en móvil (ya lo tenías, solo confirmamos) */
    .pricing-layout-correct {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-sticky-left { 
        position: relative; 
        top: 0; 
    }
    .pricing-scroll-right { 
        padding-top: 20px;
        margin-top: 0;
    }
}

/* =========================================
   OPTIMIZADO: prefers-reduced-motion
   Para usuarios que prefieren menos animación
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track, .feed-track, .floating-anim {
        animation: none !important;
    }
}
.space-simple::after { display: none; }
.price-card { contain: none !important; overflow: visible !important; }