/* =========================================================
   LUMIÁ v2 — Estudio láser & estética · Demo Dobblas
   Dirección NUEVA: dark luxury · editorial fashion.
   Refs: 111SKIN London (negro+lila), Aesop, Curology (B/A slider).
   Drásticamente distinto de Aurea (que es light/clean).
   ========================================================= */

:root {
  /* PALETA — dark luxury */
  --bg:        #0B0908;      /* off-black profundo */
  --bg-2:      #141110;      /* card base */
  --bg-3:      #1E1A18;      /* card hover / alt */
  --bg-light:  #F5EFE6;      /* sección clara puntual (cream) */
  --bg-light-2: #ECE3D5;
  --text:      #F5EFE6;      /* warm white principal */
  --text-2:    #B0A89E;      /* muted body */
  --text-3:    #7A736C;      /* mute */
  --line:      rgba(245, 239, 230, 0.10);
  --line-2:    rgba(245, 239, 230, 0.18);

  --gold:      #C9A26A;      /* champagne sofisticado */
  --gold-2:    #A57F4A;
  --lilac:     #A89BC4;      /* signature lila (ref. 111SKIN) */
  --lilac-deep: #6E5D8F;
  --terra:     #C97A5B;      /* accent cálido para CTAs alternativos */
  --white:     #FFFFFF;
  --black:     #000000;
  --wa-green:  #25D366;

  /* TYPE */
  --font-display: 'Italiana', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* LAYOUT */
  --container-max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-py: clamp(5rem, 9vw, 8.5rem);

  --radius:    4px;
  --radius-sm: 2px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.4, 0, 0.15, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ UTILITY TYPE ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lilac);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 58ch;
}
.section-head { max-width: 760px; margin: 0 0 4rem; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 230, 0.75);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.top-bar-left,
.top-bar-right { display: flex; align-items: center; gap: 1.6rem; }
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease);
}
.top-link:hover { color: var(--gold); }
.top-mute { color: var(--text-3); cursor: default; }
.top-ico { width: 12px; height: 12px; }
.top-hours { color: var(--text-3); font-family: var(--font-mono); font-size: 0.72rem; }
.demo-tag {
  background: var(--gold);
  color: var(--black);
  padding: 0.18rem 0.6rem;
  border-radius: 1px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  gap: 2rem;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.08em;
}
.logo-dot {
  width: 6px; height: 6px;
  background: var(--lilac);
  border-radius: 50%;
  display: inline-block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav a {
  color: var(--text-2);
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--text);
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 239, 230, 0.32);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--black);
  border-color: var(--text);
}
.btn-accent {
  background: var(--lilac);
  color: var(--black);
}
.btn-accent:hover { background: var(--lilac-deep); color: var(--text); }
.btn-lg { padding: 1.15rem 2rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* ============ HERO — FULL BLEED 100vh ============ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg svg,
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,8,0.45) 0%, rgba(11,9,8,0.15) 30%, rgba(11,9,8,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 6rem) 0;
  width: 100%;
}
.hero-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 2rem;
  max-width: 14ch;
}
.hero-title em { font-style: italic; color: var(--lilac); }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-2);
  text-align: right;
  text-transform: uppercase;
  line-height: 1.7;
  padding-bottom: 0.4rem;
}
.hero-meta strong { color: var(--gold); font-weight: 600; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 38s linear infinite;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.marquee-track span { margin: 0 2.5rem; font-style: italic; }
.marquee-track span::after {
  content: "✦";
  margin-left: 2.5rem;
  font-style: normal;
  color: var(--lilac);
  font-size: 1.2rem;
  vertical-align: middle;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ TRATAMIENTOS — lista numerada editorial ============ */
.treatments {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.treatments-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-2);
}
.treatment-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.5fr 180px auto;
  gap: 2.2rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line-2);
  position: relative;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}
.treatment-row:hover { background: var(--bg-2); }
.treatment-row:hover .treatment-num { color: var(--lilac); }
.treatment-row:hover .treatment-thumb { opacity: 1; transform: translateY(-50%) scale(1.02); }
.treatment-num {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  padding-left: var(--gutter);
  transition: color 0.3s var(--ease);
}
.treatment-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.005em;
}
.treatment-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.treatment-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.treatment-cta {
  padding-right: var(--gutter);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.treatment-cta::after { content: "→"; font-family: var(--font-sans); }
.treatment-row:hover .treatment-cta { color: var(--gold); gap: 0.9rem; }
.treatment-thumb {
  position: absolute;
  right: 28%;
  top: 50%;
  width: 200px;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

/* ============ STATS BANNER ============ */
.stats {
  background: var(--bg-light);
  color: var(--black);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
.stat-num em { font-style: italic; color: var(--lilac-deep); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0.6rem 0 0;
  max-width: 22ch;
}

/* ============ ANTES / DESPUÉS SLIDER INTERACTIVO ============ */
.before-after {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.ba-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-2);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--text);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--text);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
}
.ba-handle-knob::before {
  content: "‹ ›";
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ba-label {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: rgba(11, 9, 8, 0.7);
  backdrop-filter: blur(6px);
  color: var(--text);
  border-radius: 2px;
  z-index: 4;
}
.ba-label-left { left: 1.4rem; }
.ba-label-right { right: 1.4rem; }

.ba-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 2.5rem 0 0;
  flex-wrap: wrap;
}
.ba-tab {
  background: transparent;
  color: var(--text-2);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ba-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.ba-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============ TECNOLOGÍA — vertical stack alternating ============ */
.tech { padding: var(--section-py) 0; background: var(--bg); border-top: 1px solid var(--line); }
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tech-row:nth-child(even) .tech-photo { order: 2; }
.tech-row:nth-child(even) .tech-text { order: 1; }
.tech-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  border-radius: var(--radius);
}
.tech-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 1rem;
}
.tech-row h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.tech-row p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.tech-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
  flex-wrap: wrap;
}
.tech-specs span strong { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 600; }

/* ============ EQUIPO ============ */
.team {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.doctor {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.doctor-photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
}
.doctor-photo svg,
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
  filter: brightness(0.85);
}
.doctor:hover .doctor-photo img {
  transform: scale(1.05);
  filter: brightness(1);
}
.doctor-body {
  padding: 1.5rem 1.4rem 1.7rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.doctor-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.3rem;
  letter-spacing: -0.005em;
}
.doctor-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
}
.doctor-cred {
  font-size: 0.85rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.45;
}
.demo-note {
  text-align: center;
  color: var(--text-3);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 2.5rem;
}

/* ============ TESTIMONIAL DESTACADO ============ */
.testimonial {
  padding: var(--section-py) 0;
  background: var(--bg);
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 2rem;
  letter-spacing: -0.005em;
}
.testimonial-quote::before { content: "“"; color: var(--lilac); margin-right: 0.1em; font-size: 1.2em; vertical-align: -0.15em; }
.testimonial-quote::after  { content: "”"; color: var(--lilac); margin-left: 0.1em;  font-size: 1.2em; vertical-align: -0.15em; }
.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.testimonial-author strong { color: var(--gold); font-weight: 600; }
.testimonial-google {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-2);
}
.testimonial-google strong { color: var(--text); font-weight: 600; }

/* ============ CLUB ============ */
.club {
  padding: var(--section-py) 0;
  background: var(--bg-light);
  color: var(--black);
}
.club .section-title { color: var(--black); }
.club .section-sub { color: var(--text-3); }
.club .eyebrow { color: var(--gold-2); }
.club .eyebrow::before { background: var(--gold-2); }
.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
}
.club-tier {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.4rem 2rem;
}
.club-tier--feat {
  background: var(--black);
  color: var(--text);
  border: 0;
}
.club-tier h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
}
.club-tier--feat h3 { color: var(--text); }
.club-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}
.club-price small { font-family: var(--font-mono); font-size: 0.8rem; opacity: 0.6; letter-spacing: 0.06em; }
.club-tier ul { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; }
.club-tier li {
  padding: 0.65rem 0;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.club-tier--feat li { border-bottom-color: rgba(245, 239, 230, 0.08); }
.club-tier li::before {
  content: "—  ";
  color: var(--gold);
}

/* ============ PRECIOS ============ */
.pricing { padding: var(--section-py) 0; background: var(--bg); }
.pricing-table {
  border-top: 1px solid var(--line-2);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s var(--ease);
}
.pricing-row:hover { background: var(--bg-2); }
.pricing-head {
  background: transparent !important;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding-bottom: 1rem;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}
.pricing-single { color: var(--text-2); font-family: var(--font-mono); font-size: 0.92rem; }
.pricing-pack {
  font-family: var(--font-mono);
  font-size: 0.96rem;
  color: var(--gold);
  font-weight: 600;
}
.pricing-pack small { font-weight: 400; color: var(--text-3); font-size: 0.74rem; }

/* ============ FAQ ============ */
.faq { padding: var(--section-py) 0; background: var(--bg); border-top: 1px solid var(--line); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line-2);
}
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s var(--ease);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-q::after { content: "−"; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.65;
  padding: 0;
}
.faq-item.is-open .faq-a { max-height: 500px; padding: 0 0 1.6rem; }

/* ============ CONTACT ============ */
.contact { padding: var(--section-py) 0; background: var(--bg); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info p { color: var(--text-2); margin: 0.4rem 0; font-size: 0.98rem; line-height: 1.6; }
.contact-info p strong {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info a { color: var(--text); border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: border-color 0.2s var(--ease); }
.contact-info a:hover { border-bottom-color: var(--gold); }
.contact-form {
  background: var(--bg-2);
  padding: 2.2rem;
  border: 1px solid var(--line);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--text);
  font-size: 1rem;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field-consent {
  display: flex;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-2);
  margin: 1.2rem 0 1.4rem;
  align-items: flex-start;
}
.field-consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.field-consent a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  color: rgba(245, 239, 230, 0.65);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.site-footer .logo { color: var(--text); }
.footer-brand p { font-size: 0.92rem; margin: 1.2rem 0 0; line-height: 1.6; max-width: 28rem; color: rgba(245,239,230,0.55); }
.footer-license { font-size: 0.78rem !important; color: rgba(245,239,230,0.35) !important; margin-top: 1.2rem !important; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.footer-col a { color: rgba(245,239,230,0.62); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; margin: 0.35rem 0; line-height: 1.6; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 1rem;
}
.demo-stamp { color: rgba(245,239,230,0.45); }
.demo-stamp strong { color: var(--gold); font-weight: 600; }
.footer-credit { color: rgba(245,239,230,0.45); }
.footer-credit a { color: var(--text); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }

/* ============ REVEAL ANIM ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ FULL-WIDTH BREAKOUT ============ */
body.lumia-page { overflow-x: hidden; background: var(--bg); }
body.lumia-page .elementor-section,
body.lumia-page .elementor-container,
body.lumia-page .elementor-column,
body.lumia-page .elementor-widget-wrap,
body.lumia-page .elementor-widget-html,
body.lumia-page .elementor-widget-html > .elementor-widget-container,
body.lumia-page .top-bar,
body.lumia-page .site-header,
body.lumia-page .hero-section,
body.lumia-page .marquee,
body.lumia-page section.treatments,
body.lumia-page section.stats,
body.lumia-page section.before-after,
body.lumia-page section.tech,
body.lumia-page section.team,
body.lumia-page section.testimonial,
body.lumia-page section.club,
body.lumia-page section.pricing,
body.lumia-page section.faq,
body.lumia-page section.contact,
body.lumia-page .site-footer {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}
body.lumia-page .is-layout-constrained > *,
body.lumia-page .is-layout-flow > * { max-width: 100% !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-section { min-height: 80vh; }
  .hero-row { grid-template-columns: 1fr; }
  .hero-meta { text-align: left; }
  .treatments-list .treatment-row {
    grid-template-columns: 50px 1fr;
    grid-template-areas: "num name" ". desc" ". price";
    gap: 0.8rem 1rem;
    padding: 1.8rem var(--gutter);
  }
  .treatment-num { grid-area: num; padding: 0; }
  .treatment-name { grid-area: name; font-size: 1.6rem; }
  .treatment-desc { grid-area: desc; }
  .treatment-price { grid-area: price; }
  .treatment-cta, .treatment-thumb { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .tech-row { grid-template-columns: 1fr; }
  .tech-row:nth-child(even) .tech-photo { order: 0; }
  .tech-row:nth-child(even) .tech-text { order: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .club-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .marquee-track { font-size: 1.6rem; }
}
@media (max-width: 640px) {
  .top-bar-left .top-mute { display: none; }
  .top-hours { display: none; }
  .nav { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-row { grid-template-columns: 2fr 1fr; }
  .pricing-row > :nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.7rem; }
  .ba-handle-knob { width: 44px; height: 44px; }
}
