/* ==========================================================================
   Aura 69 — Espacio Holístico
   Hoja de estilos premium rediseñada 2026
   Estructura: variables → reset → utilidades → componentes → secciones → responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables de diseño
   -------------------------------------------------------------------------- */
:root {
  /* Fondos */
  --bg-deep: #08030f;
  --bg-panel: #0d0618;
  --bg-card: #12091f;
  --bg-card-hover: #1a0f2e;
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  /* Acentos dorados */
  --gold: #c9a45c;
  --gold-bright: #e8c989;
  --gold-dim: #9a7d44;

  /* Acentos violetas */
  --violet: #7c5cff;
  --violet-soft: #9d85ff;
  --violet-deep: #4a2db8;

  /* Tonos secundarios */
  --teal: #5ee7db;
  --teal-soft: #8df0e8;
  --rose: #ff7aa2;
  --rose-soft: #ffb3c8;

  /* Texto */
  --ink: #f5f0ff;
  --muted: #a99ab8;
  --muted-dark: #6e5f7d;

  /* Líneas y sombras */
  --line: rgba(201, 164, 92, 0.18);
  --line-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 12px 40px rgba(201, 164, 92, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Layout */
  --container: 1240px;
  --nav-height: 80px;
}

/* --------------------------------------------------------------------------
   Reset y base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: rgba(124, 92, 255, 0.35);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Utilidades
   -------------------------------------------------------------------------- */
.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
  position: relative;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  max-width: 880px;
}

.section-title .it {
  font-style: italic;
  color: var(--gold-bright);
}

.section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

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

.text-center .section-title,
.text-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Fondo ambiental — aurora + grano + partículas
   -------------------------------------------------------------------------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(ellipse at 15% 0%, rgba(124, 92, 255, 0.18), transparent 55%),
              radial-gradient(ellipse at 85% 100%, rgba(201, 164, 92, 0.12), transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(74, 45, 184, 0.12), transparent 60%);
  animation: aurora-drift 24s ease-in-out infinite alternate;
}

.bg-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 122, 162, 0.08), transparent 40%);
  animation: aurora-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(2vw, -1vh) scale(1.04); opacity: 1; }
  100% { transform: translate(-1vw, 2vh) scale(1.02); opacity: 0.95; }
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 35px rgba(124, 92, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(124, 92, 255, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(201, 164, 92, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 164, 92, 0.08);
}

.btn-sm {
  padding: 0.75rem 1.6rem;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Navegación
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8, 3, 15, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 3, 15, 0.88);
  border-color: var(--line-subtle);
  height: 66px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201, 164, 92, 0.25));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  line-height: 1;
}

.brand-text span {
  color: var(--violet-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold-bright);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  color: var(--gold-bright);
  font-size: 1.7rem;
  padding: 0.4rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 5.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 3, 15, 0.72) 0%, rgba(8, 3, 15, 0.45) 40%, rgba(8, 3, 15, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 1rem 0 2rem;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: clamp(24px, 4vw, 40px);
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-bright), var(--rose-soft), var(--violet-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  color: var(--teal-soft);
  margin-bottom: 1.2rem;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  max-width: 620px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.hero-badges .badge::before {
  content: '✦';
  color: var(--gold-bright);
}

.hero-price-float {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  background: rgba(8, 3, 15, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.8rem;
  text-align: center;
  animation: float-y 5s ease-in-out infinite;
}

.hero-price-float .new {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-price-float .old {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
}

.hero-price-float .new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1.1;
}

.hero-price-float .note {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 0.2rem;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   Sección: problem-solution
   -------------------------------------------------------------------------- */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.ps-card {
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ps-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  background: var(--bg-glass-hover);
}

.ps-card:hover::before {
  opacity: 1;
}

.ps-card .icon {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  display: block;
}

.ps-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.ps-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.ps-card.pain {
  border-left: 2px solid var(--rose);
}

.ps-card.pain h3 {
  color: var(--rose-soft);
}

.ps-card.solution {
  border-left: 2px solid var(--teal);
  background: linear-gradient(160deg, rgba(94, 231, 219, 0.06), var(--bg-glass));
}

.ps-card.solution h3 {
  color: var(--teal-soft);
}

.ps-card.solution ul {
  margin-top: 1rem;
}

.ps-card.solution li {
  padding: 0.4rem 0;
  color: var(--ink);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-card.solution li::before {
  content: '✦';
  color: var(--teal);
  margin-right: 0.5rem;
}

.manifesto-banner {
  margin-top: 3.5rem;
  padding: 2.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.12), rgba(201, 164, 92, 0.06));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.12), transparent 60%);
}

.manifesto-banner p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Sección: servicios
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 50%, rgba(201, 164, 92, 0.05));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--violet-soft);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
}

.service-sub {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--rose-soft);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list {
  margin-top: 1.2rem;
  padding-left: 1rem;
  margin-bottom: 1.4rem;
}

.service-list li {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.service-list li::marker {
  color: var(--gold);
}

.service-mode {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--line-subtle);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  width: fit-content;
}

/* --------------------------------------------------------------------------
   Sección: chakras
   -------------------------------------------------------------------------- */
.chakras-section {
  background: radial-gradient(ellipse at center, rgba(124, 92, 255, 0.08), transparent 65%);
}

.chakra-wheel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.chakra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  min-width: 124px;
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: default;
}

.chakra:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  background: var(--bg-glass-hover);
}

.chakra-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 22px currentColor;
  animation: chakra-glow 3.5s ease-in-out infinite;
  position: relative;
}

.chakra-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.4;
  animation: chakra-ring 3.5s ease-in-out infinite;
}

@keyframes chakra-glow {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.55); transform: scale(1.08); }
}

@keyframes chakra-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.15; }
}

.chakra-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.chakra-fn {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Sección: ritual / journey
   -------------------------------------------------------------------------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
  position: relative;
}

.journey-grid::before {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  z-index: 0;
}

.journey-step {
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, border-color 0.35s ease;
  counter-increment: step;
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.journey-step .n {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.journey-step .n::before {
  content: '0' counter(step);
}

.journey-step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.journey-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Sección: filosofía / stats
   -------------------------------------------------------------------------- */
.philosophy-section {
  background: radial-gradient(ellipse at center, rgba(201, 164, 92, 0.06), transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.stat .big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  background: linear-gradient(120deg, var(--gold-bright), var(--rose-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Sección: precios
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.price-card {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  background: var(--bg-glass);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 164, 92, 0.1), rgba(124, 92, 255, 0.06));
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.price-card.featured::after {
  content: 'Más elegido';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  font-weight: 800;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  min-height: 2.6rem;
}

.price-amount {
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.price-old {
  font-size: 1.05rem;
  color: var(--rose);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.price-save {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.price-list {
  margin: 1.6rem 0 1.8rem;
}

.price-list li {
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list li::before {
  content: '✦';
  color: var(--gold);
  margin-right: 0.5rem;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
  padding: 0.9rem 1.6rem;
  border: 1px dashed var(--gold);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  background: rgba(201, 164, 92, 0.06);
  backdrop-filter: blur(8px);
}

.promo-banner strong {
  color: var(--rose-soft);
}

/* --------------------------------------------------------------------------
   Sección: virtual
   -------------------------------------------------------------------------- */
.virtual-section {
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.08), rgba(94, 231, 219, 0.05));
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.virtual-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.virtual-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.virtual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.virtual-image:hover img {
  transform: scale(1.04);
}

.virtual-content ul {
  margin: 1.6rem 0 2rem;
}

.virtual-content li {
  padding: 0.6rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.virtual-content li::before {
  content: '✦';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.virtual-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Sección: testimonios
   -------------------------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testi-card {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.testi-quote::before {
  content: '“';
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 0.1rem;
  opacity: 0.45;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.testi-author strong {
  display: block;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.98rem;
}

.testi-author span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Sección: ubicación
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-card {
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--line-subtle);
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.location-addr {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.location-addr strong {
  color: var(--gold);
}

.location-city {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.location-hours {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-subtle);
}

.location-hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-hours div span:last-child {
  color: var(--ink);
}

.location-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-subtle);
  min-height: 360px;
  background: #000;
  display: flex;
  flex-direction: column;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9);
}

.map-banner {
  margin-top: auto;
  padding: 1.2rem;
  border-top: 1px solid var(--line-subtle);
  background: rgba(255, 255, 255, 0.03);
}

.map-banner strong {
  color: var(--teal);
}

.map-banner p {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   CTA final
   -------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent, rgba(124, 92, 255, 0.08));
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 500;
  line-height: 1.06;
  margin-bottom: 1.4rem;
}

.final-cta h2 .it {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-bright), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-cta .cta-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--line-subtle);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-legal {
  font-size: 0.74rem;
  color: var(--muted-dark);
  max-width: 860px;
  margin: 1.6rem auto 0;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   WhatsApp flotante
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2000;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease;
  text-decoration: none;
  animation: wa-pulse 2.6s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

.wa-label {
  position: fixed;
  bottom: 36px;
  right: 106px;
  z-index: 1999;
  background: var(--bg-card);
  color: var(--ink);
  padding: 0.65rem 1.1rem;
  border-radius: 30px;
  border: 1px solid var(--line-subtle);
  font-size: 0.84rem;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.wa-float:hover ~ .wa-label,
.wa-label.show {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .hero-content {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .hero-price-float {
    margin: 2rem auto 0;
  }
}

@media (max-width: 1024px) {
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .virtual-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .virtual-image { order: -1; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 3, 15, 0.97);
    border-bottom: 1px solid var(--line-subtle);
    padding: 1rem 0;
    display: none;
    animation: navDrop 0.35s ease;
  }
  .nav-menu.show { display: flex; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a { display: block; padding: 1rem 0; font-size: 0.9rem; }
  .nav-cta {
    margin: 1rem auto 0;
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .ps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 1rem 0 5rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 3.2rem); }
  .hero-tagline { font-size: clamp(1.25rem, 3.5vw, 1.8rem); }
  .hero-lead { font-size: 0.95rem; max-width: 340px; }
  .hero-cta { margin-bottom: 1rem; gap: 0.8rem; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .hero-badges { display: none; }
  .hero-price-float { margin-top: 1.5rem; padding: 0.75rem 1.2rem; }
  .hero-price-float .new { font-size: 1.65rem; }
  .hero-price-float .note { font-size: 0.58rem; }
  .btn { padding: 0.85rem 1.6rem; }
  .wa-label { display: none; }
  .brand-logo { height: 38px; }
  .brand-text { font-size: 1.35rem; }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
  #particles-canvas { display: none; }
}

/* --------------------------------------------------------------------------
   Cursor personalizado sutil (desktop)
   -------------------------------------------------------------------------- */
@media (pointer: fine) {
  body { cursor: default; }
}

/* --------------------------------------------------------------------------
   Utilidades de alineación
   -------------------------------------------------------------------------- */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
