/* ═══════════════════════════════════════════════
   AstroMyst · Landing Curso Inicial de Astrología
   ═══════════════════════════════════════════════ */

:root {
  --ink: #17102a;
  --ink-2: #1e1535;
  --ink-3: #251a42;
  --cream: #f8f3e9;
  --cream-2: #fdfaf3;
  --paper: #fffdf8;
  --gold: #c9a15e;
  --gold-light: #e8cf9a;
  --violet: #8b46d9;
  --violet-2: #a855f7;
  --violet-deep: #5b21b6;
  --lilac: #cfc0e8;
  --lilac-soft: #efe6fb;
  --text: #2b2140;
  --text-soft: #5c5175;
  --text-light: #e9e2f5;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -18px rgba(23, 16, 42, .28);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container.narrow { width: min(820px, 92%); }

/* ─────────── Tipografía de sección ─────────── */
.eyebrow, .section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--violet);
}
.section-eyebrow { text-align: center; margin-bottom: .8rem; }
.section-eyebrow.gold { color: var(--gold); text-align: left; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  text-align: center;
  color: var(--ink);
}
.section-title.light { color: var(--cream-2); text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-soft);
  margin-top: .9rem;
  font-size: 1.02rem;
}
.section-sub.left { text-align: left; }

.grad-text {
  background: linear-gradient(100deg, var(--violet) 10%, var(--violet-2) 55%, #d8b4fe 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-light {
  background: linear-gradient(100deg, #c084fc, #e9d5ff 60%, #f5e6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-gold {
  background: linear-gradient(100deg, var(--gold) 5%, var(--gold-light) 50%, #f7e8c3 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─────────── Botones ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--violet-deep), var(--violet) 45%, var(--violet-2));
  background-size: 160% 100%;
  box-shadow: 0 10px 30px -8px rgba(139, 70, 217, .55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 16px 38px -8px rgba(139, 70, 217, .65);
}
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  padding: .85rem .3rem;
}
.btn-ghost:hover { color: var(--violet); border-color: var(--violet); }
.btn-lg { font-size: 1.08rem; padding: 1.05rem 2.4rem; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .9rem 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled {
  padding: .45rem 0;
  background: rgba(23, 16, 42, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .5);
}
.nav-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .35s ease;
}
.brand-mark {
  color: var(--gold);
  font-size: 1.2rem;
  animation: twinkle 3.5s ease-in-out infinite;
}
.nav.scrolled .brand, .brand.light { color: var(--cream-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: .92rem;
  font-weight: 400;
}
.nav-links a:not(.btn) {
  color: var(--text-soft);
  transition: color .25s ease;
  position: relative;
}
.nav.scrolled .nav-links a:not(.btn) { color: var(--lilac); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:not(.btn):hover { color: var(--violet); }
.nav.scrolled .nav-links a:not(.btn):hover { color: #fff; }
.nav-links a:not(.btn):hover::after { width: 100%; }

.btn-nav {
  color: #fff;
  background: linear-gradient(100deg, var(--violet-deep), var(--violet-2));
  padding: .55rem 1.3rem;
  font-size: .88rem;
  box-shadow: 0 6px 20px -6px rgba(139, 70, 217, .5);
}
.btn-nav:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .3s ease;
}
.nav.scrolled .nav-toggle span, .nav.open .nav-toggle span { background: var(--cream-2); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  background:
    radial-gradient(1000px 500px at 85% -10%, var(--lilac-soft), transparent 60%),
    radial-gradient(700px 400px at -10% 40%, #f3ead7, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.zodiac-wheel {
  position: absolute;
  top: 50%; left: -180px;
  width: 620px; height: 620px;
  transform: translateY(-50%);
  opacity: .35;
  pointer-events: none;
}
.zodiac-wheel svg {
  width: 100%; height: 100%;
  animation: spin 120s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-sparkles { position: absolute; inset: 0; pointer-events: none; }
.hero-sparkles i {
  position: absolute;
  font-style: normal;
  color: var(--gold);
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
  font-size: var(--sz, 14px);
  opacity: 0;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.5); }
  50% { opacity: .9; transform: scale(1.15); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 1.1rem 0 1.3rem;
}
.hero-sub {
  max-width: 430px;
  color: var(--text-soft);
  font-size: 1.05rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 1.8rem 0 1.6rem;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--text-soft);
  font-weight: 400;
}
.hero-meta .meta-ico { color: var(--gold); margin-right: .3rem; font-size: .85rem; }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo {
  position: relative;
  width: min(360px, 80%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { aspect-ratio: 4 / 5.4; object-fit: cover; }
.hero-chip {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(253, 250, 243, .92);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: .55rem .95rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.35);
}

.date-card {
  position: absolute;
  top: 6%;
  right: max(-20px, -2vw);
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(200, 161, 94, .45);
  color: var(--cream-2);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 20px 50px -18px rgba(23, 16, 42, .6);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.date-label {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.date-big {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  margin-top: .3rem;
}
.date-month {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lilac);
}
.countdown {
  display: flex;
  gap: .55rem;
  margin-top: .75rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(207, 192, 232, .22);
}
.countdown div { display: flex; flex-direction: column; min-width: 30px; }
.countdown b {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
.countdown small {
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lilac);
}

/* ═══════════════ TRUST BAR ═══════════════ */
.trustbar {
  background: var(--ink);
  padding: 1.6rem 0;
}
.trust-pill {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  border: 1px solid rgba(139, 70, 217, .5);
  border-radius: 999px;
  padding: 1rem 2rem;
  background: linear-gradient(100deg, rgba(139, 70, 217, .12), rgba(200, 161, 94, .06));
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.3;
}
.trust-item b { font-weight: 600; }
.trust-ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.trust-sep { width: 1px; height: 42px; background: rgba(207, 192, 232, .2); }

/* ═══════════════ TEMARIO ═══════════════ */
.section-cream { background: var(--cream); padding: 5.5rem 0; }
.temario .section-title { margin-bottom: .4rem; }

.bloques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.bloque {
  background: var(--paper);
  border: 1px solid #eadfc8;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.bloque:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.bloque-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.4rem;
}
.bloque-ico { font-size: 1.25rem; filter: sepia(1) saturate(3) hue-rotate(-15deg); }
.semana {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: .9rem;
  padding: .85rem 0;
}
.semana + .semana { border-top: 1px dashed #eadfc8; }
.sem-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: .25rem;
}
.semana h3 {
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
}
.semana p {
  font-size: .82rem;
  color: var(--text-soft);
  margin-top: .15rem;
}

.timeline { margin-top: 3rem; position: relative; }
.timeline-track {
  position: absolute;
  top: 50%; left: 2%; right: 2%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.timeline-dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
}
.timeline-dots span {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--cream);
  color: var(--text-soft);
  font-size: .78rem;
  font-weight: 500;
  transition: all .3s ease;
}
.timeline-dots span:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.15);
}

/* ═══════════════ CÓMO FUNCIONA ═══════════════ */
.section-dark {
  position: relative;
  background:
    radial-gradient(900px 480px at 80% 0%, rgba(139, 70, 217, .18), transparent 65%),
    var(--ink);
  color: var(--text-light);
  padding: 5.5rem 0;
  overflow: hidden;
}
.stars-layer { position: absolute; inset: 0; pointer-events: none; }
.stars-layer i {
  position: absolute;
  font-style: normal;
  color: var(--gold-light);
  font-size: var(--sz, 12px);
  animation: twinkle var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}

.como-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
/* permite que las celdas del grid encojan por debajo del ancho de su contenido
   (sin esto, la tabla del calendario desborda la pantalla en móvil) */
.como-grid > * { min-width: 0; }
.como-item {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.como-ico {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1.5px solid rgba(168, 85, 247, .55);
  background: rgba(139, 70, 217, .14);
  font-size: 1.15rem;
  box-shadow: 0 0 24px -6px rgba(168, 85, 247, .4);
}
.como-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-2);
}
.como-item p { font-size: .92rem; color: var(--lilac); }

.calendario {
  background: rgba(30, 21, 53, .75);
  border: 1px solid rgba(168, 85, 247, .35);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(6px);
}
.cal-title {
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 1.2rem;
}
.cal-scroll { overflow-x: auto; }
.cal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .78rem;
  min-width: 480px;
}
.cal-table th {
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: .4rem .3rem;
  font-size: .72rem;
}
.cal-table td {
  text-align: center;
  padding: .42rem .3rem;
  border-top: 1px solid rgba(207, 192, 232, .1);
}
.cal-table td.sem {
  text-align: left;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.cal-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(207, 192, 232, .45);
}
.cal-live {
  display: inline-block;
  background: linear-gradient(100deg, var(--violet), var(--violet-2));
  color: #fff;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .18rem .6rem;
  border-radius: 999px;
  box-shadow: 0 0 16px -2px rgba(168, 85, 247, .8);
  animation: pulse-live 2.4s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 10px -2px rgba(168, 85, 247, .6); }
  50% { box-shadow: 0 0 22px 0 rgba(168, 85, 247, .9); }
}
.cal-foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.1rem;
  font-size: .78rem;
  color: var(--lilac);
}
.dot-live {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--violet-2);
  margin-right: .35rem;
  box-shadow: 0 0 8px var(--violet-2);
}

/* ═══════════════ LA CAJA ═══════════════ */
.caja {
  background:
    radial-gradient(800px 400px at 100% 0%, var(--lilac-soft), transparent 60%),
    linear-gradient(180deg, #f4ecfa, #f8f1f6 60%, var(--cream));
  padding: 5.5rem 0;
}
.caja-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.caja .section-title { text-align: left; }
.caja-list { margin: 1.6rem 0; }
.caja-list li {
  position: relative;
  padding: .35rem 0 .35rem 2.1rem;
  font-size: .98rem;
  color: var(--text);
}
.caja-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .38rem;
  display: grid;
  place-items: center;
  width: 21px; height: 21px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
}
.caja-chip {
  display: inline-block;
  background: var(--lilac-soft);
  color: var(--violet-deep);
  font-size: .85rem;
  font-weight: 500;
  padding: .6rem 1.3rem;
  border-radius: 999px;
}
.caja-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ═══════════════ LOGROS ═══════════════ */
.logros { text-align: center; }
.logros .section-eyebrow { color: var(--gold); letter-spacing: .26em; }
.logros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.logro {
  background: var(--paper);
  border: 1px solid #eadfc8;
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.logro:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.logro-ico {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  filter: sepia(.6) saturate(2);
}
.logro p { font-size: .95rem; color: var(--text); }

/* ═══════════════ BIO GIULIANA ═══════════════ */
.bio-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.bio-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .55);
  max-width: 400px;
}
.bio-photo img { aspect-ratio: 4/4.4; object-fit: cover; object-position: 50% 46%; }
.bio-copy p {
  font-size: 1.1rem;
  color: var(--lilac);
  margin-top: 1.2rem;
  max-width: 520px;
}
.bio-ornament {
  margin-top: 2.2rem;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: .85rem;
  opacity: .8;
}

/* ═══════════════ TESTIMONIOS ═══════════════ */
.testimonios .section-title { margin-bottom: 2.4rem; }
.gold-star { color: var(--gold); font-size: .7em; vertical-align: middle; }
.testi-wrap {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.testi-viewport { overflow: hidden; flex: 1; }
.testi-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .8, .3, 1);
}
.testi {
  flex: 0 0 33.333%;
  padding: 0 .7rem;
}
.testi-inner, .testi blockquote { height: 100%; }
.testi > * { position: relative; }
.testi {
  position: relative;
}
.testi p, .testi footer, .testi .quote-mark { position: relative; z-index: 1; }
.testi::before {
  content: "";
  position: absolute;
  inset: 0 .7rem;
  background: var(--paper);
  border: 1px solid #eadfc8;
  border-radius: var(--radius);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.testi:hover::before { border-color: var(--gold); box-shadow: var(--shadow); }
.testi {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.testi p, .testi footer, .testi .quote-mark { margin-left: 1.6rem; margin-right: 1.6rem; }
.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: .6;
  color: var(--gold);
  margin-bottom: .6rem;
}
.testi p { font-size: .95rem; font-style: italic; color: var(--text); }
.testi footer {
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
}
.testi-arrow {
  align-self: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all .3s ease;
}
.testi-arrow:hover { background: var(--gold); color: #fff; transform: scale(1.08); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.6rem;
}
.testi-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9cdb4;
  cursor: pointer;
  transition: all .3s ease;
}
.testi-dots button.active {
  background: var(--violet);
  transform: scale(1.35);
}

/* ═══════════════ PRECIOS ═══════════════ */
.precios {
  background: var(--cream);
  padding: 2rem 0 5.5rem;
}
.precios-card {
  position: relative;
  background:
    radial-gradient(700px 380px at 15% 0%, rgba(139, 70, 217, .22), transparent 60%),
    linear-gradient(160deg, var(--ink), var(--ink-2));
  border: 1px solid rgba(200, 161, 94, .35);
  border-radius: var(--radius-lg);
  padding: 2.8rem clamp(1.4rem, 4vw, 3.2rem);
  color: var(--text-light);
  overflow: hidden;
}
.precios-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  position: relative;
}
.precios-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid rgba(207, 192, 232, .3);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(30, 21, 53, .5);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.plan:hover { transform: translateY(-5px); }
.plan:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* indicador radio de cada modalidad */
.plan-check {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(207, 192, 232, .45);
  transition: all .3s ease;
}
.plan-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
  transform: scale(.4);
  transition: all .3s ease;
}
.plan[aria-checked="true"] {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(200, 161, 94, .16), rgba(30, 21, 53, .6));
  box-shadow: 0 0 40px -10px rgba(200, 161, 94, .5);
}
.plan[aria-checked="true"] .plan-check {
  border-color: var(--gold);
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
}
.plan[aria-checked="true"] .plan-check::after { opacity: 1; transform: scale(1); }
.plan-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: .8rem;
}
.plan-label.gold { color: var(--gold-light); text-align: left; }
.plan-precio {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--cream-2);
  line-height: 1;
}
.plan-precio span { font-size: .45em; font-weight: 500; color: var(--lilac); }
.plan-nota { font-size: .8rem; color: var(--lilac); margin-top: .7rem; }
.plan-nota b { color: var(--cream-2); }

.plan-destacado {
  position: relative;
  border: 2px solid var(--violet-2);
  background: linear-gradient(170deg, rgba(139, 70, 217, .28), rgba(30, 21, 53, .6));
  box-shadow: 0 0 45px -10px rgba(168, 85, 247, .55);
}
.plan-destacado:hover { box-shadow: 0 0 60px -8px rgba(168, 85, 247, .75); }
.plan-destacado[aria-checked="true"] {
  border-color: var(--violet-2);
  background: linear-gradient(170deg, rgba(139, 70, 217, .28), rgba(30, 21, 53, .6));
  box-shadow: 0 0 45px -10px rgba(168, 85, 247, .55);
}
.plan-destacado[aria-checked="true"] .plan-check {
  border-color: var(--violet-2);
  background: linear-gradient(120deg, var(--violet), var(--violet-2));
}
.plan-destacado[aria-checked="true"] .plan-check::after { color: #fff; }
.plan-destacado[aria-checked="false"] {
  border-color: rgba(168, 85, 247, .35);
  box-shadow: none;
  background: rgba(30, 21, 53, .5);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(100deg, var(--gold), var(--gold-light));
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .32rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-incluye {
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.plan-incluye ul { margin-top: .2rem; }
.plan-incluye li {
  position: relative;
  padding: .3rem 0 .3rem 1.4rem;
  font-size: .88rem;
  color: var(--text-light);
}
.plan-incluye li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: .68rem;
}

.btn-reserva {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
  padding: 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--violet-deep), var(--violet) 40%, var(--violet-2) 80%, #c084fc);
  background-size: 200% 100%;
  box-shadow: 0 12px 34px -8px rgba(139, 70, 217, .65);
  transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}
.btn-reserva:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px rgba(168, 85, 247, .8);
}
.precios-foot {
  position: relative;
  text-align: center;
  font-size: .78rem;
  color: var(--lilac);
  margin-top: 1rem;
}

/* ═══════════════ FAQ ═══════════════ */
.faq .section-title { margin-bottom: 2.2rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid #eadfc8;
  border-radius: 16px;
  margin-bottom: .9rem;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  font-size: .92rem;
  color: var(--text-soft);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  padding: 6rem 0 2rem;
  text-align: center;
}
#starCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.footer-cta { position: relative; }
.footer-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.15;
  color: var(--cream-2);
  margin-bottom: 2rem;
}
.footer-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(207, 192, 232, .15);
  font-size: .85rem;
}
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--lilac);
  transition: color .25s ease;
}
.footer-links a:hover { color: var(--gold-light); }

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .8, .3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1020px) {
  .bloques { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .precios-grid { grid-template-columns: 1fr 1fr; }
  .plan-incluye { grid-column: 1 / -1; }
  .logros-grid { grid-template-columns: repeat(2, 1fr); }
  .testi { flex: 0 0 50%; }
  .timeline-dots span { width: 26px; height: 26px; font-size: .68rem; }
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(23, 16, 42, .97);
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav-links a:not(.btn) { color: var(--lilac) !important; }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; }

  .hero { padding-top: 6.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-copy { text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
  .zodiac-wheel { opacity: .18; }
  .date-card { position: static; margin-left: 1rem; align-self: center; animation: none; }
  .hero-media { gap: 0; flex-wrap: wrap; justify-content: center; }

  .trust-pill { flex-direction: column; border-radius: var(--radius-lg); gap: 1.2rem; }
  .trust-sep { width: 60%; height: 1px; }
  /* misma anchura para los tres ítems → iconos y textos alineados en columna */
  .trust-item { width: 215px; }

  .calendario { padding: 1.3rem 1rem; }
  .cal-title { font-size: .85rem; }

  .como-grid, .caja-grid, .bio-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .caja-photo { order: -1; }
  .bio-photo { margin: 0 auto; }
  .testi { flex: 0 0 100%; }
  .timeline { display: none; }
  .precios-grid { grid-template-columns: 1fr; }
  .logros-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
  .logros-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .countdown b { font-size: .95rem; }
}
