/* ─────────────────────────────────────────────────────────────
   landing.css — Páginas SEO de INK & BEAUTY BCN
   Reutiliza los design tokens de tokens.css + style.css.
   SOLO lo cargan las landings (coworking / sants / precios).
   No afecta a index.html ni a ninguna página existente.
   ───────────────────────────────────────────────────────────── */

/* ── Nav fija (mismo lenguaje visual que la home) ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.lp-nav__brand { display: flex; align-items: center; gap: 10px; }
.lp-nav__brand img { height: 30px; width: auto; }
.lp-nav__actions { display: flex; align-items: center; gap: 18px; }
.lp-nav__link {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
  transition: color .3s;
}
.lp-nav__link:hover { color: var(--gold); }
.lp-nav__cta {
  font-family: var(--f-ui); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: #0a0a0b; background: var(--gold);
  padding: 9px 20px; border-radius: 999px;
  transition: transform .3s, box-shadow .3s;
}
.lp-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

/* ── Hero ── */
.lp-hero { max-width: 920px; margin: 0 auto; padding: 140px 24px 30px; text-align: center; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-soft); border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 22px;
}
.lp-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-glow); }
.lp-hero h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(34px, 5.2vw, 58px); line-height: 1.07;
  letter-spacing: -0.02em; color: var(--text); margin: 0 0 20px;
}
.lp-hero h1 em { font-style: italic; color: var(--gold); }
.lp-lead {
  font-family: var(--f-ui); font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7; color: var(--text-2); max-width: 660px; margin: 0 auto 30px;
}
.lp-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-meta {
  display: flex; gap: clamp(20px, 4vw, 40px); justify-content: center; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.lp-meta__item { text-align: center; }
.lp-meta__k { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-4); margin-bottom: 6px; }
.lp-meta__v { font-family: var(--f-display); font-size: 22px; color: var(--text); }

/* ── Contenedor y secciones ── */
.lp-wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 54px 0; border-top: 1px solid var(--line); }
.lp-section > h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.15;
  letter-spacing: -0.01em; color: var(--text); margin: 0 0 18px;
}
.lp-section > h2 em { font-style: italic; color: var(--gold); }
.lp-section p {
  font-family: var(--f-ui); font-size: 15px; line-height: 1.75;
  color: var(--text-2); margin: 0 0 16px; max-width: 780px;
}
.lp-section strong { color: var(--text); font-weight: 600; }
.lp-section a.inline { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(212, 175, 55, 0.3); transition: border-color .25s; }
.lp-section a.inline:hover { border-color: var(--gold); }

/* ── Tarjetas ── */
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 26px; }
.lp-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 24px;
  transition: border-color .3s, transform .3s;
}
.lp-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.lp-card__icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--gold-soft); color: var(--gold); margin-bottom: 14px;
}
.lp-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 18px; color: var(--text); margin: 0 0 8px; }
.lp-card p { font-family: var(--f-ui); font-size: 13.5px; line-height: 1.65; margin: 0; color: var(--text-3); max-width: none; }

/* ── Tabla de precios ── */
.lp-prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 26px 0; }
.lp-price {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 26px 18px; text-align: center;
}
.lp-price--feat { border-color: rgba(212, 175, 55, 0.4); background: linear-gradient(180deg, var(--gold-soft), var(--surface)); }
.lp-price__amt { font-family: var(--f-display); font-size: 34px; color: var(--gold); line-height: 1; }
.lp-price__lbl { font-family: var(--f-ui); font-size: 13px; color: var(--text-2); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-price__sub { font-family: var(--f-mono); font-size: 10px; color: var(--text-4); margin-top: 5px; letter-spacing: 0.05em; }

/* ── FAQ (acordeón nativo) ── */
.lp-faq { margin-top: 22px; }
.lp-faq details { border-top: 1px solid var(--line); }
.lp-faq details:last-child { border-bottom: 1px solid var(--line); }
.lp-faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; font-family: var(--f-ui); font-size: 15px; font-weight: 500; color: var(--text);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .ic { color: var(--gold); font-size: 22px; line-height: 1; transition: transform .3s; flex-shrink: 0; }
.lp-faq details[open] summary .ic { transform: rotate(45deg); }
.lp-faq .a { padding: 0 4px 22px; font-family: var(--f-ui); font-size: 14px; line-height: 1.7; color: var(--text-2); max-width: 780px; }
.lp-faq .a a { color: var(--gold); text-decoration: none; }
.lp-faq .a a:hover { text-decoration: underline; }

/* ── CTA final ── */
.lp-ctaband { text-align: center; padding: 62px 24px 24px; }
.lp-ctaband h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(24px, 3.4vw, 38px); color: var(--text); margin: 0 0 14px; }
.lp-ctaband h2 em { color: var(--gold); font-style: italic; }
.lp-ctaband p { color: var(--text-3); margin: 0 0 26px; font-family: var(--f-ui); }

/* ── Footer ── */
.lp-foot { border-top: 1px solid var(--line); margin-top: 30px; padding: 46px 24px 40px; }
.lp-foot__inner { max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
.lp-foot__brand img { height: 30px; width: auto; margin-bottom: 12px; }
.lp-foot__brand p { font-family: var(--f-ui); font-size: 13px; color: var(--text-3); max-width: 280px; line-height: 1.6; margin: 0; }
.lp-foot__links { display: flex; gap: clamp(28px, 5vw, 56px); flex-wrap: wrap; }
.lp-foot__col h4 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-4); margin: 0 0 14px; }
.lp-foot__col a { display: block; font-family: var(--f-ui); font-size: 13.5px; color: var(--text-2); margin-bottom: 10px; transition: color .25s; }
.lp-foot__col a:hover { color: var(--gold); }
.lp-foot__bottom {
  max-width: 1000px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; color: var(--text-4);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.lp-foot__bottom a { color: var(--text-4); }
.lp-foot__bottom a:hover { color: var(--gold); }

/* ── Responsive / accesibilidad ── */
@media (max-width: 560px) {
  .lp-nav__link { display: none; }
  .lp-hero { padding-top: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-card, .lp-nav__cta, .lp-section a.inline { transition: none; }
  .lp-card:hover, .lp-nav__cta:hover { transform: none; }
}
