/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SANLILAS â€” LUXURY DESIGN SYSTEM (Awwwards / Apple / Dior Level)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  /* â•â•â• PALETA CÃLIDA DE LUJO (CERO NEGRO PURO) â•â•â•
     Marfil #F8F5F2 Â· Champagne #D8C4A3 Â· Chocolate #4A2E2B
     Arena #E9DED3 Â· Dorado #C8A46A Â· Negro #151515          */
  --chocolate: #4A2E2B;
  --chocolate-rgb: 74, 46, 43;
  --cream: #F8F5F2;
  --cream-rgb: 248, 245, 242;
  --terracota: #C86D51;
  --terracota-rgb: 200, 109, 81;
  --gold: #C8A46A;
  --gold-rgb: 200, 164, 106;
  --gold-champagne: #D8C4A3;
  --turquesa: #70C1B3;
  --turquesa-rgb: 112, 193, 179;
  --arena: #E9DED3;
  --marfil: #F8F5F2;
  --champagne: #D8C4A3;
  --dorado: #C8A46A;
  --negro: #151515;
  --white: #FFFFFF;

  /* â•â•â• TIPOGRAFÃA EDITORIAL DE ALTA MODA â•â•â• */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', 'Cormorant Garamond', cursive;
  --font-display-soft: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* â•â•â• ESCALA TIPOGRÃFICA RESPONSIVE â•â•â• */
  --text-hero: clamp(4rem, 12vw, 11rem);
  --text-display: clamp(3rem, 7vw, 6.5rem);
  --text-title: clamp(2rem, 4.5vw, 4rem);
  --text-subtitle: clamp(1.4rem, 2.8vw, 2.5rem);
  --text-body-lg: clamp(1.1rem, 1.6vw, 1.4rem);
  --text-body: clamp(0.95rem, 1.1vw, 1.15rem);
  --text-caption: clamp(0.75rem, 0.9vw, 0.9rem);

  /* â•â•â• ESCALA NUMÃ‰RICA LEGACY (compatibilidad con pÃ¡ginas internas) â•â•â• */
  --text-xs: clamp(0.68rem, 0.8vw, 0.78rem);
  --text-sm: clamp(0.8rem, 0.95vw, 0.92rem);
  --text-base: clamp(0.95rem, 1.1vw, 1.15rem);
  --text-lg: clamp(1.1rem, 1.6vw, 1.4rem);
  --text-xl: clamp(1.35rem, 2.1vw, 1.8rem);
  --text-2xl: clamp(1.65rem, 2.7vw, 2.3rem);
  --text-3xl: clamp(2rem, 3.4vw, 2.9rem);
  --text-4xl: clamp(2.5rem, 4.4vw, 3.8rem);
  --text-5xl: clamp(3rem, 5.4vw, 4.8rem);
  --text-6xl: clamp(3.6rem, 6.4vw, 5.8rem);

  /* â•â•â• ESPACIADO Y SECCIONES â•â•â• */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 3.5vw, 3rem);
  --space-lg: clamp(3rem, 5vw, 5rem);
  --space-xl: clamp(5rem, 8vw, 8rem);
  --space-2xl: clamp(8rem, 12vw, 13rem);
  --space-section: clamp(6rem, 10vw, 12rem);

  /* â•â•â• GEOMETRÃA CONTINUA (Apple Superellipses) â•â•â• */
  --radius-32: 32px;
  --radius-48: 48px;
  --radius-64: 64px;
  --radius-96: 96px;
  --radius-full: 999px;

  /* â•â•â• MATERIALES Y LIQUID GLASS â•â•â• */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-bg-dark: rgba(62, 39, 35, 0.55);
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-border-gold: rgba(212, 175, 55, 0.4);
  --glass-blur: blur(32px) saturate(200%);
  --glass-blur-heavy: blur(52px) saturate(220%);
  --glass-shadow: 0 35px 90px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.5);

  /* â•â•â• TRANSICIONES â•â•â• */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* â•â•â• Z-INDEX â•â•â• */
  --z-back: -1;
  --z-base: 1;
  --z-above: 10;
  --z-nav: 100;
  --z-cursor: 999;
  --z-loader: 9999;
}

/* â•â•â• RESET & BASE â•â•â• */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--cream);
  color: var(--chocolate);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
}

/* SelecciÃ³n en dorado */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: var(--chocolate);
}

/* â•â•â• OCULTAR CURSOR DEFAULT EN TODAS LAS PÃGINAS Y TRANSICIONES â•â•â• */
html, body, *, *::before, *::after {
  cursor: none !important;
}

/* â•â•â• CURSOR GLASS MAGNÃ‰TICO LIQUID â•â•â• */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 999999;
  opacity: 1;
  will-change: transform;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--gold), 0 0 20px rgba(212, 175, 55, 0.6);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.25s ease;
}

.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  pointer-events: none;
  z-index: 999998;
  opacity: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(200, 164, 106, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.25);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              background 0.35s ease, 
              box-shadow 0.35s ease, 
              opacity 0.3s ease;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor__glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 999997;
  opacity: 0.85;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(200, 164, 106, 0.05) 55%, transparent 75%);
  border-radius: 50%;
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* Estado Activo en Pantalla */
body.cursor-active .cursor,
body.cursor-active .cursor__ring,
body.cursor-active .cursor__glow {
  opacity: 1;
}

/* Hover Interactivo (PÃ­ldoras, Botones, Enlaces) */
body.cursor--hover .cursor__ring {
  width: 76px;
  height: 76px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.4);
}

body.cursor--hover .cursor__dot {
  width: 12.8px;
  height: 12.8px;
  background: #ffffff;
  box-shadow: 0 0 16px #ffffff, 0 0 25px var(--gold);
}

/* Click Activo (CompresiÃ³n MagnÃ©tica) */
body.cursor--down .cursor__ring {
  width: 37px;
  height: 37px;
  border-color: #ffffff;
  background: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

body.cursor--down .cursor__dot {
  width: 4.8px;
  height: 4.8px;
}

/* Hover de ExploraciÃ³n (Tarjetas e ImÃ¡genes) */
.cursor__explore {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chocolate);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

body.cursor--explore .cursor__explore {
  opacity: 1;
}

body.cursor--explore .cursor__ring {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200, 164, 106, 0.45);
}

body.cursor--explore .cursor__dot {
  opacity: 0;
}

/* Onda expansiva sutil en hover */
.cursor--hover .cursor__ring::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  animation: cursor-wave 0.7s var(--ease-out-expo) infinite;
  pointer-events: none;
}

@keyframes cursor-wave {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Prioridad de hover sobre explore para evitar bloqueos visuales */
body.cursor--hover .cursor__explore {
  opacity: 0 !important;
}

  --z-above: 10;
  --z-nav: 100;
  --z-cursor: 999;
  --z-loader: 9999;
}

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

html {
  font-size: 16px;
  background-color: var(--cream);
  color: var(--chocolate);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
}

/* Selección en dorado */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: var(--chocolate);
}

/* --- OCULTAR CURSOR DEFAULT EN TODAS LAS PÁGINAS Y TRANSICIONES --- */
html, body, *, *::before, *::after {
  cursor: none !important;
}

/* --- CURSOR GLASS MAGNÉTICO LIQUID --- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 999999;
  opacity: 1;
  will-change: transform;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--gold), 0 0 20px rgba(212, 175, 55, 0.6);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.25s ease;
}

.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  pointer-events: none;
  z-index: 999998;
  opacity: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(200, 164, 106, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.25);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              background 0.35s ease, 
              box-shadow 0.35s ease, 
              opacity 0.3s ease;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor__glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 999997;
  opacity: 0.85;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(200, 164, 106, 0.05) 55%, transparent 75%);
  border-radius: 50%;
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* Estado Activo en Pantalla */
body.cursor-active .cursor,
body.cursor-active .cursor__ring,
body.cursor-active .cursor__glow {
  opacity: 1;
}

/* Hover Interactivo (Píldoras, Botones, Enlaces) */
body.cursor--hover .cursor__ring {
  width: 76px;
  height: 76px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.4);
}

body.cursor--hover .cursor__dot {
  width: 12.8px;
  height: 12.8px;
  background: #ffffff;
  box-shadow: 0 0 16px #ffffff, 0 0 25px var(--gold);
}

/* Click Activo (Compresión Magnética) */
body.cursor--down .cursor__ring {
  width: 37px;
  height: 37px;
  border-color: #ffffff;
  background: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

body.cursor--down .cursor__dot {
  width: 4.8px;
  height: 4.8px;
}

/* Hover de Exploración (Tarjetas e Imágenes) */
.cursor__explore {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chocolate);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

body.cursor--explore .cursor__explore {
  opacity: 1;
}

body.cursor--explore .cursor__ring {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200, 164, 106, 0.45);
}

body.cursor--explore .cursor__dot {
  opacity: 0;
}

/* Onda expansiva sutil en hover */
.cursor--hover .cursor__ring::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  animation: cursor-wave 0.7s var(--ease-out-expo) infinite;
  pointer-events: none;
}

@keyframes cursor-wave {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Prioridad de hover sobre explore para evitar bloqueos visuales */
body.cursor--hover .cursor__explore {
  opacity: 0 !important;
}

body.cursor--hover.cursor--explore .cursor__ring {
  width: 76px !important;
  height: 76px !important;
  background: rgba(212, 175, 55, 0.15) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

/* Ocultar cursor en pantallas táctiles y dispositivos móviles */

@media (hover: none), (pointer: coarse), (max-width: 1024px) {
  .cursor,
  .cursor__ring,
  .cursor__glow {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* En dispositivos sin mouse se restaura el cursor nativo */
@media (hover: none), (pointer: coarse) {
  html, body, *, *::before, *::after {
    cursor: auto !important;
  }
  .navbar, .navbar *, a, button, input, textarea, select, [role='button'] {
    cursor: pointer !important;
  }
}

/* Prevenir fragmentaciÃ³n de palabras destacadas o marcas (ej. SANLILAS) en tÃ­tulos */
h1 em, h2 em, h3 em, .hero__title em, .text-display em, .rv-title em, .pj-title em, .st-title em, .mw-title em {
  white-space: nowrap;
  display: inline-block;
}

/* ═══ HERO EDITORIAL DE LUJO — 100vw × 100vh · UN SOLO PROTAGONISTA ═══ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--negro);
}

/* Media cinematográfica: un único video (con imagen como fallback) */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}

/* Auroras / orbs de cristal muy sutiles */
.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.22;
  animation: hero-orb-float 26s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  top: -16vw;
  background: radial-gradient(circle, rgba(216, 196, 163, 0.5) 0%, rgba(200, 164, 106, 0.16) 55%, transparent 80%);
}

.hero__orb--2 {
  width: 38vw;
  height: 38vw;
  right: -10vw;
  bottom: -14vw;
  background: radial-gradient(circle, rgba(216, 196, 163, 0.38) 0%, rgba(112, 193, 179, 0.12) 55%, transparent 80%);
  animation-delay: -13s;
}

/* Partículas doradas (canvas) */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(1.05);
  animation: ken-burns 34s ease-in-out infinite alternate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out-expo);
  will-change: transform;
}

.hero__video.is-ready {
  opacity: 1;
}

/* Overlay premium: degradado transparente, nunca oscurece el video */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 244, 239, 0.15) 0%, rgba(30, 20, 15, 0.35) 100%);
  z-index: 2;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 58%, rgba(15, 10, 8, 0.22) 100%);
  z-index: 3;
}

/* Contenido centrado: la marca como único protagonista */
.hero__content {
  position: relative;
  z-index: 6;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 100%;
  pointer-events: none;
}

.hero__content > * { pointer-events: auto; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 13vw, 10.625rem); /* hasta 170px */
  line-height: 1.04;
  padding-top: 0.05em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--marfil);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 10px 45px rgba(0, 0, 0, 0.4);
  will-change: transform, opacity;
}

/* SubtÃ­tulo: sans-serif, fino, opacidad 80% */
.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.65em;
  margin-right: -0.65em; /* compensa el tracking final */
  background: linear-gradient(90deg, #F2E3C6 0%, #D8C4A3 50%, #E7CEA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-top: 2.1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.hero__tagline {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #F9F3E7 0%, #E7CEA0 45%, #C8A46A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 22px rgba(0, 0, 0, 0.45));
}

.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  color: rgba(248, 245, 242, 0.88);
  max-width: 58ch;
  margin: 0 auto 2.4rem;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 3.2rem;
  flex-wrap: wrap;
}

/* Botones cÃ¡psula superellipse 240 Ã— 58 Liquid Glass */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 58px;
  padding: 0 2.6rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s, border-color 0.55s, background 0.55s;
  will-change: transform;
}

.hero__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-out-expo);
  pointer-events: none;
}

.hero__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.hero__btn:hover::before { left: 130%; }
.hero__btn:hover::after { opacity: 1; }
.hero__btn:hover { transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) translateY(-2px) scale(1.04); }

/* Primario: Liquid Glass Â· blur 30px Â· transparencia 18% Â· glow champagne */
.hero__btn--glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--marfil);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.hero__btn--glass:hover {
  border-color: rgba(216, 196, 163, 0.8);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 60px rgba(200, 164, 106, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* Secundario: solo borde Â· glass */
.hero__btn--line {
  background: transparent;
  border: 1px solid rgba(248, 245, 242, 0.4);
  color: var(--marfil);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero__btn--line:hover {
  border-color: rgba(216, 196, 163, 0.85);
  background: rgba(216, 196, 163, 0.08);
  box-shadow: 0 20px 50px rgba(200, 164, 106, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Indicador de scroll: cÃ¡psula de cristal con esfera descendente (loop) */
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  pointer-events: none;
}

.hero__scroll-capsule {
  width: 46px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, rgba(248, 245, 242, 0.6));
  box-shadow: 0 0 12px rgba(248, 245, 242, 0.65);
  animation: scroll-dot-drop 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-dot-drop {
  0%   { top: 12px;  opacity: 0; }
  15%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { top: 56px;  opacity: 0; }
}

/* TransiciÃ³n lÃ­quida: el cristal se derrite al salir del hero */
.hero__melt {
  position: absolute;
  inset: 0;
  background: var(--cream);
  z-index: 7;
  pointer-events: none;
  clip-path: circle(0% at 50% 118%);
  will-change: clip-path;
}

/* â•â•â• BACKGROUND DINÃMICO AURORA & NOISE â•â•â• */
.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-back);
  overflow: hidden;
  opacity: 0.7;
}

.bg-aurora__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  animation: aurora-float 24s ease-in-out infinite alternate;
}

.bg-aurora__orb--1 {
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(245, 235, 230, 0.85) 0%, rgba(212, 175, 55, 0.18) 50%, transparent 80%);
  top: -20vw;
  right: -10vw;
}

.bg-aurora__orb--2 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(112, 193, 179, 0.18) 0%, rgba(200, 109, 81, 0.12) 50%, transparent 80%);
  bottom: -15vw;
  left: -10vw;
  animation-delay: -12s;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: calc(var(--z-nav) + 1);
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* â•â•â• HEADER EN CÃPSULA FLOTANTE (LIQUID GLASS Â· 90px Â· 88% Â· mÃ¡x 1500px) â•â•â• */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 1500px);
  height: 90px;
  padding: 0 1.6rem 0 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transition: transform 0.6s var(--ease-out-expo), width 0.5s var(--ease-out-expo), height 0.5s, background 0.5s, box-shadow 0.5s;
}

/* ReflexiÃ³n dinÃ¡mica que recorre el cristal */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.2s var(--ease-out-expo);
  pointer-events: none;
}

.navbar:hover::before {
  left: 140%;
}

/* Borde iluminado superior tipo vidrio real */
.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
}

.navbar--scrolled {
  width: min(97%, 1500px);
  height: 74px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 70px rgba(74, 46, 43, 0.16);
}

.navbar--hidden {
  transform: translate(-50%, -180%);
}

/* Estado sobre el hero de video: cristal claro + texto marfil */
.navbar--hero {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.75);
  width: min(97%, 1500px);
  gap: 12px;
}

/* â”€â”€ Layout flex sin solapamiento: links izq Â· logo centrado Â· links der Â· iconos â”€â”€ */
.navbar {
  justify-content: space-between;
  gap: 8px;
}

.navbar__links--left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px, 0.65vw, 10px);
  flex: 1 1 0%;
  min-width: 0;
}

.navbar__links--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 0.65vw, 10px);
  flex: 1 1 0%;
  min-width: 0;
}

.navbar__logo--center {
  position: static !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 clamp(8px, 1vw, 22px);
  width: auto;
  z-index: 2;
}

.navbar--hero .navbar__logo--center {
  margin-left: clamp(8px, 1vw, 22px);
  margin-right: clamp(8px, 1vw, 22px);
}

.navbar--hero .navbar__links--left::after {
  display: none;
}

.navbar--hero .navbar__logo-text {
  font-size: clamp(1rem, 1.15vw + 0.9px, 1.25rem);
  letter-spacing: clamp(0.18em, 0.35vw, 0.28em);
}

.navbar--hero .navbar__logo-text,
.navbar--hero .navbar__link {
  color: var(--chocolate);
  text-shadow: none;
}

.navbar--hero .navbar__links {
  position: static;
  transform: none;
}

.navbar--hero .navbar__cta {
  display: none;
}

/* â”€â”€ Enlaces hero: botones glassmorphism (pill) Â· esmerilados para no translucir el video â”€â”€
   TamaÃ±os fluidos (clamp) para que las 8 pÃ­ldoras + logo + iconos
   quepan SIEMPRE dentro de la cÃ¡psula sin desbordarse */
.navbar--hero .navbar__link {
  padding: clamp(6px, 0.7vw, 10px) clamp(8px, 0.95vw, 14px);
  font-size: clamp(9px, 0.65vw + 0.8px, 12px);
  letter-spacing: clamp(1.4px, 0.13vw, 2px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.5s var(--ease-out-expo), filter 0.45s, background 0.45s, border-color 0.45s, color 0.4s, box-shadow 0.5s var(--ease-out-expo);
  will-change: transform, filter, box-shadow;
}

.navbar--hero .navbar__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  border-radius: inherit;
  transition: left 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  bottom: auto;
  pointer-events: none;
}

/* Hover: la pÃ­ldora se eleva, se ilumina y respira un halo dorado */
.navbar--hero .navbar__link:hover {
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.12) saturate(1.05);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 164, 106, 0.75);
  box-shadow: 0 14px 30px rgba(74, 46, 43, 0.16), 0 0 26px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}

.navbar--hero .navbar__link:hover::after {
  left: 140%;
}

/* Contacto: pill sÃ³lida champagne */
.navbar--hero .navbar__link--solid {
  background: linear-gradient(135deg, rgba(200, 164, 106, 0.5), rgba(216, 196, 163, 0.35));
  border-color: rgba(216, 196, 163, 0.6);
}

.navbar--hero .navbar__link--solid:hover {
  background: linear-gradient(135deg, rgba(216, 196, 163, 0.8), rgba(200, 164, 106, 0.55));
  border-color: rgba(200, 164, 106, 0.85);
  box-shadow: 0 14px 30px rgba(200, 164, 106, 0.35), 0 0 24px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.navbar--hero .navbar__link--solid::after {
  display: none;
}

.navbar--hero.navbar--scrolled .navbar__logo-text,
.navbar--hero.navbar--scrolled .navbar__link {
  color: var(--chocolate);
  text-shadow: none;
}

.navbar--hero.navbar--scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.85);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--chocolate);
  flex-shrink: 0;
  width: 160px;
}

.navbar__logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--chocolate);
  transition: color 0.5s;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.65vw, 10px);
  position: static;
  transform: none;
  white-space: nowrap;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--chocolate);
  text-decoration: none;
  position: relative;
  opacity: 0.9;
  white-space: nowrap;
  transition: opacity 0.3s, color 0.4s;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.navbar__link:hover {
  opacity: 1;
}

.navbar__link:hover::after {
  width: 100%;
}

/* BotÃ³n Contactar â€” 190 Ã— 54 Liquid Glass Gold */
.navbar__cta {
  flex-shrink: 0;
}

.navbar__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 54px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(200, 164, 106, 0.35), rgba(200, 109, 81, 0.22));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(216, 196, 163, 0.55);
  color: var(--marfil);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, border-color 0.5s, background 0.5s;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.navbar__contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-out-expo);
  pointer-events: none;
}

.navbar__contact-btn:hover {
  transform: scale(1.04);
  border-color: rgba(248, 245, 242, 0.85);
  background: linear-gradient(135deg, rgba(216, 196, 163, 0.5), rgba(200, 164, 106, 0.3));
  box-shadow: 0 22px 55px rgba(200, 164, 106, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.navbar__contact-btn:hover::before {
  left: 130%;
}

/* CTA dentro del navbar en pÃ¡ginas secundarias */
.navbar .btn-glass {
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  border-radius: var(--radius-full);
  color: var(--marfil);
}

.navbar__menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar__menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.navbar--hero .navbar__menu-btn { border-color: rgba(200, 164, 106, 0.5); }
.navbar--hero .navbar__menu-btn span { background: var(--chocolate); }

/* MenÃº mÃ³vil fullscreen glass */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(21, 21, 21, 0.65);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--marfil);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover { color: var(--champagne); }

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(9) { transition-delay: 0.45s; }

.mobile-menu__close {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--marfil);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}

.mobile-menu__close:hover {
  transform: rotate(90deg) scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}

/* â•â•â• BOTONES LIQUID GLASS CÃPSULA â•â•â• */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 2.8rem;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--chocolate);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, border-color 0.5s, background 0.5s;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.85s var(--ease-out-expo);
}

.btn-glass:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 22px 55px rgba(212, 175, 55, 0.3);
}

.btn-glass:hover::before {
  left: 100%;
}

.btn-glass--gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(200, 109, 81, 0.18));
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--chocolate);
}

.btn-glass--dark {
  background: rgba(62, 39, 35, 0.88);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-glass--dark:hover {
  background: var(--chocolate);
  border-color: var(--gold);
  color: var(--gold-champagne);
}

/* â•â•â• TIPOGRAFÃA EDITORIAL â•â•â• */
.text-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 0.95;
  text-transform: uppercase;
}

.text-gold { color: var(--gold); }
.text-body-lg { font-size: var(--text-body-lg); }

/* Variantes de reveal (compatibilidad con pÃ¡ginas internas) */
.reveal--right { transform-origin: left center; }
.reveal--left { transform-origin: right center; }

.text-display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.text-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracota);
}

.text-caption {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}

/* â•â•â• TARJETAS LIQUID GLASS CON SUPERELLIPSES â•â•â• */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-48);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s, border-color 0.6s;
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--glass-border-gold);
  box-shadow: 0 40px 100px rgba(212, 175, 55, 0.2);
}

/* â•â•â• SECCIÃ“N DE PRINCIPIOS (PANTALLA 02) â•â•â• */
.feature-section {
  position: relative;
  padding: var(--space-section) var(--space-lg);
  background: var(--cream);
  text-align: center;
  z-index: 2;
}

.feature-grid {
  max-width: 1400px;
  margin: var(--space-xl) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-48);
  padding: 2.4rem;
  box-shadow: 0 30px 70px rgba(74, 46, 43, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s, border-color 0.6s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 106, 0.45);
  box-shadow: 0 44px 90px rgba(74, 46, 43, 0.14), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200, 164, 106, 0.14);
  border: 1px solid rgba(200, 164, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 0.7rem;
}

.feature-card__desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(74, 46, 43, 0.65);
}

.feature-card__preview {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.75;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(74, 46, 43, 0.08);
}

/* â•â•â• MANIFIESTO EDITORIAL (PANTALLA 03 â€” BLUR REVEAL PALABRA POR PALABRA) â•â•â• */
.scene-manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-section) var(--space-lg);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 196, 163, 0.3) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
  z-index: 2;
}

.manifesto__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  line-height: 1.12;
  color: var(--chocolate);
  max-width: 1300px;
  margin: var(--space-lg) auto 0;
  letter-spacing: 0.005em;
}

.manifesto__word {
  display: inline-block;
  opacity: 0.14;
  filter: blur(9px);
  will-change: opacity, filter;
}

.manifesto__em {
  font-style: italic;
  color: var(--terracota);
}

/* ImÃ¡genes enormes que emergen detrÃ¡s del texto */
.manifesto__img {
  position: absolute;
  border-radius: var(--radius-64);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(74, 46, 43, 0.22);
  z-index: -1;
  opacity: 0;
  will-change: transform, opacity;
}

.manifesto__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manifesto__img--1 {
  width: min(30vw, 480px);
  aspect-ratio: 3 / 4;
  left: 4vw;
  top: 18%;
}

.manifesto__img--2 {
  width: min(26vw, 420px);
  aspect-ratio: 4 / 5;
  right: 5vw;
  bottom: 12%;
}

/* â•â•â• COLECCIONES (PANTALLA 04 â€” TARJETAS GIGANTES DE CRISTAL) â•â•â• */
.scene-collections {
  position: relative;
  padding: var(--space-section) var(--space-lg);
  background: var(--cream);
  z-index: 2;
}

.scene-collections__head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.collection-card {
  position: relative;
  height: 80vh;
  min-height: 580px;
  max-width: 1500px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-64);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 50px 120px rgba(74, 46, 43, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: border-color 0.7s, box-shadow 0.7s;
  will-change: transform;
}

.collection-card:last-child {
  margin-bottom: 0;
}

.collection-card:hover {
  border-color: rgba(216, 196, 163, 0.65);
  box-shadow: 0 60px 140px rgba(74, 46, 43, 0.32), 0 0 0 1px rgba(216, 196, 163, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.collection-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.6s var(--ease-out-expo);
  will-change: transform;
}

.collection-card:hover .collection-card__media img {
  transform: scale(1.07);
}

/* Cristal lÃ­quido sobre la foto */
.collection-card__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg,
    rgba(21, 21, 21, 0.08) 0%,
    rgba(21, 21, 21, 0.32) 55%,
    rgba(21, 21, 21, 0.62) 100%);
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.8s, background 0.8s;
}

.collection-card:hover .collection-card__glass {
  background: linear-gradient(200deg,
    rgba(21, 21, 21, 0.05) 0%,
    rgba(21, 21, 21, 0.22) 55%,
    rgba(21, 21, 21, 0.5) 100%);
  backdrop-filter: blur(2px) saturate(140%);
}

/* Panel de informaciÃ³n en cristal */
.collection-card__info {
  position: relative;
  z-index: 2;
  margin: clamp(1.6rem, 3vw, 3.2rem);
  padding: clamp(1.6rem, 2.4vw, 2.6rem) clamp(1.8rem, 2.8vw, 3rem);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-48);
  max-width: 560px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transform: translateY(0);
  transition: transform 0.7s var(--ease-out-expo), box-shadow 0.7s;
}

.collection-card:hover .collection-card__info {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 50px rgba(200, 164, 106, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* Alternancia: info a la derecha */
.collection-card--alt .collection-card__info {
  margin-left: auto;
}

.collection-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.85;
  display: block;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.collection-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marfil);
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.collection-card__desc {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 245, 242, 0.82);
  max-width: 440px;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.collection-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.9rem;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--marfil);
  text-decoration: none;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, border-color 0.5s, background 0.5s;
}

.collection-card__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-out-expo);
}

.collection-card__link:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(216, 196, 163, 0.8);
  background: rgba(200, 164, 106, 0.3);
  box-shadow: 0 16px 40px rgba(200, 164, 106, 0.35);
}

.collection-card__link:hover::before { left: 130%; }

/* â•â•â• STORYTELLING (PANTALLA 05 â€” HILOS QUE SE TEJEN EN SCROLL) â•â•â• */
.scene-story {
  position: relative;
  background: var(--chocolate);
  color: var(--cream);
  padding: var(--space-section) var(--space-lg);
  overflow: hidden;
  z-index: 2;
}

.scene-story__head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.story__svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(90vw, 1300px);
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.story__path {
  fill: none;
  stroke: rgba(216, 196, 163, 0.6);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
}

.story__timeline {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.story__node {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.story__node--alt {
  flex-direction: row-reverse;
}

.story__node-media {
  flex: 0 0 clamp(240px, 32vw, 400px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-48);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(216, 196, 163, 0.3);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.story__node-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo);
}

.story__node:hover .story__node-media img {
  transform: scale(1.06);
}

.story__node-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(21, 21, 21, 0.45) 100%);
}

.story__node-content {
  flex: 1;
}

.story__node-year {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.5rem;
}

.story__node-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--marfil);
  margin-bottom: 0.7rem;
}

.story__node-text {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 245, 242, 0.65);
  max-width: 480px;
}

/* â•â•â• PRODUCTOS (PANTALLA 06 â€” TARJETAS FLOTANTES DE CRISTAL) â•â•â• */
.scene-products {
  position: relative;
  padding: var(--space-section) var(--space-lg);
  background:
    radial-gradient(ellipse at 85% 10%, rgba(216, 196, 163, 0.22) 0%, transparent 55%),
    var(--arena);
  z-index: 2;
}

.scene-products__head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.products__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  max-width: 1400px;
  margin: 0 auto;
}
.products__empty{width:100%;text-align:center;padding:3rem 1rem;color:rgba(74,46,43,.5);font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-style:italic}
.products__ph{position:absolute;inset:0;display:grid;place-items:center;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1rem;color:rgba(74,46,43,.5);text-align:center;padding:1rem}
.bsl__empty,.look-item__empty{width:100%;text-align:center;padding:2rem 1rem;color:rgba(74,46,43,.5);font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-style:italic}
.look-item__thumb{position:relative;width:100px;height:100px;border-radius:18px;overflow:hidden;flex:0 0 auto;background:linear-gradient(135deg,#F2E9DB,#DCC9A6)}
.look-item__thumb img{width:100%;height:100%;object-fit:cover}
.look-item__ph{position:absolute;inset:0;display:grid;place-items:center;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.7rem;color:rgba(74,46,43,.5);text-align:center;padding:.3rem}
}

.product-card {
  width: clamp(260px, 26vw, 340px);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-48);
  padding: 0.9rem 0.9rem 1.4rem;
  box-shadow: 0 30px 70px rgba(74, 46, 43, 0.14), inset 0 1px 1px rgba(255, 255, 255, 1);
  transition: box-shadow 0.6s, border-color 0.6s;
  will-change: transform;
}

/* LevitaciÃ³n: cada tarjeta flota a distinta altura */
.product-card:nth-child(2) { margin-top: 4.5rem; }
.product-card:nth-child(4) { margin-top: 4.5rem; }

.product-card:hover {
  border-color: rgba(200, 164, 106, 0.55);
  box-shadow: 0 50px 110px rgba(74, 46, 43, 0.24), 0 0 60px rgba(200, 164, 106, 0.16), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.product-card__media {
  border-radius: var(--radius-32);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo), filter 0.8s;
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.4rem 0.9rem;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--chocolate);
  background: rgba(248, 245, 242, 0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
}

.product-card__meta {
  padding: 1.3rem 0.9rem 0.2rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 0.2rem;
}

.product-card__sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(74, 46, 43, 0.55);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.4s var(--ease-out-expo), color 0.3s;
}

.product-card__link:hover {
  gap: 0.9rem;
  color: var(--terracota);
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* â•â•â• LOADER CINEMÃTICO GOTA & CRISTAL â•â•â• */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loader__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--chocolate);
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--gold) 50%, var(--terracota) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite alternate;
}

.loader__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-body-lg);
  color: rgba(62, 39, 35, 0.65);
  margin-top: 1rem;
  letter-spacing: 0.1em;
}

/* â•â•â• SEPARADORES EDITORIALES â•â•â• */
.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-md) auto;
}

.divider--wide {
  width: 160px;
}

.divider--left {
  margin-left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* â•â•â• FOOTER EDITORIAL DE LUJO â•â•â• */
.footer {
  background: var(--chocolate);
  color: var(--cream);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.footer__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-body-lg);
  color: var(--gold-champagne);
}

.footer__col-title {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  color: rgba(245, 235, 230, 0.75);
  text-decoration: none;
  font-size: var(--text-body);
  font-weight: 300;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--gold);
}

/* â•â•â• FLOATING WHATSAPP CAPSULE â•â•â• */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.6rem;
  background: var(--white);
  color: #111111;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #25D366;
}

.footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-caption);
  color: rgba(245, 235, 230, 0.45);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-elastic);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.15);
}

/* â•â•â• RESPONSIVE â•â•â• */
@media (max-width: 1460px) {
  .navbar--hero, .navbar--hero.navbar--capsule, .navbar--scrolled { width: min(98%, 1500px); }
}

@media (max-width: 1400px) {
  .navbar__link {
    padding: 5px 8px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .navbar__logo-text {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 1180px) {
  .navbar { height: 74px; padding: 0 1.2rem; }
  .navbar__links--left,
  .navbar__links--right,
  .navbar__links { display: none !important; }
  .navbar__cta { display: none; }
  .navbar__menu-btn { display: flex; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); }
  .navbar__logo--center { margin-left: 0; }
  .navbar__logo img { height: 36px; }
  .hero__title { letter-spacing: 0.05em; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .navbar { top: 14px; width: 92%; height: 64px; padding: 0 1rem; }
  .navbar--scrolled { height: 60px; }
  .navbar__logo img { height: 30px; }
  .navbar__logo-text { font-size: 0.95rem; letter-spacing: 0.18em; }
  .navbar__icons { gap: 2px; }
  .navbar__contact-btn { display: none; }
  .hero__subtitle { letter-spacing: 0.32em; margin-right: -0.32em; font-size: 9px; }
  .hero__actions { gap: 16px; }
  .hero__btn { min-width: 220px; height: 58px; }
  .hero__scroll { bottom: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER EN CÃPSULA (Colecciones + pÃ¡ginas internas): logo centrado
   8 pÃ­ldoras glass Â· iconos Buscar/Perfil/Bolsa Â· texto cacao
   Debe ir AL FINAL para vencer los estilos de .navbar--hero
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar--capsule {
  height: 80px;
  width: min(97%, 1500px);
  padding: 0 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(45px) saturate(200%);
  -webkit-backdrop-filter: blur(45px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.75);
}

/* PÃ­ldoras esmeriladas: no dejan traslucir el contenido de la pÃ¡gina */
.navbar--capsule .navbar__link {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar--capsule .navbar__link:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 164, 106, 0.75);
  box-shadow: 0 14px 30px rgba(74, 46, 43, 0.16), 0 0 26px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}

/* Contacto: pÃ­ldora dorada sÃ³lida sobre cristal claro */
.navbar--capsule .navbar__link--solid {
  background: linear-gradient(135deg, rgba(200, 164, 106, 0.55), rgba(216, 196, 163, 0.4));
  border-color: rgba(216, 196, 163, 0.65);
}

.navbar--capsule .navbar__link--solid:hover {
  background: linear-gradient(135deg, rgba(216, 196, 163, 0.8), rgba(200, 164, 106, 0.55));
  border-color: rgba(200, 164, 106, 0.85);
  box-shadow: 0 14px 30px rgba(200, 164, 106, 0.35), 0 0 24px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* Compacto para que 8 pills + logo + iconos quepan sin solaparse */
.navbar--capsule .navbar__links { gap: 6px; }
.navbar--capsule .navbar__link {
  padding: clamp(6px, 0.7vw, 10px) clamp(8px, 0.95vw, 14px);
  font-size: clamp(9px, 0.65vw + 0.8px, 12px);
  letter-spacing: clamp(1.4px, 0.13vw, 2px);
}
.navbar--capsule .navbar__logo { gap: 0.7rem; }
.navbar--capsule .navbar__logo img { height: 34px; }
.navbar--capsule .navbar__logo-text { font-size: 1.15rem; letter-spacing: 0.26em; }

.navbar--capsule .navbar__logo-text,
.navbar--capsule .navbar__link {
  color: var(--chocolate);
  text-shadow: none;
}

.navbar--capsule .navbar__menu-btn {
  border-color: rgba(200, 164, 106, 0.5);
}

.navbar--capsule .navbar__menu-btn span {
  background: var(--chocolate);
}

.navbar--capsule.navbar--scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Estado activo de la pÃ¡gina actual */
.navbar--capsule .navbar__link.is-current {
  background: rgba(200, 164, 106, 0.55);
  border-color: rgba(200, 164, 106, 0.7);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Iconos: Buscar Â· Perfil Â· Bolsa */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.navbar--capsule .navbar__icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--chocolate);
  box-shadow: 0 8px 22px rgba(74, 46, 43, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s, background 0.45s, border-color 0.45s, color 0.45s;
  will-change: transform;
}

.navbar--capsule .navbar__icon-btn:hover {
  transform: scale(1.12) translateY(-2px);
  background: rgba(216, 196, 163, 0.4);
  border-color: rgba(200, 164, 106, 0.6);
  box-shadow: 0 14px 34px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  color: var(--chocolate);
}

@media (max-width: 1300px) {
  .navbar--capsule { height: 76px; }
}

@media (max-width: 1200px) {
  .navbar__icons { display: none; }
}

/* â”€â”€ Iconos de la barra hero: Buscar Â· Favoritos Â· Cuenta Â· Bolsa â”€â”€
   Cristal esmerilado: no transluce el contenido del hero */
.navbar--hero .navbar__icons {
  gap: 6px;
}

.navbar--hero .navbar__icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--chocolate);
  box-shadow: 0 8px 22px rgba(74, 46, 43, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.45s var(--ease-out-expo), background 0.45s, border-color 0.45s, color 0.4s, box-shadow 0.45s;
  will-change: transform;
}

.navbar--hero .navbar__icon-btn:hover {
  transform: scale(1.12) translateY(-2px);
  background: rgba(216, 196, 163, 0.4);
  border-color: rgba(200, 164, 106, 0.6);
  color: var(--chocolate);
  box-shadow: 0 14px 34px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.navbar--hero.navbar--scrolled .navbar__icon-btn {
  color: var(--chocolate);
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 22px rgba(74, 46, 43, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR UNIFICADO Â· Liquid Glass Â· Todas las pÃ¡ginas
   Reemplaza navbar--hero / navbar--capsule por un solo diseÃ±o premium
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1500px);
  height: 84px;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(44px) saturate(190%);
  -webkit-backdrop-filter: blur(44px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: transform 0.6s var(--ease-out-expo), width 0.5s var(--ease-out-expo), height 0.5s, background 0.5s, box-shadow 0.5s, border-color 0.5s;
}

/* ReflexiÃ³n dinÃ¡mica */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-18deg);
  transition: left 1.2s var(--ease-out-expo);
  pointer-events: none;
}

.navbar:hover::before {
  left: 140%;
}

/* Borde iluminado superior */
.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
}

.navbar--scrolled {
  width: min(98%, 1500px);
  height: 68px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(50px) saturate(210%);
  -webkit-backdrop-filter: blur(50px) saturate(210%);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(74, 46, 43, 0.14);
}

.navbar--hidden {
  transform: translate(-50%, -180%);
}

/* Layout */
.navbar__links--left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px, 0.65vw, 10px);
  flex: 1 1 0%;
  min-width: 0;
}

.navbar__links--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 0.65vw, 10px);
  flex: 1 1 0%;
  min-width: 0;
}

.navbar__logo--center {
  position: static !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 clamp(8px, 1vw, 22px);
  width: auto;
  z-index: 2;
  text-decoration: none;
  color: var(--chocolate);
}

.navbar__logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--chocolate);
  transition: color 0.5s;
}

/* PÃ­ldoras glass Â· enlaces */
.navbar__link {
  padding: clamp(6px, 0.7vw, 10px) clamp(8px, 0.95vw, 14px);
  font-size: clamp(9px, 0.65vw + 0.8px, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: clamp(1.4px, 0.13vw, 2px);
  color: var(--chocolate);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.5s var(--ease-out-expo), filter 0.45s, background 0.45s, border-color 0.45s, color 0.4s, box-shadow 0.5s var(--ease-out-expo);
  will-change: transform, filter, box-shadow;
}

.navbar__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  border-radius: inherit;
  transition: left 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  pointer-events: none;
}

.navbar__link:hover {
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.12) saturate(1.05);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(200, 164, 106, 0.75);
  box-shadow: 0 14px 30px rgba(74, 46, 43, 0.16), 0 0 26px rgba(200, 164, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.85);
}

.navbar__link:hover::after {
  left: 140%;
}

/* Estado activo Â· pÃ¡gina actual */
.navbar__link.is-current {
  background: linear-gradient(135deg, rgba(200, 166, 106, 0.6), rgba(232, 212, 178, 0.5));
  border-color: rgba(200, 166, 106, 0.8);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7), 0 8px 24px rgba(200, 166, 106, 0.25);
  color: var(--chocolate);
}

/* Contacto Â· pill dorada */
.navbar__link--solid {
  background: linear-gradient(135deg, rgba(200, 166, 106, 0.55), rgba(216, 196, 163, 0.4));
  border-color: rgba(216, 196, 163, 0.65);
}

.navbar__link--solid:hover {
  background: linear-gradient(135deg, rgba(216, 196, 163, 0.8), rgba(200, 166, 106, 0.55));
  border-color: rgba(200, 166, 106, 0.85);
  box-shadow: 0 14px 30px rgba(200, 166, 106, 0.35), 0 0 24px rgba(200, 166, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* Iconos */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.navbar__icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--chocolate);
  box-shadow: 0 8px 22px rgba(74, 46, 43, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s, background 0.45s, border-color 0.45s, color 0.45s;
  will-change: transform;
  text-decoration: none;
}

.navbar__icon-btn:hover {
  transform: scale(1.12) translateY(-2px);
  background: rgba(216, 196, 163, 0.4);
  border-color: rgba(200, 166, 106, 0.6);
  box-shadow: 0 14px 34px rgba(200, 166, 106, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  color: var(--chocolate);
}

/* MenÃº mÃ³vil */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(248, 245, 241, 0.95);
  backdrop-filter: blur(50px) saturate(160%);
  -webkit-backdrop-filter: blur(50px) saturate(160%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(8) { transition-delay: 0.4s; }

.mobile-menu__close {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(74, 46, 43, 0.15);
  background: rgba(255, 255, 255, 0.6);
  color: var(--chocolate);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}

.mobile-menu__close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.9);
}

/* BotÃ³n hamburguesa */
.navbar__menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar__menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

/* Responsive */
@media (max-width: 1460px) {
  .navbar, .navbar--scrolled { width: min(98%, 1500px); }
}

@media (max-width: 1400px) {
  .navbar__link {
    padding: 5px 8px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .navbar__logo-text {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 1180px) {
  .navbar { height: 74px; padding: 0 1.2rem; }
  .navbar__links--left,
  .navbar__links--right { display: none !important; }
  .navbar__icons { display: none !important; }
  .navbar__menu-btn { display: flex; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); }
  .navbar__logo--center { margin-left: 0; }
  .navbar__logo img { height: 34px; }
}

@media (max-width: 640px) {
  .navbar { top: 14px; width: 94%; height: 64px; padding: 0 1rem; }
  .navbar--scrolled { height: 58px; }
  .navbar__logo img { height: 28px; }
  .navbar__logo-text { font-size: 0.9rem; letter-spacing: 0.16em; }
}
