/* ============================================
   ASTROGNOMO · Landing Page
   Estética: místico / cósmico / elegante
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta - cosmos + tierra */
  --bg-deep:     #0B0A14;   /* noche cósmica */
  --bg-night:    #14111F;   /* violeta noche */
  --bg-section:  #1C1830;   /* índigo profundo */
  --bg-card:     #221C36;   /* card fondo */
  --bg-elev:     #2A2340;   /* hover */

  --gold:        #D4A574;   /* oro café */
  --gold-light:  #E8C988;   /* oro luminoso */
  --gold-deep:   #A87E4F;   /* oro tueste */

  --cream:       #F5EFE6;   /* pergamino */
  --cream-dim:   #D8CFC0;   /* pergamino apagado */

  --text-main:   #F5EFE6;
  --text-mute:   #A8A2B8;
  --text-dim:    #6E6883;

  --line:        rgba(212, 165, 116, 0.18);
  --line-strong: rgba(212, 165, 116, 0.4);

  /* Tipografías */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaciado */
  --container: 1200px;
  --gap: clamp(2rem, 5vw, 5rem);

  /* Radios */
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;

  /* Sombras */
  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.6);
  --shadow-gold: 0 10px 40px -10px rgba(212, 165, 116, 0.35);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-light); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-sub {
  color: var(--text-mute);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
}

.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn__icon { font-size: 1.1em; line-height: 1; }
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 14px 50px -8px rgba(232, 201, 136, 0.5); color: var(--bg-deep); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.08);
  color: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--lg {
  padding: 1.15rem 2.25rem;
  font-size: 1.02rem;
}

.link-arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap .25s ease, color .25s ease;
}
.link-arrow:hover { gap: 0.7rem; color: var(--gold-light); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
.image-placeholder {
  position: relative;
  width: 100%;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(168, 162, 184, 0.08), transparent 50%),
    linear-gradient(135deg, var(--bg-night), var(--bg-section));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
}
.image-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, var(--gold) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 18%, var(--cream) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 75%, var(--gold-light) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 65%, var(--cream-dim) 50%, transparent 50%),
    radial-gradient(1px 1px at 55% 40%, var(--gold) 50%, transparent 50%);
  opacity: 0.7;
}
.image-placeholder__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  z-index: 1;
}
.image-placeholder__hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  z-index: 1;
  max-width: 28ch;
}
.image-placeholder--hero    { aspect-ratio: 4 / 5; min-height: 420px; }
.image-placeholder--portrait{ aspect-ratio: 3 / 4; min-height: 320px; }
.image-placeholder--square  { aspect-ratio: 1 / 1; min-height: 240px; }

/* ---------- IMAGE FRAMES (real photos) ---------- */
.img-frame {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
  border: 1px solid var(--line);
  background: var(--bg-night);
}
.img-frame--hero     { aspect-ratio: 4 / 5; }
.img-frame--portrait { aspect-ratio: 3 / 4; }
.img-frame--square   { aspect-ratio: 1 / 1; }

/* Logo en navbar */
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 165, 116, 0.4));
}

/* Producto: imagen de bolsa */
.product-card__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

/* Método: imagen */
.method-card__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

/* Footer logo */
.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 165, 116, 0.4));
  margin-bottom: 0.5rem;
}

/* CTA bajo productos */
.products__cta {
  text-align: center;
  color: var(--cream-dim);
  font-size: 1rem;
  margin: 2rem 0 0;
}
.products__cta .link-arrow { margin-left: 0.4rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
}
.nav__logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
  text-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 0.9rem;
}
.nav__menu {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-mute);
}
.nav__menu a:hover { color: var(--gold-light); }

@media (max-width: 800px) {
  .nav__menu { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168, 130, 80, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(94, 70, 130, 0.22), transparent 50%),
    var(--bg-deep);
}
.hero__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, var(--cream) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 33%, var(--gold-light) 50%, transparent 51%),
    radial-gradient(2px 2px at 38% 18%, var(--cream) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 50%, var(--gold) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 70% 25%, var(--cream-dim) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 38%, var(--gold-light) 50%, transparent 51%),
    radial-gradient(1px 1px at 12% 70%, var(--cream) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 33% 85%, var(--gold) 50%, transparent 51%),
    radial-gradient(1px 1px at 60% 80%, var(--cream-dim) 50%, transparent 51%),
    radial-gradient(2px 2px at 80% 70%, var(--cream) 50%, transparent 51%);
  opacity: 0.6;
  animation: twinkle 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__sub {
  color: var(--cream-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.hero__bullets li::first-letter { color: var(--gold); }

.hero__visual {
  position: relative;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.18), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin: 0 auto; }
  .hero__scroll { display: none; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-night);
  padding: 1.5rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}
.trust__label {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ============================================
   MANIFIESTO
   ============================================ */
.manifesto {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-deep);
}
.manifesto__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.manifesto__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold-light);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
}
.manifesto__copy p { color: var(--cream-dim); }
.manifesto__copy strong { color: var(--gold); font-weight: 600; }

@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto__visual { max-width: 460px; margin: 0 auto; }
}

/* ============================================
   BENEFICIOS
   ============================================ */
.benefits {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-night);
  position: relative;
}
.benefits::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.06), transparent 40%);
  pointer-events: none;
}

.benefits__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--bg-elev);
}
.benefit-card__icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 16px rgba(212, 165, 116, 0.4);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.6rem;
}
.benefit-card p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 1000px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .benefits__grid { grid-template-columns: 1fr; } }

/* ============================================
   PROBLEMA / SOLUCIÓN
   ============================================ */
.problem {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-deep);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.problem__list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
  display: grid;
  gap: 0.75rem;
}
.problem__list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--cream-dim);
}
.problem__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: bold;
}
.problem__solution {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.06), transparent);
}
.problem__solution h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.problem__solution strong { color: var(--cream); font-weight: 600; }
.problem__solution .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .problem__inner { grid-template-columns: 1fr; }
  .problem__visual { max-width: 460px; margin: 0 auto; order: -1; }
}

/* ============================================
   PRODUCTOS
   ============================================ */
.products {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-night);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1100px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.product-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}
.product-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}
.product-card__visual {
  padding: 1.25rem 1.25rem 0;
}
.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.product-card__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0;
  color: var(--cream);
}
.product-card__notes {
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.92rem;
  margin: 0;
}
.product-card p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0;
}
.product-card .link-arrow { margin-top: auto; padding-top: 0.5rem; }

@media (max-width: 900px) { .products__grid { grid-template-columns: 1fr; } }

/* ============================================
   MÉTODOS
   ============================================ */
.methods {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-deep);
  position: relative;
}
.methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0 2rem;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.method-card__visual { padding: 1rem 1rem 0; }
.method-card__body { padding: 1.25rem 1.25rem 1.5rem; }
.method-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.3rem;
}
.method-card__type {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.method-card__recipe {
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}
.method-card__recipe > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.4rem;
}
.method-card__recipe > div:last-child { border-bottom: none; padding-bottom: 0; }
.method-card__recipe dt {
  color: var(--text-mute);
  font-weight: 500;
}
.method-card__recipe dd {
  margin: 0;
  color: var(--cream);
  font-weight: 600;
  text-align: right;
}

.methods__cta {
  text-align: center;
  color: var(--cream-dim);
  font-size: 1rem;
  margin: 1rem 0 0;
}
.methods__cta .link-arrow { margin-left: 0.4rem; }

@media (max-width: 1000px) { .methods__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .methods__grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALES
   ============================================ */
.testimonials {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-night);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3rem 0 2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s ease;
}
.testimonial:hover { border-color: var(--line-strong); }
.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  margin-top: auto;
}
.testimonial__name {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial__role {
  color: var(--text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.testimonials__note {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0;
}
.testimonials__note a { color: var(--gold); font-weight: 600; }

@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ============================================
   LEAD MAGNET / CTA PRINCIPAL
   ============================================ */
.lead {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-deep);
  overflow: hidden;
}
.lead__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(94, 70, 130, 0.25), transparent 55%);
  pointer-events: none;
}
.lead__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.lead__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 1.25rem;
}
.lead__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.lead__sub {
  color: var(--cream-dim);
  font-size: 1.08rem;
  max-width: 50ch;
  margin: 0 0 1.75rem;
}
.lead__sub strong { color: var(--gold-light); font-weight: 600; }

.lead__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.6rem;
}
.lead__perks li {
  color: var(--cream-dim);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.lead__perks li::first-letter { color: var(--gold); font-weight: bold; }

.lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.lead__micro {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .lead__inner { grid-template-columns: 1fr; }
  .lead__visual { max-width: 460px; margin: 0 auto; order: -1; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-night);
}
.faq__list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s ease;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--line-strong); background: var(--bg-elev); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }

.faq-item__body {
  padding: 0 1.5rem 1.5rem;
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq-item__body p { margin: 0; }
.faq-item__body strong { color: var(--gold-light); font-weight: 600; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(168, 130, 80, 0.18), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.final-cta__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 18% 22%, var(--gold) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 82% 28%, var(--cream) 50%, transparent 51%),
    radial-gradient(1px 1px at 38% 70%, var(--gold-light) 50%, transparent 51%),
    radial-gradient(2px 2px at 70% 75%, var(--cream-dim) 50%, transparent 51%);
  opacity: 0.6;
  animation: twinkle 6s ease-in-out infinite alternate;
  pointer-events: none;
}
.final-cta__inner { position: relative; }
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--cream);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.final-cta__sub {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.final-cta__micro {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #08070F;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  color: var(--text-mute);
  font-size: 0.92rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  color: var(--text-mute);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.75rem 0 0;
  max-width: 26ch;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.footer__col a:hover { color: var(--gold-light); }

.footer__form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer__form input {
  flex: 1;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  color: var(--cream);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color .25s;
}
.footer__form input:focus { border-color: var(--gold); }
.footer__form input::placeholder { color: var(--text-dim); }
.footer__form .btn { padding: 0.75rem 1.4rem; font-size: 0.9rem; }

.footer__form-msg {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--gold-light);
  min-height: 1em;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer__bottom p { margin: 0; }

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__col--newsletter { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col--newsletter { grid-column: auto; }
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 100;
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px -8px rgba(37, 211, 102, 0.7);
  color: #fff;
}
.wa-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* ============================================
   ANIMACIONES DE ENTRADA (scroll)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
