/* =========================================================
   Aqualaf Theme — Compiled CSS
   Source: assets/scss/main.scss
   Build: sass assets/scss/main.scss assets/css/main.css
   ========================================================= */

/* ── 1. Design Tokens — Paleta Aqualaf ──────────────────── */
:root {
  --c-bg: #ffffff;
  --c-bg-dark: #0a0f14;
  --c-text: #0a0f14;
  --c-text-inv: #ffffff;
  --c-text-muted: #8fa3b0;
  --c-border: #d8e8f0;
  /* Paleta de marca */
  --c-accent:       #0991C9;   /* Azul principal */
  --c-accent-dark:  #096484;   /* Azul oscuro */
  --c-accent-light: #4fb8e8;   /* Hover / tinte */
  --c-surface:      #EEF8FE;   /* Fondo suave azulado */
  /* Aliases legacy — mantienen compatibilidad */
  --c-gold:         #0991C9;
  --c-gold-light:   #4fb8e8;
  --font-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: clamp(0.688rem, 0.6rem + 0.3vw, 0.75rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 0.938rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.063rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --text-5xl: clamp(3rem, 2.2rem + 4vw, 6rem);
  --text-display: clamp(4rem, 3rem + 6vw, 9rem);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;
  --space-24: 12rem;
  --space-32: 16rem;
  --container-sm: 640px;
  --container-md: 960px;
  --container: 1280px;
  --container-wide: 1520px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.18);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out: cubic-bezier(0, 0.55, 0.45, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.5s;
  --dur-slow: 0.8s;
  --dur-slower: 1.2s;
  --z-below: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-floating: 100;
  --z-overlay: 500;
  --z-modal: 800;
  --z-loader: 900;
  --z-cursor: 1000;
}

/* ── 2. Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: auto; overflow-x: hidden; scrollbar-gutter: stable; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; background-color: var(--c-bg); color: var(--c-text); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; }
img { height: auto; }
::selection { background: #0991C9; color: #ffffff; }

/* ── 3. Typography ─────────────────────────────────────── */
body { font-family: var(--font-sans); font-size: var(--text-base); font-weight: 300; line-height: 1.65; letter-spacing: 0.01em; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--text-5xl); letter-spacing: -0.03em; }
h2, .h2 { font-size: var(--text-4xl); letter-spacing: -0.025em; }
h3, .h3 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h4, .h4 { font-size: var(--text-2xl); }
h5, .h5 { font-size: var(--text-xl); font-weight: 400; }
h6, .h6 { font-size: var(--text-lg); font-weight: 400; }
.text-display { font-family: var(--font-display); font-size: var(--text-display); font-weight: 300; line-height: 0.95; letter-spacing: -0.04em; }
.text-hero { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; }
.label, .overline { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-text-muted); }
.label-gold { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.lead { font-size: var(--text-xl); font-weight: 300; line-height: 1.5; color: var(--c-text-muted); max-width: 52ch; }
.text-muted { color: var(--c-text-muted); }
.text-gold { color: var(--c-gold); }
.text-white { color: var(--c-text-inv); }
em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
p { max-width: 68ch; }
p + p { margin-top: var(--space-3); }
.split-word { overflow: hidden; display: inline-block; }
.split-char { display: inline-block; will-change: transform, opacity; }

/* ── 4. Layout ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--sm { max-width: var(--container-sm); }
.container--md { max-width: var(--container-md); }
.container--wide { max-width: var(--container-wide); }
.container--full { max-width: none; }
.section { padding-block: clamp(4rem, 10vw, 10rem); }
.section--sm { padding-block: clamp(3rem, 6vw, 6rem); }
.section--lg { padding-block: clamp(6rem, 14vw, 14rem); }
.section--hero { padding-block: 0; }
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.ratio { position: relative; overflow: hidden; }
.ratio img, .ratio video, .ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ratio--square { aspect-ratio: 1/1; }
.ratio--landscape { aspect-ratio: 16/9; }
.ratio--cinematic { aspect-ratio: 21/9; }
.ratio--portrait { aspect-ratio: 3/4; }
.ratio--tall { aspect-ratio: 2/3; }
.ratio--hero { aspect-ratio: 16/7; }
.full-screen { width: 100%; height: 100dvh; min-height: 600px; position: relative; overflow: hidden; }
.clip { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.divider { width: 100%; height: 1px; background: var(--c-border); margin-block: var(--space-8); }
.divider--gold { background: var(--c-gold); width: 40px; }
#barba-wrapper { overflow-x: hidden; }
[data-barba="container"] { width: 100%; }

/* ── 5. Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 14px 32px; font-family: var(--font-sans); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; overflow: hidden; cursor: none;
  transition: color var(--dur-base) var(--ease-smooth), background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth);
}
.btn::before { content: ''; position: absolute; inset: 0; transform: scaleY(0); transform-origin: bottom; transition: transform var(--dur-base) var(--ease-expo); z-index: 0; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-expo); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover::before { transform: scaleY(1); }
.btn--primary { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.4); }
.btn--primary::before { background: #ffffff; }
.btn--primary:hover { color: #0a0f14; border-color: #ffffff; }
.btn--dark { background: #0a0f14; color: #ffffff; border: 1px solid #0a0f14; }
.btn--dark::before { background: var(--c-gold); }
.btn--dark:hover { border-color: var(--c-gold); }
.btn--gold { background: var(--c-gold); color: #ffffff; border: 1px solid var(--c-gold); }
.btn--gold::before { background: #0a0f14; }
.btn--gold:hover { border-color: #0a0f14; }
.btn--ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn--ghost::before { background: var(--c-text); }
.btn--ghost:hover { color: #ffffff; border-color: var(--c-text); }
.btn--icon { padding: 12px; border-radius: var(--radius-full); width: 48px; height: 48px; justify-content: center; }

/* ── 6. Custom Cursor ──────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}
.cursor { position: fixed; z-index: var(--z-cursor); pointer-events: none; top: 0; left: 0; will-change: transform; }
.cursor__ring { position: absolute; top: -20px; left: -20px; width: 40px; height: 40px; border: 1px solid rgba(10,15,20,0.4); border-radius: var(--radius-full); transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), top 0.4s var(--ease-expo), left 0.4s var(--ease-expo), border-color 0.25s var(--ease-smooth), opacity 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth); will-change: transform; }
.cursor__dot { position: absolute; top: -3px; left: -3px; width: 6px; height: 6px; background: #0a0f14; border-radius: var(--radius-full); transition: transform 0.15s var(--ease-smooth), background 0.15s var(--ease-smooth), opacity 0.15s var(--ease-smooth); }
.cursor__label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; white-space: nowrap; opacity: 0; transition: opacity 0.2s var(--ease-smooth); pointer-events: none; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; top: -32px; left: -32px; background: rgba(10,15,20,0.04); }
.cursor.is-hover .cursor__dot { transform: scale(0.5); }
.cursor.is-link .cursor__ring { width: 56px; height: 56px; top: -28px; left: -28px; background: #0a0f14; border-color: #0a0f14; }
.cursor.is-link .cursor__dot { opacity: 0; }
.cursor.is-link .cursor__label { opacity: 1; }
.cursor.is-media .cursor__ring { width: 80px; height: 80px; top: -40px; left: -40px; background: var(--c-gold); border-color: var(--c-gold); }
.cursor.is-media .cursor__dot { opacity: 0; }
.cursor.is-media .cursor__label { opacity: 1; }
.cursor.is-hidden .cursor__ring { opacity: 0; transform: scale(0.5); }
.cursor.is-hidden .cursor__dot { opacity: 0; }
.cursor.is-light .cursor__ring { border-color: rgba(255,255,255,0.4); }
.cursor.is-light .cursor__dot { background: #ffffff; }

/* ── 7. Loader ─────────────────────────────────────────── */
.loader { position: fixed; inset: 0; z-index: var(--z-loader); display: flex; align-items: center; justify-content: center; pointer-events: all; overflow: hidden; }
.loader__panel { position: absolute; top: 0; bottom: 0; width: 50%; background: #0a0f14; will-change: transform; }
.loader__panel--left { left: 0; }
.loader__panel--right { right: 0; }
.loader__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-5); }
.loader__logo { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: #ffffff; opacity: 0; }
.loader__line { width: 80px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.loader__line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--c-gold); animation: loaderLine 1.2s var(--ease-expo) forwards; animation-delay: 0.3s; }
.loader__progress { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); opacity: 0; min-width: 3ch; text-align: center; }
.loader.is-loaded { pointer-events: none; }
@keyframes loaderLine { to { left: 0; } }
.page-transition { position: fixed; inset: 0; z-index: var(--z-loader); pointer-events: none; overflow: hidden; display: none; }
.page-transition__bar { position: absolute; inset: 0; background: #0a0f14; transform: scaleY(0); transform-origin: bottom; will-change: transform; }

/* ── 8. Header ─────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-floating); padding-block: var(--space-3); transition: background var(--dur-slow) var(--ease-smooth), padding var(--dur-base) var(--ease-smooth), backdrop-filter var(--dur-slow) var(--ease-smooth); }
.site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,15,20,0.5) 0%, rgba(10,15,20,0) 100%); opacity: 1; transition: opacity var(--dur-slow) var(--ease-smooth); pointer-events: none; }
.site-header.is-scrolled { padding-block: var(--space-2); background: rgba(255,255,255,0.92); border-bottom-color: #d8e8f0; backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border-bottom: 1px solid var(--c-border); }
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .primary-nav a { color: var(--c-text); }
.site-header.is-scrolled .nav-link::after,
.site-header.is-scrolled .primary-nav a::after { background: var(--c-text); }
.site-header.is-scrolled .header-actions__icon { color: var(--c-text); }
.site-header.is-dark { background: rgba(10,15,20,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-header.is-dark .site-header__logo,
.site-header.is-dark .nav-link,
.site-header.is-dark .primary-nav a,
.site-header.is-dark .header-actions__icon { color: #ffffff; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; }
.site-header__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; transition: color var(--dur-base) var(--ease-smooth), opacity var(--dur-base) var(--ease-smooth); flex-shrink: 0; }
.site-header__logo:hover { opacity: 0.7; }
.site-header__logo img { height: 36px; width: auto; }
.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; }
}
/* WP outputs <ul><li><a> — make the ul itself flex */
.primary-nav ul { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.primary-nav li { position: relative; display: block; }
/* Apply nav-link styles to WP-generated <a> tags */
.primary-nav a,
.nav-link { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color var(--dur-base) var(--ease-smooth); position: relative; display: inline-block; }
.primary-nav a::after,
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: #ffffff; transform: scaleX(0); transform-origin: right; transition: transform var(--dur-base) var(--ease-expo); }
.primary-nav a:hover,
.primary-nav li.current-menu-item > a,
.primary-nav li.current_page_item > a,
.nav-link:hover, .nav-link.current-menu-item, .nav-link.current_page_item { color: #ffffff; }
.primary-nav a:hover::after,
.primary-nav li.current-menu-item > a::after,
.primary-nav li.current_page_item > a::after,
.nav-link:hover::after, .nav-link.current-menu-item::after, .nav-link.current_page_item::after { transform: scaleX(1); transform-origin: left; }
.primary-nav li.current-menu-item > a::after,
.nav-link.current-menu-item::after, .nav-link.current_page_item::after { background: var(--c-gold); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: rgba(255,255,255,0.85); transition: color var(--dur-base) var(--ease-smooth); position: relative; cursor: pointer; }
.header-actions__icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-count { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: var(--c-gold); color: #ffffff; font-size: 9px; font-weight: 600; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; }
.cart-count:empty { display: none; }
.menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; position: relative; z-index: var(--z-modal); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; height: 1px; background: currentColor; color: rgba(255,255,255,0.85); transition: transform var(--dur-base) var(--ease-expo), opacity var(--dur-fast) var(--ease-smooth), width var(--dur-base) var(--ease-expo); }
.menu-toggle span:nth-child(1) { width: 24px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { width: 20px; }
.menu-toggle.is-open span:nth-child(1) { width: 24px; transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { width: 24px; transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; background: #0a0f14; z-index: var(--z-overlay); display: flex; flex-direction: column; justify-content: center; padding: var(--space-16) var(--gutter); clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem); transition: clip-path 0.8s var(--ease-expo); pointer-events: none; }
.mobile-nav.is-open { clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem); pointer-events: all; }
.mobile-nav__menu { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-nav__menu a { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: #ffffff; line-height: 1; letter-spacing: -0.02em; opacity: 0; transform: translateY(20px); transition: opacity var(--dur-base) var(--ease-expo), transform var(--dur-base) var(--ease-expo), color var(--dur-fast) var(--ease-smooth); }
.mobile-nav__menu a:hover { color: var(--c-gold); }
.mobile-nav.is-open .mobile-nav__menu a { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(5) { transition-delay: 0.35s; }

/* ── 9. Hero ───────────────────────────────────────────── */
.hero { position: relative; width: 100%; height: 100dvh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; background: #0a0f14; }
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; transform: scale(1.08); }
.hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(160deg, rgba(10,15,20,0.2) 0%, rgba(10,15,20,0.4) 40%, rgba(10,15,20,0.75) 100%); }
.hero__content { position: relative; z-index: 3; width: 100%; padding: 0 var(--gutter) clamp(4rem,10vh,7rem); max-width: var(--container-wide); margin-inline: auto; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); opacity: 0; transform: translateY(16px); }
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.hero__eyebrow span { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-gold); }
.hero__title { font-family: var(--font-serif); font-size: clamp(3.5rem,8vw,9rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.03em; color: #ffffff; max-width: 14ch; overflow: hidden; }
.hero__title .word { overflow: hidden; display: block; }
.hero__title em { font-style: italic; color: var(--c-gold-light); }
.hero__subtitle { margin-top: var(--space-5); font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 300; color: rgba(255,255,255,0.65); max-width: 42ch; line-height: 1.6; opacity: 0; transform: translateY(16px); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); opacity: 0; transform: translateY(16px); }
.hero__scroll { position: absolute; bottom: clamp(2rem,4vh,3.5rem); right: var(--gutter); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: rgba(255,255,255,0.5); opacity: 0; }
.hero__scroll span { font-size: 9px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--c-gold); animation: scrollLine 1.8s var(--ease-expo) infinite; animation-delay: 1.5s; }
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }
.hero__stats { position: absolute; bottom: clamp(2rem,4vh,3.5rem); left: var(--gutter); z-index: 3; display: flex; gap: var(--space-8); opacity: 0; transform: translateY(12px); }
@media (max-width: 767px) { .hero__stats { display: none; } }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat strong { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; color: #ffffff; letter-spacing: -0.02em; line-height: 1; }
.hero__stat span { font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── 10. Featured Products ──────────────────────────────── */
.products-featured { background: var(--c-bg); position: relative; overflow: hidden; }
.products-featured__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-12); }
@media (max-width: 767px) { .products-featured__header { flex-direction: column; align-items: flex-start; } }
.products-featured__link { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); transition: color var(--dur-base) var(--ease-smooth), gap var(--dur-base) var(--ease-expo); white-space: nowrap; }
.products-featured__link svg { width: 18px; height: 18px; transition: transform var(--dur-base) var(--ease-expo); }
.products-featured__link:hover { color: var(--c-text); gap: var(--space-3); }
.products-featured__link:hover svg { transform: translateX(4px); }
.products-featured__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 640px) { .products-featured__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) {
  .products-featured__grid { grid-template-columns: repeat(4, 1fr); }
  .products-featured__grid .product-card:first-child { grid-column: span 2; }
  .products-featured__grid .product-card:first-child .product-card__image { aspect-ratio: 4/3; }
}
.product-card { position: relative; display: flex; flex-direction: column; cursor: none; }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card:hover .product-card__action { opacity: 1; transform: translateY(0); }
.product-card:hover .product-card__title { color: var(--c-gold); }
.product-card__image { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--c-surface); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-smooth); will-change: transform; }
.product-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,20,0.5) 0%, rgba(10,15,20,0) 50%); opacity: 0; transition: opacity var(--dur-slow) var(--ease-smooth); }
.product-card__badge { position: absolute; top: var(--space-3); left: var(--space-3); background: var(--c-gold); color: #ffffff; font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full); }
.product-card__action { position: absolute; bottom: var(--space-3); right: var(--space-3); opacity: 0; transform: translateY(8px); transition: opacity var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); }
.product-card__info { padding: var(--space-3) 0; display: flex; flex-direction: column; gap: 6px; }
.product-card__category { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); }
.product-card__title { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.2; transition: color var(--dur-base) var(--ease-smooth); }

/* ── 11. Experience ─────────────────────────────────────── */
.experience { position: relative; background: #0a0f14; color: #ffffff; overflow: hidden; }
.experience__sticky { position: sticky; top: 0; height: 100dvh; overflow: hidden; display: flex; align-items: center; }
.experience__panel { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity var(--dur-slow) var(--ease-smooth), visibility 0s linear var(--dur-slow); }
.experience__panel.is-active { opacity: 1; visibility: visible; transition: opacity var(--dur-slow) var(--ease-smooth), visibility 0s; }
.experience__image { position: absolute; inset: 0; z-index: 1; }
.experience__image img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.experience__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,15,20,0.75) 0%, rgba(10,15,20,0.3) 60%, rgba(10,15,20,0) 100%); }
.experience__text { position: relative; z-index: 2; padding: var(--space-16) var(--gutter); max-width: var(--container-wide); margin-inline: auto; width: 100%; }
@media (min-width: 1024px) { .experience__text { max-width: 50%; } }
.experience__number { font-family: var(--font-display); font-size: clamp(5rem,12vw,14rem); font-weight: 300; line-height: 1; letter-spacing: -0.04em; color: rgba(255,255,255,0.06); position: absolute; top: 50%; left: var(--gutter); transform: translateY(-60%); user-select: none; pointer-events: none; }
.experience__eyebrow { display: inline-flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-5); }
.experience__eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.experience__eyebrow span { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.experience__heading { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: #ffffff; margin-bottom: var(--space-5); max-width: 16ch; }
.experience__heading em { font-style: italic; color: var(--c-gold-light); }
.experience__body { font-size: var(--text-lg); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 42ch; }
.experience__progress { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: var(--space-2); }
@media (max-width: 767px) { .experience__progress { display: none; } }
.experience__dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: rgba(255,255,255,0.25); transition: background var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); cursor: pointer; }
.experience__dot.is-active { background: var(--c-gold); transform: scale(1.5); }
.experience__bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--c-gold); transform-origin: left; transform: scaleX(0); z-index: 3; will-change: transform; }

/* ── 12. Catalog ────────────────────────────────────────── */
.catalog { background: var(--c-bg); overflow: hidden; }
.catalog__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-6); margin-bottom: var(--space-10); padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; }
.catalog__nav { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.catalog__nav-btn { width: 48px; height: 48px; border-radius: var(--radius-full); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text); transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); cursor: pointer; }
.catalog__nav-btn svg { width: 18px; height: 18px; }
.catalog__nav-btn:hover { background: var(--c-text); border-color: var(--c-text); color: #ffffff; transform: scale(1.06); }
.catalog__nav-btn.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.catalog__swiper { overflow: visible; padding-inline: var(--gutter); }
.catalog__swiper .swiper-slide { height: auto; width: clamp(280px,35vw,440px); }
.catalog-card { position: relative; overflow: hidden; background: var(--c-surface); height: 100%; display: flex; flex-direction: column; cursor: none; }
.catalog-card:hover .catalog-card__image img { transform: scale(1.05); }
.catalog-card:hover .catalog-card__reveal { transform: translateY(0); opacity: 1; }
.catalog-card__image { overflow: hidden; aspect-ratio: 3/4; }
.catalog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-smooth); will-change: transform; }
.catalog-card__body { padding: var(--space-4); flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.catalog-card__number { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.catalog-card__name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; line-height: 1.15; letter-spacing: -0.015em; }
.catalog-card__desc { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.6; margin-top: auto; }
.catalog-card__reveal { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-4); background: var(--c-gold); transform: translateY(100%); opacity: 0; transition: transform var(--dur-base) var(--ease-expo), opacity var(--dur-base) var(--ease-smooth); }
.catalog-card__reveal a { display: flex; align-items: center; justify-content: space-between; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; }
.catalog__pagination { margin-top: var(--space-8); padding-inline: var(--gutter); display: flex; align-items: center; gap: var(--space-2); }
.catalog__pagination .swiper-pagination-bullet { width: 24px; height: 2px; border-radius: 1px; background: var(--c-border); opacity: 1; transition: width var(--dur-base) var(--ease-expo), background var(--dur-base) var(--ease-smooth); }
.catalog__pagination .swiper-pagination-bullet-active { width: 48px; background: var(--c-text); }

/* ── 13. Footer ─────────────────────────────────────────── */
.site-footer { background: #0a0f14; color: rgba(255,255,255,0.6); position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: rgba(255,255,255,0.08); }
.footer__cta { padding-block: clamp(5rem,12vw,10rem); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__cta-label { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--space-4); }
.footer__cta-title { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; color: #ffffff; margin-bottom: var(--space-8); max-width: 18ch; margin-inline: auto; }
.footer__form { display: flex; align-items: stretch; max-width: 500px; margin-inline: auto; }
@media (max-width: 639px) { .footer__form { flex-direction: column; gap: var(--space-3); } }
.footer__input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-right: none; padding: 14px var(--space-4); color: #ffffff; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 300; outline: none; transition: border-color var(--dur-base) var(--ease-smooth); }
.footer__input::placeholder { color: rgba(255,255,255,0.3); }
.footer__input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); }
@media (max-width: 639px) { .footer__input { border-right: 1px solid rgba(255,255,255,0.12); } }
.footer__submit { background: var(--c-gold); color: #ffffff; border: 1px solid var(--c-gold); padding: 14px var(--space-5); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; cursor: none; transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth); }
.footer__submit:hover { background: #ffffff; border-color: #ffffff; color: #0a0f14; }
.footer__main { padding-block: clamp(4rem,8vw,7rem); display: grid; grid-template-columns: 1fr; gap: var(--space-10); }
@media (min-width: 768px) { .footer__main { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-12); } }
@media (min-width: 1280px) { .footer__main { grid-template-columns: 2.5fr 1fr 1fr 1fr; } }
.footer__logo { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; margin-bottom: var(--space-4); display: inline-block; }
.footer__tagline { font-size: var(--text-sm); font-weight: 300; line-height: 1.7; max-width: 32ch; margin-bottom: var(--space-6); }
.footer__social { display: flex; gap: var(--space-3); }
.footer__social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full); color: rgba(255,255,255,0.4); transition: color var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }
.footer__col-title { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: var(--space-5); }
.footer__nav-list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__nav-list a { font-size: var(--text-sm); font-weight: 300; color: rgba(255,255,255,0.5); transition: color var(--dur-base) var(--ease-smooth); display: inline-block; }
.footer__nav-list a:hover { color: #ffffff; }
.footer__bottom { padding-block: var(--space-5); border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }
.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.25); letter-spacing: 0.08em; }
.footer__legal { display: flex; gap: var(--space-5); }
.footer__legal a { font-size: var(--text-xs); color: rgba(255,255,255,0.25); transition: color var(--dur-base) var(--ease-smooth); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── 14. Marquee ────────────────────────────────────────── */
.marquee { overflow: hidden; white-space: nowrap; display: flex; }
.marquee__inner { display: flex; animation: marqueeScroll 18s linear infinite; will-change: transform; }
.marquee--slow .marquee__inner { animation-duration: 30s; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--space-6); padding-right: var(--space-6); flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 15. Parallax & Reveal ──────────────────────────────── */
[data-reveal] { will-change: transform, opacity; }
[data-reveal="fade"] { opacity: 0; }
[data-reveal="up"] { opacity: 0; transform: translateY(48px); }
[data-reveal="left"] { opacity: 0; transform: translateX(48px); }
[data-reveal="right"] { opacity: 0; transform: translateX(-48px); }
[data-reveal="scale"] { opacity: 0; transform: scale(0.94); }
[data-reveal="clip"] { clip-path: inset(0 0 100% 0); will-change: clip-path; }
.parallax-wrap { overflow: hidden; }
.parallax-inner { will-change: transform; transform: scale(1.1); }
.no-gsap [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
.no-gsap .h-hero__title-line,
.no-gsap .h-hero__float,
.no-gsap .h-hero__eyebrow,
.no-gsap .h-hero__lead,
.no-gsap .h-hero__cta,
.no-gsap .h-hero__scroll { opacity: 1 !important; transform: none !important; }

/* ── 16. Responsive ─────────────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  * { cursor: auto !important; }
  .product-card, .catalog-card, .btn { cursor: pointer !important; }
}
@media (max-width: 767px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .experience__heading { font-size: clamp(2rem,8vw,3rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .parallax-inner { transform: none !important; }
  .marquee__inner { animation: none; }
}
@media print {
  .site-header, .site-footer, .cursor, .loader, .page-transition { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   HOME — secciones específicas (_home.scss compilado)
   ══════════════════════════════════════════════════════════ */

/* ── Hero premium ── */
.h-hero { position: relative; width: 100%; height: 100dvh; min-height: 660px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #041f2f; }
.h-hero__bg { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(4,31,47,0.98) 0%, rgba(7,73,102,0.96) 46%, rgba(3,23,36,0.98) 100%), radial-gradient(circle at 50% 42%, rgba(79,184,232,0.34), transparent 34%); z-index: 0; }
.h-hero__bg::before, .h-hero__bg::after { content: ''; position: absolute; pointer-events: none; }
.h-hero__bg::before { inset: 0; background: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 72%); opacity: 0.38; }
.h-hero__bg::after { inset: 0; background: radial-gradient(circle at 50% 48%, rgba(255,255,255,0.16), transparent 18%), linear-gradient(to bottom, rgba(3,14,22,0.08), rgba(3,14,22,0.58)); }
/* Imágenes flotantes */
.h-hero__float { position: absolute; z-index: 1; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; box-shadow: 0 32px 80px rgba(0,10,18,0.34); background: rgba(255,255,255,0.06); will-change: transform, opacity; opacity: 0; }
.h-hero__float img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; user-select: none; }
.h-hero__float--1 { left: 3%; top: 16%; width: clamp(170px, 20vw, 310px); aspect-ratio: 3/4; }
.h-hero__float--2 { left: 14%; bottom: 8%; width: clamp(130px, 15vw, 218px); aspect-ratio: 4/5; }
.h-hero__float--3 { right: 38%; top: 9%; width: clamp(112px, 11vw, 168px); aspect-ratio: 1/1; }
.h-hero__float--4 { right: 15%; top: 13%; width: clamp(140px, 16vw, 226px); aspect-ratio: 3/4; }
.h-hero__float--5 { right: 2.5%; top: 34%; width: clamp(170px, 20vw, 308px); aspect-ratio: 3/4; }
@media (max-width: 767px) { .h-hero__float--hide-mob { display: none; } }
.h-hero__float-placeholder { width: 100%; height: 100%; }
.h-hero__float-placeholder--1 { background: linear-gradient(145deg, #096484, #4fb8e8); }
.h-hero__float-placeholder--2 { background: linear-gradient(145deg, #eef8fe, #0991C9); }
.h-hero__float-placeholder--3 { background: linear-gradient(145deg, #c8e9f8, #ffffff); }
.h-hero__float-placeholder--4 { background: linear-gradient(145deg, #0991C9, #06394f); }
.h-hero__float-placeholder--5 { background: linear-gradient(145deg, #096484, #021722); }
/* Centro */
.h-hero__body { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); padding-inline: var(--gutter); max-width: clamp(310px,44vw,680px); will-change: opacity, transform; }
.h-hero__body::before { content: ''; position: absolute; z-index: -1; width: clamp(320px,44vw,640px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(79,184,232,0.24), transparent 68%); filter: blur(10px); }
.h-hero__eyebrow { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,255,255,0.72); opacity: 0; transform: translateY(10px); margin-bottom: var(--space-2); }
.h-hero__title { font-family: var(--font-serif); font-size: clamp(3.6rem,8vw,8.7rem); font-weight: 500; line-height: 0.94; letter-spacing: -0.035em; color: #ffffff; text-shadow: 0 24px 70px rgba(0,12,22,0.36); }
.h-hero__title-line { display: block; opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.h-hero__title-line--accent { font-style: normal; color: #9ce2ff; font-size: clamp(3.2rem,6.6vw,7rem); font-weight: 300; }
.h-hero__lead { max-width: 52ch; margin-top: var(--space-1); font-size: clamp(0.98rem,1vw,1.15rem); font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.74); opacity: 0; transform: translateY(10px); }
.h-hero__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: var(--space-3); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #05364c; background: #ffffff; opacity: 0; transform: translateY(10px); border: 1px solid rgba(255,255,255,0.62); border-radius: 999px; padding: 14px 22px; box-shadow: 0 18px 42px rgba(0,10,18,0.22); transition: transform var(--dur-base) var(--ease-expo), background var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base) var(--ease-smooth); }
.h-hero__cta:hover { color: #021722; background: #9ce2ff; transform: translateY(-2px); box-shadow: 0 22px 54px rgba(0,10,18,0.32); }
.h-hero__cta svg { transition: transform var(--dur-base) var(--ease-expo); }
.h-hero__cta:hover svg { transform: translateX(4px); }
.h-hero__scroll { position: absolute; bottom: clamp(2rem,4vh,3rem); left: 50%; transform: translateX(-50%); z-index: 3; opacity: 0; }
.h-hero__scroll-line { width: 1px; height: 56px; background: rgba(255,255,255,0.22); position: relative; overflow: hidden; }
.h-hero__scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: #9ce2ff; animation: heroScrollLine 2s var(--ease-expo) infinite; animation-delay: 1.8s; }
@media (max-width: 767px) { .h-hero__float--1 { width: clamp(116px,30vw,172px); left: -5%; top: 19%; } .h-hero__float--5 { width: clamp(112px,28vw,164px); top: 18%; right: -6%; } .h-hero__body { max-width: min(88vw, 430px); } .h-hero__lead { font-size: 0.95rem; } }
@keyframes heroScrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* Variante activa: carrusel de banners full-width */
.h-hero { height: clamp(360px,32.3vw,620px); min-height: 360px; padding-top: 0; background: #041f2f; display: block; }
.h-hero__swiper, .h-hero__slide, .h-hero__banner-link { width: 100%; height: 100%; }
.h-hero__swiper { position: relative; z-index: 1; height: 100%; }
.h-hero__slide { position: relative; overflow: hidden; background: #041f2f; }
.h-hero__banner-link { display: block; }
.h-hero__banner-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; user-select: none; }
.h-hero__banner-img--motion { width: 104%; height: 104%; max-width: none; animation: heroBannerDrift 10s ease-in-out infinite alternate; transform-origin: 42% 50%; }
@keyframes heroBannerDrift { 0% { transform: scale(1.02) translate3d(-1.2%,0,0); } 100% { transform: scale(1.08) translate3d(1.2%,-1.2%,0); } }
@media (prefers-reduced-motion: reduce) { .h-hero__banner-img--motion { animation: none; transform: none; } }
.h-hero__overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(76px,7vw,110px) clamp(72px,8vw,150px) clamp(64px,7vw,110px); text-align: center; color: #fff; background: linear-gradient(90deg,rgba(2,23,34,0.64),rgba(2,23,34,0.18) 52%,rgba(2,23,34,0.08)); pointer-events: none; }
.h-hero__overlay .h-hero__eyebrow, .h-hero__overlay .h-hero__title, .h-hero__overlay .h-hero__lead, .h-hero__overlay .h-hero__cta { opacity: 1; transform: none; }
.h-hero__overlay .h-hero__title { max-width: 13ch; margin-inline: auto; color: #fff; font-size: clamp(2.8rem,7vw,8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; }
.h-hero__overlay .h-hero__lead { max-width: 48ch; margin-inline: auto; color: rgba(255,255,255,0.86); }
.h-hero__overlay .h-hero__cta { pointer-events: auto; }
.h-hero__slide--fallback { display: flex; align-items: center; justify-content: center; background: linear-gradient(105deg,#06475f 0%,#0991C9 56%,#042233 100%), radial-gradient(circle at 78% 42%,rgba(255,255,255,0.22),transparent 28%); }
.h-hero__slide--2.h-hero__slide--fallback { background: linear-gradient(105deg,#082c4a 0%,#096484 48%,#011926 100%), radial-gradient(circle at 24% 42%,rgba(156,226,255,0.24),transparent 30%); }
.h-hero__slide--3.h-hero__slide--fallback { background: linear-gradient(105deg,#021722 0%,#0b5d73 42%,#0991C9 100%), radial-gradient(circle at 70% 38%,rgba(255,255,255,0.18),transparent 32%); }
.h-hero__fallback { display: flex; min-height: 100%; flex-direction: column; align-items: center; justify-content: center; width: min(100%,1480px); color: #fff; text-align: center; padding: clamp(76px,7vw,110px) clamp(72px,8vw,150px) clamp(64px,7vw,110px); margin-inline: auto; }
.h-hero__fallback > * { opacity: 1; transform: none; }
.h-hero__fallback .h-hero__eyebrow { color: rgba(255,255,255,0.76); margin-bottom: var(--space-2); }
.h-hero__fallback .h-hero__title { max-width: 13ch; margin-inline: auto; color: #fff; font-size: clamp(2.8rem,7vw,8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; }
.h-hero__fallback .h-hero__lead { max-width: 48ch; margin-top: var(--space-3); margin-inline: auto; color: rgba(255,255,255,0.78); }
.h-hero__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.h-hero__title .word-inner { display: inline-block; will-change: opacity, transform; }
.h-hero__nav { position: absolute; top: 50%; z-index: 4; display: grid; place-items: center; width: 44px; height: 64px; transform: translateY(-50%); border: 0; background: transparent; color: rgba(255,255,255,0.9); font-size: 46px; font-weight: 300; line-height: 1; cursor: pointer; transition: color var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); }
.h-hero__nav:hover { color: #fff; transform: translateY(-50%) scale(1.08); }
.h-hero__nav.swiper-button-disabled { opacity: 0; pointer-events: none; }
.h-hero__nav--prev { left: clamp(18px,1.8vw,36px); }
.h-hero__nav--next { right: clamp(18px,1.8vw,36px); }
.h-hero .h-hero__pagination { position: absolute; left: 50% !important; right: auto !important; bottom: 18px; z-index: 4; display: flex; width: auto !important; justify-content: center; gap: 8px; transform: translateX(-50%) !important; margin: 0; }
.h-hero .h-hero__pagination .swiper-pagination-bullet { width: 28px; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.42); opacity: 1; transition: background var(--dur-base) var(--ease-smooth), width var(--dur-base) var(--ease-expo); }
.h-hero .h-hero__pagination .swiper-pagination-bullet-active { width: 48px; background: #fff; }
.h-hero--stack { height: 100vh; min-height: 620px; }
.h-hero--stack .h-hero__swiper, .h-hero--stack .swiper-wrapper { position: relative; height: 100%; overflow: hidden; }
.h-hero--stack .h-hero__slide { position: absolute; inset: 0; height: 100%; will-change: transform; }
.h-hero--stack .h-hero__nav, .h-hero--stack .h-hero__pagination { display: none; }
.h-hero__stack-hint { position: absolute; left: 50%; bottom: clamp(22px,3vh,34px); z-index: 5; width: 1px; height: 54px; transform: translateX(-50%); background: rgba(255,255,255,0.22); overflow: hidden; }
.h-hero__stack-hint span { display: block; width: 100%; height: 50%; background: #ffffff; animation: heroStackHint 1.8s var(--ease-expo) infinite; }
@keyframes heroStackHint { 0% { transform: translateY(-120%); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(220%); opacity: 0; } }
@media (max-width: 767px) { .h-hero { height: min(66vh,560px); min-height: 420px; } .h-hero__banner-img { object-position: center; } .h-hero__nav { width: 36px; height: 54px; font-size: 38px; } .h-hero__fallback { width: 100%; padding: clamp(76px,16vw,108px) clamp(28px,7vw,48px) clamp(58px,12vw,86px); text-align: center; } .h-hero__overlay { padding: clamp(76px,16vw,108px) clamp(28px,7vw,48px) clamp(58px,12vw,86px); } .h-hero__fallback .h-hero__title { max-width: none; font-size: clamp(2.7rem,12vw,5rem); } }
@media (max-width: 767px) { .h-hero--stack { height: min(66vh,560px); min-height: 420px; } .h-hero--stack .h-hero__slide { position: relative; } .h-hero__stack-hint { display: none; } }

/* ── Statement ── */
.h-statement { background: var(--c-bg); padding-block: clamp(8rem,18vw,16rem); overflow: hidden; }
.h-statement__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.h-statement__text { font-family: var(--font-serif); font-size: clamp(2.8rem,7vw,8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: var(--c-text); }
.h-statement__text .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.h-statement__text .word-inner { display: inline-block; will-change: opacity, transform; }

/* ── Productos ── */
.h-products { background: var(--c-bg); padding-block: 0 clamp(5rem,10vw,9rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
@media (max-width: 767px) { .h-products { grid-template-columns: 1fr; gap: 0; } }
@media (min-width: 768px) and (max-width: 1023px) { .h-products { grid-template-columns: repeat(2, 1fr); } }
.h-product { position: relative; display: block; overflow: hidden; cursor: none; }
.h-product:hover .h-product__image img { transform: scale(1.04); }
.h-product:hover .h-product__meta { opacity: 1; transform: translateY(0); }
.h-product__image { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--c-surface); clip-path: inset(0 0 100% 0); will-change: clip-path; }
.h-product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-smooth); will-change: transform; }
.h-product__placeholder { width: 100%; height: 100%; background: var(--c-surface); }
.h-product__meta { padding: var(--space-4) var(--space-4) var(--space-5); opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-expo); }
.h-product__cat { display: block; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 6px; }
.h-product__name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.15; color: var(--c-text); }
.h-products__footer { grid-column: 1 / -1; display: flex; justify-content: center; padding-block: clamp(3rem,6vw,5rem) 0; }

/* ── Full-bleed ── */
.h-fullbleed { position: relative; height: clamp(480px,70vh,900px); overflow: hidden; }
.h-fullbleed__image { position: absolute; inset: 0; z-index: 1; }
.h-fullbleed__image .parallax-inner { width: 100%; height: 130%; top: -15%; position: absolute; left: 0; }
.h-fullbleed__image img { width: 100%; height: 100%; object-fit: cover; }
.h-fullbleed__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#0a0f14 0%,#0d1d2a 100%); }
.h-fullbleed__overlay { position: absolute; inset: 0; z-index: 2; background: rgba(10,15,20,0.38); }
.h-fullbleed__caption { position: absolute; z-index: 3; bottom: clamp(2rem,5vh,4rem); left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.h-fullbleed__caption span { font-family: var(--font-serif); font-size: clamp(1.2rem,3vw,2.2rem); font-weight: 300; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); font-style: italic; }

/* ── Colecciones ── */
.h-collections { background: var(--c-bg); padding-block: clamp(5rem,10vw,9rem); overflow: hidden; }
.h-collections__head { display: flex; align-items: center; justify-content: space-between; padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; margin-bottom: var(--space-8); }
.h-collections__title { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; letter-spacing: -0.02em; }
.h-collections__nav { display: flex; gap: var(--space-2); }
.h-collections__btn { width: 44px; height: 44px; border-radius: var(--radius-full); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text); transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth); cursor: pointer; }
.h-collections__btn:hover { background: var(--c-text); border-color: var(--c-text); color: #ffffff; }
.h-collections__btn.swiper-button-disabled { opacity: 0.25; pointer-events: none; }
.h-collections__swiper { overflow: visible; padding-inline: var(--gutter); }
.h-collections__swiper .swiper-slide { width: clamp(260px,28vw,380px); height: auto; }
.h-col-card { display: block; position: relative; cursor: none; }
.h-col-card:hover .h-col-card__img img { transform: scale(1.04); }
.h-col-card:hover .h-col-card__overlay { opacity: 1; }
.h-col-card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--c-surface); }
.h-col-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-smooth); will-change: transform; }
.h-col-card__placeholder { width: 100%; height: 100%; background: var(--c-surface); }
.h-col-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,15,20,0.5) 0%,transparent 50%); opacity: 0; transition: opacity var(--dur-base) var(--ease-smooth); }
.h-col-card__info { padding: var(--space-3) 0; display: flex; align-items: baseline; gap: var(--space-3); }
.h-col-card__num { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; color: var(--c-gold); }
.h-col-card__name { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.2; }

/* ── Closing ── */
.h-closing { background: #0a0f14; padding-block: clamp(8rem,16vw,14rem); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; position: relative; }
.h-closing::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 80px; background: linear-gradient(to bottom,transparent,rgba(255,255,255,0.12)); }
.h-closing__inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-5); padding-inline: var(--gutter); }
.h-closing__eyebrow { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--c-gold); }
.h-closing__title { font-family: var(--font-serif); font-size: clamp(3rem,8vw,8rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; color: #ffffff; max-width: 14ch; }
.h-closing__title .word { overflow: hidden; display: inline-block; }
.h-closing__btn { margin-top: var(--space-3); }

/* ── Link utilitario ── */
.h-link { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); transition: color var(--dur-base) var(--ease-smooth), gap var(--dur-base) var(--ease-expo); }
.h-link svg { transition: transform var(--dur-base) var(--ease-expo); }
.h-link:hover { color: var(--c-text); gap: var(--space-3); }
.h-link:hover svg { transform: translateX(4px); }

/* Home B2B sections */
.h-history { background: var(--c-bg); padding-block: clamp(5rem,10vw,9rem); }
.h-history__inner { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,0.9fr); gap: clamp(2.5rem,6vw,7rem); align-items: center; }
@media (max-width: 767px) { .h-history__inner { grid-template-columns: 1fr; } }
.h-history__media { position: relative; overflow: hidden; background: #041f2f; border-radius: 6px; aspect-ratio: 16/9; }
.h-history__media iframe, .h-history__media video { display: block; width: 100%; height: 100%; }
.h-history__video-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(135deg,rgba(4,31,47,0.94),rgba(9,145,201,0.76)),linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: auto,54px 54px,54px 54px; color: rgba(255,255,255,0.84); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; }
.h-history__content { max-width: 620px; }
.h-history__eyebrow, .h-network__eyebrow, .h-retail__eyebrow { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--space-4); }
.h-history__title, .h-network__title, .h-retail__title { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,5.2rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.025em; color: var(--c-text); }
.h-history__title .word, .h-network__title .word, .h-retail__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.h-history__text, .h-network__text, .h-retail__text { max-width: 62ch; margin-top: var(--space-5); color: var(--c-text-muted); font-size: clamp(1rem,1.1vw,1.15rem); line-height: 1.75; }
.h-network { background: #041f2f; color: #ffffff; padding-block: clamp(5rem,10vw,9rem); }
.h-network__inner { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(320px,0.82fr); gap: clamp(2.5rem,6vw,7rem); align-items: start; }
@media (max-width: 767px) { .h-network__inner { grid-template-columns: 1fr; } }
.h-network__title { color: #ffffff; }
.h-network__text { color: rgba(255,255,255,0.74); }
.h-network__form { display: grid; gap: var(--space-4); padding: clamp(1.25rem,3vw,2rem); border: 1px solid rgba(255,255,255,0.16); border-radius: 6px; background: rgba(255,255,255,0.06); box-shadow: 0 32px 80px rgba(0,10,18,0.22); }
.h-network__field { display: grid; gap: 8px; }
.h-network__field label { color: rgba(255,255,255,0.74); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.h-network__field input { width: 100%; min-height: 48px; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; background: rgba(255,255,255,0.08); color: #ffffff; padding: 0 14px; font: inherit; outline: 0; transition: border-color var(--dur-base) var(--ease-smooth), background var(--dur-base) var(--ease-smooth); }
.h-network__field input::placeholder { color: rgba(255,255,255,0.42); }
.h-network__field input:focus { border-color: rgba(156,226,255,0.72); background: rgba(255,255,255,0.12); }
.h-network__submit { justify-content: center; margin-top: var(--space-2); border: 0; cursor: pointer; }
.h-retail { background: var(--c-surface); padding-block: clamp(4rem,8vw,7rem); }
.h-retail__inner { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(260px,0.7fr) auto; gap: clamp(1.5rem,4vw,4rem); align-items: end; }
@media (max-width: 1023px) { .h-retail__inner { grid-template-columns: 1fr; align-items: start; } }
.h-retail__title { font-size: clamp(2.3rem,4vw,4rem); }
.h-retail__text { margin-top: 0; }
.h-retail__link { white-space: nowrap; margin-bottom: 0.25rem; }

/* ── Taxonomy: Línea de productos ─────────────────────────────────────────── */
.tax-hero{padding-block:clamp(8rem,18vw,14rem) clamp(4rem,8vw,7rem);background:var(--c-bg);border-bottom:1px solid var(--c-border);}
.tax-hero .container{display:flex;flex-direction:column;gap:var(--space-4);}
.tax-hero__title{font-size:var(--text-5xl);font-weight:300;letter-spacing:-0.03em;line-height:1.05;max-width:20ch;}
.tax-pagination{margin-top:var(--space-12);}
.tax-pagination .nav-links{display:flex;align-items:center;justify-content:center;gap:var(--space-2);flex-wrap:wrap;}
.tax-pagination a,.tax-pagination span.current,.tax-pagination span.dots{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding-inline:var(--space-2);font-size:var(--text-sm);font-weight:500;border:1px solid var(--c-border);color:var(--c-text);transition:background var(--dur-fast) var(--ease-smooth),border-color var(--dur-fast) var(--ease-smooth),color var(--dur-fast) var(--ease-smooth);}
.tax-pagination a:hover,.tax-pagination span.current{background:var(--c-accent);border-color:var(--c-accent);color:var(--c-text-inv);}
.tax-pagination span.dots{border-color:transparent;}
