  :root {
    --color-bg: #050505;
    --color-surface: #0F0F0F;
    --color-border: #1C1C1C;
    --color-gold: #D4AF37;
    --color-gold-dim: #B8922A;
    --color-gold-glow: rgba(212,175,55,0.15);
    --color-text: #FAFAFA;
    --color-muted: #888888;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html.lenis { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }
  .lenis.lenis-scrolling iframe { pointer-events: none; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none;
  }

  a { text-decoration: none; color: inherit; }

  /* === CUSTOM CURSOR === */
  #cursor-dot {
    position: fixed; width: 8px; height: 8px;
    background: var(--color-gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  #cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(212,175,55,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
  }
  .cursor-hover #cursor-dot { width: 12px; height: 12px; }
  .cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }

  /* === NAVIGATION === */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    background: rgba(5,5,5,0.85); border-bottom: 1px solid rgba(212,175,55,0.12);
    height: 72px; display: flex; align-items: center;
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between; width: 100%;
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--color-muted); transition: color 0.2s; }
  .nav-links a:hover { color: var(--color-text); }
  
  /* === BUTTONS === */
  .btn-gold {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
    border: none; cursor: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    color: #050505; text-transform: uppercase;
  }
  .btn-gold:hover { transform: scale(1.02); box-shadow: 0 0 24px rgba(212,175,55,0.4); }
  .btn-outline { background: transparent; border: 1px solid var(--color-gold); color: var(--color-gold); }
  .btn-outline:hover { background: var(--color-gold-glow); transform: none; box-shadow: none; }

  /* === TYPOGRAPHY === */
  h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
  .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
  .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-gold); opacity: 0.7; }
  
  /* =========================================
     IMMERSIVE SCROLL SECTIONS 
  ========================================= */
  
  /* 1. HERO - THE TELEPORTATION */
  .hero-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80');
    background-size: cover; background-position: center;
    transform: scale(1.1);
    will-change: transform;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.8) 100%);
  }
  .hero-content {
    position: relative; z-index: 10; text-align: center; max-width: 900px; padding: 0 24px;
  }
  .hero-title {
    font-size: clamp(48px, 6vw, 90px); line-height: 1.05; margin-bottom: 24px;
    color: var(--color-text); text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  .hero-title em { font-style: italic; color: var(--color-gold); }
  .hero-subtitle {
    font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.8);
    font-weight: 300; line-height: 1.6; max-width: 600px; margin: 0 auto 40px;
  }
  
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: var(--color-gold); opacity: 0.7;
  }
  .scroll-line { width: 1px; height: 40px; background: rgba(212,175,55,0.3); position: relative; overflow: hidden; }
  .scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--color-gold); animation: scrollDown 2s infinite ease-in-out;
  }
  @keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

  /* 2. NARRATIVE: PHOTOS VS TOURS */
  .narrative-section {
    position: relative; height: 150vh; 
    background: var(--color-bg);
  }
  .narrative-container { 
    height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .narrative-text-box {
    position: absolute; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px;
  }
  .narrative-h2 { font-size: clamp(36px, 4vw, 64px); line-height: 1.1; margin-bottom: 24px; }
  .narrative-p { font-size: 18px; color: var(--color-muted); line-height: 1.7; font-weight: 300; }
  
  .zoom-image-wrapper {
    position: absolute; width: 40vw; height: 50vh;
    border: 1px solid rgba(212,175,55,0.2);
    opacity: 0; transform: scale(0.8); will-change: transform, opacity;
  }
  .zoom-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
  .zoom-overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.5); }

  /* 3. SUPERPOWER 1: VIDEOCALL */
  .feature-split {
    display: flex; height: 100vh; align-items: center;
    background: var(--color-surface); position: relative;
  }
  .feature-content { flex: 1; padding: 0 10%; z-index: 2; }
  .feature-visual { 
    flex: 1; height: 100%; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .feature-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
  
  .mockup-videocall {
    position: absolute; width: 320px; height: 200px;
    background: rgba(10,10,10,0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.3); border-radius: 12px;
    bottom: 10%; right: 10%; display: flex; flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(50px); opacity: 0;
  }
  .mockup-header { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 8px; align-items: center; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: #38A169; }
  .mockup-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; }
  .mockup-body p { font-size: 13px; color: var(--color-muted); }

  /* 4. SUPERPOWER 2: HOTSPOTS */
  .hotspot-section {
    height: 100vh; position: relative; background: var(--color-bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hotspot-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1613490908575-9b2f67664e10?auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.3; filter: grayscale(50%);
  }
  .hotspot-center-text { position: relative; z-index: 10; text-align: center; max-width: 700px; }
  
  .hotspot-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85vw; /* En móvil ocupará casi todo el ancho */
    max-width: 280px; /* En escritorio no crecerá demasiado */
    padding: 20px;
    background: rgba(5,5,5,0.95); /* Un poco más opaco para legibilidad */
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 20; /* Asegura que estén por encima de todo */
  }
  .hotspot-item h4 { font-size: 14px; color: var(--color-gold); margin-bottom: 4px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px;}
  .hotspot-item p { font-size: 12px; color: var(--color-text); line-height: 1.5; font-weight: 300; }
  
  .pulse-ring {
    position: absolute; top: -10px; left: -10px;
    width: 20px; height: 20px; background: var(--color-gold); border-radius: 50%;
    animation: pulse 3s infinite;
  }
  @keyframes pulse { 0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(212,175,55, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(212,175,55, 0); } 100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(212,175,55, 0); } }

  /* 5. TARGET ROI */
  .roi-section { padding: 120px 48px; background: var(--color-surface); }
  .roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
  .roi-card {
    padding: 60px 40px; border: 1px solid rgba(212,175,55,0.1);
    background: rgba(255,255,255,0.02); transition: border-color 0.3s;
  }
  .roi-card:hover { border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.05); }
  .roi-card h3 { font-size: 32px; color: var(--color-gold); margin-bottom: 16px; }
  .roi-card p { font-size: 15px; color: var(--color-muted); line-height: 1.6; }

  /* 6. FLUID CTA */
  .cta-section {
    padding: 160px 24px; text-align: center; background: var(--color-bg);
    position: relative; overflow: hidden;
  }
  .cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-title { font-size: clamp(40px, 5vw, 72px); margin-bottom: 24px; color: var(--color-text); }
  .cta-subtitle { font-size: 18px; color: var(--color-muted); max-width: 600px; margin: 0 auto 48px; }

  /* =========================================
     FOOTER STYLES (Copiados del Main Site)
  ========================================= */
  footer {
    padding: 64px 0 40px; border-top: 1px solid var(--color-border);
    background: var(--color-bg);
  }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
  #web-particles {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
    opacity: 0.75; mix-blend-mode: screen;
  }

  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 56px;
  }
  .footer-logo { margin-bottom: 16px; }
  .footer-logo img { filter: drop-shadow(0 0 0px rgba(212,175,55,0)); transition: filter 0.4s ease; }
  .footer-logo:hover img { filter: drop-shadow(0 0 8px rgba(212,175,55,0.35)); }
  .footer-tagline {
    font-size: 13px; color: var(--color-muted); line-height: 1.6;
    max-width: 280px; margin-bottom: 24px;
  }
  .footer-wa {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--color-gold);
    border: 1px solid rgba(212,175,55,0.2); padding: 8px 16px;
    transition: border-color 0.2s;
  }
  .footer-wa:hover { border-color: var(--color-gold); box-shadow: 0 0 14px rgba(212,175,55,0.15); }
  .footer-col h4 {
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--color-muted); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px; color: var(--color-muted); transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--color-text); }
  .footer-bottom {
    padding-top: 24px; border-top: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 12px; color: var(--color-muted); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 12px; color: var(--color-muted); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--color-text); }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    .feature-split { flex-direction: column; height: auto; }
    .feature-content { padding: 80px 24px; }
    .feature-visual { height: 50vh; width: 100%; }
    .roi-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  }
  
  /* Estilos para el título de perfiles */
.roi-main-title {
    text-align: center;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Ajuste automático para celulares */
@media (max-width: 768px) {
    .roi-main-title {
        font-size: 31px; /* Tamaño reducido para que no se corte */
        margin-bottom: 40px;
        line-height: 1.3;
    }
}
