:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  --bg: #07070A;
  --card: #111118;
  --featured: #16121F;
  --line: #2A2A35;
  --line-soft: #22222C;
  --text: #F4F2FA;
  --muted: #9B97A8;
  --soft: #C9C5D6;
  --purple: #9B2EFF;
  --purple-glow: rgba(155, 46, 255, 0.45);
  --gold: #D1AE64;
  --silver: #C0C4D2;
  --plat: #B4C8DC;
  --icon: #9B97A8;
  --radius: 22px;
  --nav-h: 76px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 16px 48px rgba(155, 46, 255, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.12; }
p { margin: 0; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 10, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand img {
  width: clamp(110px, 18vw, 148px);
  height: auto;
  opacity: 0.92;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--soft);
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9B2EFF, #7A1FD4);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(155, 46, 255, 0.28);
}
.nav__cta:hover { filter: brightness(1.08); }
.nav__cta {
  gap: 0.5rem;
  display: inline-flex;
  align-items: center;
}
.nav__wa {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
  color: inherit;
}
.nav__cta span {
  line-height: 1;
}


@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    filter 0.35s var(--ease-out);
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.16) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.btn:hover { transform: translateY(-2px) scale(1.015); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn > * { position: relative; z-index: 1; }
.btn .ico {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.btn--primary {
  background: linear-gradient(105deg, #A63AFF 0%, #9B2EFF 40%, #7A1FD4 100%);
  color: #fff;
  box-shadow: 0 12px 36px rgba(155, 46, 255, 0.34);
}
.btn--primary:hover { box-shadow: var(--shadow-glow); filter: brightness(1.05); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--soft);
}
.btn--ghost:hover { border-color: var(--muted); color: var(--text); }
.btn--outline {
  width: 100%;
  margin-top: auto;
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--purple); color: #fff; }
.pkg--featured .btn--primary { width: 100%; margin-top: auto; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(4rem, 11vw, 7.5rem) 0 clamp(2.5rem, 7vw, 4.5rem);
  overflow: hidden;
  text-align: center;
}
.hero__glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(155, 46, 255, 0.22), transparent 65%);
  pointer-events: none;
  filter: blur(8px);
}
.hero__content { position: relative; }
.hero h1 {
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-inline: auto;
}
.hero__sub {
  margin-top: 1.1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Intro */
.intro { padding: 2.75rem 0 5rem; }
.intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.intro__copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.intro__copy p + p { margin-top: 0.75rem; }
.intro__copy strong { color: var(--gold); font-weight: 700; }
.intro__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}
.intro__logo img { width: min(220px, 100%); }

@media (max-width: 800px) {
  .intro__grid { grid-template-columns: 1fr; text-align: center; }
  .intro__logo { order: -1; }
}

/* Packages */
.packages { padding: 1.5rem 0 5.5rem; }
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.pkg {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: #3A3A48;
}
.pkg--featured {
  background: linear-gradient(180deg, #1A1428 0%, #14101C 100%);
  border-color: var(--purple);
  box-shadow:
    0 0 0 1px rgba(155, 46, 255, 0.25),
    0 18px 48px rgba(155, 46, 255, 0.12);
}
@media (min-width: 901px) {
  .pkg--featured { transform: translateY(-10px); }
  .pkg--featured:hover { transform: translateY(-14px); box-shadow: var(--shadow-glow); }
}
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #9B2EFF, #7A1FD4);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(155, 46, 255, 0.35);
}
.pkg__tier {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.pkg__name {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.pkg--plata .pkg__name { color: var(--silver); }
.pkg--oro .pkg__name { color: var(--gold); }
.pkg--platino .pkg__name { color: var(--plat); }
.pkg__tag {
  font-size: 0.88rem;
  color: #D8D4E4;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.35;
}
.pkg__price {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.pkg__price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.pkg__divider {
  height: 1px;
  background: var(--line-soft);
  margin: 1rem 0 0.5rem;
}
.pkg__list { flex: 1; margin-bottom: 1.25rem; }
.pkg__list li {
  font-size: 0.84rem;
  line-height: 1.4;
  color: #D8D4E4;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(46, 46, 58, 0.55);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.pkg__list li:last-child { border-bottom: none; }
.pkg__list .ic {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.pkg__list .ic svg {
  width: 18px; height: 18px;
  stroke: var(--icon); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.pkg__list .dot {
  flex: 0 0 22px;
  width: 22px;
  display: flex; align-items: center; justify-content: center;
}
.pkg__list .dot::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
}
.pkg__list li.close { color: #A8A4B4; font-weight: 500; }
.pkg__list li.hl { color: var(--gold); font-weight: 700; }
.pkg__list li.hl .ic svg { stroke: var(--gold); }
.pkg__list li.founder {
  color: #fff;
  font-weight: 700;
  background: rgba(155, 46, 255, 0.12);
  margin: 0.4rem -0.5rem 0.15rem;
  padding: 0.75rem 0.75rem 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(155, 46, 255, 0.35);
}
.pkg__list li.founder .ic svg { stroke: #C9B4E8; }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pkg--featured { order: -1; }
}

/* Trust */
.trust { padding: 0.5rem 0 5rem; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.trust__card {
  background: #0E0E14;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
.trust__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: #3A3A48;
}
.trust__ico {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 0.65rem;
}
.trust__card strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.trust__card p {
  font-size: 0.88rem;
  color: var(--soft);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* CTA */
.cta { padding: 0.5rem 0 5.5rem; }
.cta__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  background: linear-gradient(135deg, #16121F 0%, #111118 55%, #0E0E16 100%);
  border: 1px solid rgba(155, 46, 255, 0.35);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(155, 46, 255, 0.1);
}
.cta__copy h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.55rem;
  max-width: 22ch;
}
.cta__contacts {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.cta__contacts .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.cta__contacts a {
  color: var(--soft);
  border-bottom: 1px solid transparent;
}
.cta__contacts a:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__logo { opacity: 0.55; width: 110px; }
.footer__legal {
  font-size: 0.75rem;
  color: #6E6A7A;
  letter-spacing: 0.01em;
}



/* Slogan band under hero */
.slogan {
  padding: 0.5rem 0 3.25rem;
  text-align: center;
}
.slogan__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
}
.slogan__text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--soft);
  line-height: 1.5;
  letter-spacing: -0.018em;
}
.slogan__text span {
  color: var(--muted);
  font-style: italic;
}
.slogan__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}
.slogan__actions .btn--ghost {
  border-color: var(--line);
  color: var(--soft);
  background: rgba(17, 17, 24, 0.55);
}
.slogan__actions .btn--ghost:hover {
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 10px 28px rgba(155, 46, 255, 0.18);
}
.btn--outline-light {
  background: rgba(155, 46, 255, 0.12);
  border-color: rgba(155, 46, 255, 0.55);
  color: #fff;
  box-shadow: 0 8px 24px rgba(155, 46, 255, 0.15);
}
.btn--outline-light:hover {
  background: rgba(155, 46, 255, 0.22);
  border-color: var(--purple);
  box-shadow: 0 12px 32px rgba(155, 46, 255, 0.28);
}

/* Google reviews carousel — premium */
.reviews {
  padding: 1.5rem 0 5.5rem;
}
.reviews__wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}
.reviews__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 14px;
}
.review-card {
  flex: 0 0 min(86vw, 340px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #14141d 0%, var(--card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 230px;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #3A3A48;
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--soft);
  background: #1a1a24;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}
.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.review-card__badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}
.review-card__text {
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  flex: 1;
}
.review-card__date {
  font-size: 0.74rem;
  color: #6E6A7A;
  letter-spacing: 0.02em;
}
.reviews__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 24, 0.9);
  color: var(--soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
  flex-shrink: 0;
}
.reviews__nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews__nav:hover {
  border-color: var(--purple);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(155, 46, 255, 0.25);
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.reviews__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #3A3A48;
  cursor: pointer;
  transition:
    width 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.reviews__dot.is-active {
  width: 22px;
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(155, 46, 255, 0.18);
}
@media (max-width: 640px) {
  .reviews__nav { display: none; }
  .reviews__wrap { grid-template-columns: 1fr; }
}

/* Intro / CTA polish */
.intro__grid {
  transition: box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.intro__grid:hover {
  border-color: #3A3A48;
  box-shadow: var(--shadow-card);
}
.cta__box {
  transition: box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.cta__box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Reveal animations — premium fade / slide / stagger */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 70ms);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.is-visible.is-done {
  will-change: auto;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; will-change: auto; }
  .btn:hover, .pkg:hover, .trust__card:hover, .review-card:hover, .cta__box:hover { transform: none; }
  .btn::after { display: none; }
}


/* Package cards + list items — slower L→R stagger on scroll */
.packages .pkg.reveal {
  opacity: 0;
  transform: translateX(-36px);
  filter: blur(2px);
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out),
    filter 0.95s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
  /* card 0 / 1 / 2 enter in sequence (~0.28s apart) */
  transition-delay: calc(var(--delay, 0) * 280ms);
}
.packages .pkg.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: none;
}
@media (min-width: 901px) {
  .packages .pkg--featured.reveal.is-visible {
    transform: translateY(-10px);
  }
  .packages .pkg--featured.reveal.is-visible:hover {
    transform: translateY(-14px);
  }
}

.pkg__list .reveal-li {
  opacity: 0;
  transform: translateX(-28px);
  filter: blur(1px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  /* base offset after parent card delay + 250ms per bullet */
  transition-delay: calc(var(--delay, 0) * 280ms + var(--i, 0) * 250ms + 120ms);
}
.pkg.is-visible .pkg__list .reveal-li,
.pkg__list.is-visible .reveal-li,
.reveal-li.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .packages .pkg.reveal,
  .pkg__list .reveal-li {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}


/* CTA title WhatsApp icon beside "demo" */
#cta-title {
  display: block;
  line-height: 1.25;
}
.cta__wa {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.15em;
  margin-right: 0.2em;
  fill: currentColor;
  color: #25D366;
}
.cta__demo {
  white-space: nowrap;
}



/* Mobile: each package card animates when it enters the viewport */
@media (max-width: 900px) {
  .packages .pkg.reveal {
    /* delay comes from JS timing / --delay still ok but keep short between cards */
    transition-delay: 0ms;
  }
  .pkg__list .reveal-li {
    /* only stagger within the visible card */
    transition-delay: calc(var(--i, 0) * 220ms + 80ms);
  }
  .packages .pkg--featured.reveal.is-visible {
    transform: translateX(0);
  }
}

/* Apple-like ambient parallax (subtle, non-distracting) */
.parallax {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
body > *:not(.parallax):not(.modal):not(#booking-modal) {
  position: relative;
  z-index: 1;
}
.parallax__orb,
.parallax__ring {
  position: absolute;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.parallax__orb {
  border-radius: 50%;
  opacity: 0.95;
}
.parallax__orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: 8%;
  right: -12%;
}
.parallax__orb--b {
  width: min(44vw, 360px);
  height: min(44vw, 360px);
  top: 48%;
  left: -14%;
  opacity: 0.85;
}
.parallax__orb--c {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  bottom: 6%;
  right: 10%;
  opacity: 0.8;
}
.parallax__ring {
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  top: 22%;
  left: 50%;
  margin-left: calc(min(70vw, 560px) / -2);
  opacity: 1;
}
.parallax__motion {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform, opacity;
}
.parallax__orb--a .parallax__motion {
  filter: blur(2px);
  background: radial-gradient(circle at 35% 35%, rgba(155,46,255,0.68), rgba(155,46,255,0.18) 55%, transparent 70%);
  animation: rp-float-a 14s ease-in-out infinite, rp-pulse 9s ease-in-out infinite;
}
.parallax__orb--b .parallax__motion {
  filter: blur(2px);
  background: radial-gradient(circle at 60% 40%, rgba(209,174,100,0.48), rgba(209,174,100,0.14) 50%, transparent 72%);
  animation: rp-float-b 18s ease-in-out infinite, rp-pulse 11s ease-in-out infinite reverse;
}
.parallax__orb--c .parallax__motion {
  filter: blur(1.5px);
  background: radial-gradient(circle at 50% 50%, rgba(155,46,255,0.48), transparent 68%);
  animation: rp-float-c 16s ease-in-out infinite, rp-pulse 10s ease-in-out infinite;
}
.parallax__ring .parallax__motion {
  border: 1.5px solid rgba(155,46,255,0.28);
  box-shadow: inset 0 0 80px rgba(155,46,255,0.12), 0 0 40px rgba(155,46,255,0.08);
  animation: rp-spin 48s linear infinite, rp-pulse 12s ease-in-out infinite;
}
@keyframes rp-float-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(-56px, 64px, 0) scale(1.12); }
  66% { transform: translate3d(48px, -52px, 0) scale(0.93); }
}
@keyframes rp-float-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40% { transform: translate3d(60px, -58px, 0) scale(1.14); }
  70% { transform: translate3d(-48px, 50px, 0) scale(0.92); }
}
@keyframes rp-float-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-54px, -72px, 0) scale(1.1); }
}
@keyframes rp-spin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.05); }
}
@keyframes rp-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@media (max-width: 720px) {
  .parallax__orb--a { opacity: 0.8; }
  .parallax__orb--b { opacity: 0.65; }
  .parallax__orb--c { opacity: 0.58; }
  .parallax__ring { opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .parallax { display: none; }
  .parallax__motion { animation: none !important; }
}



/* ============================================================
   Booking modal — Agendar una reunión
   ============================================================ */
body.booking-lock { overflow: hidden; }

.modal[hidden]:not(.is-open) { display: none !important; }
.modal.is-open { display: flex !important; }

#booking-modal.booking-modal,
.booking-modal {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  z-index: 99999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
  /* break out of any parent transform/filter containing block */
  transform: none !important;
}
#booking-modal.booking-modal.is-open,
.booking-modal.is-open {
  display: flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(155, 46, 255, 0.22), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(209, 174, 100, 0.12), transparent 50%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(155, 46, 255, 0.08);
  padding: 1.35rem 1.35rem 1.5rem;
}

.booking-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.booking-modal__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.booking-modal__head h2 {
  font-size: 1.35rem;
  font-weight: 750;
}
.booking-modal__close {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.booking-modal__close svg { width: 18px; height: 18px; }
.booking-modal__close:hover {
  border-color: var(--purple);
  color: #fff;
  background: rgba(155, 46, 255, 0.12);
}

.booking-section-title {
  font-size: 0.95rem;
  font-weight: 650;
  margin: 0 0 0.5rem;
}
.booking-slots__note,
.booking-slots__hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

/* Calendar */
.booking-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.booking-cal__label {
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.booking-cal__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.booking-cal__nav-btn svg { width: 16px; height: 16px; }
.booking-cal__nav-btn:hover {
  border-color: var(--purple);
  color: #fff;
}
.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.booking-cal__dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
}
.booking-cal__day {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 550;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.booking-cal__day.is-empty {
  background: transparent;
  pointer-events: none;
}
.booking-cal__day.is-today {
  border-color: rgba(209, 174, 100, 0.45);
}
.booking-cal__day:not(.is-disabled):not(.is-empty):hover {
  border-color: var(--purple);
  background: rgba(155, 46, 255, 0.14);
}
.booking-cal__day.is-selected {
  background: linear-gradient(135deg, #9B2EFF, #7A1FD4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(155, 46, 255, 0.35);
}
.booking-cal__day.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

/* Slots */
.booking-slots-wrap { margin-top: 1.25rem; }
.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.booking-slot {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.65rem 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.booking-slot:hover:not(:disabled) {
  border-color: var(--purple);
  background: rgba(155, 46, 255, 0.12);
}
.booking-slot.is-selected {
  background: linear-gradient(135deg, #9B2EFF, #7A1FD4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(155, 46, 255, 0.3);
}
.booking-slot.is-taken,
.booking-slot:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-selection {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(209, 174, 100, 0.08);
  border: 1px solid rgba(209, 174, 100, 0.28);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Form */
.booking-step#booking-step-form {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.booking-summary {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.booking-form {
  display: grid;
  gap: 0.75rem;
}
.booking-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--soft);
}
.booking-field abbr { color: var(--gold); text-decoration: none; }
.booking-field input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.booking-field input::placeholder { color: #6e6a7c; }
.booking-field input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155, 46, 255, 0.2);
}
.booking-field input.is-invalid {
  border-color: #e05a7a;
  box-shadow: 0 0 0 3px rgba(224, 90, 122, 0.18);
}
.booking-form__error {
  margin: 0;
  font-size: 0.85rem;
  color: #ff8aa3;
}
.booking-form__submit {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
}

/* Done */
.booking-done {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}
.booking-done__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #9B2EFF, #D1AE64);
  box-shadow: 0 12px 32px rgba(155, 46, 255, 0.35);
}
.booking-done h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.booking-done__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.booking-done__actions {
  display: grid;
  gap: 0.6rem;
}
.booking-done__actions .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 480px) {
  .booking-slots { grid-template-columns: repeat(2, 1fr); }
  .booking-modal__panel { padding: 1.1rem; border-radius: 18px; }
}
