/* ============================================================
   BLACKBARBERS — FUTURISTIC PREMIUM DESIGN
   ============================================================ */

/* --- VARIABLES --- */
:root {
  --bg:    #030303;
  --bg2:   #07060a;
  --bg3:   #0d0b10;
  --bg4:   #131119;
  --oro:   #c9a84c;
  --oro2:  #e8c96a;
  --oro3:  rgba(201,168,76,0.12);
  --cyan:  #00e5ff;
  --cyan2: rgba(0,229,255,0.15);
  --blanco: #f0ebe0;
  --texto2: rgba(240,235,224,0.55);
  --texto3: rgba(240,235,224,0.28);
  --radio: 14px;
  --trans: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --trans-fast: all 0.2s ease;
  --glow-oro: 0 0 20px rgba(201,168,76,0.4), 0 0 60px rgba(201,168,76,0.15);
  --glow-cyan: 0 0 20px rgba(0,229,255,0.3), 0 0 60px rgba(0,229,255,0.1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--blanco); font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(201,168,76,0.3); color: var(--blanco); }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.35); border-radius: 2px; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 5%; transition: var(--trans);
}
#header.scrolled {
  background: rgba(3,3,3,0.92);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
#header nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: 0.85rem; }
.logo-img { height: 36px; width: auto; filter: brightness(1.1); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--blanco);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--texto2); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--trans); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--oro);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--oro); }
.nav-links a:hover::after { width: 100%; }
.btn-reservar {
  background: transparent; color: var(--oro);
  padding: 0.65rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.5);
  transition: var(--trans); position: relative; overflow: hidden;
}
.btn-reservar::before {
  content: ''; position: absolute; inset: 0;
  background: var(--oro); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
  z-index: -1;
}
.btn-reservar:hover { color: var(--bg); border-color: var(--oro); box-shadow: var(--glow-oro); }
.btn-reservar:hover::before { transform: scaleX(1); }
.menu-toggle { display: none; color: var(--blanco); font-size: 1.5rem; z-index: 1001; }
.mobile-only { display: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85; pointer-events: none;
}
.no-3d .hero-video { opacity: 0.85; }

/* Animated perspective grid */
.hero-grid {
  position: absolute; inset: -50% -20%; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(35deg) translateY(-20%);
  animation: gridFlow 12s linear infinite;
  pointer-events: none;
}
@keyframes gridFlow {
  from { transform: perspective(600px) rotateX(35deg) translateY(-20%); }
  to   { transform: perspective(600px) rotateX(35deg) translateY(0%); }
}
.hero-grid-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

/* ============================================================
   ESCENA 3D — La Navaja de Obsidiana
   ============================================================ */
#scene3d {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  display: block; pointer-events: none;
  /* leve filtro fílmico */
  filter: saturate(1.05) contrast(1.04);
}
.no-3d #scene3d { display: none; }

/* Fallback estático (degradado cinematográfico) cuando 3D falla o reduce-motion */
.hero-fallback-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(0,229,255,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #050308 0%, #0a0810 100%);
}

/* Vignette para dar profundidad al hero */
.hero-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(3,3,3,0.55) 100%),
    linear-gradient(to bottom, rgba(3,3,3,0.45) 0%, transparent 22%, transparent 70%, rgba(3,3,3,0.85) 100%);
}

/* Reduce-motion: desactivar 3D y mostrar solo fondo estático */
@media (prefers-reduced-motion: reduce) {
  #scene3d { display: none; }
  .hero-grid { animation: none; }
}

/* Scan line */
.hero-scan {
  position: absolute; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.5), transparent);
  animation: scan 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0%   { top: -2px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Corner decorations */
.hero-corner {
  position: absolute; width: 60px; height: 60px; z-index: 2; opacity: 0.4;
}
.hero-corner.tl { top: 8%; left: 5%; border-top: 1px solid var(--oro); border-left: 1px solid var(--oro); }
.hero-corner.tr { top: 8%; right: 5%; border-top: 1px solid var(--oro); border-right: 1px solid var(--oro); }
.hero-corner.bl { bottom: 8%; left: 5%; border-bottom: 1px solid var(--oro); border-left: 1px solid var(--oro); }
.hero-corner.br { bottom: 8%; right: 5%; border-bottom: 1px solid var(--oro); border-right: 1px solid var(--oro); }

.hero-content {
  position: relative; z-index: 3;
  max-width: 1400px; margin: 0 auto;
  padding: 10rem 5% 7rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.5rem; opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--cyan)); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.hero-title .line {
  display: block; overflow: hidden;
}
.hero-title .line-inner {
  display: block;
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  transform: translateY(110%);
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.6s; }
.hero-title .oro { color: var(--oro); text-shadow: 0 0 30px rgba(201,168,76,0.3); }

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--texto2); max-width: 520px;
  line-height: 1.8; margin-bottom: 3rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-sub .accent { color: var(--oro); font-style: italic; }

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.1s forwards;
}
.btn-primary {
  background: var(--oro); color: var(--bg);
  padding: 1rem 2.8rem; border-radius: 4px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--trans); display: inline-block; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%; background: rgba(255,255,255,0.2);
  transform: skewX(-20deg); transition: left 0.5s ease;
}
.btn-primary:hover { background: var(--oro2); box-shadow: var(--glow-oro); transform: translateY(-2px); }
.btn-primary:hover::after { left: 150%; }

.btn-outline {
  border: 1px solid rgba(240,235,224,0.2); color: var(--texto2);
  padding: 1rem 2.8rem; border-radius: 4px;
  font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--trans); display: inline-block;
}
.btn-outline:hover { border-color: var(--oro); color: var(--oro); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 3.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s ease 1.3s forwards;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; line-height: 1; color: var(--oro);
  font-weight: 700;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--texto3); margin-top: 0.3rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECCIONES COMUNES
   ============================================================ */
.section { padding: 7rem 5%; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--cyan); opacity: 0.6;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   MANIFESTO
   ============================================================ */
#manifesto {
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 5rem 5%;
  text-align: center; position: relative; overflow: hidden;
}
#manifesto::before {
  content: 'BB'; position: absolute;
  font-family: 'Playfair Display', serif; font-size: 30vw;
  color: rgba(201,168,76,0.025); line-height: 1;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; user-select: none; letter-spacing: 0.1em;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400; line-height: 1.6;
  color: var(--texto2); max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.manifesto-text em { color: var(--oro); font-style: italic; }

/* ============================================================
   SEDES
   ============================================================ */
#sedes { background: var(--bg); padding: 7rem 5%; }
.sedes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.sede-card {
  position: relative; overflow: hidden; height: 520px; cursor: default;
}
.sede-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.8s ease;
  filter: grayscale(20%) brightness(0.75) saturate(0.9);
}
.sede-card:hover img { transform: scale(1.05); filter: grayscale(0%) brightness(0.65) saturate(1.1); }
.sede-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,3,3,0.9) 0%, rgba(3,3,3,0.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem 3rem; transition: var(--trans);
}
.sede-tag {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
}
.sede-tag::before { content: ''; width: 20px; height: 1px; background: var(--cyan); }
.sede-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem;
  transform: translateY(10px); transition: transform 0.4s ease;
}
.sede-card:hover .sede-name { transform: translateY(0); }
.sede-address { color: var(--texto2); font-size: 0.9rem; margin-bottom: 1rem; }
.sede-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.sede-meta-item { font-size: 0.78rem; color: var(--texto3); }
.sede-meta-item strong { color: var(--texto2); display: block; font-size: 0.88rem; }
.sede-border {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  border: 1px solid transparent; transition: border-color 0.4s ease;
}
.sede-card:hover .sede-border { border-color: rgba(201,168,76,0.3); }

/* ============================================================
   SERVICIOS
   ============================================================ */
#servicios { background: var(--bg3); }
.filtros-wrap { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filtro-btn {
  padding: 0.5rem 1.5rem; border-radius: 2px; font-size: 0.75rem;
  font-weight: 500; color: var(--texto3);
  border: 1px solid rgba(240,235,224,0.08);
  letter-spacing: 0.1em; text-transform: uppercase; transition: var(--trans);
}
.filtro-btn:hover, .filtro-btn.active {
  color: var(--bg); background: var(--oro);
  border-color: var(--oro); box-shadow: var(--glow-oro);
}
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; }
.servicio-card {
  background: var(--bg4); padding: 2rem 1.75rem;
  border: 1px solid transparent; transition: var(--trans);
  position: relative; overflow: hidden; cursor: default;
}
.servicio-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--oro);
  transition: width 0.4s ease;
}
.servicio-card:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.15); }
.servicio-card:hover::before { width: 100%; }
.servicio-cat {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem; opacity: 0.75;
}
.servicio-nombre { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.3; }
.servicio-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.servicio-duracion { font-size: 0.78rem; color: var(--texto3); }
.servicio-precio {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--oro); line-height: 1;
}
.servicio-desde-tag { font-size: 0.6rem; color: var(--texto3); letter-spacing: 0.05em; display: block; text-align: right; }
.servicio-cta-btn {
  display: block; width: 100%; margin-top: 1.25rem;
  padding: 0.6rem; background: transparent;
  border: 1px solid rgba(201,168,76,0.2); color: var(--oro);
  border-radius: 2px; font-size: 0.72rem; font-weight: 600;
  text-align: center; letter-spacing: 0.1em; text-transform: uppercase;
  transition: var(--trans);
}
.servicio-cta-btn:hover { background: var(--oro); color: var(--bg); border-color: var(--oro); }

/* ============================================================
   EQUIPO
   ============================================================ */
#equipo { background: var(--bg2); }
.equipo-filtros { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.equipo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.barbero-card {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 3/4; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.barbero-card:hover { transform: translateY(-6px); }
.barbero-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(25%) saturate(0.85) brightness(0.85);
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.barbero-card:hover img { filter: grayscale(0%) saturate(1.05) brightness(0.75); transform: scale(1.06); }
.barbero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.25rem;
}
.barbero-name {
  font-weight: 700; font-size: 0.88rem; line-height: 1.3;
  transform: translateY(8px); transition: transform 0.4s ease;
}
.barbero-card:hover .barbero-name { transform: translateY(0); }
.barbero-sede-tag {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; margin-top: 0.35rem; transition: opacity 0.4s ease 0.1s;
}
.barbero-card:hover .barbero-sede-tag { opacity: 0.7; }
.barbero-sede-tag.brown { color: #d4956a; }
.barbero-sede-tag.bvsf  { color: var(--cyan); }
.barbero-glow {
  position: absolute; inset: 0; border-radius: 4px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 0.4s ease; pointer-events: none;
}
.barbero-card:hover .barbero-glow { box-shadow: inset 0 0 0 1px rgba(201,168,76,0.4); }

/* ============================================================
   HORARIOS
   ============================================================ */
#horarios { background: var(--bg); }
.horarios-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.horarios-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin-bottom: 1rem; color: var(--oro);
}
.horarios-info p { color: var(--texto2); line-height: 1.8; margin-bottom: 1.5rem; }
.horarios-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); border-bottom: 1px solid rgba(0,229,255,0.3);
  padding-bottom: 2px; transition: var(--trans);
}
.horarios-cta:hover { color: var(--oro); border-color: rgba(201,168,76,0.5); }
.horarios-table { width: 100%; border-collapse: collapse; }
.horarios-table thead tr {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.horarios-table th {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--texto3); font-weight: 500; padding: 0.75rem 1rem; text-align: left;
}
.horarios-table td {
  padding: 0.85rem 1rem; font-size: 0.88rem;
  border-bottom: 1px solid rgba(240,235,224,0.04);
  transition: background 0.2s ease;
}
.horarios-table tr:hover td { background: rgba(201,168,76,0.025); }
.dia-txt { font-weight: 600; color: var(--blanco); }
.open-dot { color: #22c55e; font-size: 0.6rem; margin-right: 0.4rem; }
.closed-dot { color: rgba(240,235,224,0.2); font-size: 0.6rem; margin-right: 0.4rem; }
.open-hrs { color: var(--texto2); }
.closed-txt { color: var(--texto3); font-style: italic; }

/* ============================================================
   CONTACTO
   ============================================================ */
#contacto { background: var(--bg3); }
.contacto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; }
.contacto-card {
  background: var(--bg4); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: var(--trans);
  border-top: 2px solid transparent;
}
.contacto-card:hover { background: rgba(201,168,76,0.03); border-top-color: var(--oro); }
.contacto-icon { font-size: 1.5rem; margin-bottom: 1.25rem; }
.contacto-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; margin-bottom: 0.6rem;
}
.contacto-valor { color: var(--texto2); font-size: 0.88rem; line-height: 1.6; }
.contacto-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oro); margin-top: 1rem; transition: var(--trans);
  border-bottom: 1px solid rgba(201,168,76,0.2); padding-bottom: 2px;
}
.contacto-link:hover { color: var(--cyan); border-color: rgba(0,229,255,0.3); }
.contacto-link.wpp { color: #22c55e; border-color: rgba(34,197,94,0.2); }
.contacto-link.wpp:hover { color: #4ade80; }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta-final {
  padding: 9rem 5%; text-align: center;
  background: var(--bg2); position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--cyan); display: block; margin-bottom: 1.25rem;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; margin-bottom: 1rem; line-height: 1.1;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--oro); text-shadow: 0 0 40px rgba(201,168,76,0.25); }
.cta-sub { color: var(--texto2); font-size: 1.05rem; margin-bottom: 3rem; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-wpp {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #22c55e; color: white; padding: 1rem 2.5rem;
  border-radius: 4px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: var(--trans);
}
.btn-wpp:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 12px 35px rgba(34,197,94,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg); padding: 3rem 5%;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.65rem; }
.footer-logo img { height: 28px; filter: brightness(0.8); }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 0.95rem; letter-spacing: 0.15em; color: var(--texto3); }
.footer-copy { color: var(--texto3); font-size: 0.78rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--texto3); font-size: 0.78rem; letter-spacing: 0.06em; transition: var(--trans-fast); }
.footer-links a:hover { color: var(--oro); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(3,3,3,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; width: 100%; max-width: 700px;
  max-height: 92vh; overflow-y: auto;
  animation: modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.95) translateY(15px); }
  to   { opacity:1; transform: none; }
}
.modal-header {
  padding: 1.75rem 2rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(240,235,224,0.06);
  position: sticky; top: 0; background: var(--bg3); z-index: 2;
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; }
.modal-close {
  color: var(--texto3); font-size: 1.1rem; width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--trans-fast);
}
.modal-close:hover { color: var(--blanco); background: rgba(240,235,224,0.08); }
.modal-steps { display: flex; gap: 3px; padding: 1.25rem 2rem 0; }
.step-dot { flex: 1; height: 2px; background: rgba(240,235,224,0.08); transition: var(--trans); }
.step-dot.active { background: var(--oro); }
.step-dot.done  { background: rgba(201,168,76,0.3); }
.modal-body { padding: 1.75rem 2rem; }
.step { display: none; }
.step.active { display: block; }
.step-label {
  font-size: 0.68rem; color: var(--texto3);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}

/* Sede selección */
.sedes-sel { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sede-opt {
  background: var(--bg4); border: 1px solid rgba(240,235,224,0.08);
  border-radius: 6px; padding: 2rem 1.5rem;
  cursor: pointer; transition: var(--trans); text-align: center; position: relative; overflow: hidden;
}
.sede-opt::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--oro); transform: scaleX(0); transition: transform 0.3s ease; }
.sede-opt:hover { border-color: rgba(201,168,76,0.25); }
.sede-opt:hover::before, .sede-opt.selected::before { transform: scaleX(1); }
.sede-opt.selected { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
.sede-opt-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sede-opt-name { font-weight: 700; margin-bottom: 0.25rem; }
.sede-opt-addr { font-size: 0.75rem; color: var(--texto3); }

/* Modal filtros */
.modal-filtros { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.modal-filtro {
  padding: 0.38rem 1rem; border-radius: 2px; font-size: 0.72rem;
  color: var(--texto3); border: 1px solid rgba(240,235,224,0.08);
  letter-spacing: 0.08em; text-transform: uppercase; transition: var(--trans);
}
.modal-filtro:hover, .modal-filtro.active { background: var(--oro); color: var(--bg); border-color: var(--oro); }

/* Servicios modal */
.modal-servicios { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.6rem; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.ms-card {
  background: var(--bg4); border: 1px solid rgba(240,235,224,0.07);
  border-radius: 6px; padding: 1rem; cursor: pointer; transition: var(--trans);
}
.ms-card:hover { border-color: rgba(201,168,76,0.3); }
.ms-card.selected { border-color: var(--oro); background: rgba(201,168,76,0.06); }
.ms-nombre { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.3rem; line-height: 1.3; }
.ms-precio { color: var(--oro); font-size: 0.85rem; }
.ms-dur { color: var(--texto3); font-size: 0.72rem; margin-top: 0.15rem; }

/* Barberos modal */
.modal-barberos { display: grid; grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 0.6rem; max-height: 380px; overflow-y: auto; }
.mb-card {
  background: var(--bg4); border: 1px solid rgba(240,235,224,0.07);
  border-radius: 6px; padding: 0.9rem 0.75rem;
  cursor: pointer; transition: var(--trans); text-align: center;
  position: relative; overflow: hidden;
}
.mb-card:hover { border-color: rgba(201,168,76,0.3); }
.mb-card.selected { border-color: var(--oro); background: rgba(201,168,76,0.06); }
.mb-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--oro); transform: scaleX(0); transition: transform 0.3s ease; }
.mb-card.selected::before, .mb-card:hover::before { transform: scaleX(1); }
.mb-foto { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.6rem; border: 1px solid rgba(201,168,76,0.2); }
.mb-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mb-initials { width: 52px; height: 52px; border-radius: 50%; background: var(--oro3); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; color: var(--oro); font-size: 1rem; margin: 0 auto 0.6rem; }
.mb-name { font-size: 0.72rem; font-weight: 600; line-height: 1.3; }
.mb-sinpref { grid-column: 1 / -1; border-style: dashed !important; }

/* Calendario */
.cal-wrap { margin-bottom: 1.5rem; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-btn { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(201,168,76,0.1); color: var(--oro); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--trans-fast); }
.cal-btn:hover { background: rgba(201,168,76,0.2); }
.cal-titulo { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-ds { text-align: center; font-size: 0.65rem; color: var(--texto3); letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0; }
.cal-d { text-align: center; padding: 0.48rem 0.25rem; border-radius: 6px; font-size: 0.85rem; cursor: pointer; transition: var(--trans-fast); }
.cal-d:hover:not(.dis):not(.empty) { background: rgba(201,168,76,0.12); color: var(--oro); }
.cal-d.today { border: 1px solid rgba(201,168,76,0.3); }
.cal-d.sel { background: var(--oro); color: var(--bg); font-weight: 700; border: none; }
.cal-d.dis { color: var(--texto3); opacity: 0.25; cursor: not-allowed; }
.cal-d.empty { cursor: default; }
.slots-wrap { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 0.4rem; }
.slot {
  background: rgba(240,235,224,0.04); border: 1px solid rgba(240,235,224,0.07);
  border-radius: 4px; padding: 0.48rem 0.25rem;
  text-align: center; font-size: 0.82rem; cursor: pointer; transition: var(--trans-fast);
}
.slot:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--oro); }
.slot.sel { background: var(--oro); color: var(--bg); border-color: var(--oro); font-weight: 700; }
.slot-ocupado {
  background: rgba(255,60,60,0.04); border: 1px solid rgba(255,60,60,0.12);
  border-radius: 4px; padding: 0.48rem 0.25rem;
  text-align: center; font-size: 0.75rem; color: rgba(255,100,100,0.35);
  cursor: not-allowed; text-decoration: line-through; pointer-events: none;
}

/* Form */
.fgroup { margin-bottom: 1.25rem; }
.flabel { display: block; font-size: 0.68rem; color: var(--texto3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.finput {
  width: 100%; background: var(--bg4);
  border: 1px solid rgba(240,235,224,0.08); border-radius: 6px;
  padding: 0.85rem 1rem; color: var(--blanco);
  font-family: inherit; font-size: 0.92rem; transition: var(--trans-fast);
}
.finput:focus { outline: none; border-color: rgba(201,168,76,0.45); background: rgba(201,168,76,0.03); }
.finput::placeholder { color: var(--texto3); }

/* Confirmación */
.confirm-check { width: 70px; height: 70px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 2px solid var(--oro); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { 0%{transform:scale(0);opacity:0} 70%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.resumen-box { background: var(--bg4); border-radius: 6px; padding: 1.25rem; margin-bottom: 1.25rem; }
.res-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.5rem 0; border-bottom: 1px solid rgba(240,235,224,0.05); font-size: 0.85rem; gap: 1rem; }
.res-row:last-child { border-bottom: none; }
.res-label { color: var(--texto3); flex-shrink: 0; }
.res-val { font-weight: 600; text-align: right; }

/* Modal footer */
.modal-footer {
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid rgba(240,235,224,0.06);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; bottom: 0; background: var(--bg3);
}
.btn-back { color: var(--texto3); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; transition: var(--trans-fast); }
.btn-back:hover { color: var(--blanco); }
.btn-next {
  background: var(--oro); color: var(--bg);
  padding: 0.8rem 2.2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; transition: var(--trans);
}
.btn-next:hover:not(:disabled) { background: var(--oro2); box-shadow: var(--glow-oro); transform: translateY(-1px); }
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Spinner */
.spin { display: inline-block; width: 15px; height: 15px; border: 2px solid rgba(3,3,3,0.25); border-top-color: var(--bg); border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 0.4rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   HERO INSTAGRAM WIDGET
   ============================================================ */
.hero-ig {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  animation: fadeInUp 0.8s ease 1.5s both;
}
.hero-ig iframe {
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(201,168,76,0.08);
  display: block;
}
.hero-ig-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-ig-link {
  font-size: 0.72rem;
  color: var(--texto2);
  letter-spacing: 0.06em;
  transition: var(--trans-fast);
}
.hero-ig-link:hover { color: var(--oro); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-ig { display: none; }
}
@media (max-width: 900px) {
  .sedes-grid { grid-template-columns: 1fr; }
  .horarios-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: rgba(3,3,3,0.97);
    backdrop-filter: blur(20px); align-items: center; justify-content: center;
    gap: 2.5rem; z-index: 1000;
  }
  .nav-links.open li { list-style: none; }
  .nav-links.open a { font-size: 1rem; color: var(--blanco); }
  .hero-stats { gap: 2rem; }
  .stat-num { font-size: 2rem; }
  .modal { border-radius: 12px 12px 0 0; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .sedes-sel { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .equipo-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-servicios { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.wpp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #22c55e; color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.45);
  text-decoration: none;
  animation: wppPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(34,197,94,0.6);
  animation: none;
}
.wpp-float svg { flex-shrink: 0; }
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(34,197,94,0.75), 0 0 0 8px rgba(34,197,94,0.12); }
}
.wpp-float-tooltip {
  position: absolute; right: calc(100% + 12px);
  background: rgba(10,10,10,0.92); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.03em; white-space: nowrap;
  padding: 0.4rem 0.85rem; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.wpp-float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10,10,10,0.92);
}
.wpp-float:hover .wpp-float-tooltip {
  opacity: 1; transform: translateX(0);
}
@media (max-width: 480px) {
  .wpp-float { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
}

/* move wpp-float to left so it doesn't overlap Luna chat */
.wpp-float { right: auto; left: 2rem; }
@media (max-width: 480px) { .wpp-float { left: 1.2rem; right: auto; } }

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash {
  position: fixed; inset: 0; z-index: 999999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1),
              transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
#splash.splash-hide {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

/* Floating gold particles */
.splash-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.splash-particles span {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--oro);
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}
.splash-particles span:nth-child(1)  { left:12%; animation-delay:0s;    animation-duration:3.8s; }
.splash-particles span:nth-child(2)  { left:28%; animation-delay:0.6s;  animation-duration:4.2s; width:4px; height:4px; }
.splash-particles span:nth-child(3)  { left:45%; animation-delay:1.1s;  animation-duration:3.5s; }
.splash-particles span:nth-child(4)  { left:60%; animation-delay:0.3s;  animation-duration:4.5s; width:2px; height:2px; }
.splash-particles span:nth-child(5)  { left:75%; animation-delay:0.9s;  animation-duration:3.9s; }
.splash-particles span:nth-child(6)  { left:88%; animation-delay:1.5s;  animation-duration:4.1s; width:4px; height:4px; }
.splash-particles span:nth-child(7)  { left:20%; animation-delay:1.8s;  animation-duration:3.6s; }
.splash-particles span:nth-child(8)  { left:52%; animation-delay:2.2s;  animation-duration:4.3s; width:2px; height:2px; }
.splash-particles span:nth-child(9)  { left:82%; animation-delay:0.7s;  animation-duration:3.7s; }
@keyframes particleFloat {
  0%   { bottom: -10px; opacity: 0; transform: translateX(0) scale(1); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { bottom: 100%; opacity: 0; transform: translateX(20px) scale(0.5); }
}

/* Center content */
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  animation: splashContentIn 0.8s cubic-bezier(0.34,1.36,0.64,1) 0.1s both;
}
@keyframes splashContentIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Logo wrapper */
.splash-logo-wrap {
  position: relative;
  width: 220px; height: 220px;
}

/* Spinning rings */
.splash-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
}
.splash-ring.r1 {
  inset: -18px;
  border-color: rgba(201,168,76,0.5) transparent rgba(201,168,76,0.2) transparent;
  animation: ringSpin 2.8s linear infinite;
}
.splash-ring.r2 {
  inset: -34px;
  border-color: transparent rgba(201,168,76,0.25) transparent rgba(201,168,76,0.1);
  animation: ringSpin 4.5s linear infinite reverse;
}
.splash-ring.r3 {
  inset: -50px;
  border-color: rgba(201,168,76,0.1) transparent transparent transparent;
  animation: ringSpin 7s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* Logo image */
.splash-logo {
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 2px rgba(201,168,76,0.25),
    0 0 40px rgba(201,168,76,0.3),
    0 0 90px rgba(201,168,76,0.12);
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100% { box-shadow: 0 0 0 2px rgba(201,168,76,0.25), 0 0 40px rgba(201,168,76,0.3), 0 0 90px rgba(201,168,76,0.12); }
  50%     { box-shadow: 0 0 0 2px rgba(201,168,76,0.4),  0 0 60px rgba(201,168,76,0.5), 0 0 120px rgba(201,168,76,0.2); }
}

/* Shimmer sweep */
.splash-shimmer {
  position: absolute; inset: 0; border-radius: 50%;
  z-index: 3; pointer-events: none; overflow: hidden;
}
.splash-shimmer::after {
  content: '';
  position: absolute; top: -100%; left: -80%;
  width: 60%; height: 300%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,200,0.18) 50%, transparent 70%);
  animation: shimmerSweep 2.5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  60%,100% { transform: translateX(350%) skewX(-15deg); }
}

/* City tag */
.splash-city {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(201,168,76,0.55);
}

/* Progress bar */
.splash-bar-wrap {
  width: 160px; height: 2px;
  background: rgba(201,168,76,0.1);
  border-radius: 2px; overflow: hidden;
}
.splash-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--oro), #fffbe8, var(--oro2), var(--oro));
  background-size: 200% auto;
  border-radius: 2px;
  transition: width 2.2s cubic-bezier(0.4,0,0.6,1);
  box-shadow: 0 0 10px rgba(201,168,76,0.7);
  animation: barShimmer 1.5s linear infinite;
}
@keyframes barShimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* Loading text */
.splash-loading-txt {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(240,235,224,0.2); font-family: 'Inter', sans-serif;
  animation: txtBlink 1.4s ease-in-out infinite;
}
@keyframes txtBlink {
  0%,100% { opacity: 0.3; } 50% { opacity: 0.7; }
}

/* ============================================================
   TESTIMONIOS — MARQUEE INFINITO
   ============================================================ */
#testimonios {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
  overflow: hidden;
  position: relative;
}
#testimonios::before {
  content: 'CLIENTES';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(201,168,76,0.025);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: 0.2em;
}
.test-track-outer {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.test-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: testScroll 40s linear infinite;
}
.test-track:hover { animation-play-state: paused; }
@keyframes testScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.test-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(13,11,16,0.9);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.test-card::before {
  content: '"';
  position: absolute; top: -10px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 100px; color: rgba(201,168,76,0.07);
  line-height: 1; pointer-events: none;
}
.test-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.test-stars {
  color: var(--oro);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.test-quote {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(240,235,224,0.7);
  margin-bottom: 1.3rem;
  min-height: 80px;
}
.test-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--oro);
  flex-shrink: 0;
}
.test-author > div:nth-child(2) {
  flex: 1;
}
.test-author strong {
  display: block; font-size: 0.82rem; color: var(--blanco);
}
.test-author span {
  font-size: 0.72rem; color: rgba(240,235,224,0.35);
  letter-spacing: 0.05em;
}
.test-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
  color: #22c55e; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px; padding: 2px 8px; white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   LUNA CHAT WIDGET
   ============================================================ */
#lunaWidget {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 10000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
}

/* FAB button */
.luna-fab {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(201,168,76,0.5), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  position: relative; color: #0a0800;
  font-size: 1.4rem; font-weight: 700;
}
.luna-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(201,168,76,0.7), 0 2px 12px rgba(0,0,0,0.5);
}
.luna-fab-icon, .luna-fab-close { pointer-events: none; }
.luna-fab-badge {
  position: absolute; top: -3px; right: -3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

/* Chat window */
.luna-window {
  width: 340px;
  background: rgba(10,9,14,0.97);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
  animation: lunaOpen 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
.luna-window.open {
  display: flex;
}
@keyframes lunaOpen {
  from { opacity: 0; transform: scale(0.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.luna-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.luna-avatar-wrap {
  position: relative; width: 40px; height: 40px; flex-shrink: 0;
}
.luna-avatar-ring {
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--oro), transparent, var(--oro));
  animation: ringRotate 3s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.luna-avatar-inner {
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1506, #0d0b10);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--oro); font-weight: 700;
}
.luna-header-info { flex: 1; }
.luna-header-name {
  font-size: 0.9rem; font-weight: 700;
  color: var(--blanco); letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.4rem;
}
.luna-ia-tag {
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--oro), var(--oro2));
  color: #0a0800; padding: 1px 5px; border-radius: 4px;
}
.luna-header-status {
  font-size: 0.68rem; color: rgba(240,235,224,0.4);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.luna-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.5; }
}
.luna-close-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(240,235,224,0.3); font-size: 1rem;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.luna-close-btn:hover { background: rgba(255,255,255,0.07); color: var(--blanco); }

/* Messages area */
.luna-messages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  max-height: 320px; min-height: 200px;
  scrollbar-width: thin; scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.luna-messages::-webkit-scrollbar { width: 3px; }
.luna-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 2px; }

/* Bubbles */
.luna-msg {
  max-width: 82%; font-size: 0.82rem; line-height: 1.55;
  padding: 0.55rem 0.85rem; border-radius: 14px;
  animation: msgIn 0.25s ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.luna-msg.bot {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.14);
  color: rgba(240,235,224,0.85);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.luna-msg.user {
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.12));
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--blanco);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

/* Typing dots */
.luna-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 0.55rem 0.85rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.14);
  border-bottom-left-radius: 4px; border-radius: 14px;
  width: fit-content; align-self: flex-start;
}
.luna-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.5);
  animation: typeDot 1.2s ease-in-out infinite;
}
.luna-typing span:nth-child(2) { animation-delay: 0.2s; }
.luna-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* Quick reply chips */
.luna-chips {
  padding: 0 0.85rem 0.6rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.luna-chip {
  font-size: 0.72rem; font-weight: 500;
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--oro); background: rgba(201,168,76,0.06);
  border-radius: 20px; padding: 4px 12px;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.luna-chip:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.5); }

/* Composer */
.luna-composer {
  display: flex; gap: 0.5rem; align-items: center;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: rgba(5,4,8,0.6);
}
#lunaInput {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15); border-radius: 22px;
  padding: 0.5rem 0.9rem; color: var(--blanco);
  font-family: 'Inter', sans-serif; font-size: 0.82rem;
  outline: none; transition: border-color 0.2s;
}
#lunaInput::placeholder { color: rgba(240,235,224,0.25); }
#lunaInput:focus { border-color: rgba(201,168,76,0.4); }
.luna-send-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--oro), var(--oro2));
  border: none; cursor: pointer; color: #0a0800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s;
}
.luna-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

@media (max-width: 480px) {
  #lunaWidget { bottom: 1.2rem; right: 1.2rem; }
  .luna-window { width: calc(100vw - 2.4rem); }
  .luna-fab { width: 54px; height: 54px; }
}

/* ============================================================
   EFECTOS 2026 — Split-text, Cursor spotlight, Magnetic CTAs
   ============================================================ */

/* Lenis necesita scroll nativo (no scroll-behavior smooth) */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
html.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Split-text reveal en títulos h2 */
h2.section-title[data-split],
h2.cta-title[data-split] {
  display: inline-block;
}
h2.section-title[data-split] .char,
h2.cta-title[data-split] .char {
  display: inline-block;
  transform: translateY(110%) rotate(4deg);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1),
              opacity 0.6s ease;
  will-change: transform, opacity;
}
h2.section-title.is-revealed[data-split] .char,
h2.cta-title.is-revealed[data-split] .char {
  transform: translateY(0) rotate(0);
  opacity: 1;
}
/* El padre .reveal sigue rigiendo el resto del bloque,
   pero si el h2 está dentro de un .reveal ya visible
   el split-text aún espera su propio observador */
.section-header.reveal.visible h2.section-title { opacity: 1; }

/* Cursor spotlight halo dorado */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 168, 76, 0.10) 0%,
    rgba(201, 168, 76, 0.04) 40%,
    transparent 70%
  );
}
.cursor-spotlight.on { opacity: 1; }

/* Magnetic CTAs — transición elástica para volver al reposo */
.btn-primary,
.btn-reservar,
.horarios-cta,
.btn-wpp {
  transition: var(--trans),
              transform 0.35s cubic-bezier(0.2,0.85,0.25,1);
  will-change: transform;
}

/* Touch devices: deshabilitar cursor effects */
@media (pointer: coarse) {
  .cursor-spotlight { display: none; }
}

/* Reduce motion: revertir efectos kinéticos */
@media (prefers-reduced-motion: reduce) {
  h2.section-title[data-split] .char,
  h2.cta-title[data-split] .char {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .cursor-spotlight { display: none; }
}
