﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #080005;
  --bg2:     #10000c;
  --bg3:     #1a0015;
  --gold:    #c8a96e;
  --gold2:   #e8c88a;
  --crimson: #8b0030;
  --crimson2:#c0003f;
  --fg:      #e8e0d0;
  --dim:     rgba(232,224,208,0.82);
  --muted:   rgba(232,224,208,0.30);
  --line:    rgba(200,169,110,0.18);
  --line2:   rgba(200,169,110,0.08);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', -apple-system, sans-serif;
  --social-bar-height: 64px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: default;
}

/* ── Z-INDEX LAYERS: bg(0) · 3d(2) · content(3) ──────── */
section, nav, footer, .quote-band, .whip-divider {
  position: relative;
  z-index: 3;
}
/* Estado de carga del formulario presencial (antes de que exista el CSS del módulo) */
.presencial-lazy-loading {
  padding: 48px 24px;
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--dim);
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 2px; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(8,0,5,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-lt {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  text-decoration: none;
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: border-color .25s, color .25s, transform .2s;
  flex-shrink: 0;
}
.nav-lt:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.nav-lt svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  background: linear-gradient(165deg, var(--gold2) 0%, var(--gold) 55%, #a8894a 100%);
  color: var(--bg);
  transition: filter .25s, transform .2s, box-shadow .25s;
}
.nav-contact:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(200, 169, 110, 0.28);
}
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(8, 0, 5, 0.65);
  cursor: pointer;
  color: var(--fg);
  flex-shrink: 0;
  position: relative;
  z-index: 110;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.nav-burger:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-burger-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}
.nav-burger-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-burger.is-open .nav-burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger.is-open .nav-burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open .nav-burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  pointer-events: none !important;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.nav-mobile.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(139, 0, 48, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-mobile-panel {
  position: relative;
  width: min(340px, 92vw);
  max-width: 100%;
  height: 100%;
  background:
    linear-gradient(165deg, #12000e 0%, var(--bg) 38%, #060004 100%);
  border-left: 1px solid rgba(200, 169, 110, 0.35);
  box-shadow:
    inset 1px 0 0 rgba(255, 232, 200, 0.06),
    -28px 0 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(8, 0, 5, 0.5);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.07) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.nav-mobile.is-open .nav-mobile-panel {
  transform: translate3d(0, 0, 0);
}
.nav-mobile-head {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 22px 18px 24px;
  background: linear-gradient(180deg, rgba(16, 0, 14, 0.98) 0%, rgba(16, 0, 14, 0.92) 70%, transparent 100%);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-mobile-brand {
  min-width: 0;
  flex: 1 1 auto;
}
.nav-mobile-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  opacity: 0.9;
}
.nav-mobile-title {
  font-family: var(--serif);
  font-size: clamp(20px, 5.2vw, 26px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}
.nav-mobile-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
}
.nav-mobile-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  padding: 0;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  background: rgba(8, 0, 5, 0.6);
  color: var(--gold2);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-close:hover {
  color: #fffadf;
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(200, 169, 110, 0.15);
}
.nav-mobile-close-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.nav-mobile-divider {
  height: 1px;
  margin: 0 24px 8px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.55), rgba(200, 169, 110, 0.25), transparent);
  opacity: 0.9;
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  position: relative;
  z-index: 1;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}
.nav-mobile-links li:last-child {
  border-bottom: none;
}
.nav-mobile-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 6px 18px 4px;
  font-family: var(--serif);
  font-size: clamp(17px, 4.2vw, 21px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.88);
  text-decoration: none;
  transition: color 0.28s ease, padding-left 0.28s ease, text-shadow 0.28s ease;
}
.nav-mobile-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  transform: scale(0.85);
  transition: opacity 0.28s, transform 0.28s, box-shadow 0.28s;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(200, 169, 110, 0.4);
}
.nav-mobile-links a:hover,
.nav-mobile-links a:focus-visible {
  color: var(--fg);
  padding-left: 12px;
  text-shadow: 0 0 40px rgba(200, 169, 110, 0.25);
  outline: none;
}
.nav-mobile-links a:hover::before,
.nav-mobile-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 16px rgba(232, 200, 138, 0.7);
}
.nav-pills { display: flex; align-items: center; gap: 8px; }

/* Móvil / tablet: Redes y pill CONTACTO ocultos; menú hamburguesa */
@media (max-width: 1024px) {
  .nav-lt {
    display: none !important;
  }
  .nav-contact {
    display: none !important;
  }
  .nav-burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 18px 16px;
    justify-content: space-between;
    min-height: 72px;
    gap: 12px;
  }
  .nav-links { display: none; }
  .nav-logo {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(12px, 3.4vw, 17px);
    letter-spacing: 2px;
    line-height: 1.15;
  }
  .nav-pills {
    margin-left: 0;
    width: auto;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 89svh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
  padding-top: clamp(76px, 12vh, 104px);
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 100%;
  background-image: url('../img/IMG_6448-scaled.webp');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.28;
  filter: saturate(0.4);
  transform: translateX(10%);
  will-change: transform;
}
@keyframes heroPan {
  from { transform: translateX(10%); }
  to   { transform: translateX(0%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, var(--bg) 75%),
              linear-gradient(to right, var(--bg) 0%, transparent 60%);
}
/* ── HERO 3D INFINITY ───────────────────────────────── */
.hero-obj-infinity {
  position: absolute;
  z-index: 3;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-obj-infinity canvas { width: 100%; height: 100%; display: block; }
@media (max-width: 768px) {
  :root {
    --social-bar-height: calc(52px + env(safe-area-inset-bottom, 0px));
  }
  #hero {
    min-height: 89svh !important;
    height: auto;
    align-items: stretch;
    padding-top: clamp(64px, 13vw, 88px);
    padding-bottom: 0;
  }
  .hero-bg {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    opacity: 0.42;
    transform: none;
    animation: none !important;
  }
  .hero-obj-infinity { display: none !important; }
  .hero-overlay {
    inset: 0 0 -14px 0;
    background:
      linear-gradient(to bottom, rgba(8,0,5,0.25) 0%, rgba(8,0,5,0.1) 22%, rgba(8,0,5,0.82) 72%, var(--bg) 100%);
  }
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  padding: 0 6vw 0 48px;
  box-sizing: border-box;
}
.hero-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 0;
}

/* Titular + CTAs: desktop «Infinity» + botones misma fila vía .hero-hero-top */
.hero-hero-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 52px);
  width: 100%;
  margin-bottom: 24px;
}
.hero-head {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.hero-infinity-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: clamp(28px, 4vw, 52px);
  width: 100%;
  min-width: 0;
}

.hero-title-mistress,
.hero-title-infinity-wrap {
  min-width: 0;
}

.hero-cta-stack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 72px;
  flex: 0 0 auto;
  margin-left: 0;
  margin-top: 0;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 40px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 100px;
  background: rgba(8, 0, 5, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.9);
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
  white-space: nowrap;
}
.hero-cta-btn:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: rgba(200, 169, 110, 0.08);
  transform: translateY(-1px);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease .3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease .5s forwards;
}
.hero-title em {
  font-style: italic;
  animation: goldGlow 2.8s ease-in-out infinite alternate;
}
@keyframes goldGlow {
  from { color: var(--gold); text-shadow: none; }
  to   { color: #f0d060; text-shadow: 0 0 30px rgba(201,168,76,0.7), 0 0 80px rgba(201,168,76,0.35), 0 0 160px rgba(201,168,76,0.15); }
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--dim);
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease .8s forwards;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px 0;
  line-height: 1.22;
  max-width: none;
}
.hero-subtitle-line {
  display: block;
}
.hero-subtitle-line--place {
  font-size: clamp(15px, 2.3vw, 24px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--sans);
  color: rgba(232, 224, 208, 0.72);
  margin-top: 10px;
}
.hero-subtitle-city {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--gold);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  #hero {
    --hero-cta-shift-y: clamp(56px, 17vw, 168px);
    --hero-cta-gap: clamp(2px, 1.8vw, 14px);
    /* Título Mistress · Infinity — separación respecto al menú (↑ = más abajo) */
    --hero-head-margin-top: clamp(52px, 15vw, 108px);
    /* Subtítulo: espacio respecto al bloque título+CTAs (↑ = valor más bajo en px = texto más arriba en pantalla) */
    --hero-subtitle-gap-after-block: clamp(82px, 17vh, 146px);
  }
  .hero-content {
    padding: 0 6%;
    flex: 1 1 auto;
    min-height: 0;
    justify-content: stretch;
  }
  /*
   * No usar display:contents aquí: en iOS/Safari los flex hijos fallan y los CTAs
   * pueden quedar visualmente abajo. Columna explícita agrupa título + botones arriba.
   */
  .hero-hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: var(--hero-cta-gap, clamp(2px, 1.8vw, 14px));
    width: 100%;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .hero-copy {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: max(
      28px,
      calc(env(safe-area-inset-bottom, 0px) + var(--social-bar-height, 52px) * 0.7)
    );
  }
  .hero-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    margin-top: var(--hero-head-margin-top, 0px);
  }
  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    font-size: clamp(50px, 17.5vw, 84px);
    line-height: 0.94;
  }
  .hero-infinity-row {
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 2vw, 12px);
  }
  .hero-cta-stack {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-top: 0;
    gap: 18px 48px;
    grid-column: unset;
    grid-row: unset;
    justify-self: stretch;
    transform: translateY(var(--hero-cta-shift-y, 0px));
  }
  .hero-cta-btn {
    flex: 1 1 auto;
    justify-content: center;
    max-width: 220px;
    min-height: 50px;
    padding: 16px 20px;
    font-size: 11px;
    letter-spacing: 2.8px;
    min-width: 0;
  }
  .hero-3d { width: 100%; opacity: 0.35; }
  .hero-subtitle {
    font-size: clamp(22px, 6.4vw, 30px);
    margin-bottom: 0;
    margin-top: var(--hero-subtitle-gap-after-block, clamp(82px, 17vh, 146px));
    padding-top: 0;
    gap: 8px 0;
    flex-shrink: 0;
    align-self: stretch;
    align-items: center;
    text-align: center;
    line-height: 1.32;
  }
  .hero-subtitle-line { text-align: center; }
  .hero-subtitle-line--place {
    font-size: clamp(13px, 3.9vw, 17px);
    letter-spacing: 2.8px;
    margin-top: 10px;
  }
  /* “Barcelona” más destacada que el “EN” y que las líneas de arriba */
  .hero-subtitle-city {
    font-size: clamp(26px, 7.2vw, 36px);
    letter-spacing: 0.5px;
    vertical-align: baseline;
    line-height: 1.1;
  }
}

/* ── SECTION COMMONS ─────────────────────────────────── */
section {
  position: relative;
  padding: 120px 8%;
}
.section-eyebrow {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 48px;
}
.section-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
  max-width: 640px;
}
.section-body p + p { margin-top: 20px; }

/* ── HERO ICONS ──────────────────────────────────────── */
.hero-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  gap: 0;
}
.hero-icons-social {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.hero-icons-platforms {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.portal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  text-decoration: none;
  color: rgba(232,224,208,0.38);
  background: transparent;
  border: none;
  position: relative;
  transition: color .25s, transform .25s;
}
.portal-link:hover { color: var(--gold); transform: translateY(-2px); }
.portal-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
.portal-icon svg, .portal-icon img { width: 32px; height: 32px; fill: currentColor; object-fit: contain; }
.hero-icons-platforms { gap: 28px; }
.hero-icons-platforms .portal-link { width: 160px; height: 160px; }
.hero-icons-platforms .portal-icon { width: 150px; height: 150px; }
.hero-icons-platforms .portal-icon img { width: 150px; height: 150px; }
.portal-label { display: none; }
.portal-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 768px) {
  .hero-icons {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-icons-social {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-icons-social .portal-link {
    width: 50px;
    height: 50px;
  }
  .hero-icons-social .portal-icon,
  .hero-icons-social .portal-icon svg {
    width: 30px;
    height: 30px;
  }
  .hero-icons-platforms {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 8px;
  }
  .hero-icons-platforms .portal-link {
    width: auto;
    height: auto;
    flex: 1 1 0;
  }
  .hero-icons-platforms .portal-icon {
    width: 100%;
    height: auto;
  }
  .hero-icons-platforms .portal-link[aria-label="OnlyFans"] .portal-icon img {
    width: 108px !important;
    height: 108px !important;
  }
  .hero-icons-platforms .portal-link[aria-label="Bestfans"] .portal-icon img,
  .hero-icons-platforms .portal-link[aria-label="LoyalFans"] .portal-icon img {
    width: 90px !important;
    height: 90px !important;
  }
}

/* ── SOBRE MÍ ────────────────────────────────────────── */
#sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.sobre-photo img, #jaula-canvas {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
#jaula-canvas { filter: saturate(0.7); transition: filter .6s; cursor: default; }
.sobre-photo:hover #jaula-canvas { filter: saturate(1); }
.sobre-photo::after {
  display: none;
}
.sobre-photo-frame {
  display: none;
  position: absolute;
  top: -12px; right: -12px;
  width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid var(--line);
  pointer-events: none;
}
@media (max-width: 900px) {
  #sobre {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-photo { max-height: 500px; }
}
.sobre-photo-mobile { display: none; }
@media (max-width: 768px) {
  .sobre-photo {
    min-height: 440px;
    overflow: hidden;
  }
}

/* ── VIDEO ───────────────────────────────────────────── */
#video-section {
  padding: 80px 0;
  background: #1e0018;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
.video-inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 24px;
}
.video-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 80px rgba(139,0,48,0.25), 0 0 160px rgba(139,0,48,0.1);
  aspect-ratio: 9/16;
}
.video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ── SESIONES ────────────────────────────────────────── */
#sesiones,
#sesiones-grabacion {
  background: transparent;
}


.sesiones-tipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 8px;
  max-width: 960px;
  margin-inline: auto;
  align-items: stretch;
}
.sesiones-tipo {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(200, 169, 110, 0.03);
  position: relative;
  box-sizing: border-box;
}
.sesiones-tipo-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 auto;
  min-width: 0;
}
.sesiones-tipo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--crimson);
}
.sesiones-tipo:nth-child(2)::before {
  background: rgba(201, 168, 76, 0.5);
}
.sesiones-tipo-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--fg);
  margin: 0 0 16px;
  line-height: 1.15;
}
.sesiones-tipo-body {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dim);
  margin: 0 0 22px;
}
.sesiones-tarifas {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 2px;
  overflow: hidden;
}
.sesiones-tarifas td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 169, 110, 0.14);
}
.sesiones-tarifas tbody tr:last-child td {
  border-bottom: none;
}
.sesiones-tarifas tbody tr {
  background: rgba(200, 169, 110, 0.06);
}
.sesiones-tarifas td:last-child {
  text-align: right;
  font-weight: 500;
  color: rgba(232, 224, 208, 0.95);
  letter-spacing: 2.2px;
}
.sesiones-tipo-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 20px;
}
.sesiones-tipo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 100px;
  background: rgba(8, 0, 5, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.92);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
  max-width: 100%;
  box-sizing: border-box;
}
.sesiones-tipo-btn:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: rgba(200, 169, 110, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #sesiones { padding-top: 0; }
  .sesiones-tipo-grid { grid-template-columns: 1fr; gap: 28px; }
  .sesiones-tipo { padding: 28px 22px; }
}

/* ── SERVICIOS ───────────────────────────────────────── */
#servicios {
  background: transparent;
  position: relative;
  overflow: hidden;
}
#servicios {
  padding: 0;
}
.servicios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 700px;
}
.servicios-text {
  padding: 100px 8%;
}
.servicios-side {
  position: relative;
  overflow: hidden;
}
.servicios-side-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.servicios-side-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 10%;
  filter: none;
}
.practicas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}
.practica-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.practica-card.is-open {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
}
.practica-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 14px 16px;
}
.practica-card-title {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}
.practica-card-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.practica-card-toggle:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}
.practica-card-toggle-icon {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}
.practica-card.is-open .practica-card-toggle-icon {
  transform: rotate(45deg);
}
.practica-card-body {
  padding: 0 16px 16px;
}
.practica-card-body[hidden] {
  display: none;
}
.practica-card-body p {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line2);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dim);
}
.practica-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.practica-load-error {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .servicios-layout { grid-template-columns: 1fr; min-height: auto; }
  .servicios-side { height: 400px; }
}
@media (max-width: 768px) {
  .practicas-grid { grid-template-columns: 1fr; }
}

/* ── MAZMORRA ────────────────────────────────────────── */
#mazmorra {
  padding: 120px 0;
  background: transparent;
  overflow: hidden;
}
.mazmorra-header {
  padding: 0 8%;
  margin-bottom: 60px;
}
.mazmorra-palacio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.palacio-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.palacio-img video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.palacio-img video {
  filter: saturate(0.5) brightness(0.7);
  transform: scale(1.03);
  transition: transform 1s ease, filter 1s ease;
}
.palacio-img:hover video {
  transform: scale(1.06);
  filter: saturate(0.92) brightness(0.96);
}
.mazmorra-info-top {
  padding: 0 8% 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.mazmorra-info-top h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.3;
}
.mazmorra-info-top h3 em { font-style: italic; color: var(--gold); }
.mazmorra-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.mazmorra-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mazmorra-feature-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--crimson);
  margin-top: 10px;
  flex-shrink: 0;
}
.mazmorra-feature-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .mazmorra-palacio { grid-template-columns: 1fr; }
  .palacio-img { aspect-ratio: 16 / 10; }
}
@media (max-width: 768px) {
  .mazmorra-palacio { grid-template-columns: 1fr; height: auto; }
  .palacio-img { aspect-ratio: 16 / 10; min-height: 220px; }
  .mazmorra-info-top { grid-template-columns: 1fr; gap: 24px; padding: 0 6% 40px; }
  .mazmorra-features-grid { grid-template-columns: 1fr; }
}

/* ── GALERÍA ─────────────────────────────────────────── */
#sesiones,
#galeria,
#servicios,
#conducta,
#faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
#galeria {
  padding: 120px 0;
  background: transparent;
}
.galeria-header {
  padding: 0 8%;
  margin-bottom: 60px;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.galeria-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.galeria-item.g-in {
  opacity: 1;
  transform: none;
}
.galeria-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}
.galeria-item > picture:not(.galeria-poster) {
  display: block;
  width: 100%;
  height: 100%;
}
.galeria-poster img,
.galeria-item > picture:not(.galeria-poster) img,
.galeria-item-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.5);
  transition: filter .8s, transform .8s, opacity .35s ease;
}
.galeria-item-video {
  position: relative;
  z-index: 0;
  opacity: 0;
}
.galeria-item:hover .galeria-poster img,
.galeria-item:hover .galeria-item > picture:not(.galeria-poster) img,
.galeria-item:hover .galeria-item-video,
.galeria-item.is-playing .galeria-poster img,
.galeria-item.is-playing .galeria-item-video {
  filter: saturate(0.9);
  transform: scale(1.04);
}
.galeria-item:hover .galeria-item-video,
.galeria-item.is-playing .galeria-item-video {
  opacity: 1;
}
.galeria-item:hover .galeria-poster img,
.galeria-item.is-playing .galeria-poster img {
  opacity: 0;
}
@media (max-width: 768px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ENCUENTRA ──────────────────────────────────────── */
#encuentra {
  background: transparent;
  padding: 110px 8%;
  border-top: 1px solid var(--line2);
}
.encuentra-header {
  text-align: center;
  margin-bottom: 72px;
}
.encuentra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.encuentra-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line2);
  text-decoration: none;
  color: var(--dim);
  position: relative;
  overflow: hidden;
  transition: background .35s, color .35s, border-color .35s;
}
.encuentra-card > * {
  position: relative;
  z-index: 1;
}
.encuentra-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.encuentra-card:hover {
  background: rgba(200,169,110,0.04);
  border-color: rgba(200,169,110,0.3);
  color: var(--fg);
}
.encuentra-card:hover::before { opacity: 1; }
.encuentra-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  margin: 18px 0 0 20px;
  transition: color .35s, transform .35s;
}
.encuentra-card:hover .encuentra-card-icon {
  color: var(--gold);
  transform: translateY(-3px);
}
.encuentra-card-icon svg,
.encuentra-card-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.encuentra-card-icon svg { fill: currentColor; }
.icon-muted-gold {
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(178%) hue-rotate(340deg) brightness(90%) contrast(85%);
  opacity: 0.4;
  transition: filter .25s, opacity .25s;
}
.icon-amazon {
  transform: scale(1.14);
  transform-origin: center;
}
.encuentra-card-logo .encuentra-card-icon {
  width: 108px;
  height: 108px;
  margin-top: 22px;
  margin-left: 20px;
}
.encuentra-card-logo .encuentra-card-icon img {
  width: 96px;
  height: 96px;
  transition: filter .25s, opacity .25s;
}
.encuentra-card:hover .icon-muted-gold,
.encuentra-card-logo:hover .encuentra-card-icon img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(37%) saturate(478%) hue-rotate(8deg) brightness(92%) contrast(91%);
  opacity: 1;
}
.encuentra-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: inherit;
  margin-left: 20px;
  transition: color .35s;
}
.encuentra-card:hover .encuentra-card-name { color: var(--gold); }
.encuentra-card-desc {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 20px 18px;
  padding-right: 32px;
}
.encuentra-card-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 18px;
  color: var(--muted);
  transition: color .35s, transform .35s;
}
.encuentra-card:hover .encuentra-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .encuentra-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .encuentra-grid { grid-template-columns: repeat(2, 1fr); }
  .encuentra-card-desc {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
}

/* ── RESERVA INPUTS (modal presencial) ───────────────── */
.reserva-input {
  box-sizing: border-box;
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--fg);
  outline: none;
  transition: border-color .25s;
  width: 100%;
}
.reserva-input::placeholder { color: var(--muted); }
.reserva-input:focus { border-color: rgba(201,168,76,0.5); }
textarea.reserva-input {
  min-height: 112px;
  resize: vertical;
  line-height: 1.7;
}
.reserva-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s;
  margin-top: 4px;
}
.reserva-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* ── SCROLL ANIMATIONS ──────────────────────────────── */
[data-a]           { transition-property: opacity, transform; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
[data-a="up"]      { opacity: 0; transform: translateY(28px);  transition-duration: 0.85s; }
[data-a="title"]   { opacity: 0; transform: translateY(38px);  transition-duration: 1.0s; }
[data-a="left"]    { opacity: 0; transform: translateX(-18px); transition-duration: 0.7s; }
[data-a="card"]    { opacity: 0; transform: translateY(22px) scale(0.975); transition-duration: 0.8s; }
[data-a="fade"]    { opacity: 0;                               transition-duration: 1.1s; }
[data-a].a-in      { opacity: 1 !important; transform: none !important; }

/* ── CHAT SOBRE ─────────────────────────────────────── */
#chat-sobre {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.chat-row.show { opacity: 1; transform: translateY(0); }
.chat-av {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.chat-av img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.chat-bubble {
  background: #1e2b23;
  border: none;
  border-radius: 0px 10px 10px 10px;
  padding: 7px 10px 5px;
  max-width: 88%;
}
.chat-bubble p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: #e8e0d0;
  line-height: 1.35;
  margin: 0;
}
.chat-bubble-meta {
  display: flex; align-items: center; justify-content: flex-end; gap: 4px;
  margin-top: 3px;
}
.chat-time {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0;
  color: rgba(180,200,180,0.5);
}
.chat-check { color: rgba(130,190,130,0.7); font-size: 11px; }
/* Bocadillo del usuario */
.chat-row-user {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.chat-row-user.show { opacity: 1; transform: translateY(0); }
.chat-bubble-user {
  background: #000;
  border: 1.5px solid #25D366;
  border-radius: 10px 0px 10px 10px;
  padding: 7px 10px 5px;
  max-width: 80%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: background .2s;
}
.chat-bubble-user:hover { background: #25D366; }
.chat-bubble-user p {
  font-family: var(--sans); font-size: 14px;
  font-weight: 400; color: #fff; line-height: 1.35; margin: 0;
}
.chat-bubble-user .chat-bubble-meta { justify-content: flex-end; margin-top: 3px; }
/* Typing indicator */
.chat-typing-row {
  display: flex; align-items: flex-end; gap: 8px;
  opacity: 0; transition: opacity 0.2s;
}
.chat-typing-row.show { opacity: 1; }
.chat-dots {
  background: #1e2b23;
  border: none;
  border-radius: 0px 10px 10px 10px;
  padding: 10px 16px;
  display: flex; gap: 5px; align-items: center;
}
.chat-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(180,200,180,0.6);
  animation: dotBounce 1.1s ease-in-out infinite;
}
.chat-dots span:nth-child(2) { animation-delay: .18s; }
.chat-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes dotBounce {
  0%,100% { transform: translateY(0); opacity:.4; }
  45%     { transform: translateY(-5px); opacity:1; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 48px 8% 100px;
  border-top: 1px solid var(--line2);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  flex: 1;
  justify-content: center;
  min-width: min(100%, 280px);
}
.footer-info-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-info-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-info-value {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.4;
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding-bottom: 140px;
  }
  .footer-info { justify-content: center; }
  .footer-copy { align-self: center; }
}

/* Ancla menú móvil «Redes» → scroll al final (barra social fija) */
.redes-anchor {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0;
  scroll-margin-bottom: calc(var(--social-bar-height) + 24px);
  pointer-events: none;
}

/* ── FIXED SOCIAL BAR ───────────────────────────────── */
#social-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(8,0,5,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0 5%;
  height: var(--social-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.social-bar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.sb-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(232,224,208,0.40);
  text-decoration: none;
  transition: color .25s, transform .25s;
}
.sb-social-link:hover { color: var(--gold); transform: translateY(-2px); }
.sb-social-link svg,
.sb-social-link img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}
.sb-social-link svg { fill: currentColor; }
@media (max-width: 768px) {
  #social-bar {
    height: auto;
    padding: 0;
  }
  .social-bar-inner {
    width: 100%;
  }
  .social-bar-social {
    width: 100%;
    justify-content: center;
    padding: 12px 4%;
    gap: 28px;
  }
  .sb-social-link { width: 30px; height: 30px; }
  .sb-social-link svg,
  .sb-social-link img { width: 17px; height: 17px; }
}

/* ── LÍNEA DIVISORIA LÁTIGO (hero → cita) ───────────── */
.whip-divider {
  position: relative;
  z-index: 4;
  width: calc(100vw + 12px);
  margin-left: calc(50% - 50vw - 6px);
  margin-right: calc(50% - 50vw - 6px);
  margin-top: clamp(-28px, -4.3vmin, -18px);
  margin-bottom: clamp(-18px, -2.6vmin, -10px);
  padding: 0;
  line-height: 0;
  pointer-events: none;
  overflow: visible;
}
.whip-divider-svg {
  display: block;
  width: 100%;
  height: clamp(36px, 6vmin, 52px);
  min-height: 34px;
  overflow: visible;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45))
    drop-shadow(0 -1px 0 rgba(255, 220, 160, 0.12));
}

/* ── QUOTE BAND ──────────────────────────────────────── */
.quote-band {
  background: var(--bg3);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 64px 8%;
  text-align: center;
  overflow: hidden;
}
#hero-quote.quote-band {
  border-top: none;
  padding: clamp(42px, 6vw, 52px) 8% 64px;
}
@media (max-width: 768px) {
  .quote-band:first-of-type:not(#hero-quote) {
    padding-top: 22px;
    padding-bottom: 48px;
  }
  #hero-quote.quote-band {
    padding: clamp(24px, 6vw, 34px) 6% 48px;
  }
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  display: inline-block;
  animation: quotePulse 5s ease-in-out infinite;
}
@keyframes quotePulse {
  0%, 100% { transform: scale(1);    opacity: 1;    }
  50%       { transform: scale(1.04); opacity: 0.85; }
}
.quote-band blockquote::before {
  content: '\201C';
  color: var(--crimson);
}
.quote-band blockquote::after {
  content: '\201D';
  color: var(--crimson);
}
#hero-quote {
  scroll-margin-top: 110px;
}
@media (max-width: 768px) {
  #hero-quote {
    scroll-margin-top: 86px;
  }
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
  background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(139, 0, 48, 0.08) 0%, transparent 55%);
  scroll-margin-top: 110px;
}
@media (max-width: 768px) {
  #faq { scroll-margin-top: 86px; }
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-lead {
  margin-bottom: 40px !important;
  max-width: 100%;
}
.faq-list {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
  padding: 22px 36px 22px 0;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
  opacity: 0.85;
}
.faq-item:hover .faq-q { color: var(--gold2); }
.faq-item:hover .faq-q::after { opacity: 1; }
.faq-item[open] .faq-q::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
.faq-item[open] .faq-q { color: var(--gold); padding-bottom: 14px; }
.faq-a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--dim);
  padding: 0 0 26px;
  max-width: 640px;
}
.faq-a p + p { margin-top: 14px; }
.faq-a a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.35);
  transition: border-color 0.2s, color 0.2s;
}
.faq-a a:hover {
  color: var(--gold2);
  border-bottom-color: rgba(232, 200, 138, 0.55);
}
.faq-a strong {
  font-weight: 500;
  color: rgba(232, 224, 208, 0.92);
}
.faq-load-error {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dim);
  padding: 20px 0;
  border-left: 2px solid var(--crimson);
  padding-left: 16px;
  margin: 0;
}
.faq-load-error code {
  font-size: 11px;
  color: var(--gold);
  word-break: break-all;
}

/* ── CONDUCTA & LÍMITES ─────────────────────────────── */
#conducta {
  background: radial-gradient(ellipse 100% 70% at 30% 50%, rgba(139, 0, 48, 0.07) 0%, transparent 58%);
  scroll-margin-top: 110px;
}
@media (max-width: 768px) {
  #conducta { scroll-margin-top: 86px; }
}
.conducta-inner {
  max-width: 720px;
}
.conducta-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.55);
  margin-bottom: 28px;
}
.conducta-forbidden-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  border-top: 1px solid var(--line);
}
.conducta-forbidden-list li {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--fg);
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  letter-spacing: 0.02em;
}
.conducta-forbidden-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  color: var(--crimson);
  line-height: 1;
  text-shadow: 0 0 20px rgba(139, 0, 48, 0.45);
}
.conducta-footer {
  margin-bottom: 0 !important;
  max-width: 100%;
  border-left: 2px solid rgba(200, 169, 110, 0.35);
  padding-left: 20px;
}
.conducta-forbidden-list li.conducta-load-error-row {
  padding-left: 0;
  border-bottom: none;
}
.conducta-forbidden-list li.conducta-load-error-row::before {
  display: none;
}
.conducta-forbidden-list li.conducta-load-error-row .faq-load-error {
  margin: 0;
}
