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


:root {
  --bg:#080808;
  --bg2:#0f0f0f;
  --bg3:#161616;
  --surface:rgba(255,255,255,0.04);
  --surface-hover:rgba(255,255,255,0.07);
  --border:rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --txt:#f0ede8;
  --txt-dim:rgba(240,237,232,0.45);
  --txt-muted:rgba(240,237,232,0.22);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}


.cur-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 6px; height: 6px; background: var(--txt);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(240,237,232,0.25); border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.16,1,.3,1),
              height .35s cubic-bezier(.16,1,.3,1),
              border-color .2s;
}
.cur-dot.h  { width: 10px; height: 10px; }
.cur-ring.h { width: 52px; height: 52px; border-color: rgba(240,237,232,0.5); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 3rem;
  transition: padding .4s ease, background .4s ease;
}
nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Sans', sans-serif; font-weight: 200;
  font-size: 1.1rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--txt); text-decoration: none; opacity: .9;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--txt-dim); text-decoration: none;
  transition: color .25s; font-weight: 300;
}
.nav-links a:hover, .nav-links a.active { color: var(--txt); }
.nav-cta {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--txt); text-decoration: none; font-weight: 300;
  padding: .55rem 1.4rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .2s;
}
.nav-cta:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}


/* ── HERO ── */
/* Antes medía 260vh para dar "recorrido" al scroll manual.
   Ahora arranca en 100vh y la transición es automática por JS + timers,
   así que no necesitamos ese espacio muerto. */
.hero-wrap {
  height: 100vh;
  position: relative;
}

.hero-panel {
  position: sticky;
  top: 0;
  overflow: hidden;
  will-change: margin, border-radius, height;

  --p: 0;

  height:       calc(100vh  - var(--p) * 30vh);

  margin-left:  calc(var(--p) * 2.5vw);
  margin-right: calc(var(--p) * 2.5vw);
  margin-top:   calc(var(--p) * 1.2rem);

  border-radius: calc(var(--p) * 20px);
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  transform: scale(calc(1 + var(--p) * 0.06));
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  
}

.hero-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;

  transform: translateY(calc(var(--p) * -50px));
  will-change: transform;
}

.page-eyebrow {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1.2rem; display: block;
  opacity: calc(1 - var(--p) * 2);
  animation: up .7s ease .3s both;
}

.page-title {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 1.0; letter-spacing: -.02em; max-width: 720px;
  transform: scale(calc(1 - var(--p) * 0.06));
  will-change: transform;
  animation: up .9s cubic-bezier(.16,1,.3,1) .45s both;
}
.page-title em { font-style: italic; color: var(--txt-dim); }


.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: calc(1 - var(--p) * 4);
  pointer-events: none;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-hint span {
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--txt-muted);
}
.scroll-hint-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--txt-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.8} }

@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


.svc { padding: 0 3rem; }
.svc-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.svc-layout {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-num {
  font-family: 'Cormorant', serif; font-weight: 300; font-style: italic;
  font-size: 5rem; line-height: 1; color: var(--txt-muted);
  letter-spacing: -.03em; padding-top: .3rem;
}
.svc-tag {
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1rem; display: block;
}
.svc-name {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 1.2rem;
}
.svc-name em { font-style: italic; color: var(--txt-dim); }
.svc-desc {
  font-size: .85rem; color: var(--txt-dim); line-height: 1.9;
  margin-bottom: 2rem; max-width: 380px;
}
.svc-precio-wrap {
  display: inline-flex; align-items: baseline; gap: .5rem; margin-bottom: 2rem;
}
.svc-precio {
  font-family: 'Cormorant', serif; font-weight: 300; font-style: italic;
  font-size: 2.4rem; line-height: 1; color: var(--txt); letter-spacing: -.02em;
}
.svc-precio-label {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--txt-muted);
}
.svc-cta {
  display: inline-block;
  padding: .65rem 1.6rem; border-radius: 100px;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  background: var(--surface); color: var(--txt);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .2s;
}
.svc-cta:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.svc-includes-label {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1.2rem; display: block;
}
.svc-list { list-style: none; }
.svc-list li {
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  font-size: .83rem; color: var(--txt-dim); line-height: 1.5;
  display: flex; align-items: flex-start; gap: .85rem;
  transition: color .2s;
}
.svc-list li:first-child { border-top: 1px solid var(--border); }
.svc-list li:hover { color: var(--txt); }
.svc-list-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; color: var(--txt-muted);
}
.svc-img {
  filter: brightness(60%);
   width: 100%;
  height: 100%;
  object-fit: cover;
  grid-column: 1 / -1; margin-top: 3.5rem;
  height: 280px; border-radius: 20px;
  background: var(--bg3); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.svc-img-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.svc-img-hint {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.08); font-style: italic;
  font-family: 'Cormorant', serif; text-align: center; padding: 0 2rem;
}
.svc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.025) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ── COMPARACIÓN $175 vs $350 ── */
.plan-compare {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 3.5rem;
}
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.4rem 2rem;
  backdrop-filter: blur(12px); position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(.16,1,.3,1);
}
.plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity .3s;
}
.plan-card:hover {
  background: var(--surface-hover); border-color: var(--border-hover);
  transform: translateY(-4px);
}
.plan-card:hover::before { opacity: 1; }
.plan-card.featured { border-color: rgba(255,255,255,0.12); }
.plan-badge {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--txt); color: var(--bg);
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 100px; font-weight: 500;
}
.plan-price {
  font-family: 'Cormorant', serif; font-weight: 300; font-style: italic;
  font-size: 2.2rem; margin-bottom: 1rem; line-height: 1;
}
.plan-name {
  font-family: 'Cormorant', serif; font-size: 1.5rem; font-weight: 400;
  margin-bottom: .6rem; letter-spacing: -.01em;
}
.plan-desc {
  font-size: .82rem; color: var(--txt-dim); line-height: 1.8; margin-bottom: 1.8rem;
}
.plan-footer {
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--border);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--txt-muted);
}

/* ── BUNDLE ── */
.bundle-wrap { padding: 0 3rem; background: var(--bg2); }
.bundle-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 6rem 0; border-top: 1px solid var(--border);
}
.bundle-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; margin-bottom: 4rem;
}
.bundle-tag {
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1rem; display: block;
}
.bundle-title {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.05; letter-spacing: -.01em;
}
.bundle-title em { font-style: italic; color: var(--txt-dim); }
.bundle-desc { font-size: .85rem; color: var(--txt-dim); line-height: 1.9; margin-bottom: 2rem; }
.bundle-precio-row {
  display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.5rem;
}
.bundle-precio {
  font-family: 'Cormorant', serif; font-weight: 300; font-style: italic;
  font-size: 3rem; line-height: 1; letter-spacing: -.02em; color: var(--txt);
}
.bundle-tachado {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: 1.4rem; color: var(--txt-muted); text-decoration: line-through;
}
.bundle-ahorro {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-muted);
}
.bundle-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.bundle-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(12px);
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.bundle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity .3s;
}
.bundle-card:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-4px); }
.bundle-card:hover::before { opacity: 1; }
.bc-num {
  font-family: 'Cormorant', serif; font-style: italic; font-weight: 300;
  font-size: 2.2rem; color: var(--txt-muted); line-height: 1; margin-bottom: 1.2rem;
}
.bc-name {
  font-family: 'Cormorant', serif; font-size: 1.3rem; font-weight: 400;
  margin-bottom: .6rem; letter-spacing: -.01em;
}
.bc-desc { font-size: .78rem; color: var(--txt-dim); line-height: 1.8; }
.bc-precio {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-muted);
}

/* ── FAQ ── */
.faq-wrap { padding: 0 3rem; }
.faq-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 6rem 0; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
}
.faq-s-tag {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1rem; display: block;
}
.faq-title {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; letter-spacing: -.01em;
}
.faq-title em { font-style: italic; color: var(--txt-dim); }
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; color: var(--txt-dim); line-height: 1.5;
  transition: color .25s; user-select: none;
}
.faq-item:hover .faq-q, .faq-item.open .faq-q { color: var(--txt); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; margin-left: 1.5rem;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--txt-muted);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--border-hover); }
.faq-a {
  font-size: .82rem; color: var(--txt-dim); line-height: 1.85;
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.4rem; }

/* ── CTA FINAL ── */
.cta-final {
  padding: 10rem 3rem; text-align: center; position: relative; overflow: hidden;
  background: var(--bg2); border-top: 1px solid var(--border);
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.025) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-label {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--txt-muted); margin-bottom: 1.5rem; display: block;
}
.cta-title {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 1.2rem;
}
.cta-title em { font-style: italic; color: var(--txt-dim); }
.cta-sub { font-size: .85rem; color: var(--txt-dim); line-height: 1.8; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn-pill {
  padding: .65rem 1.6rem; border-radius: 100px;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: transform .2s, box-shadow .25s, background .2s;
}
.btn-pill-solid {
  background: var(--txt); color: var(--bg); border: 1px solid var(--txt);
}
.btn-pill-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,237,232,0.18); }
.btn-pill-ghost {
  background: var(--surface); color: var(--txt); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-pill-ghost:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--bg2); padding: 3.5rem 3rem 2.5rem; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 2rem;
 }

  .nav-footer {
  font-family: 'DM Sans', sans-serif; font-weight: 200;
  font-size: 1.1rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--txt); text-decoration: none; opacity: .9;
  display: flex;
  align-items: center;
 }
 .nav-footer-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.8; /* 50% de transparencia */
 }

 .footer-links { display: flex; gap: 2.5rem; list-style: none; }
 .footer-links a {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--txt-muted); text-decoration: none; transition: color .2s;
 }
 .footer-links a:hover { color: var(--txt); }
 .footer-social { display: flex; gap: 1rem; }
 .footer-social a {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--txt-muted); text-decoration: none;
  padding: .4rem 1rem; border-radius: 100px; border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
 }
 .footer-social a:hover { color: var(--txt); border-color: var(--border-hover); background: var(--surface); }
 .footer-bottom {
  max-width: 1160px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between;
  font-size: .62rem; color: var(--txt-muted); letter-spacing: .08em;
  flex-wrap: wrap; gap: .5rem;
}

/* WA FLOAT */
.wa {
  position: fixed; bottom: 2rem; right: 2rem; 
  z-index: 600; width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  transition: transform .25s, box-shadow .25s;
  animation: wap 3.5s ease-in-out infinite;
}
.wa img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transform: translate(-0.00001px, -0.2px);
}
.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}
@keyframes wap { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,.3)} 50%{box-shadow:0 4px 36px rgba(37,211,102,.55)} }
.wa:hover { transform: scale(1.1); animation: none; }

 /* REVEAL */
 .r { opacity:0; transform:translateY(28px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
 .r.v { opacity:1; transform:none; }
 .d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}
 .d4{transition-delay:.28s}.d5{transition-delay:.35s}

 /* RESPONSIVE */
 @media (max-width: 1024px) { .svc-layout { grid-template-columns: 80px 1fr 1fr; gap: 2.5rem; } }
 @media (max-width: 860px) {
  .svc-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-num { font-size: 3.5rem; }
  .svc-img, .plan-compare { grid-column: auto; }
  .bundle-header { grid-template-columns: 1fr; gap: 2rem; }
  .bundle-cards { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .plan-compare { grid-template-columns: 1fr; }
 } 
 @media (max-width: 640px) {
  .nav-links { display: none; }
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: .9rem 1.5rem; }
  .svc, .faq-wrap, .bundle-wrap { padding: 0 1.5rem; }
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
 }
