:root {
  --night: #14081f;
  --ink: #1c0f2e;
  --mist: #2a1742;
  --ash: #b9a8cc;
  --fog: #f3ecfb;
  --lilac: #c9a8f0;
  --bloom: #b794f6;
  --bloom-deep: #8b5cf6;
  --violet: #7c3aed;
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Sora", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--fog);
  background:
    radial-gradient(ellipse at 20% 10%, rgba(183, 148, 246, 0.22), transparent 42%),
    radial-gradient(ellipse at 85% 30%, rgba(124, 58, 237, 0.18), transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 168, 240, 0.14), transparent 50%),
    var(--night);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* Orbes de ambiente */
.aura {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aura__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orbPulse 16s ease-in-out infinite alternate;
}

.aura__orb--a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 8%;
  left: -8%;
  background: #a78bfa;
}

.aura__orb--b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  top: 42%;
  right: -10%;
  background: #c084fc;
  animation-delay: -5s;
  animation-duration: 20s;
}

.aura__orb--c {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: 6%;
  left: 30%;
  background: #818cf8;
  animation-delay: -9s;
  animation-duration: 22s;
}

/* Chakras flotantes */
.chakra-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.chakra {
  position: absolute;
  width: clamp(52px, 8vw, 96px);
  height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.25));
  will-change: transform;
  animation: floatChakra 18s ease-in-out infinite;
}

.chakra--1 { top: 12%; left: 6%;  animation-duration: 19s; animation-delay: 0s; }
.chakra--2 { top: 28%; right: 8%; animation-duration: 22s; animation-delay: -3s; width: clamp(44px, 7vw, 80px); }
.chakra--3 { top: 52%; left: 4%;  animation-duration: 17s; animation-delay: -6s; width: clamp(40px, 6.5vw, 74px); }
.chakra--4 { top: 18%; left: 48%; animation-duration: 24s; animation-delay: -2s; width: clamp(48px, 7.5vw, 88px); opacity: 0.4; }
.chakra--5 { top: 68%; right: 12%; animation-duration: 20s; animation-delay: -8s; }
.chakra--6 { top: 78%; left: 18%; animation-duration: 21s; animation-delay: -4s; width: clamp(42px, 6.8vw, 78px); }
.chakra--7 { top: 40%; right: 22%; animation-duration: 25s; animation-delay: -10s; width: clamp(56px, 9vw, 104px); opacity: 0.62; }

@media (max-width: 700px) {
  .chakra--4,
  .chakra--3 {
    display: none;
  }

  .chakra {
    opacity: 0.38;
  }
}

.top,
main,
.foot {
  position: relative;
  z-index: 2;
}

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
}

.top__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #f8f1ff;
  text-shadow: 0 2px 18px rgba(40, 10, 70, 0.45);
}

.top__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top__nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(248, 241, 255, 0.9);
  transition: color 0.2s ease;
}

.top__nav a:hover {
  color: #fff;
}

.top__cta {
  padding: 0.5rem 0.95rem;
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
  color: #1c0f2e !important;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.top__cta:hover {
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: drift 28s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05) brightness(0.72) hue-rotate(250deg);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20, 8, 31, 0.88) 0%,
      rgba(40, 16, 70, 0.62) 42%,
      rgba(88, 28, 135, 0.35) 68%,
      rgba(20, 8, 31, 0.7) 100%
    ),
    linear-gradient(180deg, rgba(20, 8, 31, 0.25) 0%, rgba(20, 8, 31, 0.82) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(6.5rem, 14vh, 9rem) clamp(1.25rem, 5vw, 3.5rem) clamp(3.2rem, 8vh, 5rem);
  max-width: 44rem;
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #faf5ff;
  text-shadow:
    0 0 40px rgba(183, 148, 246, 0.45),
    0 10px 40px rgba(0, 0, 0, 0.4);
  animation: rise 1s var(--ease) both;
}

.hero__title {
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ede4ff;
  max-width: 16ch;
  animation: rise 1s var(--ease) 0.12s both;
}

.hero__lead {
  margin: 0 0 1.55rem;
  max-width: 30rem;
  color: rgba(237, 228, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  animation: rise 1s var(--ease) 0.22s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1s var(--ease) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--bloom {
  background: linear-gradient(135deg, #ddd6fe, #a78bfa 55%, #8b5cf6);
  color: #1c0f2e;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.38);
}

.btn--bloom:hover {
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.5);
}

.btn--ghost {
  border: 1px solid rgba(248, 241, 255, 0.45);
  color: #faf5ff;
  background: rgba(40, 16, 70, 0.28);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: #faf5ff;
  background: rgba(183, 148, 246, 0.18);
}

.btn--ghost-dark {
  border: 1px solid rgba(139, 92, 246, 0.45);
  color: #1c0f2e;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.8);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bloom-deep);
}

.eyebrow--light {
  color: var(--lilac);
}

/* TIENDA */
.shop {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3.2rem);
  background:
    linear-gradient(180deg, rgba(248, 241, 255, 0.94), rgba(237, 228, 255, 0.9));
  color: var(--ink);
}

.shop__intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.shop__intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 14ch;
}

.shop__intro p:last-child {
  margin: 0;
  color: rgba(28, 15, 46, 0.68);
  max-width: 34rem;
}

.shop__rail {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 800px) {
  .shop__rail {
    grid-template-columns: 1fr 1fr;
  }
}

.product h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.product p {
  margin: 0 0 0.9rem;
  color: rgba(28, 15, 46, 0.68);
  max-width: 34rem;
}

.product__shot {
  display: block;
  overflow: hidden;
  background: #ddd6fe;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(88, 28, 135, 0.12);
}

.product__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product__shot:hover img {
  transform: scale(1.06);
}

.link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1.5px solid var(--bloom-deep);
  padding-bottom: 0.1rem;
  color: var(--ink);
}

.link:hover {
  color: var(--violet);
}

/* TERAPIAS */
.therapies {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3.2rem);
  background:
    linear-gradient(180deg, rgba(28, 15, 46, 0.92), rgba(20, 8, 31, 0.96));
  color: var(--fog);
}

.therapies__head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.therapies__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #faf5ff;
  max-width: 16ch;
}

.therapies__head p:last-child {
  margin: 0;
  color: var(--ash);
}

.therapy-list {
  list-style: none;
  margin: 0 0 clamp(2.2rem, 5vw, 3.2rem);
  padding: 0;
  border-top: 1px solid rgba(201, 168, 240, 0.2);
}

.therapy-list li {
  display: grid;
  gap: 0.35rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(201, 168, 240, 0.18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), background 0.25s ease;
  border-radius: 8px;
}

.therapy-list li.is-in {
  opacity: 1;
  transform: none;
}

.therapy-list li:hover {
  background: rgba(183, 148, 246, 0.08);
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

@media (min-width: 780px) {
  .therapy-list li {
    grid-template-columns: minmax(12rem, 0.42fr) 1fr;
    align-items: baseline;
  }
}

.therapy-list__name {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #faf5ff;
}

.therapy-list__desc {
  color: var(--ash);
  font-size: 0.98rem;
}

.therapies__visual {
  overflow: hidden;
  max-height: 52vh;
  background: #2a1742;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.therapies__visual img {
  width: 100%;
  height: 100%;
  max-height: 52vh;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) hue-rotate(200deg);
}

/* STRIP */
.strip {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #faf5ff;
}

.strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.1) hue-rotate(220deg);
}

.strip__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 31, 0.15), rgba(20, 8, 31, 0.85));
}

.strip__text {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vw, 4rem) clamp(1.25rem, 4vw, 3.2rem);
  max-width: 34rem;
}

.strip__brand {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(183, 148, 246, 0.5);
}

.strip__text p:last-child {
  margin: 0;
  color: rgba(250, 245, 255, 0.9);
}

/* CONTACTO */
.contact {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3.2rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(183, 148, 246, 0.35), transparent 55%),
    linear-gradient(180deg, #efe6fb, #e4d4f7);
  color: var(--ink);
  text-align: center;
}

.contact h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.contact__lead {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(28, 15, 46, 0.68);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact__note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(28, 15, 46, 0.48);
}

.foot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 3.2rem) 1.9rem;
  background: #10061a;
  border-top: 1px solid rgba(201, 168, 240, 0.16);
  color: var(--ash);
  font-size: 0.88rem;
}

.foot__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.foot__brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  color: #faf5ff;
}

.foot__copy,
.foot p {
  margin: 0;
}

.foot__credit {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(185, 168, 204, 0.9);
}

.foot__credit a {
  color: #faf5ff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 148, 246, 0.55);
}

.foot__credit a:hover {
  color: var(--lilac);
  border-bottom-color: var(--lilac);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes floatChakra {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate3d(12px, -22px, 0) rotate(8deg) scale(1.05);
  }
  66% {
    transform: translate3d(-14px, 10px, 0) rotate(-6deg) scale(0.96);
  }
  100% {
    transform: translate3d(8px, -14px, 0) rotate(4deg) scale(1.03);
  }
}

@keyframes orbPulse {
  from {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  to {
    transform: scale(1.18) translate(4%, -3%);
    opacity: 0.7;
  }
}

@keyframes drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.14) translate(-1.2%, -0.8%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__img,
  .hero__brand,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .therapy-list li,
  .chakra,
  .aura__orb,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .top__nav a:not(.top__cta) {
    display: none;
  }
}
