/* ─────────────────────────────────────────────────────────────
   MIRROR SITES — mirror-elite.css
   Premium service page — darker, more dramatic, gold accent
   ───────────────────────────────────────────────────────────── */

/* ─── BODY OVERRIDE ─────────────────────────────────────────── */
@keyframes breatheGold {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

.elite-body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(180,140,60,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(180,140,60,0.05) 0%, transparent 40%),
    #080808;
}

.elite-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180,140,60,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(180,140,60,0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
  animation: breatheGold 8s ease-in-out infinite alternate;
}

.elite-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ─── GOLD METALLIC TEXT ────────────────────────────────────── */
@keyframes goldShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.gold-metallic {
  background: linear-gradient(135deg,
    #c8a84b 0%,
    #f0d060 18%,
    #d4a833 32%,
    #ffe680 48%,
    #c8a030 62%,
    #f5c842 78%,
    #c8a84b 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 7s ease-in-out infinite alternate;
}


/* ─── LOGO ELITE ────────────────────────────────────────────── */
@keyframes logoGlow {
  0%   { filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(1.15) drop-shadow(0 0 18px rgba(212,168,83,0.35)); }
  100% { filter: sepia(1) saturate(4) hue-rotate(10deg) brightness(1.35) drop-shadow(0 0 38px rgba(212,168,83,0.65)); }
}

.logo-elite {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto var(--s3);
  animation: logoGlow 4s ease-in-out infinite alternate;
}


/* ─── GOLD BUTTON OVERRIDE ──────────────────────────────────── */
.elite-body .btn-gold,
.elite-body .btn--primary {
  background: linear-gradient(135deg, #c8a030 0%, #d4a833 40%, #ffe066 70%, #c8a030 100%);
  background-size: 200% 200%;
  color: #1a1000;
  border: none;
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.4),
    0 4px 20px rgba(212,168,83,0.25),
    0 0 40px rgba(212,168,83,0.12);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.elite-body .btn-gold:hover,
.elite-body .btn--primary:hover {
  background-position: 100% 100%;
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.6),
    0 6px 30px rgba(212,168,83,0.4),
    0 0 60px rgba(212,168,83,0.2);
  transform: translateY(-2px);
}


/* ─── NAV OVERRIDE ──────────────────────────────────────────── */
.nav--elite.is-scrolled {
  background: rgba(8,8,8,0.9);
  border-bottom-color: rgba(212,168,83,0.1);
}


/* ─── HERO ──────────────────────────────────────────────────── */
.elite-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}

.elite-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.elite-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,168,83,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 100% 30% at 50% 100%, rgba(0,0,0,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 100% 30% at 50% 0%, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.elite-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.elite-hero__glow-left {
  position: absolute;
  left: -10%;
  top: 30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  animation: glow-drift-l 8s ease-in-out infinite alternate;
}

.elite-hero__glow-right {
  position: absolute;
  right: -5%;
  bottom: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.04) 0%, transparent 70%);
  animation: glow-drift-r 10s ease-in-out infinite alternate;
}

@keyframes glow-drift-l {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes glow-drift-r {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}


/* ─── THE WOW MOMENT: MIRROR REFLECTION ─────────────────────── */


/* ─── HERO CONTENT ──────────────────────────────────────────── */
.elite-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--s3);
  max-width: 780px;
}

.elite-hero__eyebrow {
  margin-bottom: var(--s3);
  opacity: 0;
  transform: translateY(20px);
}

.elite-hero__headline {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--s3);
  opacity: 0;
  transform: translateY(24px);
}

.elite-hero__headline-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88em;
  color: var(--gold);
  display: block;
  margin-top: 0.1em;
}

.elite-hero__sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto var(--s4);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.elite-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}


/* Scroll hint */
.elite-hero__scroll-hint {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.elite-hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212,168,83,0.5), transparent);
  margin: 0 auto;
  animation: scroll-line 2.5s ease-in-out infinite;
}


/* ─── ELITE SECTIONS ────────────────────────────────────────── */
.elite-section {
  padding: var(--s8) 0;
  position: relative;
}

.elite-section__label {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.elite-section__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.elite-section__label span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ─── WHAT ──────────────────────────────────────────────────── */
.elite-what {
  background: #0A0A0A;
  border-top: 1px solid rgba(212,168,83,0.08);
}

.elite-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: start;
}

.elite-example {
  display: flex;
  gap: var(--s3);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(212,168,83,0.07);
  transition: padding-left var(--t-mid) var(--ease-out-expo);
}

.elite-example:first-child { border-top: 1px solid rgba(212,168,83,0.07); }

.elite-example:hover { padding-left: var(--s2); }

.elite-example__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 28px;
  line-height: 1.4;
}

.elite-example__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}

.elite-example__desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}


/* ─── INCLUDES GRID ─────────────────────────────────────────── */
.elite-includes {
  background: #080808;
  border-top: 1px solid rgba(212,168,83,0.08);
}

.elite-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.elite-include-card {
  background: rgba(212,168,83,0.02);
  border: 1px solid rgba(212,168,83,0.08);
  border-radius: var(--r3);
  padding: var(--s4);
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.elite-include-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.elite-include-card:hover {
  background: rgba(212,168,83,0.04);
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-3px);
}

.elite-include-card:hover::before { opacity: 1; }

.elite-include-card__icon {
  width: 44px; height: 44px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s3);
}

.elite-include-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.elite-include-card__desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}


/* ─── PARALLAX STATEMENT ────────────────────────────────────── */
.elite-parallax {
  position: relative;
  padding: var(--s8) 0;
  overflow: hidden;
  background: #060606;
  border-top: 1px solid rgba(212,168,83,0.06);
  border-bottom: 1px solid rgba(212,168,83,0.06);
}

.elite-parallax__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.elite-parallax__layer-1 {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 40% at 30% 60%, rgba(212,168,83,0.04) 0%, transparent 60%);
}

.elite-parallax__layer-2 {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 50% 50% at 70% 40%, rgba(212,168,83,0.03) 0%, transparent 60%);
}

.elite-parallax__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  border: 1px solid rgba(212,168,83,0.05);
}

.elite-parallax__content {
  position: relative;
  z-index: 2;
}

.elite-parallax__quote {
  text-align: center;
}

.elite-parallax__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--text-1);
}


/* ─── PRICING ───────────────────────────────────────────────── */
.elite-pricing {
  background: #0A0A0A;
  border-top: 1px solid rgba(212,168,83,0.08);
}

.elite-price-card {
  background: rgba(212,168,83,0.02);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--r4);
  padding: var(--s5);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.elite-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.6;
}

.elite-price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3);
}

.elite-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.elite-price-card__from {
  font-size: 0.8rem;
  color: var(--text-2);
  font-family: var(--font-body);
}

.elite-price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
}

.elite-price-card__note {
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--font-body);
}

.elite-price-card__badge {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.elite-price-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.elite-price-card__features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font-body);
  line-height: 1.4;
}

.elite-price-card__features svg { flex-shrink: 0; }

.elite-price-card__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
}

.elite-price-card__guarantee svg { flex-shrink: 0; margin-top: 2px; }


/* ─── FINAL CTA ─────────────────────────────────────────────── */
.elite-cta-section {
  padding: var(--s8) 0;
  position: relative;
  overflow: hidden;
  background: #060606;
  border-top: 1px solid rgba(212,168,83,0.08);
}

.elite-cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.elite-cta-section__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 65%);
  animation: orb-pulse 5s ease-in-out infinite;
}

.elite-cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.elite-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: var(--s3) auto;
  text-align: center;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: visible;
}

.elite-cta__sub {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--s5);
}

.elite-cta__buttons {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
}


/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .elite-includes__grid { grid-template-columns: repeat(2, 1fr); }
  .elite-what__grid { grid-template-columns: 1fr; gap: var(--s5); }
}

@media (max-width: 768px) {
  .elite-includes__grid { grid-template-columns: 1fr; }

  .elite-hero__content { padding-top: var(--s3); }

  .elite-price-card { padding: var(--s4); }

  .elite-cta__buttons { flex-direction: column; align-items: stretch; }
  .elite-cta__buttons .btn { justify-content: center; }
}

/* ─── MOBILE FIX 3 — "Hagamos / tu universo / una realidad." ── */
@media (max-width: 768px) {
  /* hide desktop text, show 3-line mobile version */
  .elite-cta__headline .cta-desktop-text {
    display: none !important;
  }

  .elite-cta__headline .line-hagamos,
  .elite-cta__headline .line-universo,
  .elite-cta__headline .line-realidad {
    display: block !important;
  }

  /* heading layout */
  .elite-cta__headline,
  .elite-cta h2 {
    font-size: 3rem !important;
    text-align: center !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
  }

  /* "Hagamos" — white, bold */
  .elite-cta__headline .line-hagamos {
    color: #ffffff !important;
    font-style: normal !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
  }

  /* "tu universo" — gold metallic italic */
  .elite-cta__headline .line-universo {
    background: linear-gradient(
      135deg,
      #f5e642 0%,
      #d4a017 25%,
      #ffd700 50%,
      #d4a017 75%,
      #f5e642 100%
    ) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-style: italic !important;
    animation: goldShift 4s ease-in-out infinite alternate !important;
  }

  /* "una realidad." — white, bold */
  .elite-cta__headline .line-realidad {
    color: #ffffff !important;
    font-style: normal !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ELITE FX — Maximum Visual Upgrade
   ═══════════════════════════════════════════════════════════════ */

/* ─ Keyframes ─────────────────────────────────────────────────── */
@keyframes liquidGold {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 20px rgba(212,160,23,0.4))
            drop-shadow(0 0 40px rgba(212,160,23,0.2));
  }
  to {
    filter: drop-shadow(0 0 50px rgba(212,160,23,0.9))
            drop-shadow(0 0 100px rgba(212,160,23,0.5))
            drop-shadow(0 0 150px rgba(212,160,23,0.2));
  }
}

@keyframes quotePulse {
  from {
    border-left-color: rgba(212,160,23,0.4);
    box-shadow: -4px 0 20px rgba(212,160,23,0.1);
  }
  to {
    border-left-color: #FFD700;
    box-shadow: -4px 0 40px rgba(212,160,23,0.5),
                -8px 0 80px rgba(212,160,23,0.2);
  }
}

@keyframes mirrorBreath {
  from { opacity: 0.04; letter-spacing: 0.3em; }
  to   { opacity: 0.12; letter-spacing: 0.5em; }
}


.hero-subtitle-italic {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: rgba(212,160,23,0.85);
  margin-top: 4px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

/* Ensure hero content sits above bg text */
.elite-hero .elite-hero__bg,
.elite-hero .elite-hero__content,
.elite-hero .elite-hero__scroll-hint {
  position: relative;
  z-index: 1;
}

@keyframes lightSweep {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

@keyframes priceCardGlow {
  from {
    box-shadow: 0 0 30px rgba(212,160,23,0.1),
                inset 0 0 30px rgba(212,160,23,0.02);
  }
  to {
    box-shadow: 0 0 80px rgba(212,160,23,0.3),
                0 0 160px rgba(212,160,23,0.1),
                inset 0 0 60px rgba(212,160,23,0.05);
  }
}

@keyframes priceOrb {
  from { transform: translate(0, 0); }
  to   { transform: translate(20px, 30px); }
}

@keyframes ctaOrb {
  from { transform: translateX(-50%) scale(1); opacity: 0.8; }
  to   { transform: translateX(-50%) scale(1.3); opacity: 1; }
}

/* ─ Effect 1 — Hero h1 liquid gold ────────────────────────────── */
.elite-hero__headline.gold-metallic {
  background: linear-gradient(
    135deg,
    #fff5a0 0%,
    #FFD700 15%,
    #D4A017 30%,
    #ffffff 45%,
    #FFD700 55%,
    #B8860B 70%,
    #FFD700 85%,
    #fff5a0 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: liquidGold 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212,160,23,0.5))
          drop-shadow(0 0 60px rgba(212,160,23,0.3))
          drop-shadow(0 0 100px rgba(212,160,23,0.15));
}

.elite-hero__headline-em {
  animation: glowPulse 3s ease-in-out infinite alternate;
}


/* ─── 3D Crystal container ───────────────────────────────────── */
#crystal-container {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  pointer-events: auto;
  z-index: 2;
}

#crystal-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@media (min-width: 769px) {
  .elite-hero .elite-hero__content {
    max-width: 52%;
  }
}

@media (max-width: 768px) {
  #crystal-container {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 240px;
    height: 240px;
    margin: 32px auto 0;
    pointer-events: auto;
  }
}

/* ─ Effect 4 — Section dividers ───────────────────────────────── */
.elite-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,160,23,0.8) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lightSweep 3s ease-in-out infinite;
  margin: 0;
}

/* ─ Effect 5 — Feature card hover burn ────────────────────────── */
.elite-include-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(212,160,23,0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  height: auto; /* override old 1px value */
}

.elite-include-card:hover::before { opacity: 1; }

.elite-include-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(212,160,23,0.1),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(212,160,23,0.08);
}

/* ─ Effect 6 — Quote gold neon pulse ──────────────────────────── */
.elite-parallax__quote {
  border-left: 2px solid #D4A017;
  padding: 24px 32px;
  position: relative;
  animation: quotePulse 4s ease-in-out infinite alternate;
}

.elite-parallax__quote em {
  background: linear-gradient(135deg, #FFD700, #D4A017, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: liquidGold 3s ease-in-out infinite;
}

/* ─ Effect 7 — Price card legendary glow ──────────────────────── */
.elite-price-card {
  animation: priceCardGlow 5s ease-in-out infinite alternate;
}

.elite-price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(212,160,23,0.08) 0%,
    transparent 60%
  );
  animation: priceOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.elite-price-card__amount {
  background: linear-gradient(
    135deg,
    #fff5a0, #FFD700, #D4A017, #FFD700, #fff5a0
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: liquidGold 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212,160,23,0.8))
          drop-shadow(0 0 40px rgba(212,160,23,0.4));
}

/* ─ Effect 8 — CTA gold atmosphere ────────────────────────────── */
.elite-cta-section {
  position: relative;
  overflow: hidden;
}

.elite-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212,160,23,0.12) 0%,
    rgba(212,160,23,0.05) 40%,
    transparent 70%
  );
  animation: ctaOrb 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* ─ Ensure page content stays above particles canvas ─────────── */
.elite-hero,
.elite-section,
.elite-parallax,
.elite-cta-section,
.elite-pricing,
footer {
  position: relative;
  z-index: 1;
}

/* ─── MOBILE FIX 4 — CTA size & spacing ────────────────────── */
@media (max-width: 768px) {
  .elite-cta__headline,
  .elite-cta h2 {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    gap: 2px !important;
    letter-spacing: 0.02em !important;
  }
}

/* ─── MOBILE FIX 5 — All uppercase lines ───────────────────── */
@media (max-width: 768px) {
  .elite-cta__headline .line-hagamos,
  .elite-cta__headline .line-universo,
  .elite-cta__headline .line-realidad {
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }
}

/* ─── MOBILE FIX 6 — "tu universo" gold glow ───────────────── */
@media (max-width: 768px) {
  .elite-cta__headline .line-universo {
    background: linear-gradient(
      135deg,
      #fff5a0 0%,
      #ffd700 20%,
      #d4a017 40%,
      #ffd700 60%,
      #b8860b 80%,
      #ffd700 100%
    ) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-style: italic !important;
    animation: goldShift 3s ease-in-out infinite alternate !important;
    filter:
      drop-shadow(0 0 8px rgba(212,160,23,0.9))
      drop-shadow(0 0 20px rgba(212,160,23,0.6))
      drop-shadow(0 0 40px rgba(212,160,23,0.3)) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MIRROR PORTAL — 3D intro experience
   ═══════════════════════════════════════════════════════════════ */

#mirror-portal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #080808;
}

#mirror-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#portal-spacer {
  height: 300vh;
  position: relative;
  z-index: 1;
}

.elite-content-hidden {
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 2;
}

.elite-content-visible {
  opacity: 1;
  visibility: visible;
}

#scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(212,160,23,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 101;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,160,23,0.8), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

#ripple-overlay {
  position: fixed;
  inset: 0;
  z-index: 102;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at center,
    rgba(212,160,23,0.0) 0%,
    rgba(212,160,23,0.3) 40%,
    rgba(255,255,255,0.8) 70%,
    rgba(255,255,255,1) 100%
  );
}

#gold-flash {
  position: fixed;
  inset: 0;
  z-index: 103;
  pointer-events: none;
  opacity: 0;
  background: #FFD700;
}

/* Mobile — skip portal entirely */
@media (max-width: 768px) {
  #mirror-portal,
  #portal-spacer {
    display: none;
  }

  .elite-content-hidden {
    opacity: 1;
    visibility: visible;
  }
}

/* ── Visibility override — fix .reveal IntersectionObserver race ── */
#elite-content .reveal,
#elite-content .elite-section,
#elite-content [class*="elite-"],
#elite-content section,
#elite-content h1,
#elite-content h2,
#elite-content h3,
#elite-content p,
#elite-content ul,
#elite-content li {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.elite-content-visible .reveal,
.elite-content-visible section,
.elite-content-visible * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
}
