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

:root {
  --bg: #0c0b14;
  --bg2: #13103f;
  --lilac: #b48cff;
  --lilac-light: #dcc6ff;
  --cream: #f4f1fa;
  --purple-deep: #3d1f6e;
  --purple: #7a3fd4;
  --purple-vivid: #9b55f0;
  --muted: #a79cc0;
  --border: rgba(180,140,255,0.25);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--lilac);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-halo {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(180,140,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}

@media (max-width: 768px) {
  #cursor, #cursor-halo { display: none; }
  body { cursor: auto; }
}

/* ── NAV ── */
nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: var(--bg);
  border-bottom: none;
}
.nav-3col {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 100%;
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.nav-row .nav-social { justify-self: start; }
.nav-row .nav-logo-link { justify-self: center; }
.nav-row .nav-btn { justify-self: end; }
.nav-logo-link {
  display: inline-flex; align-items: center; text-decoration: none;
  animation: nav-logo-fade-in 1s ease both;
}
@keyframes nav-logo-fade-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-logo-img {
  height: 54px; width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(180,140,255,0.55));
}
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-social {
  display: flex; align-items: center; gap: 10px;
}
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .25s, border-color .25s, background .25s, box-shadow .25s;
}
.nav-social a svg { width: 15px; height: 15px; fill: currentColor; }
.nav-social a:hover {
  color: var(--bg); background: var(--lilac); border-color: var(--lilac);
  box-shadow: 0 0 16px rgba(180,140,255,0.55);
}
.nav-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--bg);
  background: var(--lilac);
  border: none; padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer; text-decoration: none;
  display: inline-block;
  position: relative;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.nav-btn:hover { transform: translateY(-3px) scale(1.04); }
.nav-btn:active { transform: translateY(0) scale(0.93); transition: transform .08s ease; }

@media (max-width: 768px) {
  nav {
    flex-direction: row; justify-content: space-between; align-items: center;
    padding: 14px 16px;
  }
  .nav-3col { gap: 6px; }
  .nav-social { gap: 6px; }
  .nav-social a { width: 26px; height: 26px; }
  .nav-social a svg { width: 11px; height: 11px; }
  .nav-btn { padding: 9px 14px; font-size: 10px; }
  .nav-3col .nav-btn {
    padding: 7px 9px; font-size: 8px; letter-spacing: 0;
    white-space: nowrap;
  }
  .nav-logo-img { height: 30px; }
}

/* ── BLOCK SECTIONS ── */
.block-section {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 90px 60px 100px;
  background: var(--bg);
}
.block-section.block-2 {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.block-section.block-solo {
  min-height: unset;
  padding: 90px 60px 80px;
}
.block-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 35%, rgba(180,140,255,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 85% 75%, rgba(122,63,212,0.28) 0%, transparent 60%);
}
.block-glow-2 {
  background:
    radial-gradient(ellipse 55% 60% at 75% 40%, rgba(180,140,255,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 12% 78%, rgba(122,63,212,0.26) 0%, transparent 55%);
}
.block-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
}

.block-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 100px; font-weight: 800; line-height: 1;
  color: rgba(180,140,255,0.14);
  margin-bottom: -30px;
}
.block-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 24px;
}
.block-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.8vw, 42px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--cream); margin-bottom: 24px;
}
.portada-hero-title {
  font-size: clamp(20px, 2.92vw, 42px);
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.portada-hero-section {
  padding-bottom: 0;
  min-height: unset;
}
.block-section.block-solo.portada-hero-section { padding-bottom: 0; }
.block-title em {
  font-style: normal;
  color: var(--lilac);
}
.block-subtitle {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 660px;
  margin-bottom: 40px;
}
.block-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0; text-transform: none;
  color: var(--bg); background: var(--lilac);
  padding: 18px 40px; border: none;
  cursor: pointer; text-decoration: none;
  display: inline-block; position: relative;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.block-cta:hover { transform: translateY(-3px) scale(1.04); }
.block-cta:active { transform: translateY(0) scale(0.94); transition: transform .08s ease; }

.block-inner-center { text-align: center; }
.block-inner-center .block-num { text-align: center; }
.block-inner-center .block-eyebrow { display: flex; justify-content: center; align-items: center; gap: 14px; }
.block-inner-center .block-eyebrow::before,
.block-inner-center .block-eyebrow::after { content: ''; height: 1px; width: 40px; background: var(--border); }
.block-inner-center .block-title,
.block-inner-center .block-subtitle { margin-left: auto; margin-right: auto; }

.block-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  margin-bottom: 32px; transition: color .2s;
}
.block-back:hover { color: var(--lilac-light); }

@media (max-width: 768px) {
  .block-section { padding: 60px 16px 70px; min-height: unset; }
  .block-section.block-solo { padding-left: 16px; padding-right: 16px; }
  .block-num { font-size: 70px; margin-bottom: -18px; }
  .block-cta { display: block; text-align: center; }
}

/* ── PRICING PLACEHOLDER (subpáginas) ── */
.pricing-placeholder {
  background: rgba(180,140,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 620px; margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .pricing-placeholder { padding: 28px 20px; }
}
.pricing-placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; font-weight: 800;
  color: var(--lilac-light); margin-bottom: 12px;
}
.pricing-placeholder-text {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin-bottom: 32px;
}

/* ── PORTADA: FOTO CRECIENTE CON EL SCROLL ── */
.portada-photo-track {
  position: relative;
  height: 220vh;
  background: var(--bg);
}
.portada-photo-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 32px;
  overflow: hidden;
  padding-left: 24px; padding-right: 24px; padding-bottom: 24px;
}
.portada-photo-frame {
  width: 380px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(180,140,255,0.3), 0 20px 50px rgba(0,0,0,0.5);
  will-change: width;
}
.portada-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.portada-photo-caption {
  margin-top: 28px;
  font-size: 17px; line-height: 1.7;
  color: var(--muted);
  max-width: 560px; text-align: center;
}

@media (max-width: 768px) {
  .portada-photo-track { height: auto; }
  .portada-photo-pin {
    position: relative; top: auto; height: auto;
    padding: 24px 24px;
  }
  .portada-photo-frame {
    width: 82vw !important; max-width: 340px;
  }
  .portada-photo-caption {
    margin-top: 16px;
    font-size: 13px; line-height: 1.65; font-weight: 300;
  }
}

/* ── COUNTDOWN ── */
.countdown-section {
  background: var(--bg2);
  padding: 56px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.countdown-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(122,63,212,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0; display: inline-block;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.countdown-label {
  position: relative; z-index: 1;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.countdown-title {
  position: relative; z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700; color: var(--cream);
  margin-bottom: 32px;
}
.countdown-title em { color: var(--lilac); font-style: normal; }
.countdown-grid {
  position: relative; z-index: 1;
  display: inline-flex; gap: 0; align-items: center;
  justify-content: center;
}
.countdown-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 90px;
}
.countdown-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--lilac-light), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 2ch; display: inline-block; text-align: center;
}
.countdown-unit {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.countdown-sep {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 50px);
  color: rgba(180,140,255,0.3); line-height: 1;
  padding: 0 8px; margin-bottom: 22px;
}
.countdown-sub {
  position: relative; z-index: 1;
  font-size: 13px; color: var(--muted); margin-top: 24px; letter-spacing: 1px;
}

@media (max-width: 768px) {
  .countdown-section { padding: 40px 20px; }
  .countdown-block { min-width: 70px; }
  .countdown-sep { padding: 0 4px; }
}

/* ── DIVIDER ── */
.block-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  padding: 0 24px;
  background: var(--bg2);
}
.block-divider::before,
.block-divider::after {
  content: ''; height: 1px; flex: 1; max-width: 260px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.block-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--lilac);
  filter: drop-shadow(0 0 8px rgba(180,140,255,0.6));
  padding: 24px 0;
}

/* ── WHATSAPP FLOATING BTN ── */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9000;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  animation: wa-bounce 3s ease-in-out infinite;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
#whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
#whatsapp-btn:hover { animation: none; }

@media (max-width: 768px) {
  #whatsapp-btn { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  #whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.visible.block-cta:hover { transform: translateY(-3px) scale(1.04); }
.reveal.visible.block-cta:active { transform: translateY(0) scale(0.94); transition: transform .08s ease; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lilac-light), var(--lilac));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(180,140,255,0.9), 0 0 24px rgba(180,140,255,0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0e6ff, var(--lilac-light));
  box-shadow: 0 0 20px rgba(180,140,255,1);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--lilac), var(--lilac-light), #f0e6ff, var(--lilac));
  background-size: 200% 100%;
  animation: progress-shimmer 2s linear infinite;
  box-shadow: 0 0 10px rgba(180,140,255,0.8), 0 0 20px rgba(180,140,255,0.4);
  transition: width .05s linear;
  pointer-events: none;
}
@keyframes progress-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── MI HISTORIA ── */
.historia-section {
  position: relative;
  padding: 120px 60px;
  background: var(--bg);
}
.historia-inner {
  max-width: 980px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 64px;
}
.historia-block {
  display: flex; align-items: center; gap: 48px;
}
.historia-block:nth-child(even) { flex-direction: row-reverse; }
.historia-photo {
  flex: 0 0 300px;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(180,140,255,0.25), 0 16px 40px rgba(0,0,0,0.45);
}
.historia-photo.reveal {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity .9s ease, transform .9s ease;
}
.historia-photo.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}
.historia-block:nth-child(even) .historia-photo.reveal {
  transform: translateX(120px);
}
.historia-block:nth-child(even) .historia-photo.reveal.visible {
  transform: translateX(0);
}
.historia-photo img {
  width: 100%; height: 340px; object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(0.15);
  transition: transform .5s ease, filter .5s ease;
}
.historia-block:hover .historia-photo img { transform: scale(1.04); filter: grayscale(0); }
.historia-photo img[src*="Oriol6"] { object-position: center 75%; }
.historia-photo img[src*="Oriol5"] { object-position: center 60%; }
.historia-content { flex: 1; }
.historia-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 10px;
}
.historia-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 27px; font-weight: 700; line-height: 1.2;
  color: var(--cream); margin-bottom: 14px;
}
.historia-text {
  font-size: 17px; line-height: 1.8;
  color: var(--muted);
}
.historia-text strong { color: var(--lilac-light); }

@media (max-width: 900px) {
  .historia-section { padding: 48px 24px; }
  .historia-inner { gap: 40px; }
  .historia-block, .historia-block:nth-child(even) { flex-direction: column; gap: 24px; }
  .historia-photo { flex: none; width: 100%; }
  .historia-photo img { height: 260px; }
  .historia-heading { font-size: 22px; }
  .historia-photo.reveal,
  .historia-block:nth-child(even) .historia-photo.reveal {
    transform: translateY(50px);
  }
  .historia-photo.reveal.visible,
  .historia-block:nth-child(even) .historia-photo.reveal.visible {
    transform: translateY(0);
  }
}

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  max-width: 820px; margin: 0 auto;
  text-align: left;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 16px; line-height: 1.6; color: var(--cream);
  padding: 24px;
  background: rgba(180,140,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.check-list li:hover {
  border-color: var(--lilac);
  box-shadow: 0 0 30px rgba(180,140,255,0.2);
  transform: translateY(-3px);
}
.check-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lilac);
  color: var(--bg);
  font-size: 15px; font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(180,140,255,0.4);
}

@media (max-width: 700px) {
  .check-list { grid-template-columns: 1fr; }
}

/* ── MAPA STEPS ── */
.mapa-steps {
  position: relative;
  max-width: 720px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 24px;
  text-align: left;
}
.mapa-steps.reveal {
  opacity: 1; transform: none; transition: none;
}
.mapa-steps::before {
  content: '';
  position: absolute;
  top: 44px; bottom: 44px; left: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--lilac) 0%, rgba(180,140,255,0.1) 100%);
  z-index: 0;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.6s ease;
}
.mapa-steps.visible::before {
  transform: scaleY(1);
}
.mapa-step {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 22px;
  padding: 24px;
  background: rgba(180,140,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.mapa-step-num {
  position: relative; z-index: 1;
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--bg); background: var(--lilac);
  box-shadow: 0 0 0 6px var(--bg);
  border-radius: 50%;
}
.mapa-step-text {
  font-size: 15.5px; line-height: 1.7; color: var(--muted);
  padding-top: 6px;
}

/* ── INCLUYE LIST ── */
.incluye-list {
  list-style: none;
  counter-reset: incluye;
  max-width: 900px; margin: 24px auto 0;
  text-align: left;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.incluye-list li {
  counter-increment: incluye;
  position: relative;
  padding: 22px 22px 22px 60px;
  font-size: 15px; line-height: 1.7; color: var(--cream);
  background: rgba(180,140,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.incluye-list li:hover {
  border-color: var(--lilac);
  box-shadow: 0 0 30px rgba(180,140,255,0.2);
  transform: translateY(-3px);
}
.incluye-list li::before {
  content: counter(incluye, decimal-leading-zero);
  position: absolute; left: 20px; top: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--lilac);
}

@media (max-width: 700px) {
  .incluye-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mapa-step { flex-direction: column; gap: 12px; padding: 16px; }
  .mapa-steps::before { display: none; }
}

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1080px; margin: 48px auto 0;
}
.pricing-card {
  background: rgba(180,140,255,0.05);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.pricing-card:hover {
  border-color: var(--lilac);
  box-shadow: 0 0 30px rgba(180,140,255,0.25);
  transform: translateY(-4px);
}
.pricing-card-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--lilac); margin-bottom: 12px;
}
.pricing-card-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; font-weight: 700; line-height: 1;
  color: var(--cream); margin-bottom: 8px;
}
.pricing-card-period {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 600; color: var(--muted);
}
.pricing-card-subtitle {
  font-size: 14px; line-height: 1.4; color: var(--muted); margin-bottom: 24px;
  min-height: 2.8em;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 28px 0 0; width: 100%; text-align: left;
}
.pricing-card ul li {
  position: relative; padding-left: 20px;
  font-size: 15px; line-height: 1.6; color: var(--muted);
}
.pricing-card ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--lilac);
}
.pricing-card-highlight {
  color: var(--lilac-light) !important;
  font-weight: 600;
}
.pricing-card-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--bg); background: var(--lilac);
  padding: 14px 24px; border: none; border-radius: 16px;
  text-align: center; text-decoration: none;
  display: block; width: 100%;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.pricing-card-cta:hover {
  transform: translateY(-3px) scale(1.04);
}
.pricing-card-cta:active {
  transform: translateY(0) scale(0.94);
  transition: transform .08s ease;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 28px 20px; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.faq-item {
  border: 1px solid var(--border);
  background: rgba(180,140,255,0.04);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--cream); text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 20px; font-weight: 300;
  color: var(--lilac);
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  font-size: 14.5px; line-height: 1.7; color: var(--muted);
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 24px 22px;
}
@media (max-width: 768px) {
  .faq-question { padding: 16px 16px; }
  .faq-answer { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 18px; }
}

/* ── FOOTER ── */
footer {
  background: rgba(10,10,15,0.99);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  text-align: center;
}
.footer-logo-img {
  height: 54px; width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(180,140,255,0.45));
  display: block; margin: 0 auto 14px;
}
.footer-tagline {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.footer-access-btn { margin-bottom: 36px; }
.footer-social-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin-bottom: 36px;
}
.footer-social-row a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted); text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .25s, border-color .25s, box-shadow .25s, background .25s;
}
.footer-social-row a svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-social-row a:hover {
  color: var(--bg); background: var(--lilac); border-color: var(--lilac);
  box-shadow: 0 0 22px rgba(180,140,255,0.55);
}
.footer-bottom {
  max-width: 600px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copyright { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.footer-policies { font-size: 11px; color: var(--muted); letter-spacing: .5px; margin-top: 10px; }
.footer-policies a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-policies a:hover { color: var(--lilac-light); }
.footer-credit { font-size: 10px; color: var(--muted); letter-spacing: .5px; margin-top: 14px; opacity: .7; }
.footer-credit a { color: var(--muted); text-decoration: none; }
.footer-credit a:hover { color: var(--lilac-light); }

@media (max-width: 768px) {
  footer { padding: 48px 24px 24px; }
}

/* ── SUSCRIPCIÓN ── */
.subscribe-section {
  position: relative; overflow: hidden;
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.subscribe-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 40%, rgba(180,140,255,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.subscribe-form-wrap {
  position: relative; z-index: 1;
  max-width: 440px; margin: 0 auto;
}

/* Override para que el formulario de ActiveCampaign (embed.php, cargado en vivo)
   combine con el estilo de la web. Usa un ID extra (#subscribe-form-wrap) para
   ganarle en especificidad al CSS que inyecta ActiveCampaign, sin depender del
   orden en que se cargue. */
#subscribe-form-wrap #_form_1_ {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  color: var(--cream) !important;
  font-family: 'Syne', sans-serif !important;
}
#subscribe-form-wrap #_form_1_ ._form-content { width: 100%; }
#subscribe-form-wrap #_form_1_ ._form_element { margin-bottom: 16px; }
#subscribe-form-wrap #_form_1_ ._form-label {
  color: var(--muted) !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}
#subscribe-form-wrap #_form_1_ .field-required { color: var(--lilac) !important; }
#subscribe-form-wrap #_form_1_ input[type="text"] {
  background: rgba(180,140,255,0.06) !important;
  border: 1px solid var(--border) !important;
  color: var(--cream) !important;
  border-radius: 0 !important;
  padding: 15px 16px !important;
  font-size: 15px !important;
  font-family: 'Syne', sans-serif !important;
  transition: border-color .25s, background .25s;
}
#subscribe-form-wrap #_form_1_ input[type="text"]::placeholder { color: rgba(244,241,250,0.35) !important; }
#subscribe-form-wrap #_form_1_ input[type="text"]:focus {
  outline: none !important;
  border-color: var(--lilac) !important;
  background: rgba(180,140,255,0.1) !important;
}
#subscribe-form-wrap #_form_1_ input[type="text"]._has_error { border-color: #ff8a8a !important; }
#subscribe-form-wrap #_form_1_ ._submit {
  background: var(--lilac) !important;
  color: #fff !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  width: 100% !important;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1) !important;
}
#subscribe-form-wrap #_form_1_ ._submit:hover { transform: translateY(-3px) scale(1.03) !important; }
#subscribe-form-wrap #_form_1_ ._submit:active { transform: translateY(0) scale(0.95) !important; transition: transform .08s ease !important; }
#subscribe-form-wrap #_form_1_ ._form-thank-you {
  color: var(--cream) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-style: italic !important;
}

/* ── PÁGINAS INTERNAS: BLANCO Y NEGRO (acentos en violeta solo en palabras/CTA) ── */
.bw-page .block-section,
.bw-page .block-section.block-2,
.bw-page .countdown-section,
.bw-page .historia-section {
  background: #000;
}
.bw-page .block-glow,
.bw-page .block-glow-2,
.bw-page .countdown-section::before {
  display: none;
}
.bw-page .block-subtitle,
.bw-page .mapa-step-text,
.bw-page .incluye-list li,
.bw-page .historia-text,
.bw-page .faq-answer,
.bw-page .pricing-card-period,
.bw-page .pricing-card-subtitle,
.bw-page .pricing-card ul li,
.bw-page .pricing-placeholder-text,
.bw-page .check-list li,
.bw-page .countdown-sub,
.bw-page .footer-tagline,
.bw-page .footer-copyright {
  color: rgba(255,255,255,0.85);
}
.bw-page nav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
  border-bottom: none;
  padding: 40px 60px;
}
.bw-page .nav-logo-img { height: 54px; }
.nav-tagline {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  animation: nav-logo-fade-in 1s ease .15s both;
}
.bw-page .nav-right { display: none; }
@media (max-width: 768px) {
  .bw-page nav { padding: 32px 20px 24px; }
  .bw-page .nav-logo-img { height: 50px; }
}
.bw-page .pricing-card,
.bw-page .mapa-step,
.bw-page .faq-item {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.16);
}
.bw-page .pricing-card:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}
.bw-page .check-icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.bw-page .historia-photo {
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.bw-page .pricing-card-amount,
.bw-page .pricing-card-label {
  color: #fff;
}
.bw-page footer {
  background: #000;
  border-top-color: rgba(255,255,255,0.16);
}
.bw-page .footer-social-row a {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}

/* ── AJUSTE DE TIPOGRAFÍA MÓVIL (calcado de nachosala.com) ── */
@media (max-width: 768px) {
  .block-subtitle { font-size: 13px; line-height: 1.65; font-weight: 300; }
  .historia-text { font-size: 13px; font-weight: 300; }
  .historia-heading { font-size: 18px; }
  .mapa-step-text { font-size: 13px; font-weight: 300; }
  .incluye-list li { font-size: 13px; font-weight: 300; }
  .check-list li { font-size: 13px; font-weight: 300; }
  .faq-question { font-size: 14px; }
  .faq-answer { font-size: 13px; font-weight: 300; }
  .pricing-card ul li { font-size: 13px; font-weight: 300; }
  .pricing-placeholder-text { font-size: 13px; font-weight: 300; }
  .countdown-sub { font-size: 11px; }
  .block-eyebrow { font-size: 10.5px; letter-spacing: 2px; }
  .historia-eyebrow { font-size: 10.5px; letter-spacing: 2px; }
  .pricing-card-subtitle { font-size: 12.5px; }
  .block-cta, .pricing-card-cta { font-size: 12.5px; }
}
