/* ============================================================
   TOPGLOBALNET — Víctor · Cursos IA (v3 editorial)
   ============================================================ */

:root {
  --bg:        #061208;            /* tech green-black */
  --bg-deep:   #020604;
  --bg-warm:   #0d1f12;
  --tint:      #16c47f;            /* fintech green */
  --tint-soft: #b4f0d2;
  --tint-deep: #0d965a;
  --text:      #f0fdf6;
  --text-dim:  #a8c8b8;
  --text-mute: #5e7a68;
  --rule:      rgba(22,196,127,0.16);
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
  --max-w:     1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--tint); color: var(--bg-deep); }

/* ============================================================
   1. BACKGROUND nuevo — warm radial + grain noise + vignette
   ============================================================ */
.bg-base {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,  rgba(22,196,127,0.16), transparent 70%),
    radial-gradient(ellipse 70% 80% at 100% 100%, rgba(13,150,90,0.14), transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 70%, rgba(180,240,210,0.06), transparent 70%),
    linear-gradient(to bottom, var(--bg-warm) 0%, var(--bg) 35%, var(--bg-deep) 100%);
  pointer-events: none;
}
#smoke-bg {
  position: fixed; inset: 0; z-index: 1;
  width: 100vw; height: 100vh;
  display: block;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
}
.bg-vignette {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.65) 100%);
}

/* ============================================================
   2. INTRO
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--bg-deep);                  /* opaco — sin translucidez */
  gap: 50px;
  transition: opacity 0.45s cubic-bezier(.6,0,.2,1);
}
/* Canvas NeuralNoise propio de la intro (opaco, idéntico al del body) */
.intro-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(22,196,127,0.16), transparent 70%),
    radial-gradient(ellipse 70% 80% at 100% 100%, rgba(13,150,90,0.14), transparent 60%),
    linear-gradient(to bottom, var(--bg-warm) 0%, var(--bg) 50%, var(--bg-deep) 100%);
}
.intro > .intro-vaporize,
.intro > .intro-access { position: relative; z-index: 2; }
.intro.gone { opacity: 0; pointer-events: none; }
.intro-vaporize {
  width: min(92vw, 1100px);
  height: clamp(140px, 22vw, 280px);
  display: block;
  filter: drop-shadow(0 12px 50px rgba(22,196,127,0.25));
}
.intro-access {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 38px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--tint);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 4px 28px rgba(22,196,127,0.32);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s, background 0.3s;
  animation: access-pulse 2.6s ease-in-out infinite;
}
.intro-access svg { width: 14px; height: 14px; transition: transform 0.4s; }
.intro-access:hover {
  background: var(--tint-soft);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 40px rgba(22,196,127,0.55);
}
.intro-access:hover svg { transform: translateX(5px); }
.intro-access::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.intro-access:hover::before { transform: translateX(120%); }
.intro-access[data-disabled="true"] { pointer-events: none; opacity: 0; transition: opacity 0.4s; }
@keyframes access-pulse {
  0%, 100% { box-shadow: 0 4px 28px rgba(22,196,127,0.32); }
  50%      { box-shadow: 0 4px 44px rgba(22,196,127,0.55); }
}

/* ============================================================
   3. CURSOR MAGNÉTICO
   ============================================================ */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--tint);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(.6,0,.2,1),
              height 0.3s cubic-bezier(.6,0,.2,1),
              background 0.3s, border-color 0.3s, opacity 0.2s;
  mix-blend-mode: difference;
  will-change: transform, width, height;
  opacity: 0;
}
.cursor-ring.on { opacity: 1; }
.cursor-ring.hover {
  width: 78px; height: 78px;
  background: var(--tint-soft);
  border-color: var(--tint-soft);
}
@media (hover: none) { .cursor-ring { display: none; } }

/* ============================================================
   4. SCROLL BAR
   ============================================================ */
.scroll-bar {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px; z-index: 60;
  background: linear-gradient(to right, var(--tint-soft), var(--tint), var(--tint-soft));
  transform-origin: left center; transform: scaleX(0);
  box-shadow: 0 0 16px rgba(22,196,127,0.55);
  transition: transform 0.08s linear;
}

/* ============================================================
   5. HEADER
   ============================================================ */
.hd {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
}
.hd-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-style: italic; }
.hd-brand svg { width: 28px; height: 28px; }
.hd-brand-name { font-size: 18px; font-weight: 700; letter-spacing: 2px; }
.hd-brand-dot  { color: var(--tint); opacity: 0.6; margin: 0 2px; }
.hd-brand-loc  { font-family: var(--font-mono); font-style: normal; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-mute); }
.hd-nav { display: flex; align-items: center; gap: 32px; }
.hd-nav a {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
  padding: 8px 4px;
}
.hd-nav a:hover { color: var(--tint); }
.hd-nav .hd-cta {
  padding: 10px 22px;
  border: 1px solid var(--tint);
  border-radius: 999px;
  color: var(--tint);
}
.hd-nav .hd-cta:hover { background: var(--tint); color: var(--bg-deep); }

/* ============================================================
   6. HERO con foto full-bleed + ken burns + asimétrico
   ============================================================ */
.hero {
  position: relative; z-index: 5;
  min-height: 100vh;
  padding: 0 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
  transform: scale(1.08);
  animation: ken-burns 22s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  to { transform: scale(1.18) translate(-2%, 1%); }
}
.hero-photo-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,4,10,0.85) 0%, rgba(11,4,10,0.5) 40%, rgba(11,4,10,0.2) 75%, rgba(11,4,10,0.7) 100%),
    linear-gradient(to bottom, rgba(11,4,10,0.45) 0%, transparent 30%, transparent 70%, rgba(11,4,10,0.9) 100%);
}

.hero-meta-top {
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero-content {
  align-self: end;
  max-width: 880px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(12px);
  animation: fade-up 1s 0.4s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(80px, 17vw, 240px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 40px;
  overflow: hidden;
  text-shadow: 0 8px 60px rgba(0,0,0,0.5);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .ch {
  display: inline-block; opacity: 0;
  transform: translateY(110%);
  animation: ch-reveal 0.95s cubic-bezier(.6,0,.2,1) forwards;
  animation-delay: calc(0.08s * var(--i, 0) + 0.6s);
}
.hero-title .ch:nth-child(1) { --i: 0; color: var(--text); }
.hero-title .ch:nth-child(2) { --i: 1; color: var(--tint); }
.hero-title .ch:nth-child(3) { --i: 2; color: var(--text); }
.hero-title .ch:nth-child(4) { --i: 3; color: var(--text); }
.hero-title .ch:nth-child(5) { --i: 4; color: var(--text); }
.hero-title .ch:nth-child(6) { --i: 5; color: var(--text); }
@keyframes ch-reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-up   { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4; font-weight: 400;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 1.1s 1.4s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-sub em { color: var(--tint); }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1.1s 1.6s cubic-bezier(.4,0,.2,1) forwards;
}

.hero-meta-bottom {
  padding-bottom: 50px;
  display: flex; gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  opacity: 0;
  animation: fade-up 1.1s 1.85s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-meta-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-stat strong {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 500;
  color: var(--tint);
  letter-spacing: -0.02em;
}
.hero-meta-stat span {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero-scroll {
  position: absolute;
  bottom: 24px; right: 56px;
  width: 26px; height: 44px;
  border: 1.5px solid var(--tint);
  border-radius: 999px;
  z-index: 5;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--tint);
  border-radius: 2px;
  animation: scroll-dot 1.8s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(16px); opacity: 0; }
  61%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1),
              background 0.3s, color 0.3s, border-color 0.3s,
              box-shadow 0.5s;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(.4,0,.2,1);
  pointer-events: none; z-index: 1;
}
.btn:hover::before { transform: translateX(120%); }
.btn::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, var(--tint) 0%, transparent 70%);
  filter: blur(14px); opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.btn:hover::after { opacity: 0.45; }
.btn-primary {
  background: var(--tint); color: var(--bg-deep);
  box-shadow: 0 4px 18px rgba(22,196,127,0.18);
}
.btn-primary:hover {
  background: var(--tint-soft);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(22,196,127,0.45);
}
.btn-ghost {
  border: 1px solid rgba(22,196,127,0.5);
  color: var(--tint);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(22,196,127,0.08); border-color: var(--tint); transform: translateY(-2px); }
.btn-xl { padding: 18px 32px; font-size: 13px; }

/* ============================================================
   8. PARALLAX STRIP — floating images entre secciones
   ============================================================ */
.parallax-strip {
  position: relative; z-index: 5;
  min-height: 55vh;
  padding: 70px 56px;
  overflow: hidden;
  display: grid; place-items: center;
}
.pl-img {
  position: absolute;
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(22,196,127,0.15);
  will-change: transform;
  filter: brightness(0.85) saturate(1.05);
}
.pl-1 { top: 10%;  left:  8%;  width: 220px; aspect-ratio: 3/4; object-fit: cover; transform: rotate(-6deg); }
.pl-2 { top: 50%;  right: 8%;  width: 260px; aspect-ratio: 3/4; object-fit: cover; transform: rotate(4deg); }
.pl-3 { bottom: 6%; left: 35%; width: 200px; aspect-ratio: 4/3; object-fit: cover; transform: rotate(-3deg); }
.pl-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2; font-weight: 400;
  color: var(--text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* ============================================================
   9. SECTION HEADS
   ============================================================ */
.sec-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tint-deep);
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.sec-head { max-width: var(--max-w); margin: 0 auto 56px; text-align: center; }
.sec-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.sec-title em { font-style: italic; color: var(--tint); font-weight: 500; }

/* ============================================================
   10. TRATAMIENTOS — accordion
   ============================================================ */
.tratamientos {
  position: relative; z-index: 5;
  padding: 60px 56px 50px;
}
.accordion {
  display: flex; gap: 8px;
  height: 520px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.acc-item {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.75s cubic-bezier(.6,0,.2,1);
  background: #2a0e16;
}
.acc-item[data-active="true"], .acc-item:hover { flex: 4; }
.acc-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.65) saturate(1.1);
  transition: filter 0.6s, transform 6s ease-out;
}
.acc-item:hover img { filter: brightness(0.85) saturate(1.2); transform: scale(1.05); }
.acc-overlay {
  position: absolute; inset: 0;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(11,4,10,0.94) 0%, rgba(11,4,10,0.35) 60%, transparent 100%);
  color: var(--text);
}
.acc-tag {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 14px;
}
.acc-overlay h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.1; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.acc-overlay p {
  font-size: 14px; line-height: 1.55;
  color: var(--text-dim);
  max-width: 480px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s 0.15s, transform 0.5s 0.15s;
  margin-bottom: 14px;
}
.acc-item[data-active="true"] .acc-overlay p,
.acc-item:hover .acc-overlay p { opacity: 1; transform: translateY(0); }
.acc-price {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--tint-soft);
  opacity: 0;
  transition: opacity 0.4s 0.25s;
}
.acc-price strong { color: var(--tint); font-weight: 700; }
.acc-item[data-active="true"] .acc-price,
.acc-item:hover .acc-price { opacity: 1; }

/* ============================================================
   PRICING grid
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: rgba(6,18,8,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.3s, box-shadow 0.35s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--tint);
  box-shadow: 0 18px 50px -20px rgba(22,196,127,0.35);
}
.price-card-pop {
  border-color: var(--tint);
  background: rgba(13,31,18,0.85);
  box-shadow: 0 18px 50px -20px rgba(22,196,127,0.4);
}
.pc-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--tint);
  border-radius: 999px;
}
.pc-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 18px;
}
.pc-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 24px;
}
.pc-price .amount {
  font-family: var(--font-serif);
  font-size: 54px; font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pc-price .period {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pc-list {
  list-style: none;
  padding: 0; margin: 0 0 26px 0;
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.pc-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px; font-weight: 400;
  color: var(--text-dim);
  line-height: 1.45;
}
.pc-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--tint);
}
.price-card .btn { width: 100%; justify-content: center; }

.founder-card { display: flex; align-items: center; gap: 12px; }
.founder-card img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--tint);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.founder-card strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tint);
  font-weight: 700;
}
.founder-card span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px;
  color: var(--text);
}

/* ============================================================
   11. DIVIDER
   ============================================================ */
.divider {
  display: flex; align-items: center; gap: 18px;
  max-width: 320px;
  margin: 0 auto;
  padding: 30px 24px;
  opacity: 0.55;
  position: relative; z-index: 5;
}
.divider .line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--tint), transparent); }
.divider .mark { width: 18px; height: 18px; display: grid; place-items: center; }
.divider .mark::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--tint); border-radius: 50%;
  box-shadow: -10px 0 0 -2px var(--tint), 10px 0 0 -2px var(--tint);
}

/* ============================================================
   12. MANIFIESTO magazine layout (asimétrico)
   ============================================================ */
.manifest {
  position: relative; z-index: 5;
  max-width: var(--max-w); margin: 0 auto;
  padding: 50px 56px 70px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2.6fr;
  gap: 60px;
  align-items: center;
}
.manifest .sec-num { grid-column: 1; align-self: start; }
.manifest-title {
  grid-column: 1;
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.manifest-title em { font-style: italic; color: var(--tint); font-weight: 500; }
.manifest-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: end;
}
.manifest-stat .num {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1; color: var(--tint);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.manifest-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.manifest-stat .bar { height: 2px; background: var(--rule); border-radius: 2px; overflow: hidden; }
.manifest-stat .bar span {
  display: block; height: 100%; width: 0;
  background: var(--tint);
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   13. RESERVA
   ============================================================ */
.reserve {
  position: relative; z-index: 5;
  padding: 60px 56px 80px;
}
.reserve-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.reserve-inner .sec-num { display: inline-block; }
.reserve-body {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--text-dim);
  margin: 24px auto 40px;
  max-width: 580px;
}
.reserve-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 50px;
}
.reserve-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.reserve-meta > div { display: flex; flex-direction: column; gap: 6px; }
.reserve-meta strong {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tint);
  font-weight: 700;
}
.reserve-meta span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--text);
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.ft {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 30px 56px 36px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mute);
  border-top: 1px solid var(--rule);
}
.ft a { color: var(--tint); }

/* ============================================================
   15. MINI PLAYER
   ============================================================ */
.mini-player {
  position: fixed; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(26,8,16,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(22,196,127,0.18);
  border-radius: 999px;
  z-index: 50;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.mini-player.on { opacity: 1; transform: translateY(0); }
.mp-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--tint);
  display: grid; place-items: center;
  transition: transform 0.2s;
}
.mp-btn:hover { transform: scale(1.08); }
.mp-btn svg { width: 12px; height: 12px; fill: var(--bg-deep); }
.mp-info { line-height: 1.2; }
.mp-title  { font-size: 12px; font-weight: 700; color: var(--text); }
.mp-artist { font-size: 10px; color: var(--text-mute); letter-spacing: 0.5px; }
.mp-eq {
  display: inline-flex; align-items: flex-end; gap: 2px;
  height: 14px; margin-left: 4px;
}
.mp-eq span {
  display: block; width: 2px;
  background: var(--tint); border-radius: 1px;
  animation: eq-bounce 0.95s ease-in-out infinite;
  transform-origin: bottom;
}
.mp-eq span:nth-child(1) { animation-delay: -0.0s;  height: 9px; }
.mp-eq span:nth-child(2) { animation-delay: -0.35s; height: 14px; }
.mp-eq span:nth-child(3) { animation-delay: -0.7s;  height: 7px; }
.mp-eq span:nth-child(4) { animation-delay: -0.15s; height: 12px; }
.mini-player.paused .mp-eq span { animation-play-state: paused; opacity: 0.35; }
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(1); }
}

/* ============================================================
   16. MOBILE ≤ 820px
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 820px) {
  /* Mobile: deshabilita ambos shaders (perf) — el .bg-base + bg-vignette dan suficiente atmósfera */
  #smoke-bg, .intro-bg { display: none !important; }

  .hd { padding: 18px 22px; }
  .hd-brand-loc { display: none; }
  .hd-nav { gap: 16px; }
  .hd-nav a { font-size: 10px; letter-spacing: 2.5px; padding: 6px 2px; }
  .hd-nav .hd-cta { padding: 8px 14px; }

  .hero { padding: 0 22px; }
  .hero-meta-top { padding-top: 16px; font-size: 9px; letter-spacing: 2.5px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 18px; }
  .hero-sub { font-size: 17px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 18px; font-size: 11px; letter-spacing: 2.5px; }
  .btn-xl { padding: 14px 22px; font-size: 12px; }
  .hero-content { padding-bottom: 40px; }
  .hero-meta-bottom {
    flex-direction: column; gap: 16px;
    padding-top: 20px; padding-bottom: 30px;
  }
  .hero-meta-stat { flex-direction: row; align-items: baseline; gap: 14px; }
  .hero-meta-stat strong { font-size: 22px; }
  .hero-scroll { display: none; }

  .parallax-strip { padding: 70px 22px; min-height: 60vh; }
  .pl-img { width: 130px; }
  .pl-1 { width: 130px; left: -10px; top: 6%; }
  .pl-2 { width: 150px; right: -10px; top: 50%; }
  .pl-3 { width: 140px; left: 50%; transform: translateX(-50%) rotate(-3deg); bottom: 4%; }
  .pl-quote { font-size: 22px; padding: 0 20px; }

  .tratamientos { padding: 60px 22px 50px; }
  .sec-head { margin-bottom: 36px; }
  .accordion { flex-direction: column; height: auto; gap: 14px; }
  .acc-item { height: 220px; flex: 1; border-radius: 14px; }
  .acc-item[data-active="true"], .acc-item:hover { flex: 1; height: 360px; }
  .acc-overlay { padding: 20px; }
  .acc-overlay h3 { font-size: 22px; }
  .acc-overlay p { font-size: 13px; opacity: 1; transform: none; }
  .acc-price { opacity: 1; }

  .manifest {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 22px 60px;
  }
  .manifest-title { font-size: 38px; }
  .manifest-grid { grid-template-columns: 1fr; gap: 30px; }

  .reserve { padding: 60px 22px 80px; }
  .reserve-body { font-size: 17px; margin: 18px auto 28px; }
  .reserve-actions { flex-direction: column; align-items: stretch; }
  .reserve-meta { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }

  .ft { padding: 20px 22px 28px; font-size: 9px; }

  .mini-player { bottom: 16px; left: 16px; padding: 8px 12px 8px 10px; }
  .mp-btn { width: 28px; height: 28px; }
  .mp-title { font-size: 11px; }
  .mp-artist { font-size: 9px; }
}
