* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #05010d;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

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


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 25, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-size: 1.5rem;
  white-space: nowrap;
  display: inline-block;

  
  color: transparent;
  background: linear-gradient(90deg, #c77dff, #7b2cbf, #c77dff, #7b2cbf);
  background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: chakraGlow 3s linear infinite;
}


@keyframes chakraGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media (max-width: 768px) {
  .logo {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.85;
  transition: opacity .3s;
}

.nav-links a:hover {
  opacity: 1;
}

.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
}


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  opacity: .85;
}


section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color:#c084fc;
}

.card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}


.contact {
  padding: 120px 8%;
  display: flex;
  justify-content: center;
}

.contact-form {
  max-width: 460px;
  width: 100%;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-align: center;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-sub {
  opacity: .75;
  margin-bottom: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.contact-actions a {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}


.btn-whatsapp1 {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
}


.btn-instagram {
  background: linear-gradient(135deg, #8a3ab9, #e95950, #fccc63);
  box-shadow: 0 10px 30px rgba(233,89,80,.45);
}

.contact-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}


@media (max-width: 480px) {
  .contact-actions {
    flex-direction: column;
  }
}

.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: none;
  outline: none;

  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  font-family: inherit;

  appearance: none;
  -webkit-appearance: none;
}


.contact-form select option {
  background: #12001f;
  color: #fff;
}


.contact-form select option[value=""] {
  color: rgba(255,255,255,0.6);
}

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 55%,
    calc(100% - 16px) 55%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}



footer {
  padding: 60px 24px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
  font-size: 14px;
  opacity: 0.6;
}


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 5, 25, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }
}


.horoscopo-section {
  padding: 120px 8%;
  text-align: center;
}

.horoscopo-section h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.sub {
  opacity: .75;
  margin-bottom: 50px;
}

.signos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.signos button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: .3s;
  backdrop-filter: blur(8px);
}

.signos button:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.horoscopo-card {
  max-width: 640px;
  margin: auto;
  padding: 50px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

.horoscopo-card.active {
  opacity: 1;
  transform: translateY(0);
}

.horoscopo-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.mensaje {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.detalle p {
  margin-bottom: 10px;
  font-size: 16px;
}


.chakra-section {
  padding: 120px 8%;
  text-align: center;
}

.chakras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 50px auto;
}

.chakra {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: .3s;
  backdrop-filter: blur(10px);
}

.chakra:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 30px currentColor;
}

.chakra-info {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease;
}

.chakra-info.active {
  opacity: 1;
  transform: translateY(0);
}

#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}



.tarot-section {
  padding: 140px 8%;
  text-align: center;
}

.tarot-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.tarot-section .sub {
  opacity: 0.75;
  margin-bottom: 60px;
}


.tarot-table {
  display: flex;
  justify-content: center;
  gap: 40px;
  perspective: 1200px;
  margin-bottom: 60px;
}


.tarot-card {
  width: 200px;
  height: 300px;
  cursor: pointer;
  perspective: 1000px;
  border-radius: 18px;
}


.tarot-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  border-radius: 18px;
}


.tarot-card.flipped .tarot-card-inner {
  transform: rotateY(180deg);
}


.tarot-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle, #a201f9 2px, transparent 3px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.12) 2px, transparent 2px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.12) 2px, transparent 2px, transparent 28px),
    radial-gradient(circle at top, #1f2b4f, #0a0f24 70%);
  background-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
  background-position: center, center, center, center;
  box-shadow: inset 0 0 40px rgba(255,255,255,.12), 0 12px 30px rgba(0,0,0,.5);
  backface-visibility: hidden;
}


.tarot-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background-color: #0a0f24;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  overflow: hidden;
}


.tarot-card-back img {
  width: 100%;
  height: auto; 
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  display: block;
}


.tarot-card-back h4,
.tarot-card-back p {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.6);
  margin: 0;
}

.tarot-card-back h4 {
  font-size: 16px;
  font-weight: 600;
}

.tarot-card-back p {
  font-size: 14px;
  line-height: 1.3;
}


.tarot-result {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

.tarot-result.active {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 768px) {
  .tarot-section {
    padding: 100px 6%;
  }

  .tarot-section h2 {
    font-size: 32px;
  }

  .tarot-section .sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .tarot-table {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    perspective: 900px;
  }

  .tarot-card {
    width: 200px;
    height: 300px;
  }

  .tarot-card-back h4 {
    font-size: 15px;
  }

  .tarot-card-back p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .tarot-section h2 {
    font-size: 28px;
  }

  .tarot-card {
    width: 180px;
    height: 280px;
  }

  .tarot-card-back h4 {
    font-size: 14px;
  }

  .tarot-card-back p {
    font-size: 13px;
  }
}

.cosmic-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s ease;
  z-index: 2;
}

.cosmic-overlay.active {
  opacity: 1;
}

* SECTION */
.numerologia-section {
  padding: 140px 8%;
  text-align: center;
}

/* TITULO */
.numerologia-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
  text-align: center;
}

/* SUBTEXTO */
.numerologia-section .sub {
  opacity: 0.75;
  margin-bottom: 60px;
  text-align: center;
}

/* BOX CONTENEDOR */
.numerologia-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 30px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LABEL */
.numerologia-box label {
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

/* INPUT */
.numerologia-box input {
  width: 100%;
  max-width: 100%;
  padding: 14px;

  border-radius: 14px;
  border: none;

  font-size: 16px;
  margin-bottom: 24px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #fff;
}

/* PLACEHOLDER */
.numerologia-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* FOCUS EFECTO PRO */
.numerologia-box input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(123, 92, 255, 0.6);
}

/* BOTÓN */
.numerologia-box button {
  width: 100%;
  max-width: 100%;

  padding: 16px;
  border-radius: 999px;
  border: none;

  font-size: 16px;
  font-weight: 500;
  color: #fff;

  cursor: pointer;

  background: linear-gradient(90deg, #7b5cff, #4cc9f0);
  transition: all 0.3s ease;
}

/* HOVER */
.numerologia-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 201, 240, 0.3);
}

/* ACTIVE (tap mobile) */
.numerologia-box button:active {
  transform: scale(0.98);
}

/* MOBILE */
@media (max-width: 480px) {

  .numerologia-section {
    padding: 100px 20px;
  }

  .numerologia-section h2 {
    font-size: 30px;
    text-align: center;
  }

  .numerologia-box {
    max-width: 100%;
    padding: 20px 0;
  }

  .numerologia-box input {
    font-size: 16px;
    padding: 14px;
    border-radius: 16px;
  }

  .numerologia-box button {
    padding: 16px;
    font-size: 16px;
  }
}

.ritual-btn {
  background: linear-gradient(135deg, #7f5cff, #3ad9ff);
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.ritual-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.numero-result {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: .8s ease;
  color: #7b2cbf;
}

.numero-result.active {
  opacity: 1;
  transform: translateY(0);
}

.numero-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: bold;
  background: radial-gradient(circle, #fff, rgba(255,255,255,.2));
  box-shadow: 0 0 40px rgba(255,255,255,.4);
}

.numero-text {
  opacity: .85;
  line-height: 1.6;
}

.courses-section {
  padding: 140px 8%;
  text-align: center;
  color: #fff;
}

.courses-section h2 {
  font-size: 42px;
  margin-bottom: 12px;
  text-align: center;
}

.courses-sub {
  max-width: 680px;
  margin: 0 auto 80px;
  opacity: .75;
  text-align: center;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 420px));
  justify-content: center;
  gap: 40px;
}

.course-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-align: left;
  transition: transform .4s ease, box-shadow .4s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}

.course-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .7;
  text-align: center;
}

.course-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  text-align: center;
}

.course-card p {
  opacity: .8;
  margin-bottom: 24px;
  text-align: center;

}

.course-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
}

.course-card ul li {
  margin-bottom: 10px;
  opacity: .85;
  text-align: center;
}

.course-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}


.course-btn.secondary {
  background: transparent;
  border: 1px solid rgba(184,146,255,.6);
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 14px;
  white-space: nowrap;
}

.course-btn.secondary:hover {
  background: rgba(184,146,255,.15);
  box-shadow: 0 10px 30px rgba(184,146,255,.25);
  transform: translateY(-2px);
}



@media (max-width: 768px) {
  .course-actions {
    flex-direction: column;
    align-items: center;
  }

  .course-btn {
    width: 100%;
    max-width: 280px;
  }
}

.course-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}


.course-btn {
  background: linear-gradient(135deg, #7f5cff, #b892ff);
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: transform .3s, box-shadow .3s;
  max-width: 220px;
}


.course-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(127,92,255,.5);
}


@media (max-width: 768px) {
  .courses-section {
    padding: 100px 6%;
  }

  .courses-section h2 {
    font-size: 32px;
  }

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

@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.social-section {
  padding: 140px 8%;
  text-align: center;
  color: #fff;
}

.social-sub {
  opacity: .75;
  margin-bottom: 70px;
  margin-top: 30px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 40px;
  text-align: center;
}

.social-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-decoration: none;
  color: #fff;
  transition: transform .4s ease, box-shadow .4s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}

.social-card img {
  width: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.5));
}

.social-card span {
  font-size: 18px;
}


.astro-hero {
  padding: 140px 8%;
  color: #fff;
  position: relative;
}


.astro-hero__wrap {
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column; 

  align-items: center;
  text-align: center;
  gap: 60px;
}


.astro-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}


.astro-hero__image img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}


.astro-hero__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #3fd0a5, transparent 65%);
  filter: blur(45px);
  opacity: .7;
  z-index: 1;
}


.astro-hero__content {
  max-width: 680px;
}


.astro-hero__title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}


.astro-hero__quote {
  font-size: 18px;
  font-style: italic;
  opacity: .7;
  margin-bottom: 26px;
}


.astro-hero__name {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 22px;
}


.astro-hero__content p {
  font-size: 16.5px;
  line-height: 1.75;
  opacity: .85;
  margin-bottom: 16px;
}


.astro-hero__sign {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: .12em;
  opacity: .6;
}


.astro-hero__firma {
  margin-top: 30px;
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  opacity: .85;
}


.astro-hero {
  animation: astroFade 1.4s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes astroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {

  .astro-hero {
    padding: 100px 6%;
  }

  .astro-hero__image img {
    width: 240px;
    height: 240px;
  }

  .astro-hero__glow {
    width: 280px;
    height: 280px;
  }

  .astro-hero__title {
    font-size: 30px;
  }

  .astro-hero__wrap {
    gap: 50px;
  }
}

.chakra-garganta .glow::before {
  background: radial-gradient(circle, #4aa3ff, transparent 85%);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portal-link {
  position: relative;
  overflow: hidden;
}

.portal-link::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(180,120,255,.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .6s ease;
}

.portal-link:hover::before {
  opacity: 1;
}

.portal-link:hover {
  transform: translateY(-6px) scale(1.02);
}

.portal-link:active {
  transform: scale(0.96);
}

.natal-section {
  padding: 140px 8%;
}

.natal-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.natal-section h2 {
  font-size: 44px;
  margin-bottom: 14px;
}

.natal-sub {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 18px;
  opacity: .8;
  line-height: 1.6;
}


.natal-form {
  margin-bottom: 80px;
}

.natal-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.natal-fields input {
  padding: 16px 18px;
  border-radius: 16px;
  border: none;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 15px;
}

.natal-fields input::placeholder {
  color: rgba(255,255,255,.6);
}


.natal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px;
}

.natal-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-align: left;
}

.natal-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.natal-card ul {
  list-style: none;
  padding: 0;
}

.natal-card ul li {
  margin-bottom: 12px;
  opacity: .9;
}

.natal-card.destacado {
  background: linear-gradient(145deg, rgba(120,80,255,.25), rgba(0,0,0,.4));
}

.natal-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 18px;
  border-radius: 20px;
  background: #000;
  font-size: 13px;
}


@media (max-width: 768px) {
  .natal-section h2 {
    font-size: 36px;
  }
}

.cta-btn {
  position: relative;
  padding: 16px 48px;
  border-radius: 44px;
  font-size: 18px;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #6b2cff,
    #9d7bff,
    #e6dbff
  );
  box-shadow:
    0 10px 30px rgba(155,120,255,.45),
    inset 0 0 12px rgba(255,255,255,.35);
  transition: 
    transform .4s ease,
    box-shadow .4s ease,
    filter .4s ease;
}


.cta-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(180,150,255,.6),
    rgba(255,255,255,.4)
  );
  filter: blur(14px);
  opacity: .7;
  z-index: -1;
}


.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 18px 50px rgba(160,130,255,.65),
    inset 0 0 16px rgba(255,255,255,.45);
  filter: brightness(1.1);
}


.cta-btn:active {
  transform: translateY(-1px) scale(.99);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #b993ff,
    #7f5cff,
    #5a3cff
  );

  box-shadow:
    0 12px 30px rgba(140, 110, 255, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);

  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}


.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(140, 110, 255, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.45);
}


.hero-btn:active {
  transform: scale(0.96);
}


@media (max-width: 768px) {
  .hero-btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    font-size: 15px;
    padding: 14px 26px;
  }
}

.hero-btn {
  animation: energy-breath 4.5s ease-in-out infinite;
}


@keyframes energy-breath {
  0% {
    transform: scale(1);
    box-shadow:
      0 12px 30px rgba(140, 110, 255, 0.45),
      inset 0 1px 0 rgba(255,255,255,0.35);
  }

  50% {
    transform: scale(1.04);
    box-shadow:
      0 20px 50px rgba(170, 140, 255, 0.75),
      inset 0 1px 0 rgba(255,255,255,0.55);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 12px 30px rgba(140, 110, 255, 0.45),
      inset 0 1px 0 rgba(255,255,255,0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn {
    animation: none;
  }
}

.hero-btn {
  margin-top: 44px;
}

.about-section {
  padding: 140px 8%;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}


.about-text h1 {
  font-size: 46px;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 22px;
}

.about-text .intro {
  font-size: 18px;
  opacity: 0.95;
}

.about-text .closing {
  margin-top: 36px;
  font-style: italic;
  opacity: 0.7;
}


.about-image1 img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}


@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-section {
    padding: 110px 6%;
  }
}

@media (max-width: 480px) {
  .about-text h1 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }
}

.blog-section {
  padding: 140px 8%;
}

.blog-container {
  max-width: 820px;
  margin: auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 80px;
  border-radius: 15px;
}

.blog-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.blog-header p {
  font-size: 16px;
}


.blog-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.blog-post {
  padding-left: 24px;
  border-left: 2px solid rgba(180,140,255,0.4);
}

.blog-post time {
  font-size: 13px;
  opacity: 0.6;
  display: block;
  margin-bottom: 10px;
}

.blog-post h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-post p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}


@media (max-width: 768px) {
  .blog-section {
    padding: 100px 6%;
  }

  .blog-header h2 {
    font-size: 32px;
  }

  .blog-post h3 {
    font-size: 20px;
  }
}

.blog-post {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

.blog-post.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-card svg {
  width: 96px;
  height: 96px;
  animation: breathe 6s ease-in-out infinite;
  transition: transform .6s ease, filter .6s ease;
  will-change: transform, filter;
}

@keyframes breathe {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: .85;
  }
  50% {
    transform: scale(1.05) rotate(0.4deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: .85;
  }
}

.social-card:hover svg {
  transform: scale(1.12);
  filter:
    drop-shadow(0 0 14px rgba(199,125,255,.55))
    drop-shadow(0 0 34px rgba(157,78,221,.35));
}

.social-card {
  position: relative;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199,125,255,.22),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
}

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


.social-card svg,
.social-card span {
  position: relative;
  z-index: 1;
}

@media (hover: none) {
  .social-card:hover svg {
    filter: none;
    transform: none;
  }

 
  .social-card span {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    letter-spacing: 0.04em;
    opacity: 0.9;
  }
  :before {
    display: none;
  }
}

.social-card span {
  margin-top: 22px;
}

.social-card:hover span {
  opacity: 1;
  transform: translateY(2px);
  transition: transform .4s ease, opacity .4s ease;
}

.chakra-intro {
  min-height: 100vh;
  padding: 120px 8% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chakra-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/noise.png");
  opacity: 0.15;
  pointer-events: none;
}

.chakra-intro-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.chakra-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.7;
}

.chakra-intro h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.chakra-intro h1 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  background-clip: text;           
  -webkit-background-clip: text;    
  color: transparent;              
  -webkit-text-fill-color: transparent; 
}

.chakra-text {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 18px;
}

.chakra-text.soft {
  opacity: 0.7;
}

.chakra-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.chakra-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .chakra-intro {
    padding: 120px 6% 80px;
  }

  .chakra-intro h1 {
    font-size: 38px;
  }

  .chakra-text {
    font-size: 16px;
  }
}

.reiki-intro {
  padding: 120px 8% 100px;
  text-align: center;
  position: relative;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 50px;
}

.reiki-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.15;
  pointer-events: none;
}

.reiki-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reiki-intro h2 {
  font-size: 44px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.reiki-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.reiki-text.soft {
  opacity: 0.7;
}

.reiki-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.reiki-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .reiki-intro {
    padding: 100px 6% 80px;
  }

  .reiki-intro h2 {
    font-size: 34px;
  }

  .reiki-text {
    font-size: 16px;
  }
}

.chakra-image {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.chakra-image img {
  max-width: 400px; 
  width: 100%;     
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.chakra-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(138, 43, 226, 0.45);
}


@media (max-width: 768px) {
  .chakra-image {
    margin-top: 30px;
  }

  .chakra-image img {
    max-width: 90%;  
    border-radius: 16px;
  }
}

.numerologia-intro {
  padding: 120px 8% 80px;
  text-align: center;
  position: relative;
  color: #fff;
}

.numerologia-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.12;
  pointer-events: none;
}

.numerologia-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.numerologia-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.7;
}

.numerologia-intro h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.numerologia-intro h1 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.numerologia-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.9;
}

.numerologia-text.soft {
  opacity: 0.7;
}

.numerologia-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.numerologia-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .numerologia-intro {
    padding: 100px 6% 60px;
  }

  .numerologia-intro h1 {
    font-size: 36px;
  }

  .numerologia-text {
    font-size: 16px;
  }
}

.numerologia-whatsapp {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  color: #fff;
}

.numerologia-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.12;
  pointer-events: none;
}

.numerologia-whatsapp-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.numerologia-whatsapp h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.numerologia-whatsapp-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.85;
}

.numerologia-whatsapp-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.numerologia-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .numerologia-whatsapp {
    padding: 80px 6%;
  }

  .numerologia-whatsapp h2 {
    font-size: 32px;
  }

  .numerologia-whatsapp-text {
    font-size: 15px;
  }
}

.horoscopo-whatsapp {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  color: #fff;
}

.horoscopo-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.12;
  pointer-events: none;
}

.horoscopo-whatsapp-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.horoscopo-whatsapp h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.horoscopo-whatsapp-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.85;
}

.horoscopo-whatsapp-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.horoscopo-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .horoscopo-whatsapp {
    padding: 80px 6%;
  }

  .horoscopo-whatsapp h2 {
    font-size: 32px;
  }

  .horoscopo-whatsapp-text {
    font-size: 15px;
  }
}


.tarot-whatsapp {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  color: #fff;
}

.tarot-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.12;
  pointer-events: none;
}

.tarot-whatsapp-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tarot-whatsapp h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.tarot-whatsapp-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.85;
}

.tarot-whatsapp-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.tarot-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

@media (max-width: 768px) {
  .tarot-whatsapp {
    padding: 80px 6%;
  }

  .tarot-whatsapp h2 {
    font-size: 32px;
  }

  .tarot-whatsapp-text {
    font-size: 15px;
  }
}

.tarot-intro {
  padding: 120px 8%;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}

.tarot-intro-inner {
  max-width: 720px;
  margin: auto;
}

.tarot-eyebrow {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: #f0e6ff;
}

.tarot-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.tarot-intro h2 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent; 
  background-clip: text;          
  color: transparent;          
  display: inline-block;
}

.tarot-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #ddd;
}

.tarot-text.soft {
  opacity: 0.75;
}

.tarot-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  font-size: 16px;
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.tarot-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 125, 255, 0.5);
}


.blog-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.blog-post img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.post-content h3 {
  margin: 0 0 0.5rem 0;
}

.post-date {
  font-size: 0.85rem;
  color: #888;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #5a2bc7;
  text-decoration: none;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-archive {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-archive button {
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: 1px solid #5a2bc7;
  background: none;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
}

.blog-archive button.active,
.blog-archive button:hover {
  background: #5a2bc7;
  color: white;
}

#blog-list {
  flex: 3;
  display: flex;
  flex-direction: column;
}


.blog-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  border-radius: 7px;
}

.blog-post img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.post-content h3 {
  margin: 0 0 0.5rem 0;
}

.post-date {
  font-size: 0.85rem;
  color: #888;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #5a2bc7;
  text-decoration: none;
  font-weight: bold;
}


@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-post {
    flex-direction: column;
  }

  .blog-post img {
    width: 100%;
    height: auto;
  }

  .blog-archive {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .blog-archive button {
    flex: 1;
    text-align: center;
  }
}


.post-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}


.post-container h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #e0c3ff;
  text-shadow: 2px 2px 10px rgba(90, 43, 199, 0.7);
  text-align: center;
}


.post-date {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.post-img {
  width: 30%;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(90, 43, 199, 0.5);
  border: 2px solid rgba(224, 195, 255, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 768px) {
  .post-img {
    width: 60%;
  }
}

.post-container p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #f3e6ff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}


.btn-back {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #5a2bc7, #c39cff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(90, 43, 199, 0.6);
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: linear-gradient(135deg, #c39cff, #5a2bc7);
  box-shadow: 0 0 30px rgba(224, 195, 255, 0.8);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .post-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .post-container h1 {
    font-size: 2rem;
  }

  .post-container p {
    font-size: 1rem;
  }

}

.horoscopo-intro {
  padding: 120px 8% 80px;
  text-align: center;
  position: relative;
  color: #fff;
}

.horoscopo-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png"); 
  opacity: 0.12;
  pointer-events: none;
}

.horoscopo-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}


.horoscopo-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.7;
}

.horoscopo-intro h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.horoscopo-intro h1 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.horoscopo-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.9;
}

.horoscopo-text.soft {
  opacity: 0.7;
}

.horoscopo-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.horoscopo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(138,43,226,0.6);
}

  .horoscopo-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    transition: transform 0.3s ease;
  }

.horoscopo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .horoscopo-intro {
    padding: 100px 6% 60px;
  }

  .horoscopo-intro h1 {
    font-size: 36px;
  }

  .horoscopo-text {
    font-size: 16px;
  }
}


#promo-tarot {
  padding: 120px 8%;
  text-align: center;
  color: #fff;
}

#promo-tarot h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

#promo-tarot .subtitle {
  opacity: 0.75;
  margin-bottom: 40px;
}


.tarot-buttons button {
  margin: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(45deg, #7b2cbf, #c77dff);
  box-shadow: 0 0 20px rgba(199,125,255,0.5);
  transition: all 0.3s ease;
}

.tarot-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(224,170,255,0.9);
}


.tarot-zone {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}


.tarot-card {
  width: 260px;
  height: 400px;
  position: relative;
  cursor: pointer;
  transition: transform 1s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.tarot-card.flipped {
  transform: rotateY(180deg);
}


.tarot-card .front,
.tarot-card .back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(1px);
  will-change: transform;
}


.tarot-card .back {
  background:
    radial-gradient(circle at 20% 30%, rgba(199,125,255,0.9), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(123,44,191,0.8), transparent 45%),
    linear-gradient(180deg, #0b0217, #1a0933);
  border: 2px solid rgba(199,125,255,0.45);
  overflow: hidden;
}


.tarot-card .front {
  transform: rotateY(180deg) translateZ(1px);
  background: radial-gradient(circle at top, #1a0933, #000);
  border: 2px solid rgba(199,125,255,0.6);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}


.tarot-title {
  font-size: 18px;
  letter-spacing: 2px;
}

.tarot-icon {
  font-size: 72px;
}

.tarot-desc {
  font-size: 15px;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(199,125,255,0.4);
}

.tarot-cta {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 1px;
}


@keyframes starsMove {
  from { transform: translateY(0); }
  to { transform: translateY(200px); }
}


.ig-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: ig-pulse 2.5s infinite;
}


.fb-float {
  position: fixed;
  bottom: 170px; 
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: fb-pulse 2.5s infinite;
}


.yt-float {
  position: fixed;
  bottom: 240px; 
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: yt-pulse 2.5s infinite;
}


.ig-float img,
.fb-float img,
.yt-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}


.ig-float:hover,
.fb-float:hover,
.yt-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


@media (max-width: 768px) {
  .ig-float { bottom: 90px; right: 16px; }
  .fb-float { bottom: 150px; right: 16px; }
  .yt-float { bottom: 210px; right: 16px; }
}


@keyframes ig-pulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(225, 48, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

@keyframes fb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(24, 119, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

@keyframes yt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.tarot-card .back::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  color: rgba(224,170,255,0.65);
  text-shadow:
    0 0 20px rgba(199,125,255,0.9),
    0 0 40px rgba(123,44,191,0.7);
  animation: starPulse 4s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.9;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 420px);
  background: linear-gradient(180deg, #1a0933, #0b0217);
  border: 1px solid rgba(199,125,255,0.6);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 0 30px rgba(199,125,255,0.5);
  display: none;
  animation: cookieFadeIn 0.6s ease forwards;
}

#cookie-banner p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  opacity: 0.9;
  text-align: center;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(45deg, #7b2cbf, #c77dff);
  box-shadow: 0 0 15px rgba(199,125,255,0.6);
  transition: all 0.3s ease;
}

.cookie-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(224,170,255,0.9);
}

.cookie-actions button:last-child {
  background: transparent;
  border: 1px solid rgba(199,125,255,0.6);
  box-shadow: none;
}

@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

body.error-404 {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b1035, #05010f 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "'Cinzel', 'Cormorant Garamond";
  color: #e8ddff;
  text-align: center;
  overflow: hidden;
}


.moon-container {
  position: relative;
  padding: 60px 40px;
  z-index: 2;
}


.moon {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, #d6c9ff 40%, #a394e8 65%, #5b4b9b 100%);
  box-shadow:
    0 0 40px rgba(200,170,255,.6),
    0 0 120px rgba(140,100,255,.25);
}


h1 {
  font-size: 6rem;
  letter-spacing: 8px;
  margin-bottom: 10px;
  color: #f3ecff;
}

.msg {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 30px;
  line-height: 1.6;
}


.btn-home {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  color: white;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(168,85,247,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(168,85,247,.8);
}


@media (max-width: 480px) {
  h1 { font-size: 4rem; }
  .moon { width: 140px; height: 140px; }
}

:root {
  --violet-core: #7b2cbf;
  --violet-light: #c77dff;
  --cosmic-dark: #0b0217;
  --cosmic-mid: #1a093f;
  --text-soft: rgba(255,255,255,0.85);
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(199,125,255,0.25);
}

.courses {
  padding: 120px 8% 100px;
  text-align: center;
}

.courses h2 {
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  color: white;
  margin-bottom: 60px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.course-grid button {
  padding: 22px 20px;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-soft);
  font-size: 1rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
}

.course-grid button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 40px rgba(199,125,255,0.25);
  color: white;
}

.access-courses {
  padding: 140px 8% 120px;
  text-align: center;
  position: relative;
}

.access-courses::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.access-courses h2 {
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: white;
  margin-bottom: 40px;
}

.course-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 60px rgba(123,44,191,0.25);
}

.course-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: white;
}

.course-card p {
  opacity: 0.8;
  margin-bottom: 28px;
}

.access-btn {
  padding: 16px 34px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--violet-light), var(--violet-core));
  color: white;
  box-shadow: 0 0 30px rgba(199,125,255,0.45);
  transition: all 0.4s ease;
}

.access-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(199,125,255,0.8);
}

@media (max-width: 768px) {
  .courses {
    padding: 100px 6% 80px;
  }

  .courses h2,
  .access-courses h2 {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }

  .course-card {
    padding: 32px 26px;
  }
}

.hidden {
  display: none;
}

#course-detail {
  margin-top: 80px;
  padding: 60px 8%;
  text-align: center;
  color: #fff;
}

#course-detail h2 {
  font-size: 36px;
  margin-bottom: 24px;
}


#course-detail .course-info {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-align: left;
}


#course-detail p {
  margin-bottom: 14px;
  opacity: 0.85;
  font-size: 15px;
}

#course-detail strong {
  opacity: 1;
}


#course-detail .course-price {
  margin: 18px 0 24px;
  font-size: 20px;
  font-weight: 600;
  color: #b892ff;
}


#course-detail h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

#course-detail ul {
  list-style: none;
  padding: 0;
}

#course-detail ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  opacity: 0.85;
}

#course-detail ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #b892ff;
}


@media (max-width: 768px) {
  #course-detail {
    padding: 50px 6%;
  }

  #course-detail h2 {
    font-size: 28px;
  }

  #course-detail .course-info {
    padding: 32px 24px;
  }
}

#course-detail .course-actions {
  justify-content: center;
  margin-top: 32px;
}

.tarot-result-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.tarot-result-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 16px;
  text-align: center;
}

.tarot-result-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.tarot-result-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: .9;
}

.tarot-result-card p {
  font-size: 13px;
  opacity: .75;
}

.courses-intro {
  max-width: 900px;
  margin: 80px auto 0 auto; 
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  color: #f5e6ff;
  position: relative;
  overflow: hidden;
}

.courses-intro::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  opacity: 0.3;
}

.courses-intro h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: transparent;
 color:#fff;
}

@keyframes glowText {
  0% { text-shadow: 0 0 5px #c77dff, 0 0 10px #7b2cbf; }
  100% { text-shadow: 0 0 20px #c77dff, 0 0 30px #7b2cbf; }
}

.courses-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.courses-intro-text:last-child {
  color: rgba(245, 230, 255, 0.7);
  font-size: 1rem;
  animation: glowText 3s ease-in-out infinite alternate;
}

.courses-intro::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  animation: floatParticles 8s linear infinite;
}

@keyframes floatParticles {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}


@media (max-width: 768px) {
  .courses-intro h1 {
    font-size: 2.2rem;
  }

  .courses-intro-text {
    font-size: 1rem;
  }

  .courses-intro {
    padding: 40px 15px;
  }
}

.vidas-intro {
  padding: 120px 8% 80px;
  text-align: center;
  position: relative;
  color: #fff;
}

.vidas-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/cosmos/energy-overlay.png");
  opacity: 0.12;
}

.vidas-intro-inner {
  max-width: 820px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vidas-eyebrow {
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.7;
}

.vidas-intro h1 {
  font-size: 50px;
  margin-bottom: 30px;
}

.vidas-intro h1 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vidas-intro h1 span {
  background: linear-gradient(90deg, #c77dff, #7b2cbf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block; 
}

.vidas-text {
  font-size: 18px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.vidas-text.soft {
  opacity: 0.7;
}

.vidas-cta {
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2cbf, #c77dff);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(138,43,226,0.45);
}

.vidas-img {
  max-width: 350px;
  margin-top: 40px;
}


.vidas-beneficios {
  text-align: center;
  padding: 100px 20px;
}


.vidas-beneficios h2 {
  font-size: 36px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #c084fc, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vidas-beneficios h2 {
  font-size: 36px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #c084fc, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}


.vidas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}


.vida-card {
  padding: 30px 22px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.08); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}


.vida-card:hover {
  transform: translateY(-5px);
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}


.vida-card h3 {
  font-size: 20px; 
  margin-bottom: 10px;
  font-weight: 600;
}


.vida-card p {
  font-size: 15px; 
  line-height: 1.5;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .vidas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vida-card {
    padding: 22px 18px;
  }

  .vida-card h3 {
    font-size: 18px;
  }

  .vida-card p {
    font-size: 14px;
  }
}

.vidas-experiencia {
  padding: 80px 8%;
  text-align: center;
}

.vidas-opciones {
  margin-top: 30px;
}

.vida {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #222;
  color: white;
  cursor: pointer;
}

.vida:hover {
  background: #7b2cbf;
}


.vidas-session {
  padding: 100px 8%;
  text-align: center;
}

.vidas-inner {
  max-width: 700px;
  margin: auto;
}



@media (max-width: 768px) {
  .vidas-intro h1 {
    font-size: 36px;
  }

  .vidas-text {
    font-size: 16px;
  }
}


.vidas-opciones {
  margin-top: 30px;
  margin-bottom: 40px; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px; 
}


.vida-info {
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.vida-info h3 {
  margin-bottom: 10px;
  font-size: 22px;
}


.vida-info p {
  line-height: 1.6;
  opacity: 0.8;
}

.vidas-experiencia h2 {
  margin-bottom: 12px; 
}

.vidas-experiencia .sub {
  margin-bottom: 35px; 
  font-size: 16px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .vidas-experiencia h2 {
    margin-bottom: 10px;
  }

  .vidas-experiencia .sub {
    margin-bottom: 25px;
    font-size: 15px;
  }
}

.sesion-lectura {
  text-align: center;
  padding: 110px 20px; 
  max-width: 850px;
  margin: 0 auto;
}


.sesion-lectura h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sesion-lectura h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}


.sesion-lectura p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 22px;
}


.sesion-lectura .boton {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9333ea, #c084fc);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.sesion-lectura .boton:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
}

@media (max-width: 768px) {
  .sesion-lectura {
    padding: 70px 20px;
  }

  .sesion-lectura h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .sesion-lectura p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .sesion-lectura .boton {
    margin-top: 25px;
    padding: 14px 28px;
  }
}

.vidas-img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  display: block;
  margin: 40px auto 20px auto; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}


@media (min-width: 1024px) {
  .vidas-img {
    max-width: 500px;
    border-radius: 30px;
    margin-top: 100px;
  }
}

.cta-vidas {
  padding: 120px 20px;
  text-align: center; 
  color: #fff;
}

.cta-vidas-content {
  max-width: 800px;
  margin: auto;
}

.cta-tag {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #c084fc;
  text-transform: uppercase;
}

.cta-vidas h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-vidas h2 span {
  background: linear-gradient(90deg, #c084fc, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-vidas p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(90deg, #9333ea, #c084fc);
  color: #fff;
}

.cta-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.cta-btn.secondary {
  border: 1px solid #c084fc;
  color: #c084fc;
}

.cta-btn.secondary:hover {
  background: #c084fc;
  color: #000;
}

.luna-section {
  padding: 100px 20px;
  background: #000;
  color: #fff;
}

.lunar-section{
  position:relative;
  padding:100px 20px;

  overflow:hidden;
}


.lunar-section::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background-size: 40px 40px;
  opacity:0.15;
  top:0;
  left:0;
}


.lunar-container{
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column; 
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:40px;
}


.lunar-content{
  flex:1;
  color:#fff;
}

.lunar-tag{
  color:#b57aff;
  letter-spacing:3px;
  font-size:0.8rem;
}

.lunar-content h2{
  font-size:3rem;
  line-height:1.2;
  margin:20px 0;
}

.lunar-content h2 strong{
  color:#b57aff;
}

.lunar-content p{
  opacity:0.8;
  font-size:1.1rem;
  max-width:500px;
}


.lunar-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.lunar-content{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.lunar-content p{
  max-width:600px;
}

.lunar-buttons{
  justify-content:center;
  flex-wrap:wrap;
}

.lunar-buttons {
  position: relative;
  z-index: 10;
}

.lunar-buttons a {
  position: relative;
  z-index: 11;
}

.lunar-image{
  margin-top:20px;
}

.lunar-image {
  pointer-events: none; 
}

.lunar-image::before {
  pointer-events: none;
}

.btn-primary,
.btn-secondary{
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:linear-gradient(45deg,#a855f7,#6366f1);
  color:#fff;
  box-shadow:0 0 25px rgba(168,85,247,0.6);
}

.btn-primary:hover{
  transform:scale(1.05);
}

.btn-secondary{
  border:1px solid rgba(168,85,247,0.5);
  color:#c084fc;
}

.btn-secondary:hover{
  background:rgba(168,85,247,0.1);
}


@keyframes floatMoon{
  0%,100%{ transform:translateY(0);}
  50%{ transform:translateY(-20px);}
}


@media(max-width:900px){

  .lunar-container{
    flex-direction:column;
    text-align:center;
  }

  .lunar-content h2{
    font-size:2.2rem;
  }

  .lunar-buttons{
    justify-content:center;
    flex-direction:column;
  }

  .lunar-image img{
    width:220px;
  }

}


.lunar-image{
  margin-top:30px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  z-index:2; 
}


.lunar-image img{
  width:280px;
  max-width:100%;
  border-radius:50%;
  animation: floatMoon 6s ease-in-out infinite;
  transition:0.5s ease;
}

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

.lunar-image::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(168,85,247,0.35) 0%, transparent 70%);
  opacity:0;
  transition:0.4s;
}

.lunar-image:hover::after{
  opacity:1;
}


.lunar-intro{
  padding:100px 20px;
  text-align:center;
  color:#fff;
}

.lunar-intro-inner{
  max-width:800px;
  margin:auto;
}

.lunar-eyebrow{
  color:#b57aff;
  letter-spacing:3px;
  font-size:0.8rem;
}

.lunar-intro h1{
  font-size:3rem;
  margin:20px 0;
}

.lunar-intro h1 span{
  color:#b57aff;
}

.lunar-text{
  opacity:0.85;
  font-size:1.1rem;
  margin-bottom:15px;
}

.lunar-text.soft{
  opacity:0.6;
}

.lunar-cta{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  border-radius:40px;
  background:linear-gradient(45deg,#a855f7,#6366f1);
  color:#fff;
  text-decoration:none;
}


.lunar-main-image {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  padding: 0 20px;
  margin-top: 10px; 
}


.lunar-main-image img {
  width: 100%;
  max-width: 900px; 
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .lunar-main-image img {
    max-width: 100%;
  }
}


@media (min-width: 1200px) {
  .lunar-main-image img {
    max-width: 1100px;
  }
}


.lunar-phases{
  text-align:center;
  padding:100px 20px;
  max-width:900px;
  margin:auto;
}

.phases{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
  margin:30px 0;
}

.phase{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(168,85,247,0.25);
  background:rgba(255,255,255,0.02);
  color:#c084fc;
  cursor:pointer;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.phase:hover{
  background:rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 20px rgba(168,85,247,0.25);
  transform: translateY(-2px);
}

.phase-info{
  margin-top:25px;
  font-size:1.05rem;
  color:rgba(255,255,255,0.75);
  line-height:1.6;
}


.eclipse-section{
  padding:120px 20px;
  text-align:center;
  position:relative;
}

.eclipse-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:0;
}

.eclipse-inner{
  max-width:700px;
  margin:auto;
  position:relative;
  z-index:1;
}


  .eclipse-text.soft {
    opacity: 0.6;
    margin-top: 30px;
    margin-bottom: 40px;
  }


.lunar-whatsapp-btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 32px;
  border-radius:999px;
  border:1px solid rgba(181,122,255,0.4);
  color:#fff;
  text-decoration:none;
  background:linear-gradient(135deg,#a855f7,#6366f1);
  box-shadow: 0 0 25px rgba(168,85,247,0.35);
  transition: all 0.3s ease;
}

.lunar-whatsapp-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(168,85,247,0.6);
}

@keyframes floatMoon{
  0%,100%{ transform:translateY(0);}
  50%{ transform:translateY(-20px);}
}


.btn-primary{
  background: linear-gradient(135deg,#a855f7,#6366f1);
  color:#fff;
  border:none;
  padding:16px 34px;
  border-radius:40px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.35s ease;
  box-shadow:0 0 25px rgba(168,85,247,0.4);
}

.btn-primary:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:
    0 0 40px rgba(168,85,247,0.7),
    0 0 80px rgba(99,102,241,0.5);
}


.lunar-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(10,10,20,0.85);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
  transition:0.4s;
  z-index:999;
}

.lunar-modal.active{
  opacity:1;
  pointer-events:auto;
}


.lunar-modal-box{
  background:linear-gradient(180deg,#0f0f1f,#1a1a2e);
  padding:40px 30px;
  border-radius:20px;
  max-width:500px;
  width:90%;
  text-align:center;
  box-shadow:0 0 60px rgba(168,85,247,0.3);
  animation:fadeUp 0.5s ease;
}


.lunar-modal-box h3{
  color:#c084fc;
  margin-bottom:10px;
}

.lunar-modal-box p{
  opacity:0.8;
  margin-bottom:20px;
}


.lunar-select{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:none;
  background:#111;
  color:#fff;
  margin-bottom:20px;
}


.lunar-result{
  margin-top:15px;
  font-size:14px;
  opacity:0.85;
}


.lunar-close{
  margin-top:20px;
  display:inline-block;
  cursor:pointer;
  opacity:0.6;
}

.lunar-close:hover{
  opacity:1;
}


@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}


.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}


.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 1, 13, 0.75);
  backdrop-filter: blur(8px);
}


.modal-content {
  position: relative;
  max-width: 720px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;

  padding: 40px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(199,125,255,0.25);

  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 0 20px rgba(199,125,255,0.08);
}


.modal-content h1 {
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 14px;
  text-align: center;
}

.modal-content li {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 14px;
  text-align: center;
}


.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;

  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .modal-content {
    padding: 24px;
    border-radius: 20px;
    align-items: center;
  }

  .modal-content h1 {
    font-size: 24px;
    text-align: center;
  }

  .modal-content p {
    font-size: 15px;
    text-align: center;
  }

  .modal-content li {
    font-size: 15px;
    text-align: center;
  }
}

.filosofia-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.filosofia-card {
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  color: #fff;
}


.filosofia-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.filosofia-card h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}


.filosofia-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}


.filosofia-card .frase {
  font-style: italic;
  font-weight: 500;
  margin: 25px 0;
  opacity: 1;
}


.filosofia-card ul {
  padding-left: 20px;
}

.filosofia-card li {
  margin-bottom: 10px;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .filosofia-card {
    padding: 25px;
  }

  .filosofia-card h2 {
    font-size: 1.6rem;
  }

  .filosofia-card h3 {
    font-size: 1.2rem;
  }
}

.oracle-info{

  display:flex;
  align-items:center;
  gap:80px;
  
  padding:120px 8%;
  
  }
  
  
  .oracle-info-image{
  
  width:400px;
  height:500px;
  
  }
  
  
  .oracle-info-image img{
  
  width:100%;
  height:100%;
  
  object-fit:cover;
  
  border-radius:40px;
  
  }
  
  
  
  .oracle-info-text{
  
  max-width:600px;
  
  }
  
  
  .oracle-info-text span{
  
  color:#C77DFF;
  
  letter-spacing:3px;
  
  font-size:.8rem;
  
  }
  
  
  
  .oracle-info-text h2{
  margin-top: 20px;
  font-size:2rem;
  
  line-height:1.1;
  
  }
  
  
  
  .oracle-info-text p{
  color:#aaa;
  margin-top: 30px;
  line-height:1.8;

  }
  
  
  
  .oracle-points{
  display:flex;
  gap:20px;
  margin:40px 0;
  text-align: center;
  color:#C77DFF;
  
  }
  
  
  
  .oracle-points div{
  
  padding:20px;
  
  background:
  rgba(255,255,255,.05);
  
  border-radius:20px;
  
  }
  
  
  
  .oracle-points strong{
  
  color:#C77DFF;
  
  font-size:1.8rem;
  
  }
  
  
  
  .oracle-info button{
  
  background:#C77DFF;
  
  border:none;
  
  padding:16px 35px;
  
  border-radius:50px;
  
  color:white;
  
  cursor:pointer;
  
  }
  
  
  
  @media(max-width:900px){
  
  .oracle-info{
  
  flex-direction:column;
  
  text-align:center;
  
  }
  
  
  .oracle-points{
  
  flex-direction:column;
  
  }
  
  
  }