/* ============ Tokens ============ */
:root {
  --pink: #ec4899;
  --pink-hot: #ff5fa8;
  --pink-soft: #fce7f3;
  --pink-50: #fdf2f8;
  --purple: #7c3aed;
  --purple-deep: #4c1d95;
  --purple-ink: #1f1235;
  --lilac: #f3e8ff;
  --white: #ffffff;
  --text: #2a1a45;
  --muted: #6b5b86;
  --grad: linear-gradient(135deg, var(--pink-hot) 0%, var(--pink) 40%, var(--purple) 100%);
  --grad-soft: linear-gradient(135deg, var(--pink-50), var(--lilac));
  --radius: 22px;
  --shadow: 0 20px 50px -20px rgba(124, 58, 237, .35);
  --shadow-pink: 0 14px 30px -10px rgba(236, 72, 153, .6);
  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --script: 'Dancing Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; color: var(--purple-ink); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.center { text-align: center; margin-top: 2.5rem; }
.script {
  font-family: var(--script);
  font-weight: 700;
  font-size: 1.15em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .08em;
}

/* ============ Buttons ============ */
.btn {
  --bg: var(--pink);
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  border: 0; cursor: pointer; text-decoration: none;
  font: 700 1rem/1 var(--font);
  padding: 1rem 1.6rem; border-radius: 999px;
  color: #fff; background: var(--bg);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn::after { /* brillo */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }
.btn--pink { background: linear-gradient(135deg, var(--pink-hot), var(--pink)); box-shadow: var(--shadow-pink); }
.btn--purple { background: linear-gradient(135deg, #a855f7, var(--purple)); box-shadow: 0 14px 30px -10px rgba(124,58,237,.6); }
.btn--white { background: #fff; color: var(--pink); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }
.btn--ghost { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn--ghost-dark { background: var(--lilac); color: var(--purple); padding-inline: 1.2rem; }
.btn--whatsapp { background: #25d366; }
.btn--sm { padding: .7rem 1.2rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--xl { padding: 1.3rem 2.6rem; font-size: 1.2rem; }
.btn--block { width: 100%; }
.pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 95, 168, .65); }
  70% { box-shadow: 0 0 0 18px rgba(255, 95, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 95, 168, 0); }
}

/* ============ Nav ============ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding: 14px 0; transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 6px 24px -12px rgba(76,29,149,.3); padding: 8px 0; }
.nav__inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { transition: transform .4s; }
.brand:hover img { transform: rotate(-12deg) scale(1.08); }
.brand__text { display: flex; flex-direction: column; line-height: 1; color: #fff; transition: color .3s; }
.brand__text b { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.brand__text small { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; opacity: .85; margin-top: 3px; }
.nav.is-scrolled .brand__text { color: var(--pink); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: #fff; text-decoration: none; font-weight: 500; font-size: .95rem; position: relative; }
.nav.is-scrolled .nav__links a { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav__links a:hover::after { transform: scaleX(1); }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 80px; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -40px 0 0; z-index: -2;
  background:
    linear-gradient(120deg, rgba(76,29,149,.92) 0%, rgba(124,58,237,.72) 45%, rgba(236,72,153,.55) 100%),
    url('/img/hero.jpg') center / cover no-repeat;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08) translateY(-10px); } }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 900; letter-spacing: -.03em; }
.hero .script { background: linear-gradient(90deg, #fff, #ffc2de, #fff); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; animation: shine 4s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }
.timer-word { display: inline-block; background: #fff; color: var(--pink); padding: 0 .3em; border-radius: 14px; transform: rotate(-2deg); font-variant-numeric: tabular-nums; box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); opacity: .95; max-width: 36em; }
.hero__checks { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .4rem; font-weight: 500; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); font-size: .85rem; font-weight: 600; margin-bottom: 1.2rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink-hot); box-shadow: 0 0 0 0 rgba(255,95,168,.8); animation: pulse 1.6s infinite; }
.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.7); border-radius: 20px; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: #fff; animation: scrollhint 1.6s infinite; }
@keyframes scrollhint { to { transform: translateY(16px); opacity: 0; } }

/* Corazones flotantes */
.hearts { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hearts i { position: absolute; bottom: -40px; font-style: normal; color: rgba(255,255,255,.7); animation: floatUp linear infinite; will-change: transform, opacity; }
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0) rotate(0) scale(var(--s, 1)); opacity: 0; }
  10% { opacity: var(--o, .8); }
  50% { transform: translateY(-50vh) translateX(var(--dx, 30px)) rotate(20deg) scale(var(--s, 1)); }
  100% { transform: translateY(-110vh) translateX(0) rotate(-10deg) scale(var(--s, 1)); opacity: 0; }
}

/* ============ Cards & Form ============ */
.card { background: #fff; color: var(--text); border-radius: var(--radius); box-shadow: 0 30px 80px -25px rgba(31,18,53,.6); }
.card--form { padding: 28px; position: relative; }
.card--form::before { content: ""; position: absolute; inset: -3px; border-radius: calc(var(--radius) + 3px); background: var(--grad); z-index: -1; opacity: .9; filter: blur(0); animation: glow 3s ease-in-out infinite alternate; }
@keyframes glow { from { filter: blur(0); } to { filter: blur(14px); } }
.card__head h2 { font-size: 1.7rem; margin-bottom: .3rem; }
.card__head p { color: var(--muted); font-size: .95rem; }
.badge { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .12em; color: var(--purple); background: var(--lilac); padding: 5px 10px; border-radius: 999px; margin-bottom: .7rem; }

.lead-form { position: relative; }
.lead-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.step-pane { display: none; }
.step-pane.is-active { display: grid; gap: 14px; animation: slideIn .4s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
.progress { height: 6px; background: var(--pink-soft); border-radius: 6px; margin: 4px 0 18px; overflow: hidden; }
.progress span { display: block; height: 100%; width: 33%; background: var(--grad); border-radius: 6px; transition: width .45s cubic-bezier(.6,.2,.2,1); }
.field { display: grid; gap: 6px; }
.field > span { font-size: .82rem; font-weight: 600; color: var(--purple-ink); }
.field em { font-weight: 400; color: var(--muted); font-style: normal; }
.field input, .field select {
  width: 100%; font: 500 1rem var(--font); color: var(--text);
  padding: .85rem 1rem; border-radius: 14px; border: 2px solid #eee4f7; background: #fcfaff;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ec4899' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(236,72,153,.15); }
.is-invalid input, input.is-invalid, select.is-invalid { border-color: #e11d48 !important; animation: shake .35s; }
.chips-input.is-invalid { animation: shake .35s; }
.chips-input.is-invalid b { border-color: #e11d48; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.chips-input { display: flex; flex-wrap: wrap; gap: 8px; }
.chips-input label { cursor: pointer; }
.chips-input input { position: absolute; opacity: 0; pointer-events: none; }
.chips-input b { display: inline-block; padding: .6rem 1rem; border-radius: 999px; border: 2px solid #eee4f7; font-weight: 600; font-size: .92rem; background: #fcfaff; transition: all .2s; }
.chips-input label:hover b { border-color: var(--pink-hot); }
.chips-input input:checked + b { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.05); box-shadow: var(--shadow-pink); }
.chips-input input:focus-visible + b { outline: 3px solid var(--purple); outline-offset: 2px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); cursor: pointer; }
.check input { width: 20px; height: 20px; accent-color: var(--pink); flex: none; margin-top: 2px; }
.check.is-invalid span { color: #e11d48; }
.row-btns { display: flex; gap: 10px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-msg { margin: 12px 0 0; font-size: .9rem; font-weight: 600; color: #e11d48; min-height: 0; }
.form-msg:empty { display: none; }
.lead-form.is-loading button[type=submit] { pointer-events: none; opacity: .7; }
.lead-form.is-loading button[type=submit]::before { content: ""; width: 16px; height: 16px; border: 3px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.success { text-align: center; padding: 10px 0; animation: pop .5s cubic-bezier(.2,1.6,.4,1); }
.success h3 { font-size: 1.8rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.success p { color: var(--muted); }
.success__heart { font-size: 4rem; animation: beat 1.1s infinite; }
@keyframes pop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: none; } }
@keyframes beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.2); } 30% { transform: scale(1); } 45% { transform: scale(1.12); } }

/* ============ Marquee ============ */
.marquee { background: var(--grad); color: #fff; overflow: hidden; padding: 18px 0; transform: rotate(-1.2deg) scale(1.02); margin-top: -18px; position: relative; z-index: 2; box-shadow: 0 10px 30px -10px rgba(236,72,153,.6); }
.marquee__track { display: flex; gap: 28px; width: max-content; animation: marquee 28s linear infinite; font-weight: 800; font-size: clamp(1.1rem, 2.2vw, 1.6rem); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.marquee i { font-style: normal; color: #ffd1e6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section--tint { background: var(--grad-soft); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.kicker { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); background: var(--pink-50); padding: 6px 14px; border-radius: 999px; margin-bottom: 1rem; }

/* Stats */
.stats { padding: 70px 0 30px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: var(--grad-soft); }
.stat b { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat span { font-weight: 500; color: var(--muted); font-size: .92rem; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; position: relative; }
.step { background: #fff; border: 2px solid var(--pink-soft); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--pink-hot); }
.step__icon { width: 74px; height: 74px; margin: 0 auto 16px; display: grid; place-items: center; font-size: 2rem; border-radius: 24px; background: var(--grad); box-shadow: var(--shadow-pink); transform: rotate(-6deg); transition: transform .4s; }
.step:hover .step__icon { transform: rotate(6deg) scale(1.08); }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; transition: transform .35s; }
.plan:hover { transform: translateY(-10px); }
.plan__img { height: 220px; background-size: cover; background-position: center; position: relative; transition: transform .6s; }
.plan:hover .plan__img { transform: scale(1.06); }
.plan__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(76,29,149,.55), transparent 60%); }
.tag { position: absolute; left: 16px; bottom: 14px; z-index: 1; background: #fff; color: var(--pink); font-weight: 700; font-size: .82rem; padding: 6px 12px; border-radius: 999px; }
.plan__body { padding: 24px; display: flex; flex-direction: column; flex: 1; background: #fff; position: relative; z-index: 1; }
.plan__body p { color: var(--muted); font-size: .95rem; }
.plan__body ul { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 6px; flex: 1; }
.plan__body li::before { content: "♥"; color: var(--pink); margin-right: 8px; }
.plan--featured { outline: 3px solid var(--purple); transform: scale(1.03); }
.plan--featured:hover { transform: scale(1.03) translateY(-10px); }
.ribbon { position: absolute; top: 18px; right: -44px; z-index: 2; background: var(--purple); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 50px; transform: rotate(40deg); }

/* Crono */
.crono { background: linear-gradient(135deg, var(--purple-deep), var(--purple) 55%, var(--pink)); color: #fff; overflow: hidden; }
.crono h2, .crono h3 { color: #fff; }
.crono .script { background: none; color: #ffd1e6; -webkit-text-fill-color: #ffd1e6; }
.crono__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.crono__clock { position: relative; width: min(340px, 80vw); aspect-ratio: 1; margin: auto; }
.crono__clock svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.crono__track { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 12; }
.crono__progress { fill: none; stroke: #fff; stroke-width: 12; stroke-linecap: round; stroke-dasharray: 553; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; filter: drop-shadow(0 0 12px rgba(255,209,230,.8)); }
.crono__time { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.crono__time b { font-size: clamp(3.4rem, 8vw, 5rem); font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.crono__time span { opacity: .8; font-weight: 500; }
.crono p { font-size: 1.1rem; opacity: .92; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 2rem; }
.chips span { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .9rem; animation: bob 3s ease-in-out infinite; }
.chips span:nth-child(2) { animation-delay: .3s; } .chips span:nth-child(3) { animation-delay: .6s; } .chips span:nth-child(4) { animation-delay: .9s; } .chips span:nth-child(5) { animation-delay: 1.2s; }
@keyframes bob { 50% { transform: translateY(-6px); } }

/* Why */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 160px; gap: 14px; }
.why__gallery .g { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.g1 { grid-row: span 2; } .g2 { } .g3 { grid-row: span 2; } .g4 { }
.feat { display: flex; gap: 16px; margin-bottom: 1.2rem; }
.feat > span { flex: none; width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem; background: var(--pink-50); border-radius: 16px; }
.feat h3 { margin-bottom: .2rem; }
.feat p { color: var(--muted); font-size: .95rem; margin: 0; }
.why__copy .btn { margin-top: .8rem; }

/* Gandia */
.gandia { position: relative; padding: clamp(100px, 14vw, 170px) 0; color: #fff; text-align: center; overflow: hidden; isolation: isolate; }
.gandia__bg { position: absolute; inset: -20% 0; z-index: -1; background: linear-gradient(180deg, rgba(76,29,149,.75), rgba(236,72,153,.55)), url('/img/playa.jpg') center / cover no-repeat; will-change: transform; }
.gandia h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.gandia .script { background: none; color: #ffd1e6; -webkit-text-fill-color: #ffd1e6; }
.gandia p { max-width: 640px; margin: 0 auto 2rem; font-size: 1.1rem; opacity: .95; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(n+4) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure::after { content: "♥"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 3rem; color: #fff; background: rgba(236,72,153,.45); opacity: 0; transition: opacity .35s; }
.gallery figure:hover img { transform: scale(1.1); }
.gallery figure:hover::after { opacity: 1; }

/* FAQ */
.faq { max-width: 820px; }
.faq details { background: #fff; border-radius: 18px; margin-bottom: 12px; box-shadow: 0 8px 24px -16px rgba(76,29,149,.4); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-weight: 700; position: relative; color: var(--purple-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; translate: 0 -50%; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: 1.3rem; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; margin: 0; color: var(--muted); animation: slideIn .35s ease; }

/* Final */
.final { position: relative; overflow: hidden; background: var(--grad); color: #fff; text-align: center; padding: clamp(90px, 12vw, 150px) 0; isolation: isolate; }
.final h2 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.final .script { background: none; color: #fff; -webkit-text-fill-color: #fff; text-shadow: 0 4px 20px rgba(76,29,149,.4); }
.final p { font-size: 1.15rem; opacity: .95; margin-bottom: 2rem; }
.final__logo { margin: 0 auto 1.4rem; animation: beat 1.4s infinite; filter: drop-shadow(0 10px 25px rgba(76,29,149,.5)); }

/* Footer */
.footer { background: var(--purple-ink); color: rgba(255,255,255,.75); padding: 40px 0 100px; font-size: .9rem; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer p { margin: 0; }
.footer a { color: #ffd1e6; }

/* Sticky CTA (móvil) */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; display: none; transform: translateY(140%); transition: transform .35s ease; }
.sticky-cta.is-visible { transform: none; }

/* ============ Modal ============ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(31,18,53,.65); backdrop-filter: blur(6px); animation: fade .3s ease; }
.modal__box { position: relative; width: min(480px, 100%); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow-y: auto; background: #fff; border-radius: 26px; padding: 30px 26px 26px; box-shadow: 0 40px 100px -20px rgba(31,18,53,.7); animation: modalIn .45s cubic-bezier(.2,1.4,.4,1); }
.modal__box::before { content: ""; position: absolute; inset: 0 0 auto; height: 8px; background: var(--grad); }
.modal__head { text-align: center; margin-bottom: 8px; }
.modal__head img { margin: 0 auto 10px; animation: beat 1.4s infinite; }
.modal__head h2 { font-size: 1.6rem; margin-bottom: .3rem; }
.modal__head p { color: var(--muted); font-size: .95rem; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--pink-50); color: var(--pink); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: transform .25s; }
.modal__close:hover { transform: rotate(90deg); }
@keyframes fade { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(40px) scale(.92); } }
body.modal-open { overflow: hidden; }

/* Confeti de corazones */
.confetti { position: fixed; z-index: 200; pointer-events: none; font-size: 22px; animation: confetti 1.4s ease-out forwards; }
@keyframes confetti { to { transform: translate(var(--x), var(--y)) rotate(var(--r)); opacity: 0; } }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.plan.reveal.is-in:hover { transform: translateY(-10px); }
.plan--featured.reveal.is-in { transform: scale(1.03); }
.plan--featured.reveal.is-in:hover { transform: scale(1.03) translateY(-10px); }

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero__grid, .crono__grid, .why { grid-template-columns: 1fr; }
  .hero__grid { gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured, .plan--featured.reveal.is-in { transform: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery figure:nth-child(n+4) { grid-column: span 1; }
  .gallery figure:nth-child(4) { grid-column: span 2; }
  .hero__checks, .hero__ctas { display: none; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav .btn--sm { padding: .6rem .9rem; font-size: .8rem; }
  .brand__text small { display: none; }
  .hero { padding-top: 100px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .card--form { padding: 22px 18px; }
  .steps { grid-template-columns: 1fr; }
  .why__gallery { grid-template-rows: 150px 150px 120px; }
  .sticky-cta { display: block; }
  .scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
