/* ==========================================================================
   Espacio Anahata — main.css
   Design tokens + estilos globales. Ver prompt_espacio_anahata.md.
   ========================================================================== */

:root {
  /* Fondos */
  --bg-dark:    #331743;
  --bg-mid:     #4D2565;
  --bg-orchid:  #8E549C;
  --bg-lila:    #CDB1E4;
  --bg-pale:    #EDE0F8;
  --bg-olive:   #3E4F1F;
  --bg-olive-dark: #4A5C1A;
  --navbar:     #090A0F;
  --bg-admin:   #160830;

  /* Acentos */
  --lime:       #CBD636;
  --cyan:       #00E5FF;
  --fucsia:     #CE5CFF;

  /* Textos */
  --text-white: #FFFFFF;
  --text-soft:  #D4BAFF;
  --text-lila:  #CDB1E4;
  --text-pale:  #EDE0F8;
  --text-dark:  #2D1060;
  --text-muted: #9d86c4;

  /* Admin */
  --admin-panel:   #331743;
  --admin-sidebar: #090A0F;
  --admin-border:  #2b1a45;
  --admin-border-2:#3a2a58;
  --admin-line:    #4a3168;
  --admin-muted-2: #7c66a3;
  --admin-muted-3: #b9a4d9;
  --estado-ok:        #CBD636;
  --estado-pendiente: #e0b64a;
  --estado-proceso:   #8ec7ff;
  --estado-error:     #e26a8d;

  /* Placeholder de imagen */
  --ph-bg:   #F2F2F2;
  --ph-text: #5b5b63;
}

/* ---------- Reset base ---------- */
* { box-shadow: none !important; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  /* NUNCA overflow-x:hidden acá: rompe position:sticky del navbar en toda
     la página. El recorte de decoraciones absolutas se hace por sección
     con .deco-wrap (overflow:hidden local), no a nivel body. */
}
img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--cyan); }
button, input, textarea, select { font-family: 'Poppins', sans-serif; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.deco-wrap { position: relative; overflow: hidden; }

/* ---------- Layout helpers ---------- */
.section { padding: clamp(50px,7vw,110px) clamp(20px,5vw,48px); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-inner-narrow { max-width: 1000px; margin: 0 auto; }
.placeholder-img {
  background: var(--ph-bg);
  color: var(--ph-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}

/* ---------- Botones ---------- */
.btn-primary {
  background: var(--fucsia);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 15px clamp(22px,3vw,34px);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: filter .15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-primary:hover { filter: brightness(.92); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--text-pale);
  border-radius: 999px;
  padding: 15px clamp(22px,3vw,34px);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}
.btn-outline-white:hover { filter: brightness(.92); }

.btn-outline-lime {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid var(--lime);
  border-radius: 999px;
  padding: 12px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}
.btn-outline-lime:hover { filter: brightness(.92); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
  border-radius: 999px;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-sm-fucsia {
  background: var(--fucsia);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* ---------- Inputs ---------- */
.input-pill {
  background: transparent;
  border: 1.5px solid #C8B4E8;
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
.input-pill::placeholder { color: var(--text-soft); opacity: .7; }
.input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---------- Tarjetas ---------- */
.card-lime {
  border: 1.5px solid var(--lime);
  border-radius: 22px;
  padding: 28px;
}
.card-lime-header {
  border-bottom: 1.5px solid var(--lime);
  padding: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: .04em;
}

/* ---------- Tipografía compartida ---------- */
.h1-hero { font-size: clamp(37px, 5.7vw, 64px); line-height: 1.03; font-weight: 800; letter-spacing: -.01em; }
.h1-display { font-size: clamp(37px, 5.3vw, 62px); line-height: .95; font-weight: 800; }
.h2-section { font-size: clamp(31px, 4.3vw, 52px); font-weight: 800; }
.h3-card { font-size: clamp(20px, 2.3vw, 36px); font-weight: 700; }
.body-text { font-size: clamp(19px, 1.7vw, 24px); font-weight: 300; line-height: 1.5; }
.frase-destacada { font-style: italic; font-size: clamp(25px, 3.1vw, 42px); font-weight: 700; }
.label-uppercase { font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.subrayado-img { display: block; height: 14px; width: 240px; max-width: 100%; margin: 0 auto; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
#navbar { position: sticky; top: 0; z-index: 50; background: var(--navbar); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px clamp(20px,5vw,48px); height: 92px; box-sizing: border-box;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; gap: clamp(14px,2.2vw,30px); align-items: center; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: #fff; text-decoration: none; }
.nav-links a:hover { color: var(--lime); }
.nav-links a.active { color: var(--fucsia); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cart { position: relative; display: flex; align-items: center; cursor: pointer; }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--fucsia); color: #fff;
  font-size: 9px; font-weight: 700; min-width: 15px; height: 15px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-lila); }
.nav-mobile-panel {
  display: none; flex-direction: column; gap: 2px;
  padding: 8px 32px 22px; background: var(--navbar);
}
.nav-mobile-panel a { color: #fff; font-size: 15px; font-weight: 600; padding: 12px 0; letter-spacing: .04em; text-decoration: none; }
.nav-mobile-panel a.cart-link { color: var(--lime); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-panel.open { display: flex; }
}

/* ==========================================================================
   FOOTER (minimal — el diseño no define un footer propio; se agrega uno
   discreto con contacto/redes para cerrar cada vista pública)
   ========================================================================== */
#site-footer {
  background: var(--navbar);
  padding: 34px clamp(20px,5vw,48px);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
}
#site-footer p { font-size: 13px; color: var(--admin-muted-2); font-weight: 300; }

/* ==========================================================================
   HOME
   ========================================================================== */
.hero-section { background: var(--bg-dark); padding: 110px clamp(20px,5vw,48px) 130px; position: relative; }
.hero-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hero-title { color: var(--text-lila); margin: 0 0 22px; text-wrap: balance; font-size: clamp(37px, 5.3vw, 62px); line-height: .95; font-weight: 800; }
.hero-subtitle { font-size: 26px; line-height: 1.35; color: var(--text-pale); font-weight: 400; margin: 0 0 42px; max-width: 26ch; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-deco-star { position: absolute; right: 56px; top: 52px; width: 92px; height: 81px; pointer-events: none; }

.carrusel { display: flex; align-items: center; gap: 8px; }
.carrusel-arrow { cursor: pointer; font-size: 30px; color: var(--text-soft); user-select: none; background: none; border: none; }
.carrusel-frame {
  flex: 1; aspect-ratio: 1/1; background: var(--ph-bg); border-radius: 2px;
  color: var(--ph-text); font-family: ui-monospace, monospace; font-size: 12px; overflow: hidden; position: relative;
}
.carrusel-frame-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 16px; }
.carrusel-track { display: flex; width: 100%; height: 100%; transition: transform .7s cubic-bezier(.65,0,.35,1); }
.carrusel-slide { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
.carrusel-counter {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  color: #fff; font-weight: 700; font-size: 12px; background: rgba(8,3,18,.45); padding: 4px 10px; border-radius: 999px;
}

.escuela-preview { background: var(--bg-dark); padding: 20px clamp(20px,5vw,48px) 0; text-align: center; overflow-x: hidden; }
.escuela-preview h2 { color: var(--text-lila); font-size: clamp(31px, 4.3vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: .01em; }
.escuela-preview-sub { display: flex; justify-content: center; margin: 18px 0 46px; }
.escuela-preview-img { height: clamp(240px, 32vw, 460px); width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); object-fit: cover; display: block; }

.cta-escuela { background: var(--bg-dark); padding: 90px clamp(20px,5vw,48px) 210px; position: relative; }
.cta-escuela-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 3; }
.cta-escuela-frase { font-size: clamp(26px, 3.3vw, 38px); line-height: 1.2; font-weight: 800; color: var(--text-lila); margin: 0 0 34px; text-wrap: balance; }
.cta-escuela-parrafo { font-size: 21px; line-height: 1.55; color: var(--text-pale); margin: 0; font-weight: 300; text-align: left; }
.cta-escuela-deco-1 { position: absolute; left: 16px; bottom: -46px; width: 150px; height: 132px; pointer-events: none; z-index: 2; }
.cta-escuela-deco-2 { position: absolute; right: 40px; bottom: -120px; width: 168px; height: 353px; pointer-events: none; z-index: 2; }
@media (max-width: 1100px) {
  .cta-escuela { padding-bottom: 100px; }
  .cta-escuela-deco-1, .cta-escuela-deco-2, .hero-deco-star { display: none; }
}

.lecturas-section { background: var(--bg-mid); padding: 40px clamp(20px,5vw,48px) 110px; position: relative; overflow: hidden; }
.lecturas-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.lecturas-img { aspect-ratio: 1/1; object-fit: cover; display: block; width: 100%; }
.lecturas-section h2 { color: var(--text-lila); margin: 0 0 24px; font-size: clamp(27px, 3.6vw, 41px); font-weight: 800; letter-spacing: .01em; }
.lecturas-p1 { font-size: 22px; line-height: 1.4; color: #fff; margin: 0 0 22px; font-weight: 400; }
.lecturas-p2 { font-size: 22px; line-height: 1.4; color: #fff; margin: 0 0 34px; font-weight: 300; }
.lecturas-deco { position: absolute; right: 20px; bottom: 24px; width: 210px; height: 216px; pointer-events: none; z-index: 0; }
@media (max-width: 1420px) { .lecturas-deco { display: none; } }

.estrella-fugaz-wrap { background: var(--bg-mid); padding: 34px clamp(20px,5vw,48px) 0; }
.estrella-fugaz-wrap img { width: min(620px, 80%); height: auto; }

.tienda-preview { background: var(--bg-mid); padding: 60px clamp(20px,5vw,48px) 70px; }
.tienda-preview h2 { color: var(--text-lila); text-align: center; font-size: clamp(29px, 3.9vw, 44px); font-weight: 800; letter-spacing: .02em; }
.tienda-preview-inner { max-width: 1120px; margin: 34px auto 0; }
.tienda-preview-bajada { font-size: 22px; line-height: 1.35; font-weight: 600; color: #fff; margin: 0 0 40px; max-width: 24ch; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 34px; }
.tienda-item { aspect-ratio: 1/1; }
.tienda-item-link { display: block; color: inherit; text-decoration: none; transition: opacity .15s ease; }
.tienda-item-link:hover { opacity: .82; }
.tienda-item-nombre { font-size: 16px; font-weight: 600; color: var(--text-pale); margin: 14px 0 2px; }
.tienda-item-precio { font-size: 15px; font-weight: 700; color: var(--lime); margin: 0; }
.tienda-preview-cta { text-align: center; margin-top: 44px; }
.subrayado-center { display: flex; justify-content: center; padding: 26px 20px 10px; background: var(--bg-mid); }
.subrayado-center img { width: min(340px, 80%); height: auto; }

.podcast-section { background: var(--bg-lila); padding: 60px clamp(20px,5vw,48px) 110px; position: relative; }
.podcast-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.podcast-logo { width: 100%; max-width: 460px; height: auto; margin: 0 0 22px; }
.podcast-texto { font-size: 21px; line-height: 1.4; color: var(--bg-mid); margin: 0; font-weight: 300; }
.podcast-player { background: #fff; border-radius: 22px; padding: 26px; display: flex; align-items: center; gap: 18px; }
.podcast-player-arrow { font-size: 26px; color: var(--bg-lila); user-select: none; background: none; border: none; cursor: pointer; flex: none; }
.podcast-player-body { flex: 1; min-width: 0; }
.podcast-episode[hidden] { display: none; }
.podcast-episode-title { font-size: 14px; font-weight: 600; color: var(--bg-mid); margin: 0 0 14px; text-align: center; }
.podcast-episode-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.podcast-thumb { width: 90px; height: 90px; background: #E6E6EA; border-radius: 8px; flex: none; overflow: hidden; }
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-episode-row audio { flex: 1; min-width: 180px; }
.podcast-episode-empty { text-align: center; color: var(--bg-mid); opacity: .65; font-size: 13px; margin: 0; font-weight: 300; }
.podcast-spotify iframe { width: 100%; border-radius: 12px; display: block; border: none; }
.podcast-deco { position: absolute; left: 56px; top: 30px; width: 110px; height: 97px; pointer-events: none; }

/* ==========================================================================
   CONÓCENOS
   ========================================================================== */
.portada-full { height: clamp(240px, 32vw, 460px); width: 100%; object-fit: cover; background: var(--bg-dark); display: block; }
/* La foto de portada de Tarot trae las cartas pegadas al borde derecho;
   sin esto, en pantallas angostas el recorte centrado las deja casi
   afuera (ver conversación sobre "la imagen se recorta" en tarot). */
.portada-tarot { object-position: 80% 42%; }
.conocenos-hola { background: var(--bg-dark); padding: 80px clamp(20px,5vw,48px) 90px; }
.conocenos-hola-inner { max-width: 1080px; margin: 0 auto; overflow: hidden; }
.foto-fer {
  width: 38%; float: left; margin: 0 44px 26px 0; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.conocenos-hola h2 { font-size: clamp(43px, 6.7vw, 76px); line-height: .9; font-weight: 800; color: var(--text-lila); margin: 0 0 24px; letter-spacing: .01em; }
.conocenos-hola h2 span { font-size: .66em; color: var(--fucsia); }
.conocenos-hola p { font-size: 21px; line-height: 1.5; color: #fff; margin: 0; font-weight: 300; text-align: left; }
.conocenos-hola p + p { margin-top: 26px; }
.clearfix::after { content: ""; display: table; clear: both; }

.collage-full { height: clamp(220px, 28vw, 400px); width: 100%; object-fit: cover; display: block; }

.sobre-ea { background: var(--bg-dark); padding: 90px clamp(20px,5vw,48px) 80px; position: relative; overflow: hidden; }
.sobre-ea-deco { position: absolute; left: -150px; top: 36px; width: 300px; height: 309px; pointer-events: none; z-index: 0; }
.sobre-ea-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.sobre-ea h2 { font-size: clamp(33px, 4.7vw, 52px); font-weight: 700; color: var(--lime); margin: 0; text-align: center; letter-spacing: -.01em; }
.sobre-ea .subrayado-wrap { display: flex; justify-content: center; margin: 6px 0 40px; }
.sobre-ea .subrayado-wrap img { width: 250px; height: 15px; }
.sobre-ea p { font-size: 21px; line-height: 1.5; color: #fff; margin: 0 0 24px; text-align: justify; font-weight: 300; }
.sobre-ea p:last-child { margin-bottom: 0; }

.mision-section { background: var(--bg-dark); padding: 80px clamp(20px,5vw,48px) 90px; position: relative; }
.mision-deco { position: absolute; left: 48px; top: 64px; width: 130px; height: 273px; pointer-events: none; opacity: .85; }
.mision-inner { max-width: 1000px; margin: 0 auto; position: relative; }
.mision-inner h2 { font-size: clamp(33px, 4.5vw, 50px); font-weight: 700; color: var(--fucsia); margin: 0; text-align: center; }
.mision-inner .subrayado-wrap { display: flex; justify-content: center; margin: 6px 0 36px; }
.mision-inner .subrayado-wrap img { width: 240px; height: 14px; }
.mision-inner p { font-size: 21px; line-height: 1.5; color: #fff; margin: 0; text-align: justify; font-weight: 300; }

.elegirnos-section { background: var(--bg-dark); padding: 80px clamp(20px,5vw,48px) 100px; position: relative; }
.elegirnos-inner { max-width: 1000px; margin: 0 auto; }
.elegirnos-inner h2 { font-size: clamp(33px, 4.5vw, 50px); font-weight: 700; color: var(--fucsia); margin: 0; text-align: center; }
.elegirnos-inner .subrayado-wrap { display: flex; justify-content: center; margin: 6px 0 36px; }
.elegirnos-inner .subrayado-wrap img { width: 240px; height: 14px; }
.elegirnos-inner p { font-size: 21px; line-height: 1.5; color: #fff; margin: 0 0 24px; text-align: justify; font-weight: 300; }
.elegirnos-deco { position: absolute; right: 52px; bottom: 44px; width: 150px; height: 184px; pointer-events: none; opacity: .9; }

@media (max-width: 1100px) {
  .sobre-ea-deco, .mision-deco, .elegirnos-deco { display: none; }
}
@media (max-width: 720px) {
  .foto-fer { width: 100%; float: none; margin: 0 0 26px; }
}

/* ==========================================================================
   TAROT
   ========================================================================== */
.tarot-intro { background: var(--bg-dark); padding: 80px clamp(20px,5vw,48px) 90px; }
.tarot-intro-inner { max-width: 1000px; margin: 0 auto; }
.tarot-intro-frase { font-size: clamp(28px, 3.7vw, 42px); line-height: 1.15; font-weight: 700; font-style: italic; color: var(--lime); margin: 0 0 46px; text-align: center; text-wrap: balance; }
.tarot-intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.tarot-intro-img { aspect-ratio: 1/1; object-fit: cover; display: block; width: 100%; }
.tarot-intro-grid p { font-size: 21px; line-height: 1.5; color: #fff; margin: 0; text-align: justify; font-weight: 300; }
.tarot-intro-cierre { font-size: 22px; line-height: 1.4; color: var(--text-pale); margin: 52px auto 0; text-align: center; max-width: 60ch; font-weight: 300; }

.modalidades-section { background: var(--bg-dark); padding: 0 clamp(20px,5vw,48px) 100px; position: relative; }
.modalidades-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.modalidades-inner h2 { font-size: clamp(29px, 3.9vw, 44px); font-weight: 700; color: var(--fucsia); margin: 0 0 40px; }
.modalidades-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; text-align: left; }
.modalidad-pill { border: 1.5px solid var(--lime); border-radius: 999px; padding: 14px 20px; font-size: 18px; font-weight: 700; color: var(--lime); letter-spacing: .06em; display: inline-block; }
.modalidades-grid p { font-size: 19px; line-height: 1.5; color: #fff; margin: 22px 0 0; text-align: justify; font-weight: 300; }
.modalidades-frase { font-size: 28px; line-height: 1.25; font-style: italic; font-weight: 600; color: var(--lime); margin: 48px 0 0; text-align: center; }
.modalidades-deco { position: absolute; right: 56px; bottom: 48px; width: 150px; height: 212px; pointer-events: none; opacity: .9; }

.lecturas-menu { background: var(--bg-olive-dark); padding: 40px clamp(20px,5vw,48px) 90px; }
.lecturas-menu-inner { max-width: 1000px; margin: 0 auto; }
.lecturas-menu h2 { font-size: clamp(31px, 4.3vw, 48px); font-weight: 800; color: var(--lime); margin: 0; letter-spacing: .01em; }
.lecturas-menu .subrayado-wrap { margin: 6px 0 46px; }
.lecturas-menu .subrayado-wrap img { width: 250px; height: 15px; }
.acordeon { margin-bottom: 42px; }
.acordeon-header {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  border-bottom: 1.5px solid var(--text-pale); padding-bottom: 8px; max-width: 460px;
  background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left;
}
.acordeon-caret { color: var(--lime); font-size: 14px; transition: transform .2s; display: inline-block; }
.acordeon-header.open .acordeon-caret { transform: rotate(0deg); }
.acordeon-titulo { font-size: 22px; font-weight: 700; color: var(--text-pale); letter-spacing: .02em; }
.acordeon-body { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; transition: max-height .2s ease; }
.acordeon-body[hidden] { display: none; }
.acordeon-item { border-bottom: 2px dotted var(--text-lila); padding: 0 0 10px 8px; display: flex; align-items: center; gap: 12px; }
.acordeon-bullet { color: var(--text-lila); font-size: 14px; }
.acordeon-item span.txt { font-size: 22px; font-weight: 600; color: var(--text-pale); }
.lecturas-nota { color: var(--cyan); font-size: 14px; margin-top: 8px; }

.tarot-cta { background: var(--bg-olive-dark); padding: 40px clamp(20px,5vw,48px) 110px; position: relative; text-align: center; }
.tarot-cta-deco { position: absolute; left: -70px; top: -46px; width: 260px; height: 319px; pointer-events: none; }
.tarot-cta-frase { font-size: 32px; font-style: italic; font-weight: 600; color: var(--lime); margin: 0 0 34px; position: relative; }
@media (max-width: 1100px) { .modalidades-deco, .tarot-cta-deco { display: none; } }
@media (max-width: 720px) { .modalidades-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ESCUELA
   ========================================================================== */
.escuela-transform { background: var(--bg-dark); padding: 80px clamp(20px,5vw,48px) 90px; }
.escuela-transform-inner { max-width: 1060px; margin: 0 auto; overflow: hidden; }
.foto-escuela { width: 38%; float: right; margin: 6px 0 26px 44px; aspect-ratio: 1/1; object-fit: cover; display: block; }
.escuela-transform h2 { font-size: clamp(31px, 4.1vw, 46px); line-height: 1.05; font-weight: 800; color: var(--text-lila); margin: 0 0 26px; }
.escuela-transform p { font-size: 21px; line-height: 1.5; color: #fff; margin: 24px 0 0; font-weight: 300; }
.escuela-transform p:first-of-type { margin-top: 0; }
@media (max-width: 720px) { .foto-escuela { width: 100%; float: none; margin: 0 0 26px; } }

.propuesta-section { background: var(--bg-mid); padding: 30px clamp(20px,5vw,48px) 90px; }
.propuesta-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.propuesta-inner p { margin: 0; padding: 26px 30px; font-size: 20px; line-height: 1.45; color: #fff; text-align: center; font-weight: 300; }
.propuesta-fila { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.propuesta-fila .card-lime p { padding: 22px 24px; text-align: justify; font-size: 19px; }
.propuesta-fila .card-lime-header { font-size: 17px; line-height: 1.2; }
.membresia-link { font-size: 16px; font-weight: 600; color: var(--lime); cursor: pointer; background: none; border: none; }
@media (max-width: 720px) { .propuesta-fila { grid-template-columns: 1fr; } }

.escuela-cta { background: var(--bg-mid); padding: 20px clamp(20px,5vw,48px) 100px; text-align: center; position: relative; overflow: hidden; }
.escuela-cta-frase { font-size: clamp(25px, 3.2vw, 36px); line-height: 1.2; font-style: italic; font-weight: 600; color: var(--lime); margin: 0 0 32px; }
.escuela-cta-link { font-size: 18px; font-weight: 700; color: var(--lime); border-bottom: 2px solid var(--cyan); padding-bottom: 4px; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.escuela-cta-deco { position: absolute; left: 60px; bottom: 48px; width: 120px; height: 252px; pointer-events: none; opacity: .8; }

.formacion-img-full { height: clamp(200px, 26vw, 360px); width: 100%; object-fit: cover; display: block; }
.formacion-banda { background: var(--bg-orchid); padding: 60px clamp(20px,5vw,48px); position: relative; overflow: hidden; }
.formacion-banda-inner { max-width: 1060px; margin: 0 auto; position: relative; }
.formacion-toggle { display: flex; align-items: center; gap: 26px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; padding: 0; }
.formacion-chevron { font-size: 34px; color: var(--text-pale); transition: transform .2s; display: inline-block; flex: none; }
.formacion-toggle[aria-expanded="true"] .formacion-chevron { transform: rotate(90deg); }
.formacion-titulo { font-size: clamp(25px, 3.2vw, 36px); line-height: 1.1; font-weight: 700; color: var(--lime); margin: 0 0 8px; letter-spacing: .01em; }
.formacion-detalle { margin: 32px 0 0 60px; max-width: 640px; }
.formacion-detalle[hidden] { display: none; }
.formacion-descripcion-html { font-size: 15.5px; line-height: 1.7; color: #fff; margin: 0 0 20px; font-weight: 300; text-align: justify; }
.formacion-descripcion-html p, .formacion-descripcion-html div { margin: 0 0 12px; }
.formacion-descripcion-html p:last-child, .formacion-descripcion-html div:last-child { margin-bottom: 0; }
.formacion-descripcion-html a { color: var(--lime); text-decoration: underline; }
.formacion-datos { display: flex; flex-direction: column; gap: 10px; }
.formacion-dato { border-bottom: 2px dotted var(--lime); padding-bottom: 8px; display: flex; justify-content: space-between; gap: 16px; }
.formacion-dato span.k { font-size: 15px; font-weight: 600; color: #fff; }
.formacion-dato span.v { font-size: 15px; color: var(--text-pale); font-weight: 300; }
.formacion-btn-info { background: var(--bg-dark); color: #fff; border: none; border-radius: 999px; padding: 13px 30px; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer; margin-top: 26px; }
.formacion-banda-deco { position: absolute; right: -70px; bottom: -80px; width: 250px; height: 258px; pointer-events: none; }
@media (max-width: 720px) { .formacion-detalle { margin-left: 0; } .formacion-toggle { gap: 14px; } }

.grabados-deco { position: absolute; width: 110px; height: 97px; pointer-events: none; z-index: 1; opacity: .9; }
.grabados-deco-izq { left: -22px; top: 18%; }
.grabados-deco-der { right: -18px; top: 55%; transform: translateY(-50%); }
@media (max-width: 1300px) { .grabados-deco { display: none; } }
@media (max-width: 1100px) { .escuela-cta-deco, .formacion-banda-deco { display: none; } }

/* ==========================================================================
   TIENDA
   ========================================================================== */
.tienda-header { background: var(--bg-dark); padding: 90px clamp(20px,5vw,48px) 70px; position: relative; }
.tienda-header-inner { max-width: 1120px; margin: 0 auto; text-align: center; position: relative; }
.tienda-header h1 { font-size: clamp(37px, 5.3vw, 60px); font-weight: 800; color: var(--text-lila); margin: 0; letter-spacing: .02em; }
.tienda-header .subrayado-wrap { display: flex; justify-content: center; margin: 10px 0 26px; }
.tienda-header .subrayado-wrap img { width: 220px; height: 13px; }
.tienda-header p { font-size: 22px; line-height: 1.4; color: var(--text-pale); margin: 0 auto; max-width: 30ch; font-weight: 300; font-style: italic; }
.tienda-header-deco { position: absolute; left: 52px; top: 64px; width: 130px; height: 273px; pointer-events: none; opacity: .9; }

.catalogo-section { background: var(--bg-lila); padding: 20px clamp(20px,5vw,48px) 100px; }
.catalogo-inner { max-width: 1120px; margin: 0 auto; }
.filtros { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 46px; }
.filtro-pill {
  border: 1.5px solid var(--fucsia); color: var(--bg-mid); background: transparent;
  border-radius: 999px; padding: 9px 22px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.filtro-pill.active { background: var(--fucsia); color: #fff; }
.producto-card { display: none; }
.producto-card.visible { display: block; }
.producto-img { aspect-ratio: 1/1; position: relative; }
.producto-tag {
  position: absolute; top: 12px; left: 12px; background: var(--lime); color: var(--bg-mid);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; border-radius: 999px; padding: 5px 12px;
  text-transform: uppercase;
}
.producto-card h3 { font-size: 21px; line-height: 1.2; font-weight: 600; color: var(--text-dark); margin: 16px 0 6px; }
.producto-precio { font-size: 18px; font-weight: 700; color: var(--fucsia); margin: 0 0 14px; }

.descargables-section { background: var(--bg-mid); padding: 80px clamp(20px,5vw,48px) 100px; position: relative; overflow: hidden; }
.descargables-inner { max-width: 1120px; margin: 0 auto; position: relative; }
.descargables-titulo { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.descargables-titulo h2 { font-size: clamp(29px, 3.9vw, 44px); font-weight: 800; color: var(--lime); margin: 0; letter-spacing: .01em; }
.descargables-bajada { font-size: 20px; line-height: 1.45; color: #fff; margin: 0 0 40px; max-width: 52ch; font-weight: 300; }
.descargables-bajada span { color: var(--lime); }
.descargable-card { border: 1.5px solid var(--lime); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.descargable-portada { aspect-ratio: 16/10; position: relative; }
.descargable-badge {
  position: absolute; top: 12px; left: 12px; background: var(--fucsia); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; border-radius: 999px; padding: 5px 12px;
}
.descargable-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.descargable-body h3 { font-size: 22px; line-height: 1.2; font-weight: 700; color: var(--text-pale); margin: 0; }
.descargable-formato { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--text-soft); margin: 0; }
.descargable-precio { font-size: 19px; font-weight: 700; color: var(--lime); margin: 6px 0 14px; }
.descargable-body .btn-primary, .descargable-body .btn-outline-lime { margin-top: auto; padding: 12px 24px; }
.descargables-nota { font-size: 14px; line-height: 1.5; color: var(--text-soft); margin: 26px 0 0; font-weight: 300; }

.tienda-cta { background: var(--bg-lila); padding: 80px clamp(20px,5vw,48px) 90px; position: relative; overflow: hidden; }
.tienda-cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.tienda-cta-frase { font-size: clamp(26px, 3.3vw, 38px); line-height: 1.2; font-style: italic; font-weight: 600; color: var(--bg-mid); margin: 0 0 18px; }
.tienda-cta p.sub { font-size: 18px; line-height: 1.5; color: var(--bg-mid); margin: 0 0 32px; font-weight: 300; }
.tienda-cta-deco { position: absolute; right: -64px; bottom: -74px; width: 230px; height: 237px; pointer-events: none; }
@media (max-width: 1100px) { .tienda-header-deco, .tienda-cta-deco { display: none; } }

/* ==========================================================================
   DETALLE DE PRODUCTO (Tienda y Escuela)
   ========================================================================== */
.detalle-section { background: var(--bg-lila); padding: 46px clamp(20px,5vw,48px) 90px; }
.detalle-inner { max-width: 1120px; margin: 0 auto; position: relative; }
.detalle-breadcrumb { font-size: 14px; font-weight: 500; color: var(--text-dark); margin: 0 0 28px; }
.detalle-breadcrumb a { color: var(--bg-mid); text-decoration: underline; }
.detalle-breadcrumb span { margin: 0 6px; opacity: .55; }

.detalle-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .detalle-grid { grid-template-columns: 1.05fr 1fr; align-items: start; } }

.detalle-galeria-principal { aspect-ratio: 1/1; border-radius: 22px; overflow: hidden; background: var(--ph-bg); }
.detalle-galeria-principal img { width: 100%; height: 100%; object-fit: cover; }
.detalle-galeria-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.detalle-thumb { width: 66px; height: 66px; flex: none; border-radius: 10px; overflow: hidden; padding: 0; border: 2px solid transparent; cursor: pointer; background: var(--ph-bg); opacity: .65; transition: opacity .15s, border-color .15s; }
.detalle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detalle-thumb.active, .detalle-thumb:hover { opacity: 1; border-color: var(--fucsia); }

.detalle-info { display: flex; flex-direction: column; }
.detalle-info .producto-tag, .detalle-info .descargable-badge { position: static; display: inline-flex; align-items: center; margin: 0 0 14px; align-self: flex-start; }
.detalle-info h1 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.15; margin: 0 0 10px; }
.detalle-precio { font-size: 28px; font-weight: 800; color: var(--fucsia); margin: 0 0 14px; }
.detalle-stock { font-size: 14px; font-weight: 600; color: var(--bg-olive); margin: 0 0 22px; }
.detalle-stock.agotado { color: #c0325a; }
.detalle-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13.5px; color: var(--bg-mid); margin: 0 0 22px; }
.detalle-cantidad { display: flex; align-items: center; gap: 16px; margin: 0 0 22px; }
.detalle-cantidad > span:first-child { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.detalle-stepper { border-color: var(--bg-mid); }
.detalle-stepper button, .detalle-stepper span { color: var(--bg-mid); }
.detalle-info > .btn-primary, .detalle-info > .btn-outline-lime { align-self: flex-start; margin-bottom: 30px; }
.detalle-descripcion h2 { font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--bg-mid); margin: 0 0 10px; }
.detalle-descripcion-html { font-size: 15.5px; line-height: 1.7; color: var(--text-dark); font-weight: 300; margin: 0 0 26px; }
.detalle-descripcion-html p, .detalle-descripcion-html div { margin: 0 0 12px; }
.detalle-descripcion-html p:last-child, .detalle-descripcion-html div:last-child { margin-bottom: 0; }
.detalle-descripcion-html a { color: var(--fucsia); text-decoration: underline; }
.detalle-descripcion-html ul, .detalle-descripcion-html ol { margin: 0 0 12px; padding-left: 22px; }
.detalle-nota { font-size: 13.5px; line-height: 1.6; color: var(--bg-olive); font-weight: 500; margin: 0; }
.detalle-nota a { font-weight: 700; }

.detalle-section.dark { background: var(--bg-mid); }
.detalle-section.dark .detalle-breadcrumb { color: var(--text-soft); }
.detalle-section.dark .detalle-breadcrumb a { color: var(--lime); }
.detalle-section.dark .detalle-thumb { background: rgba(255,255,255,.08); }
.detalle-section.dark .detalle-info h1 { color: var(--text-pale); }
.detalle-section.dark .detalle-precio { color: var(--lime); }
.detalle-section.dark .detalle-meta { color: var(--text-soft); }
.detalle-section.dark .detalle-cantidad > span:first-child { color: var(--text-pale); }
.detalle-section.dark .detalle-stepper { border-color: var(--text-lila); }
.detalle-section.dark .detalle-stepper button, .detalle-section.dark .detalle-stepper span { color: #fff; }
.detalle-section.dark .detalle-descripcion h2 { color: var(--lime); }
.detalle-section.dark .detalle-descripcion-html { color: var(--text-pale); }
.detalle-section.dark .detalle-descripcion-html a { color: var(--lime); }
.detalle-section.dark .detalle-nota { color: var(--text-soft); }

.similares-section { background: var(--bg-pale); padding: 60px clamp(20px,5vw,48px) 90px; }
.similares-section.dark { background: var(--bg-dark); }
.similares-inner { max-width: 1120px; margin: 0 auto; }
.similares-inner h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--bg-mid); text-align: center; margin: 0 0 30px; }
.similares-section.dark .similares-inner h2 { color: var(--text-pale); }
@media (min-width: 600px) { .detalle-thumb { width: 76px; height: 76px; } }

/* ==========================================================================
   CARRITO
   ========================================================================== */
.carrito-section { background: var(--bg-dark); min-height: 80vh; padding: 80px clamp(20px,5vw,48px) 110px; position: relative; overflow: hidden; }
.carrito-deco { position: absolute; left: -84px; bottom: 36px; width: 240px; height: 294px; pointer-events: none; opacity: .6; }
.carrito-inner { max-width: 1060px; margin: 0 auto; position: relative; }
.carrito-inner h1 { font-size: clamp(33px, 4.7vw, 48px); font-weight: 800; color: var(--text-lila); margin: 0; letter-spacing: .01em; }
.carrito-inner .subrayado-wrap { margin: 8px 0 10px; }
.carrito-inner .subrayado-wrap img { width: 200px; height: 12px; }
.carrito-count { font-size: 17px; color: var(--text-pale); font-weight: 300; margin: 0 0 44px; }
.carrito-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 44px; align-items: start; }
.carrito-lista { display: flex; flex-direction: column; gap: 22px; }
.carrito-item { display: flex; gap: 20px; align-items: center; border-bottom: 2px dotted var(--admin-line); padding-bottom: 22px; flex-wrap: nowrap; }
.carrito-item-thumb { width: 90px; height: 90px; flex: none; overflow: hidden; }
.carrito-item-info { flex: 1 1 auto; min-width: 0; }
.carrito-item-info h3 { font-size: 19px; line-height: 1.2; font-weight: 600; color: var(--text-pale); margin: 0 0 6px; }
.carrito-item-detalle { font-size: 13px; color: var(--text-soft); margin: 0; font-weight: 300; }
.carrito-stepper { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--text-lila); border-radius: 999px; padding: 7px 14px; flex: none; }
.carrito-stepper button { color: var(--text-lila); font-size: 18px; cursor: pointer; user-select: none; line-height: 1; background: none; border: none; min-width: 20px; min-height: 20px; }
.carrito-stepper span { font-size: 15px; font-weight: 600; color: #fff; min-width: 12px; text-align: center; }
.carrito-item-precio { font-size: 18px; font-weight: 700; color: var(--lime); margin: 0; min-width: 92px; text-align: right; flex: none; }
.carrito-item-quitar { color: var(--text-soft); font-size: 20px; cursor: pointer; flex: none; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; margin-left: auto; background: none; border: none; }
.seguir-comprando { font-size: 15px; font-weight: 600; color: var(--lime); cursor: pointer; background: none; border: none; }

.resumen-card { border: 1.5px solid var(--lime); border-radius: 22px; overflow: hidden; }
.resumen-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 14px; }
.resumen-row { display: flex; justify-content: space-between; font-size: 16px; color: #fff; font-weight: 300; }
.resumen-row.descargables { color: var(--text-soft); }
.resumen-divider { height: 1px; background: var(--admin-line); margin: 6px 0; }
.resumen-total { display: flex; justify-content: space-between; align-items: baseline; }
.resumen-total span:first-child { font-size: 17px; font-weight: 600; color: var(--text-pale); }
.resumen-total span:last-child { font-size: 26px; font-weight: 800; color: var(--lime); }
.resumen-cupon { margin-top: 8px; }
.resumen-body .btn-primary { width: 100%; padding: 16px; font-size: 16px; font-weight: 600; margin-top: 6px; }
.resumen-nota { font-size: 13px; line-height: 1.5; color: var(--text-soft); margin: 8px 0 0; text-align: center; font-weight: 300; }

@media (max-width: 1024px) { .carrito-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .carrito-deco { display: none; }
  .carrito-item { flex-wrap: wrap; }
  .carrito-item-info { flex-basis: calc(100% - 110px); }
  .carrito-stepper { padding: 11px 18px; }
  .carrito-item-precio { min-width: auto; }
}

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.checkout-section { background: var(--bg-dark); min-height: 80vh; padding: 80px clamp(20px,5vw,48px) 110px; }
.checkout-inner { max-width: 720px; margin: 0 auto; }
.checkout-inner h1 { color: var(--text-lila); margin: 0 0 8px; }
.checkout-step { border: 1.5px solid var(--lime); border-radius: 22px; padding: 28px; margin-bottom: 30px; }
.checkout-step h2 { font-size: 20px; font-weight: 700; color: var(--lime); margin: 0 0 20px; }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkout-form-grid label { display: block; grid-column: span 1; }
.checkout-form-grid label.full { grid-column: 1 / -1; }
.metodo-pago-options { display: flex; flex-direction: column; gap: 16px; }
.metodo-pago-card { border: 1.5px solid var(--text-soft); border-radius: 16px; padding: 20px; cursor: pointer; }
.metodo-pago-card.selected { border-color: var(--fucsia); }
.metodo-pago-card h3 { font-size: 17px; color: #fff; margin: 0 0 6px; }
.metodo-pago-card p { font-size: 14px; color: var(--text-soft); margin: 0; font-weight: 300; }
.transferencia-datos { background: var(--bg-mid); border-radius: 14px; padding: 22px; margin-top: 16px; display: none; }
.transferencia-datos.show { display: block; }
.transferencia-datos .row { display: flex; justify-content: space-between; font-size: 14px; color: #fff; padding: 8px 0; border-bottom: 1px dotted var(--admin-line); }
.transferencia-datos .row span:first-child { color: var(--text-soft); }

/* ==========================================================================
   MI CUENTA
   ========================================================================== */
.cuenta-section { background: var(--bg-dark); min-height: 80vh; padding: 80px clamp(20px,5vw,48px) 110px; position: relative; overflow: hidden; }
.cuenta-deco-1 { position: absolute; left: -76px; top: 110px; width: 240px; height: 294px; pointer-events: none; opacity: .65; }
.cuenta-deco-2 { position: absolute; right: 64px; top: 84px; width: 110px; height: 155px; pointer-events: none; opacity: .85; }
.cuenta-inner { max-width: 460px; margin: 0 auto; position: relative; }
.cuenta-inner h1 { font-size: clamp(33px, 4.7vw, 48px); font-weight: 800; color: var(--text-lila); margin: 0; text-align: center; letter-spacing: .01em; }
.cuenta-inner .subrayado-wrap { display: flex; justify-content: center; margin: 8px 0 14px; }
.cuenta-inner .subrayado-wrap img { width: 200px; height: 12px; }
.cuenta-bajada { text-align: center; font-size: 17px; line-height: 1.4; color: var(--text-pale); font-style: italic; font-weight: 300; margin: 0 0 36px; }
.cuenta-switch { display: flex; background: var(--bg-mid); border-radius: 999px; padding: 5px; margin-bottom: 30px; }
.cuenta-switch button { flex: 1; text-align: center; padding: 11px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--text-soft); font-family: inherit; }
.cuenta-switch button.active { color: #fff; background: var(--fucsia); }
.cuenta-form { display: flex; flex-direction: column; gap: 18px; }
.cuenta-form[hidden] { display: none; }
.cuenta-check-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cuenta-check-row label { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-pale); cursor: pointer; }
.cuenta-check-row input[type="checkbox"] { accent-color: var(--fucsia); width: 15px; height: 15px; }
.cuenta-form .btn-primary { width: 100%; padding: 16px; font-size: 16px; font-weight: 600; margin-top: 6px; }
.cuenta-divider { display: flex; align-items: center; gap: 14px; margin: 8px 0; }
.cuenta-divider .line { flex: 1; height: 1px; background: var(--admin-line); }
.cuenta-divider span { font-size: 12px; color: var(--text-soft); letter-spacing: .06em; }
.cuenta-legal { text-align: center; font-size: 13px; line-height: 1.5; color: var(--text-soft); margin: 14px 0 0; font-weight: 300; }
.cuenta-admin-link { border-top: 1px solid var(--admin-line); margin-top: 26px; padding-top: 22px; text-align: center; }
.cuenta-admin-link a { font-size: 13px; font-weight: 600; color: var(--lime); letter-spacing: .04em; }
.form-error { color: var(--estado-error); font-size: 13px; margin: -8px 0 0; }

.panel-alumna { max-width: 720px; margin: 0 auto; }
.panel-alumna h1 { color: var(--text-lila); }
.panel-alumna-card { border: 1.5px solid var(--lime); border-radius: 18px; padding: 22px; margin-bottom: 18px; }
.panel-alumna-card h3 { color: var(--text-pale); font-size: 18px; margin-bottom: 6px; }
.panel-alumna-card p { color: var(--text-soft); font-size: 14px; font-weight: 300; margin-bottom: 12px; }
.pedido-estado {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  border-radius: 999px; padding: 4px 12px; text-transform: uppercase;
}
@media (max-width: 1100px) { .cuenta-deco-1, .cuenta-deco-2 { display: none; } }

/* ==========================================================================
   ADMIN
   ========================================================================== */
.admin-shell { background: var(--bg-admin); min-height: calc(100vh - 92px); display: grid; grid-template-columns: 232px 1fr; }
.admin-sidebar {
  background: var(--admin-sidebar); border-right: 1px solid var(--admin-border); border-bottom: 1px solid var(--admin-border);
  padding: 26px 0 40px; position: sticky; top: 92px; align-self: start; max-height: calc(100vh - 92px);
  overflow-y: auto; z-index: 40; min-width: 0; max-width: 100%;
}
.admin-sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--admin-muted-2); margin: 0 0 16px; padding: 0 22px; }
.admin-menu { display: flex; flex-direction: column; }
.admin-menu a {
  font-size: 14px; font-weight: 400; color: var(--admin-muted-2); background: transparent;
  border-left: 3px solid transparent; padding: 12px 22px; display: block; white-space: nowrap; text-decoration: none;
}
.admin-menu a.active { font-weight: 600; color: var(--text-pale); background: var(--bg-dark); border-left-color: var(--fucsia); }
.admin-sidebar-foot { border-top: 1px solid var(--admin-border); margin: 22px 0 0; padding: 20px 22px 0; display: flex; flex-wrap: wrap; gap: 12px; }
.admin-sidebar-foot a { font-size: 13px; color: var(--admin-muted-2); }

.admin-content { padding: 34px clamp(18px,3vw,40px) 70px; min-width: 0; max-width: 100%; overflow-x: auto; }
.admin-content-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--admin-border); padding-bottom: 22px; margin-bottom: 26px; }
.admin-content-head h1 { font-size: 26px; font-weight: 700; color: var(--text-pale); margin: 0 0 5px; letter-spacing: .01em; }
.admin-content-head p { font-size: 13px; color: var(--admin-muted-2); margin: 0; font-weight: 300; }
.admin-head-actions { display: flex; gap: 10px; align-items: center; }
.admin-search { background: var(--admin-sidebar); border: 1px solid var(--admin-border-2); border-radius: 8px; padding: 10px 14px; color: var(--text-pale); font-family: inherit; font-size: 13px; outline: none; width: 190px; }
.admin-btn-nuevo { background: var(--fucsia); color: #fff; border: none; border-radius: 8px; padding: 11px 20px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }

.admin-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 28px; }
.admin-kpi { background: var(--admin-panel); border: 1px solid var(--admin-border); border-radius: 10px; padding: 16px 18px; }
.admin-kpi p.label { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--admin-muted-2); margin: 0 0 8px; text-transform: uppercase; }
.admin-kpi p.valor { font-size: 24px; font-weight: 700; color: var(--lime); margin: 0; }

.admin-table-wrap { background: var(--admin-panel); border: 1px solid var(--admin-border); border-radius: 10px; overflow: hidden; }
.admin-table-head, .admin-table-row {
  display: grid; gap: 16px; padding: 15px 20px; align-items: center;
}
.admin-table-head { padding: 13px 20px; background: var(--admin-sidebar); border-bottom: 1px solid var(--admin-border); }
.admin-table-head span { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--admin-muted-2); text-transform: uppercase; }
.admin-table-row { border-bottom: 1px solid var(--admin-border); }
.admin-table-row:last-child { border-bottom: none; }
.admin-cell-main { font-size: 14px; font-weight: 600; color: var(--text-pale); min-width: 0; }
.admin-cell { font-size: 13px; color: var(--admin-muted-3); font-weight: 300; min-width: 0; }
.admin-estado {
  font-size: 11px; font-weight: 600; letter-spacing: .04em; border-radius: 999px; padding: 4px 10px;
  justify-self: start; white-space: nowrap; border: 1px solid currentColor; text-transform: uppercase;
}
.admin-row-actions { display: flex; gap: 14px; justify-self: end; }
.admin-row-actions a, .admin-row-actions button { font-size: 13px; font-weight: 600; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.admin-link-editar { color: var(--lime); }
.admin-link-eliminar { color: var(--estado-error); }

.admin-table-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
.admin-table-foot .conteo { font-size: 12px; color: var(--admin-muted-2); }
.admin-pag { display: flex; gap: 6px; }
.admin-pag span, .admin-pag a { font-size: 12px; color: var(--admin-muted-3); border: 1px solid var(--admin-border-2); border-radius: 6px; padding: 6px 11px; cursor: pointer; text-decoration: none; }
.admin-pag a.active { color: #fff; background: var(--fucsia); border-color: var(--fucsia); }
.admin-nota { font-size: 12px; color: var(--admin-muted-2); margin: 18px 0 0; font-weight: 300; }

.admin-modal-overlay { position: fixed; inset: 0; background: rgba(8,3,18,.72); z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding: 60px 20px; overflow-y: auto; }
.admin-modal-overlay[hidden] { display: none; }
.admin-modal { background: var(--admin-panel); border: 1px solid var(--admin-border-2); border-radius: 14px; width: 100%; max-width: 620px; }
.admin-modal-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--admin-border); }
.admin-modal-head h2 { font-size: 18px; font-weight: 700; color: var(--text-pale); margin: 0; }
.admin-modal-close { font-size: 22px; color: var(--admin-muted-2); cursor: pointer; line-height: 1; background: none; border: none; }
.admin-modal-body { padding: 24px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-modal-body label { display: block; grid-column: auto; }
.admin-modal-body label.full { grid-column: 1 / -1; }
.admin-modal-body label span.lbl { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--admin-muted-3); margin-bottom: 7px; text-transform: uppercase; }
.admin-modal-body input[type="text"], .admin-modal-body input[type="number"], .admin-modal-body input[type="email"], .admin-modal-body select, .admin-modal-body textarea {
  width: 100%; box-sizing: border-box; background: var(--admin-sidebar); border: 1px solid var(--admin-border-2);
  border-radius: 8px; padding: 12px 14px; color: var(--text-pale); font-family: inherit; font-size: 14px; outline: none;
}
.admin-dropzone { border: 1px dashed var(--admin-line); border-radius: 10px; padding: 26px; text-align: center; color: var(--admin-muted-2); font-size: 13px; cursor: pointer; }

.admin-richtext-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; background: var(--admin-sidebar); border: 1px solid var(--admin-border-2); border-bottom: none; border-radius: 8px 8px 0 0; padding: 8px; }
.admin-richtext-toolbar button {
  background: var(--admin-panel); border: 1px solid var(--admin-border-2); color: var(--fucsia);
  border-radius: 5px; height: 30px; padding: 0 12px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.admin-richtext-toolbar button[data-cmd="removeFormat"] { color: var(--text-pale); font-weight: 500; }
.admin-richtext-toolbar button:hover { border-color: var(--fucsia); }
.admin-richtext-color {
  width: 26px; height: 26px; padding: 0; border-radius: 50%;
  border: 1.5px solid var(--admin-border-2); cursor: pointer;
}
.admin-richtext-color:hover { border-color: #fff; }
.admin-richtext-sep { width: 1px; height: 22px; background: var(--admin-border-2); margin: 0 4px; }
.admin-richtext-ayuda { background: var(--admin-sidebar); border: 1px solid var(--admin-border-2); border-top: none; border-bottom: none; margin: 0; padding: 8px 14px; font-size: 12px; color: var(--admin-muted-2); font-weight: 300; }
.admin-richtext-editor {
  min-height: 140px; background: var(--admin-sidebar); border: 1px solid var(--admin-border-2); border-radius: 0 0 8px 8px;
  padding: 12px 14px; color: var(--text-pale); font-size: 14px; line-height: 1.6; outline: none;
}
.admin-richtext-editor:focus { border-color: var(--fucsia); }
.admin-modal-check { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--admin-muted-3); cursor: pointer; }
.admin-modal-foot { display: flex; justify-content: flex-end; gap: 12px; padding: 18px 26px; border-top: 1px solid var(--admin-border); }
.admin-btn-cancelar { background: transparent; border: 1px solid var(--admin-line); color: var(--admin-muted-3); border-radius: 8px; padding: 11px 22px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.admin-btn-guardar { background: var(--fucsia); border: none; color: #fff; border-radius: 8px; padding: 11px 24px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.admin-login-gate { max-width: 420px; margin: 100px auto; text-align: center; color: var(--text-pale); }

@media (max-width: 1024px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; max-height: none; overflow-y: visible; padding: 16px 0 18px; }
  .admin-sidebar-title { display: none; }
  .admin-menu { flex-direction: row; overflow-x: auto; gap: 8px; padding: 0 16px 4px; }
  .admin-menu a { border-radius: 8px; border-left: none; }
  .admin-menu a.active { border-left: none; }
  .admin-sidebar-foot { gap: 20px; }
  .admin-table-head { display: none; }
  .admin-table-row { grid-template-columns: 1fr !important; gap: 4px; }
  .admin-kpis { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   RESPONSIVE GLOBAL
   ========================================================================== */
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 720px) {
  .hero-grid, .lecturas-grid, .podcast-grid, .tarot-intro-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 70px clamp(20px,5vw,48px) 90px; }
}

/* Ondas SVG: sin estilos propios, se insertan inline por vista */
.onda-wrap { line-height: 0; }
.onda-wrap svg { display: block; width: 100%; }

/* Errores */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; gap: 16px; }
.error-page h1 { font-size: clamp(63px, 10.3vw, 124px); color: var(--lime); font-weight: 800; }
.error-page p { color: var(--text-pale); font-size: 18px; font-weight: 300; }

/* ==========================================================================
   BOTÓN FLOTANTE DE CONTACTO — visible siempre, PC y mobile
   ========================================================================== */
.floating-contact { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.floating-contact-menu {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.floating-contact.open .floating-contact-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-contact-item {
  width: 46px; height: 46px; border-radius: 999px; background: #fff; color: var(--bg-mid);
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: transform .15s, background .15s;
}
.floating-contact-item:hover { transform: scale(1.08); background: var(--lime); color: var(--bg-dark); }
.floating-contact-toggle {
  width: 58px; height: 58px; border-radius: 999px; background: var(--fucsia); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: transform .2s, filter .15s;
}
.floating-contact-toggle:hover { filter: brightness(.93); }
.floating-contact-icon-open { transition: transform .2s; }
.floating-contact.open .floating-contact-toggle { transform: rotate(45deg); }
@media (max-width: 720px) {
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .floating-contact-toggle { width: 52px; height: 52px; }
  .floating-contact-item { width: 44px; height: 44px; }
}
