/* ================================================================
   LIS ALONSO | WEB INSTITUCIONAL
   Diseño: Cyber-Luxury Edition
   Paleta: Rosa #FA83CB · Negro #0A0A0A · Blanco #FFFFFF
   ================================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --pink:        #FA83CB;
  --pink-light:  #FDB8E4;
  --pink-dark:   #D9609E;
  --black:       #0A0A0A;
  --black-2:     #111118;
  --black-3:     #1A1A24;
  --white:       #FFFFFF;
  --gray-1:      #F9F6F8;
  --gray-2:      #EDE8ED;
  --gray-3:      #B8A8B8;

  --text:        #0A0A0A;
  --text-sec:    #4A3A48;
  --text-muted:  #8A7A88;

  --glass-w:     rgba(255,255,255,0.06);
  --glass-b:     rgba(255,255,255,0.12);
  --glass-dark:  rgba(10,10,10,0.6);

  --font-body:    'Raleway', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --container: 1200px;
  --pad:       clamp(16px, 4vw, 32px);
  --section-v: clamp(80px, 10vw, 130px);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-pop:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-pink: 0 0 48px rgba(250,131,203,0.35);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.1);
}

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

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  overflow-x: hidden; 
  width: 100%; 
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── HELPERS ──────────────────────────────────────────────── */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.breathing-font { font-family: var(--font-elegant); font-style: italic; }
.text-pink     { color: var(--pink); }
.hidden        { display: none !important; }

/* ── EYEBROW ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-pink { color: var(--pink); }
.eyebrow-pink::before { background: var(--pink); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.btn-glow:hover::before  { transform: translateX(100%); }
.btn-glow:hover {
  background: var(--pink-dark);
  box-shadow: var(--shadow-pink), 0 8px 24px rgba(250,131,203,0.25);
  transform: translateY(-2px);
}
.btn-glow:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: 1.5px solid var(--pink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
.section-header       { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-title        { font-family: var(--font-elegant); font-size: clamp(32px,4.2vw,54px); font-weight: 300; line-height: 1.18; color: var(--black); letter-spacing: -0.02em; margin: 12px 0 16px; }
.section-title-white  { color: #fff; }
.section-desc         { font-size: clamp(15px,1.6vw,17px); color: var(--text-sec); line-height: 1.75; font-weight: 300; }
.section-desc-muted   { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.45s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.07);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.logo-monogram {
  width: 40px; height: 40px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-elegant);
  font-size: 15px; font-weight: 600; font-style: italic;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-pop), box-shadow 0.3s;
}
.logo-monogram:hover     { transform: scale(1.08); box-shadow: var(--shadow-pink); }
.logo-monogram-dark      { background: rgba(250,131,203,0.1); border: 1px solid rgba(250,131,203,0.3); color: var(--pink); }
.logo-text               { display: flex; flex-direction: column; gap: 1px; }
.logo-name               { font-size: 14px; font-weight: 800; letter-spacing: 0.06em; color: #fff; line-height: 1; }
.logo-tagline            { font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; }
.navbar.scrolled .logo-name    { color: var(--black); }
.navbar.scrolled .logo-tagline { color: var(--text-muted); }
.logo-name-light         { color: #fff; }
.logo-tagline-dim        { color: rgba(255,255,255,0.35); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-link {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.navbar.scrolled .nav-link               { color: var(--text-sec); }
.nav-link:hover                          { background: rgba(250,131,203,0.12); color: var(--pink); }
.navbar.scrolled .nav-link:hover         { color: var(--pink); }
.nav-team {
  color: var(--pink) !important;
  border: 1px solid rgba(250,131,203,0.35);
  font-weight: 700;
}
.nav-team:hover { background: var(--pink) !important; color: #fff !important; border-color: var(--pink); }

.hamburger        { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span   { display: block; width: 24px; height: 2px; background: #fff; border-radius: 999px; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 50%, rgba(250,131,203,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(250,131,203,0.07) 0%, transparent 65%),
    linear-gradient(145deg, #0a0a0a 0%, #16091280 50%, #0a0a0a 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='.6' fill='rgba(250,131,203,0.12)'/%3E%3C/svg%3E") repeat;
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(250,131,203,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,131,203,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(100px,12vw,140px) var(--pad) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-text   { display: flex; flex-direction: column; gap: 28px; }
.hero-title  { font-family: var(--font-elegant); font-style: italic; font-size: clamp(40px,5.5vw,72px); font-weight: 300; line-height: 1.14; color: #fff; letter-spacing: -0.01em; }
.hero-subtitle { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 460px; }
.hero-cta { display: flex; align-items: center; gap: 16px; }

.hero-proof { display: flex; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.09); }
.proof-item strong { display: block; font-size: 22px; font-weight: 800; color: var(--pink); line-height: 1; }
.proof-item span   { display: block; font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; margin-top: 2px; }
.proof-sep         { width: 1px; height: 30px; background: rgba(255,255,255,0.13); flex-shrink: 0; }

/* Portrait */
.hero-portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portrait-ring {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  border: 1px solid rgba(250,131,203,0.18);
  pointer-events: none;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #1c0a16 0%, #2b0d1e 100%);
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.portrait-fallback {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, #1c0a16 0%, #2b0d1e 100%);
}
.fallback-mono  { font-family: var(--font-elegant); font-style: italic; font-size: 80px; font-weight: 300; color: rgba(250,131,203,0.3); }
.fallback-label { font-size: 11px; color: rgba(250,131,203,0.3); letter-spacing: 0.15em; text-transform: uppercase; }
.portrait-badge {
  position: absolute; bottom: 24px; left: -18px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 12px; font-weight: 600;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.portrait-badge svg { color: var(--pink); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; z-index: 10;
  animation: hScroll 2.2s ease-in-out infinite;
}
.scroll-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-line  { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--pink), transparent); animation: sLine 2.2s ease-in-out infinite; }
@keyframes hScroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes sLine   { 0%{ opacity:0; transform:scaleY(0); transform-origin:top; } 50%{ opacity:1; transform:scaleY(1); } 100%{ opacity:0; } }

/* ════════════════════════════════════════════════════════════
   EL FILTRO ALONSO
   ════════════════════════════════════════════════════════════ */
.filtro-section {
  padding: var(--section-v) 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.filtro-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(250,131,203,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(250,131,203,0.04) 0%, transparent 70%);
}

.filtro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}

/* Glass Cards */
.filtro-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.4s var(--ease);
}
.filtro-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}
.filtro-card:hover::after { transform: scaleX(1); }
.filtro-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(250,131,203,0.22);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 40px rgba(250,131,203,0.07);
}

/* Featured card */
.filtro-card-featured {
  background: rgba(250,131,203,0.08);
  border-color: rgba(250,131,203,0.25);
  transform: scale(1.02) translateY(-6px);
}
.filtro-card-featured:hover { transform: scale(1.02) translateY(-12px); }
.card-featured-pill {
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); background: rgba(250,131,203,0.1);
  padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(250,131,203,0.2);
}

.card-num { font-family: var(--font-elegant); font-size: 52px; font-weight: 300; color: rgba(255,255,255,0.06); line-height: 1; font-style: italic; margin-bottom: 16px; }
.card-num-featured { color: rgba(250,131,203,0.15); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); margin-bottom: 22px;
  background: rgba(250,131,203,0.06);
  transition: all 0.3s;
}
.filtro-card:hover .card-icon { background: rgba(250,131,203,0.12); border-color: rgba(250,131,203,0.3); }
.card-icon-featured { background: rgba(250,131,203,0.1); border-color: rgba(250,131,203,0.3); }

.card-title       { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.3; margin-bottom: 14px; }
.card-title-light { color: #fff; }
.card-text        { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; flex: 1; }
.card-text-light  { color: rgba(255,255,255,0.6); }

.card-foot      { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.card-foot-dark { border-color: rgba(250,131,203,0.15); }
.card-tag       { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); padding: 4px 12px; border-radius: 100px; }
.card-tag-pink  { background: rgba(250,131,203,0.12); color: var(--pink); }

/* ════════════════════════════════════════════════════════════
   SOBRE LIS
   ════════════════════════════════════════════════════════════ */
.sobre-section {
  padding: var(--section-v) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sobre-bg-word {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px,16vw,260px);
  color: rgba(250,131,203,0.04);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -0.04em; z-index: 0;
}
.sobre-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}

/* Visual */
.sobre-visual   { position: relative; }
.sobre-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #f8f0f5 0%, #ebd5e5 100%);
  box-shadow: var(--shadow-card);
}
.sobre-img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-fallback {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #f8f0f5 0%, #ebd5e5 100%);
}
.sobre-img-fallback .fallback-mono { font-size: 80px; color: rgba(250,131,203,0.35); }

.exp-badge {
  position: absolute; top: 32px; right: -22px;
  background: var(--pink); border-radius: 18px; padding: 20px 22px;
  text-align: center; color: #fff;
  box-shadow: 0 16px 48px rgba(250,131,203,0.45);
}
.exp-num { display: block; font-family: var(--font-elegant); font-size: 48px; font-weight: 600; line-height: 1; }
.exp-txt { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; line-height: 1.4; margin-top: 4px; }

.sobre-accent { position: absolute; bottom: 40px; left: -22px; width: 80px; height: 3px; background: linear-gradient(to right, var(--pink), transparent); }

/* Content */
.sobre-content { display: flex; flex-direction: column; gap: 26px; }
.sobre-quote {
  font-size: clamp(18px,2.3vw,26px); font-weight: 300;
  color: var(--text); line-height: 1.5;
  padding-left: 22px; border-left: 3px solid var(--pink);
  font-style: italic; font-family: var(--font-elegant);
}
.sobre-text { font-size: 16px; color: var(--text-sec); line-height: 1.8; font-weight: 300; }

.sobre-stats { display: flex; gap: 28px; padding: 26px 0; border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }
.stat-item   { display: flex; flex-direction: column; gap: 4px; }
.stat-num    { font-family: var(--font-elegant); font-size: 36px; font-weight: 600; color: var(--pink); line-height: 1; }
.stat-lbl    { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   LA SELECCIÓN PRIVADA
   ════════════════════════════════════════════════════════════ */
.seleccion-section {
  padding: var(--section-v) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.sel-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 50% 110%, rgba(250,131,203,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 20% 20%, rgba(250,131,203,0.07) 0%, transparent 65%);
}
.sel-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }

.seleccion-container { position: relative; z-index: 2; display: flex; justify-content: center; }
.seleccion-content {
  max-width: 540px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.exclusive-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink);
  background: rgba(250,131,203,0.07); border: 1px solid rgba(250,131,203,0.2);
  padding: 8px 20px; border-radius: 100px;
}
.sel-desc { font-size: clamp(17px,2.1vw,23px); color: rgba(255,255,255,0.55); line-height: 1.65; font-family: var(--font-elegant); font-style: italic; }

/* Form */
.form-glass {
  width: 100%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
}
.form-glass form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-field label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.form-field input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body); font-size: 15px;
  color: #fff; width: 100%;
  transition: all 0.3s; outline: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.22); }
.form-field input:focus { border-color: var(--pink); background: rgba(250,131,203,0.05); box-shadow: 0 0 0 3px rgba(250,131,203,0.1); }
.form-submit-btn { width: 100%; justify-content: center; padding: 17px 32px; font-size: 14px; }
.form-privacy { font-size: 11px; color: rgba(255,255,255,0.28); text-align: center; }

/* Loading */
.loading-wrap {
  width: 100%; padding: 48px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.loading-orb {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(250,131,203,0.2); border-top-color: var(--pink);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-bars { display: flex; align-items: flex-end; gap: 5px; height: 30px; }
.l-bar {
  width: 5px; background: var(--pink); border-radius: 999px;
  animation: barPulse 1.1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.13s);
}
@keyframes barPulse { 0%,100%{ height:7px; opacity:0.3; } 50%{ height:30px; opacity:1; } }

.loading-text { color: rgba(255,255,255,0.5); font-size: 13px; letter-spacing: 0.05em; }
.loading-progress { width: 220px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(to right, var(--pink), var(--pink-light)); width: 0%; transition: width 0.08s linear; border-radius: 999px; }

/* Success */
.success-wrap { padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.success-ring {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(250,131,203,0.1); border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
  animation: popIn 0.6s var(--ease-pop);
}
@keyframes popIn { 0%{ transform:scale(0); opacity:0; } 100%{ transform:scale(1); opacity:1; } }
.success-title { font-size: 30px; font-weight: 300; color: #fff; font-family: var(--font-elegant); font-style: italic; }
.success-text  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 340px; text-align: center; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { background: var(--black-2); border-top: 1px solid rgba(255,255,255,0.06); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo  { display: flex; align-items: center; gap: 12px; }
.footer-tagline { font-size: 18px; color: rgba(255,255,255,0.35); }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.3s;
}
.social-link:hover { background: rgba(250,131,203,0.1); border-color: rgba(250,131,203,0.3); color: var(--pink); }

.footer-nav h4, .footer-contact h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a  { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-nav a:hover { color: var(--pink); }

.contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.contact-row svg { color: var(--pink); flex-shrink: 0; }
.contact-row a:hover { color: var(--pink); }

.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 24px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }
.team-link { font-size: 11px; font-weight: 700; color: rgba(250,131,203,0.45); letter-spacing: 0.1em; transition: color 0.3s; }
.team-link:hover { color: var(--pink); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.animate-in.visible  { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

.reveal-up {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-card {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-card.visible               { opacity: 1; transform: translateY(0); }
.filtro-card-featured.visible      { opacity: 1; transform: scale(1.02) translateY(-6px); }
.filtro-card-featured:hover.visible { transform: scale(1.02) translateY(-12px); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE & MOBILE OPTIMIZATION
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 130px; }
  .hero-portrait-wrap { order: -1; }
  .portrait-frame { max-width: 300px; margin: 0 auto; }
  .portrait-badge { left: auto; right: -8px; }
  .hero-text { align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .eyebrow::before { display: none; }
  .sobre-container { grid-template-columns: 1fr; gap: 48px; }
  .sobre-visual { max-width: 380px; margin: 0 auto; }
  .exp-badge { right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { 
    --section-v: 64px; 
    --pad: 20px; 
  }

  html, body { overflow-x: hidden; }

  /* Static backgrounds for mobile performance */
  .hero-section, .filtro-section, .seleccion-section, .hero-bg, .hero-overlay, .hero-grid-lines {
    background-attachment: scroll !important;
  }

  /* Nav Mobile */
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,12,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 32px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 22px; color: #fff !important; padding: 12px 24px; font-weight: 300; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  /* Hero Mobile */
  .hero-section { min-height: auto; padding-bottom: 80px; }
  .hero-content { gap: 40px; }
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-glow, .btn-outline { width: 100%; justify-content: center; }

  /* Sections Mobile */
  .section-header { margin-bottom: 40px; padding: 0 10px; }
  .section-title { font-size: 32px; }

  /* Filtro Mobile */
  .filtro-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; gap: 16px; }
  .filtro-card { padding: 32px 24px; }
  .filtro-card-featured { transform: none !important; }
  .filtro-card-featured.visible { transform: none !important; }

  /* Sobre Lis Mobile */
  .sobre-bg-word { font-size: 80px; top: 10%; }
  .sobre-visual { max-width: 100%; margin-bottom: 20px; }
  .sobre-content { gap: 18px; }
  .sobre-quote { font-size: 18px; padding-left: 14px; margin: 4px 0; line-height: 1.4; }
  .sobre-text { font-size: 15px; }
  .sobre-stats { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    padding: 18px 0; 
    text-align: left;
  }
  .stat-item:last-child { grid-column: span 2; }
  .stat-num { font-size: 28px; }
  .stat-lbl { font-size: 10px; }

  /* Form Mobile (Prevent iOS Zoom) */
  .form-glass { padding: 32px 20px; }
  .form-field input { font-size: 16px; } /* Crucial: 16px minimum prevents automatic zoom in iOS */
  .form-submit-btn { font-size: 16px; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand, .footer-logo, .footer-social { justify-content: center; }
  .footer-nav ul, .footer-contact { align-items: center; }
  .contact-row { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
}

@media (max-width: 480px) {
  .portrait-frame { max-width: 280px; }
  .portrait-badge { display: none; }
  .hero-title { font-size: 34px; }
  .section-title { font-size: 28px; }
}
