/* static-premium.css — Shared styles for all static pages
   Used by: about, contacto, pricing, pricing-albums, terminos, aviso
   System: 8px base. Depends on site.css vars (--accent, --border, --text, --muted, --bg).
*/

/* ── Page wrapper ─────────────────────────────────── */
.sp-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.sp-page--wide {
  max-width: 1120px;
}

/* ── Eyebrow / label ──────────────────────────────── */
.sp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Hero / heading block ─────────────────────────── */
.sp-hero {
  margin-bottom: 3rem;
}

.sp-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.sp-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

.sp-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ── Section headings ─────────────────────────────── */
.sp-section {
  margin-top: 3rem;
}

.sp-h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.sp-h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.sp-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.sp-body + .sp-body {
  margin-top: 0;
}

/* ── Inline highlight ─────────────────────────────── */
.sp-mark {
  color: var(--text);
  font-weight: 600;
}

/* ── Callout / info box ───────────────────────────── */
.sp-callout {
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: rgba(249, 115, 22, 0.06);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin: 1.5rem 0;
}

.sp-callout--info {
  border-color: rgba(96, 165, 250, 0.22);
  background: rgba(96, 165, 250, 0.06);
}

.sp-callout__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.sp-callout--info .sp-callout__label {
  color: #60a5fa;
}

/* ── TL;DR box ────────────────────────────────────── */
.sp-tldr {
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, #0f172a 0, #020617 60%);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
}

.sp-tldr__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sp-tldr__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sp-tldr__list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.sp-tldr__disclaimer {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Table of contents ────────────────────────────── */
.sp-toc {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  background: rgba(15, 23, 42, 0.4);
  margin: 0 0 2rem;
}

.sp-toc__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.sp-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sp-toc__list a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s ease;
}

.sp-toc__list a::before {
  content: "→";
  font-size: 0.7rem;
  opacity: 0.5;
}

.sp-toc__list a:hover,
.sp-toc__list a:focus-visible {
  color: var(--text);
  outline: none;
}

/* ── Legal sections ───────────────────────────────── */
.sp-legal-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.sp-legal-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sp-legal-section .sp-h2 {
  font-size: 1.15rem;
}

/* ── FAQ accordion (no JS — uses <details>/<summary>) */
.sp-faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sp-faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: radial-gradient(circle at top, #0f172a 0, #020617 60%);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.sp-faq details[open] {
  border-color: rgba(249, 115, 22, 0.35);
}

.sp-faq summary {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  user-select: none;
}

.sp-faq summary::-webkit-details-marker {
  display: none;
}

.sp-faq summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.sp-faq details[open] summary::after {
  content: "−";
}

.sp-faq summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 14px;
}

.sp-faq .sp-faq__body {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── Channels / contact grid ──────────────────────── */
.sp-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.sp-channel {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 60%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.15s ease;
}

.sp-channel:hover {
  border-color: #374151;
}

.sp-channel__icon {
  font-size: 1.4rem;
}

.sp-channel__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.sp-channel__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

.sp-channel__note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── CTA band ─────────────────────────────────────── */
.sp-cta-band {
  margin-top: 5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, #0f172a 0, #020617 60%);
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sp-cta-band__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}

.sp-cta-band__desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.65;
  margin: 0;
}

.sp-cta-band__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Pricing: consistent accent overrides ─────────── */
/* Applied when page imports static-premium.css.
   Overrides the blue accent in pricing pages to match site orange.        */
.sp-accent-override .plan-badge {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #111827;
}

.sp-accent-override .plan-card--highlight {
  border-color: rgba(249, 115, 22, 0.4);
  background: radial-gradient(circle at top left, #1f0f03 0%, #020617 70%);
  box-shadow: 0 0 40px -12px rgba(249, 115, 22, 0.18), 0 0 0 1px rgba(249, 115, 22, 0.1) inset;
}

.sp-accent-override .plan-subtitle {
  color: #fb923c;
}

.sp-accent-override .plan-cta--highlight {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fed7aa;
}

.sp-accent-override .plan-cta--highlight:hover {
  background: rgba(249, 115, 22, 0.24);
  border-color: rgba(249, 115, 22, 0.55);
}

.sp-accent-override .plan-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sp-accent-override .check-icon {
  color: var(--accent);
}

.sp-accent-override .addon-card {
  border-left-color: rgba(249, 115, 22, 0.4);
}

.sp-accent-override .eyebrow {
  color: var(--accent);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 640px) {
  .sp-hero {
    margin-bottom: 2rem;
  }

  .sp-section {
    margin-top: 2rem;
  }

  .sp-cta-band {
    padding: 2.5rem 1.25rem;
    margin-top: 3.5rem;
  }

  .sp-faq summary {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .sp-faq .sp-faq__body {
    padding: 0 1rem 0.875rem;
  }
}
