/* ── EVOLUCIÓN CUÁNTICA: ACTOS SIMBÓLICOS ── */
/* Consolidated CSS File - Pure CSS Version */

/* ── 0. LOCAL FONTS ── */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-decorative-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-decorative-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/cinzel-decorative-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora-italic.woff2') format('woff2');
}

/* ── 1. VARIABLES & BASE ── */
:root {
  --sz-ui: clamp(1.125rem, 1.4vw, 1.25rem);
  --sz-body: clamp(1.25rem, 1.8vw, 1.375rem);
  --sz-lead: clamp(1.375rem, 2.2vw, 1.625rem);
  --sz-h3: clamp(1.375rem, 2.2vw, 1.75rem);
  --sz-h2: clamp(1.875rem, 4vw, 3rem);
  --sz-h2sm: clamp(1.5rem, 3vw, 2.25rem);
  --sz-h1: clamp(2.625rem, 6.5vw, 5rem);
  --sz-price: clamp(3.25rem, 7vw, 5.5rem);

  --gold: #c9980a;
  --gold-light: #e8c547;
  --rose: #ff4444;
  --rose-light: #ff6666;
  --vellum: #f5e6c8;
  --aged: #d4b483;
  --sepia: #7a4f1d;
  --parch-dk: #8b6914;
  --ink: #1a0f00;
  --deep: #0d0800;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--aged);
  font-family: 'Lora', Georgia, serif;
  font-size: var(--sz-body);
  line-height: 1.85;
  overflow-x: hidden;
}

/* GRAIN EFFECT */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── 2. LAYOUT ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.divider {
  height: 1px;
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, rgba(180, 130, 40, .4), transparent);
}

.glow-line {
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--rose), var(--gold), transparent);
  margin: .8rem auto 2rem;
}

/* REVEAL SYSTEM */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* REUSABLE COLUMN LAYOUT */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: start;
  justify-content: center;
}

.flex-item {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

  .flex-item {
    width: 100%;
  }
}

/* ── 3. TYPOGRAPHY ── */
h1 {
  font-family: 'Cinzel Decorative', serif;
}

h2 {
  font-family: 'Cinzel', serif;
  font-size: var(--sz-h2);
  color: var(--vellum);
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 50px rgba(180, 120, 20, .3);
  margin-bottom: .6rem;
  letter-spacing: 0.02em;
}

h2 .g {
  background: linear-gradient(135deg, var(--gold-light), var(--rose-light), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2.sm {
  font-size: var(--sz-h2sm);
}

h3 {
  font-family: 'Cinzel', serif;
  font-size: var(--sz-h3);
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: .6rem;
  line-height: 1.3;
}

p {
  margin-bottom: 0.8rem;
  line-height: 1.85;
}

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--rose-light);
  opacity: .95;
  text-align: center;
  margin-bottom: .8rem;
  display: block;
  font-weight: 700;
}

.ornament {
  text-align: center;
  color: var(--rose);
  opacity: .7;
  font-size: var(--sz-h3);
  letter-spacing: .3em;
  margin: 1.5rem 0;
  text-transform: uppercase;
}

/* UTILITIES */
.text-intro-centered {
  font-style: italic;
  font-size: var(--sz-body);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1rem;
}

.text-mantra-centered {
  font-family: 'Cinzel', serif;
  font-size: var(--sz-body);
  color: var(--vellum);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  letter-spacing: .04em;
}

.text-lead-vellum {
  font-style: italic;
  font-size: var(--sz-lead);
  color: var(--vellum);
  margin: 0;
  line-height: 1.85;
}

.text-lead-centered {
  font-style: italic;
  font-size: var(--sz-lead);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

.text-body-italic {
  font-style: italic;
  font-size: var(--sz-body);
  margin-bottom: 1.2rem;
}

.text-body-aged-centered {
  font-style: italic;
  color: var(--aged);
  max-width: 540px;
  margin: 1.2rem auto 0;
  font-size: var(--sz-body);
  line-height: 1.85;
  text-align: center;
}

.text-strong-vellum {
  color: var(--vellum);
  font-style: normal;
}

.title-vellum {
  color: var(--vellum);
  margin-bottom: .6rem;
}

.title-aged {
  color: var(--aged);
  margin-bottom: .8rem;
}

.price-note {
  font-style: italic;
  color: var(--sepia);
  font-size: var(--sz-body);
  text-align: center;
  margin-top: -.3rem;
}

.testimonials-note {
  font-style: italic;
  font-size: var(--sz-body);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  color: var(--sepia);
}

.faq-note {
  text-align: center;
  max-width: 800px;
  margin: 2.5rem auto 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

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

/* ── 4. NAV & FOOTER ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: clamp(.8rem, 1.5vw, 1.1rem) clamp(1.2rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(13, 8, 0, .98) 70%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo span {
  font-family: 'Cinzel Decorative', serif;
  font-size: var(--sz-ui);
  letter-spacing: .15em;
  color: var(--rose-light);
}

@media(max-width:680px) {
  .nav-logo span {
    display: none;
  }
}

.nav-btn {
  font-family: 'Cinzel', serif;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--rose-light);
  border: none;
  padding: 10px 15px;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
  transition: background .25s;
}

.nav-btn:hover {
  background: var(--gold-light);
}

footer {
  padding: 40px 1.5rem;
  text-align: center;
  background: var(--deep);
  border-top: 1px solid rgba(180, 130, 40, 0.1);
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(201, 152, 10, 0.3));
}

footer p {
  color: var(--aged);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  color: var(--rose-light) !important;
  font-size: 1rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 1 !important;
}

/* ── 5. COMPONENTS (Buttons, Cards, FAQ) ── */
.btn {
  display: inline-block;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: var(--sz-ui);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ff5555);
  border: none;
  padding: .9rem 2.22rem;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: all .25s ease;
  animation: pulse-btn 2.2s ease-in-out infinite !important;
}

.btn:hover {
  animation: none !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 8px 55px rgba(200, 160, 30, .75) !important;
  background: var(--gold-light);
}

.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: var(--sz-ui);
  color: var(--rose-light);
  border: 1px solid var(--rose);
  padding: .8rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  transition: all .3s;
  background: transparent;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}

.btn-outline:hover {
  background: rgba(201, 152, 10, .1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 152, 10, .7), 0 4px 35px rgba(180, 140, 20, .45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(201, 152, 10, 0), 0 4px 50px rgba(220, 175, 30, .65);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 152, 10, 0), 0 4px 35px rgba(180, 140, 20, .45);
    transform: scale(1);
  }
}

/* CAROUSEL CONTROLS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 15, 0, 0.8);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(201, 152, 10, 0.4);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {

  /* Solo carruseles grandes llevan dots verticales */
  #testimonios.carousel-outer .carousel-dots,
  .areas-section .carousel-outer .carousel-dots {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .carousel-btn {
    top: auto;
    bottom: -60px;
    transform: none;
  }

  .carousel-btn.prev {
    left: 20%;
  }

  .carousel-btn.next {
    right: 20%;
  }

  .carousel-dots {
    margin-top: 4rem;
  }
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(180, 130, 40, 0.2);
  background: rgba(30, 20, 5, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  background: rgba(50, 35, 10, 0.5);
  border-color: var(--gold);
}

.faq-q {
  padding: 0.5rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--vellum);
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.faq-item.open {
  background: rgba(60, 40, 15, 0.6);
  border-color: var(--gold);
}

.faq-item.open .faq-q {
  color: var(--gold-light);
}

.faq-a {
  padding: 0 2.5rem 0.5rem 2rem;
  color: var(--aged);
  line-height: 1.8;
  font-size: 1rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
  animation: faqReveal 0.4s ease both;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ── 6. SECTIONS STYLES ── */

/* HERO */
#hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  background: var(--deep);
  overflow: hidden;
  text-align: center;
}

.hero-scroll {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

#hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--vellum);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(180, 130, 40, .3);
  animation: reveal-up 1.2s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-badge {
  font-family: 'Cinzel', serif;
  font-size: var(--sz-ui);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
  margin-bottom: 1rem;
  display: block;
}

#hero .sub {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--aged);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
  animation: reveal-up 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}

.hero-img-wrap {
  position: relative;
  margin: 4rem auto 0;
  width: 100%;
  max-width: 650px;
  animation: reveal-up 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 160, 40, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 25px 70px rgba(0, 0, 0, .85)) drop-shadow(0 0 40px rgba(160, 110, 10, .15));
  animation: img-float 6s ease-in-out infinite;
}

@keyframes reveal-up {
  0% {
    transform: translateY(40px);
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes img-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 900px) {
  #hero {
    text-align: left;
  }

  .hero-scroll {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }

  #hero .sub {
    margin: 0 0 2.5rem;
  }

  .hero-img-wrap {
    margin: 0;
    max-width: 950px;
  }

  .hero-img-wrap img {
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, .9)) drop-shadow(0 0 60px rgba(160, 110, 10, .2));
  }

  /* Alineación a la izquierda para escritorio en secciones específicas */
  .problem-text,
  .garantia {
    text-align: left;
  }
}

/* SECRETO */
#secreto {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(140, 80, 8, .12) 0%, transparent 60%), radial-gradient(circle at 20% 70%, rgba(100, 60, 5, .08) 0%, transparent 50%), var(--deep);
}

/* CTA FINAL */
#cta {
  text-align: center;
}

#cta .cta-txt {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: var(--sz-body);
}

.two-books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin: 4rem auto;
}

.two-books .flex-item2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.two-books .flex-item2 img {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 15px 45px rgba(0, 0, 0, .85)) drop-shadow(0 0 30px rgba(180, 140, 20, .15));
  transition: all .7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.two-books .flex-item2 img:hover {
  transform: scale(1.04) translateY(-15px) rotate(-1deg);
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, .9)) drop-shadow(0 0 50px rgba(220, 180, 40, .25));
}

/* PROBLEMA */
#problema {
  background: 
    radial-gradient(circle at 20% 20%, rgba(180, 40, 40, .15) 0%, transparent 40%), 
    radial-gradient(circle at 80% 80%, rgba(200, 160, 40, .08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 20%, transparent 80%, rgba(0,0,0,0.4)),
    var(--deep);
  border-top: 1px solid rgba(180, 130, 40, 0.15);
  border-bottom: 1px solid rgba(180, 130, 40, 0.15);
  box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
  content-visibility: auto;
  position: relative;
  overflow: hidden;
}

#problema::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.problem-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.problem-text {
  flex: 1.2;
  min-width: min(100%, 450px);
  text-align: center; /* Centrado por defecto para tablet/móvil */
}

.problem-images {
  flex: 0.8;
  min-width: min(100%, 320px);
}

.prob-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.prob-list li {
  padding: 1.8rem 2.5rem 1.8rem 5rem;
  background: rgba(10, 5, 0, .9);
  border: 1px solid rgba(180, 40, 40, .25);
  border-left: 4px solid #ff4444;
  position: relative;
  line-height: 1.8;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prob-list li:hover {
  border-color: #ff4444;
  transform: translateX(15px) scale(1.02);
  background: rgba(20, 0, 0, .9);
  box-shadow: 0 15px 40px rgba(180, 40, 40, 0.3);
}

.prob-list li:hover {
  border-color: rgba(200, 150, 40, .6);
  transform: translateX(10px);
  background: rgba(30, 15, 0, .8);
  box-shadow: 0 5px 25px rgba(180, 40, 40, 0.15);
}

.prob-list li::before {
  content: '✕';
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff4444;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.inc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.inc-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.inc-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* LIBRO */
#libro {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bg-mandala {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  opacity: .03;
  animation: mandala-spin 60s linear infinite !important;
  pointer-events: none;
  z-index: 0;
}

@keyframes mandala-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.book-cover-wrap {
  margin: 3rem auto 0;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.cover-shadow {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.3;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .85));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cover-shadow:hover {
  transform: scale(1.05) translateY(-15px) rotate(1deg);
}

/* ÁREAS */
.area {
  flex: 0 0 240px;
  min-height: 280px;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, rgba(68, 40, 7, .45), rgba(20, 10, 0, .7));
  border: 1px solid rgba(180, 130, 40, .2);
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.area:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.area-n {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  color: var(--rose);
  opacity: .4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.area h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--vellum);
  line-height: 1.3;
}

.area p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

/* PRECIO */
#precio {
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(120, 70, 8, .18) 0%, transparent 60%), var(--deep);
}

#precio .flex-container {
  align-items: center;
  justify-content: center;
}

.price-box {
  background: rgba(18, 10, 0, 0.6);
  border: 1px solid rgba(180, 130, 40, 0.25);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.price-tachado {
  text-decoration: line-through;
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.badge-lanz {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 0.3rem 1rem;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.price-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(180, 140, 20, 0.3);
}

.metodos {
  max-width: 250px;
  margin: 1.5rem auto 0;
  opacity: 0.7;
  filter: grayscale(1) invert(1);
}

.garantia {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(180, 130, 40, 0.05);
  border: 1px solid rgba(180, 130, 40, 0.1);
  text-align: center; /* Centrado por defecto */
}

.garantia div {
  flex: 1;
  min-width: min(100%, 280px);
}

.garantia img {
  width: 80px;
  height: auto;
}

/* BONOS */
.bonus {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.2rem 1.8rem;
  background: rgba(18, 10, 0, 0.4);
  border: 1px solid rgba(180, 130, 40, 0.12);
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.bonus:hover {
  background: rgba(45, 30, 10, 0.6);
  border-color: rgba(200, 155, 40, 0.4);
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

.bonus-n {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  color: rgba(255, 68, 68, 0.15);
  pointer-events: none;
}

/* ── 7. CAROUSEL & CUSTOM ── */
.carousel-outer {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 40px;
}

.carousel-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.tc {
  flex: 0 0 100%;
  max-width: 600px;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.5s ease;
  cursor: pointer;
}

.tc.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

#track-areas .tc {
  flex: 0 0 240px;
  max-width: 240px;
}

/* ESPECIAL TESTIMONIOS */
#testimonios {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(100, 60, 8, .12) 0%, transparent 65%), var(--deep);
}

#testimonios .tc {
  flex: 0 0 100%;
  max-width: 580px;
  margin: 0;
  background: linear-gradient(165deg, rgba(85, 55, 10, 0.4), rgba(20, 10, 0, 0.9));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 160, 40, 0.25);
  padding: 1rem;
  position: relative;
}

.tc-screenshot {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.tc::before {
  content: '\"';
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--rose);
  opacity: .18;
  position: absolute;
  top: -.5rem;
  left: 1.2rem;
  pointer-events: none;
}

.tc .quote, 
.problem-text .quote {
  font-family: 'Lora', serif;
  font-size: var(--sz-lead);
  line-height: 1.8;
  color: var(--vellum);
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
  text-align: center;
}

.problem-text .quote::before,
.problem-text .quote::after {
  content: '\"';
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  color: var(--rose);
  opacity: .35;
  position: absolute;
}

.problem-text .quote::before {
  top: -1rem;
  left: -1rem;
}

.problem-text .quote::after {
  bottom: -2.5rem;
  right: -1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  opacity: .3;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
  background: var(--gold);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(200, 160, 40, 0.5);
}

/* PARTICLES */
.particle {
  position: absolute !important;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0 !important;
  animation: particle-float var(--dur, 8s) ease-in-out infinite !important;
  animation-delay: var(--delay, 0s);
}

@keyframes particle-float {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: var(--op-lo, .2)
  }

  33% {
    transform: translateY(-18px) translateX(8px) scale(1.1);
    opacity: var(--op-hi, .5)
  }

  66% {
    transform: translateY(-8px) translateX(-12px) scale(.9);
    opacity: var(--op-lo, .2)
  }
}

/* ── 8. BACKGROUND DECORATIONS ── */
.hero-stars {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0 !important;
}

.bg-runes {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0 !important;
  opacity: .04;
}

.bg-energy {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0 !important;
  opacity: .035;
}