/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

:root {
  --bg:        #150a20;
  --bg-2:      #1c0f2b;
  --bg-3:      #261536;
  --bg-4:      #301c45;
  --cream:     #f5edfb;
  --cream-2:   #d9c8e8;
  --cream-3:   #a690bd;
  --accent:    #b083f0;
  --accent-2:  #8b5cf6;
  --gold:      #d4af6a;
  --gold-2:    #eccf94;
  --whatsapp:  #25d366;
  --whatsapp-dark: #1da851;
  --line:      rgba(245,237,251,.12);
  --line-2:    rgba(245,237,251,.22);

  --serif: "Cormorant Garamond", "Georgia", serif;
  --kicker-font: "Cinzel", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; color: var(--cream); font-weight: 500; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent-2); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--kicker-font);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .9rem;
}
.kicker::before {
  content: "\2726"; /* four pointed star */
  font-size: .8rem; color: var(--gold);
}

.eyebrow-line { width: 34px; height: 1px; background: var(--gold); display: inline-block; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-family: var(--serif); font-size: clamp(2.3rem, 5.4vw, 4.4rem); font-weight: 500; }
h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 500; }
h3 { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 500; }
em, .italic { font-style: italic; color: var(--gold-2); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--cream-2); max-width: 56ch; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #241333;
  box-shadow: 0 10px 30px -8px rgba(212,175,106,.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(212,175,106,.7); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.55);
}
.btn-whatsapp:hover { background: #2ee271; transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(37,211,102,.7); }

.btn-ghost {
  background: rgba(245,237,251,.06);
  color: var(--cream);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(245,237,251,.12); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.02rem; }

/* Cards base */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 999px;
}
.badge svg { width: 11px; height: 11px; flex-shrink: 0; }
.badge-oferta { background: rgba(212,175,106,.16); color: var(--gold-2); border: 1px solid rgba(212,175,106,.4); }
.badge-destacado { background: rgba(176,131,240,.18); color: var(--accent); border: 1px solid rgba(176,131,240,.45); }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(21,10,32,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .75rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--cream); letter-spacing: .01em; }
.nav-logo strong { font-style: normal; color: var(--gold-2); }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .88rem; color: var(--cream-2); padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }
.nav-toggle {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line-2); border-radius: 10px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 18px; height: 18px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); }
.nav-mobile .btn { margin-top: 1rem; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 150;
  display: flex; align-items: center; gap: .6rem;
  background: var(--whatsapp);
  color: #06210f;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.6), 0 0 0 1px rgba(255,255,255,.08);
  font-weight: 700; font-size: .88rem;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -6px rgba(37,211,102,.7); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float-text { display: none; }
@media (min-width: 540px) { .wa-float-text { display: inline; } }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--whatsapp);
  animation: waPulse 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Forms */
.field { position: relative; margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: .78rem; letter-spacing: .04em;
  color: var(--cream-3); margin-bottom: .45rem;
}
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem;
  background: rgba(245,237,251,.05);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--cream);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-3); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: rgba(245,237,251,.08);
}
.field textarea { min-height: 110px; resize: vertical; }
.radio-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-pill {
  position: relative;
}
.radio-pill input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.radio-pill span {
  display: inline-flex; align-items: center; padding: .55rem 1rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .82rem; color: var(--cream-2);
  transition: all .25s var(--ease-out);
}
.radio-pill input:checked + span {
  background: rgba(212,175,106,.14); border-color: var(--gold); color: var(--gold-2);
}
.radio-pill input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-note { font-size: .8rem; color: var(--cream-3); margin-top: .6rem; }

/* Accordion (native details/summary — works with zero JS) */
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--serif); font-size: 1.15rem; color: var(--cream);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform .35s var(--ease-soft), background .3s;
  position: relative;
}
.accordion-icon::before, .accordion-icon::after {
  content: ""; position: absolute; background: var(--gold-2);
}
.accordion-icon::before { width: 10px; height: 1px; }
.accordion-icon::after { width: 1px; height: 10px; transition: opacity .25s; }
.accordion-item[open] .accordion-icon { transform: rotate(180deg); background: rgba(212,175,106,.14); }
.accordion-item[open] .accordion-icon::after { opacity: 0; }
.accordion-item p {
  padding-bottom: 1.35rem; color: var(--cream-2); max-width: 62ch;
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 3rem;
  overflow: clip;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background: url("assets/img/magician.jpg") center 20%/cover no-repeat;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,10,32,.55) 0%, rgba(21,10,32,.75) 55%, var(--bg) 100%),
    rgba(21,10,32,.55);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -2;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(139,92,246,.4), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(212,175,106,.22), rgba(176,131,240,.14), rgba(212,175,106,.22));
  filter: blur(90px) saturate(130%);
  opacity: .8;
  mix-blend-mode: screen;
  animation: meshShift 26s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 30%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 72%; --mesh-y: 55%; }
  100% { --mesh-angle: 360deg; --mesh-x: 30%; --mesh-y: 35%; }
}
.hero-stars {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(245,237,251,.9), transparent),
    radial-gradient(1px 1px at 25% 65%, rgba(245,237,251,.7), transparent),
    radial-gradient(1.5px 1.5px at 40% 15%, rgba(212,175,106,.8), transparent),
    radial-gradient(1px 1px at 60% 80%, rgba(245,237,251,.6), transparent),
    radial-gradient(1.5px 1.5px at 75% 30%, rgba(245,237,251,.85), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(212,175,106,.7), transparent),
    radial-gradient(1.5px 1.5px at 95% 12%, rgba(245,237,251,.7), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(245,237,251,.6), transparent);
  background-size: 100% 100%;
  animation: starsTwinkle 7s ease-in-out infinite alternate;
}
@keyframes starsTwinkle { from { opacity: .35; } to { opacity: .7; } }

.hero-content { position: relative; max-width: 760px; }
.hero-title { margin-bottom: 1.1rem; }
.hero-sub { margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.6rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.75rem, 4vw, 3.5rem); }
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.hero-stat strong { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--gold-2); }
.hero-stat span { font-size: .8rem; letter-spacing: .05em; color: var(--cream-2); text-transform: uppercase; }

/* --- Trust bar --- */
.trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-block: 1.6rem;
  background: var(--bg-2);
}
.trust-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 4vw, 3rem);
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .85rem; color: var(--cream-2); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* --- Services --- */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.service-card.is-destacado {
  border-color: rgba(176,131,240,.5);
  background: linear-gradient(180deg, rgba(176,131,240,.08), var(--bg-3) 40%);
}
.service-card.is-oferta {
  border-color: rgba(212,175,106,.55);
  background: linear-gradient(180deg, rgba(212,175,106,.12), var(--bg-3) 45%);
  box-shadow: 0 30px 70px -24px rgba(212,175,106,.4);
}
@media (min-width: 1180px) {
  .service-card.is-oferta { transform: translateY(-10px); }
}
.service-card:hover {
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -20px rgba(139,92,246,.35);
}
.service-card.is-oferta:hover {
  box-shadow: 0 34px 80px -20px rgba(212,175,106,.5);
}
.service-value {
  font-size: .82rem; font-weight: 600; color: var(--gold-2);
  margin-top: -.5rem;
}
.service-card .card-meta { transform: translateZ(30px); }
.service-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.service-name { font-size: 1.3rem; }
.service-price { display: flex; align-items: baseline; gap: .35rem; }
.service-price strong { font-family: var(--serif); font-size: 2.1rem; color: var(--gold-2); }
.service-price span { font-size: .78rem; color: var(--cream-3); }
.service-desc { font-size: .88rem; color: var(--cream-2); flex-grow: 1; }
.service-modalidad {
  font-size: .78rem; color: var(--cream-3);
  padding-top: .85rem; border-top: 1px solid var(--line);
  display: flex; gap: .5rem; align-items: flex-start;
}
.service-modalidad svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* --- Steps --- */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding-top: .5rem;
}
.step-n {
  font-family: var(--serif); font-style: italic; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  display: block; margin-bottom: .75rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--cream-2); }

/* --- Topics --- */
.topics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem;
}
@media (min-width: 640px) { .topics-grid { grid-template-columns: repeat(4, 1fr); } }
.topic-chip {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  text-align: center; padding: 1.5rem 1rem;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .4s var(--ease-soft), border-color .4s var(--ease-out);
}
.topic-chip:hover { transform: translateY(-5px); border-color: rgba(212,175,106,.5); }
.topic-chip svg { width: 26px; height: 26px; color: var(--gold); }
.topic-chip span { font-size: .85rem; color: var(--cream-2); }

/* --- About --- */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } }
.about-figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21,10,32,.75) 100%);
}
.about-figure-badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0;
}
.about-figure-badge strong { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); }
.about-figure-badge span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); }
.about-text p + p { margin-top: 1rem; }
.about-list { margin-top: 1.75rem; display: grid; gap: .85rem; }
.about-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--cream-2); }
.about-list svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* --- Benefits --- */
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { display: flex; flex-direction: column; gap: .6rem; }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,175,106,.12); border: 1px solid rgba(212,175,106,.35);
  display: grid; place-items: center; margin-bottom: .3rem;
}
.benefit-icon svg { width: 20px; height: 20px; color: var(--gold); }
.benefit-card p { font-size: .88rem; color: var(--cream-2); }

/* --- Request form section --- */
.form-section-inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 960px) { .form-section-inner { grid-template-columns: .9fr 1.1fr; } }
.form-card { padding: clamp(1.5rem, 3vw, 2.5rem); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 560px) { .form-row.is-two { grid-template-columns: 1fr 1fr; gap: 0 1rem; } }

/* --- Testimonials --- */
.testi-wrap { position: relative; max-width: 780px; margin-inline: auto; }
.testi-track { position: relative; min-height: 220px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft);
  pointer-events: none;
}
.testi-slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--cream); text-align: center; margin-bottom: 1.4rem;
}
.testi-quote::before { content: "\201C"; color: var(--gold); }
.testi-quote::after { content: "\201D"; color: var(--gold); }
.testi-meta { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--gold));
  display: grid; place-items: center; margin-bottom: .5rem;
  font-family: var(--serif); font-weight: 600; color: #1a0f28; font-size: 1rem;
}
.testi-author { font-size: .85rem; color: var(--cream); font-weight: 600; }
.testi-context { font-size: .76rem; color: var(--cream-3); }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.75rem; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--line-2);
  transition: background .3s, width .3s;
}
.testi-dot.is-active { background: var(--gold); width: 20px; border-radius: 4px; }

/* --- Video reviews (YouTube / TikTok / Instagram embeds) --- */
.video-reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 720px) { .video-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.video-slot {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  display: flex;
}
.video-slot.is-empty {
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--line-2);
  flex-direction: column; align-items: center; justify-content: center; gap: .85rem;
  color: var(--cream-3); text-align: center; padding: 1.5rem;
}
.video-slot.is-empty svg { width: 30px; height: 30px; color: var(--gold); opacity: .55; }
.video-slot.is-empty p { font-size: .85rem; max-width: 20ch; }
.video-slot:not(.is-empty) { aspect-ratio: 16 / 9; }
.video-slot:not(.is-empty) iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Promo banner --- */
.promo {
  position: relative; overflow: clip; isolation: isolate;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(38,21,54,.55), rgba(21,10,32,.8)),
    url("assets/img/stars.jpg") center/cover no-repeat;
  border: 1px solid rgba(212,175,106,.3);
}
.promo::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 20%, rgba(212,175,106,.22), transparent 70%);
  filter: blur(50px);
}
.promo h2 { margin-bottom: .6rem; }
.promo p { max-width: 50ch; margin-inline: auto; margin-bottom: 1.75rem; color: var(--cream-2); }

.promo-lg { padding: clamp(2.5rem, 6vw, 4.5rem); border-width: 2px; }
.promo-price {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 1; color: var(--gold-2);
  margin-bottom: .3rem;
}
.promo-price span { font-size: 1em; }
.promo-lg h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--cream-2); font-weight: 400; margin-bottom: 1rem; }
.promo-value {
  font-weight: 700; color: var(--gold-2); font-size: 1.05rem;
  margin-bottom: 1rem !important;
}

/* --- FAQ --- */
.faq-wrap { max-width: 760px; }

/* --- Disclaimer --- */
.disclaimer-box {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  background: var(--bg-2);
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: .85rem; color: var(--cream-3);
}
.disclaimer-box svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* --- Final CTA --- */
.cta-final {
  position: relative; overflow: clip; isolation: isolate;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cta-final::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(139,92,246,.3), transparent 65%),
    radial-gradient(50% 50% at 75% 65%, rgba(212,175,106,.22), transparent 65%);
  filter: blur(70px);
}
.cta-final h2 { max-width: 20ch; margin-inline: auto; margin-bottom: 1rem; }
.cta-final p { max-width: 46ch; margin-inline: auto; margin-bottom: 2.2rem; color: var(--cream-2); }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; background: var(--bg-2); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .nav-logo { display: inline-block; margin-bottom: .85rem; }
.footer-brand p { font-size: .88rem; color: var(--cream-3); max-width: 34ch; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: border-color .3s, transform .3s var(--ease-soft);
}
.footer-social a:hover { border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; color: var(--cream-2); }
.footer-col h4 { font-family: var(--kicker-font); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .88rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  padding-top: 1.75rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--cream-3);
}
.footer-bottom a { color: var(--cream-3); }
.footer-bottom a:hover { color: var(--gold-2); }

/* --- Gracias / legal pages --- */
.simple-page { padding-top: 8.5rem; padding-bottom: 5rem; min-height: 60vh; }
.simple-page h1 { margin-bottom: 1.25rem; }
.simple-page h2 { font-size: 1.4rem; margin-top: 2.25rem; margin-bottom: .75rem; }
.simple-page p, .simple-page li { color: var(--cream-2); font-size: .95rem; margin-bottom: .85rem; max-width: 72ch; }
.simple-page ul { list-style: disc; padding-left: 1.4rem; }
.simple-page ul li { margin-bottom: .4rem; }
.legal-updated { font-size: .82rem; color: var(--cream-3); margin-bottom: 2.5rem; }

.gracias-hero { text-align: center; padding-top: 9rem; padding-bottom: 5rem; }
.gracias-icon {
  width: 78px; height: 78px; border-radius: 50%; margin-inline: auto 1.6rem;
  background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.4);
  display: grid; place-items: center;
}
.gracias-icon svg { width: 34px; height: 34px; color: var(--whatsapp); }
.gracias-hero h1 { margin-bottom: 1rem; }
.gracias-hero p { max-width: 50ch; margin-inline: auto 2.2rem; color: var(--cream-2); }

/* Credits page */
.credits-list { display: grid; gap: .5rem; margin-top: 1.5rem; }
.credits-list li { font-size: .85rem; color: var(--cream-3); }
.credits-list a { color: var(--gold-2); }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (min-width: 1600px) { .container { max-width: 1320px; } }

/* =============================================================
   9. Reduced motion — only intrusive effects gated
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .wa-float-pulse { animation: none; opacity: 0; }
  .hero-stars { animation: none; opacity: .5; }
}

/* =============================================================
   10. View transitions (multi-page)
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: fadeOutUp; }
::view-transition-new(root) { animation-name: fadeInUp; }
@keyframes fadeOutUp { to { opacity: 0; transform: translateY(-10px); } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(10px); } }
