/* ============================================================
   BROCHURE.CSS — Estilos de las landings de curso (cursos/*.html)
   Comparte navbar, footer, botones, badges, tabla, perks,
   timeline, price-block y CTA con el resto del sitio.
   ============================================================ */

/* ─── RIBBON (franja de oferta) ─────────────────────────── */
.ribbon {
  padding: 10px 0; text-align: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.ribbon.ribbon--red  { background: linear-gradient(90deg, var(--red), #b5001f); }
.ribbon.ribbon--teal { background: linear-gradient(90deg, var(--teal), #008f88); }
.ribbon span { font-weight: 400; opacity: 0.9; margin-left: 10px; }

/* ─── HERO DE BROCHURE ──────────────────────────────────── */
.brochure-hero { background: var(--white); border-bottom: 1px solid var(--border); }
.brochure-hero-inner { padding: 56px 0 48px; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; margin-bottom: 22px;
}
.hero-pill--teal   { color: var(--teal);   border: 1.5px solid var(--teal);   background: var(--teal-light); }
.hero-pill--orange { color: var(--orange); border: 1.5px solid var(--orange); background: var(--orange-light); }
.brochure-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 700; line-height: 1.05; color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.brochure-hero h1 .hl-blue   { color: var(--blue); }
.brochure-hero h1 .hl-teal  { color: var(--teal); }
.brochure-hero h1 .hl-orange { color: var(--orange); }
.brochure-hero .hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(13px, 2.2vw, 18px); font-weight: 500;
  color: var(--muted); margin-bottom: 24px; letter-spacing: 0.01em;
}
.brochure-hero .hero-sub { font-size: 16px; color: var(--muted); max-width: 580px; margin: 0 auto 28px; line-height: 1.75; }
.brochure-hero .price-note { margin-top: 18px; }

/* Información general (fecha + horario) */
.brochure-hero-meta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0 0 26px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 30px; padding: 9px 18px;
  font-size: 13.5px; color: var(--text-mid); font-weight: 500;
}
.meta-chip strong { color: var(--text); font-weight: 700; }

/* Botones principales del hero */
.brochure-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 480px) { .brochure-hero-actions .btn { width: 100%; } }

/* ─── ENCABEZADOS DE SECCIÓN (más compactos en brochure) ── */
.brochure-body { padding-bottom: 8px; }
.section-block { padding: 48px 0 0; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.section-title { font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--text); margin-bottom: 24px; line-height: 1.2; }
hr.div { border: none; border-top: 1px solid var(--border); margin: 48px 0 0; }
.spacer-top { margin-top: 28px; }

/* ─── LISTA DE TEMAS (dentro del acordeón) ──────────────── */
.topic-list li {
  font-size: 13px; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid var(--surface-2);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.topic-list li:last-child { border-bottom: none; }
.topic-list li::before { content: '▹'; font-size: 11px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.topic-list strong { color: var(--text); }
.accordion-item.is-teal   .topic-list li::before { color: var(--teal); }
.accordion-item.is-orange .topic-list li::before { color: var(--orange); }
.accordion-item.is-purple .topic-list li::before { color: var(--purple); }

/* ─── AI HIGHLIGHT ──────────────────────────────────────── */
.ai-highlight {
  background: var(--purple-light); border: 1px solid var(--purple-mid);
  border-left: 3px solid var(--purple); border-radius: 6px;
  padding: 10px 14px; font-size: 12px; color: #5B21B6; margin-top: 10px; line-height: 1.55;
}
.ai-highlight strong { color: var(--purple); }

/* ─── AUDIENCIA ─────────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.audience-item { background: var(--white); border: 1.5px solid var(--border); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 16px; transition: box-shadow var(--t-mid); }
.audience-item:hover { box-shadow: 0 2px 12px rgba(252,117,44,0.1); }
.audience-role { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.audience-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─── NOTA DE PIE DE BROCHURE ───────────────────────────── */
.brochure-note { text-align: center; padding: 32px 0 8px; font-size: 12px; color: var(--muted); line-height: 1.8; }

/* CTA block dentro del brochure: separación superior */
.brochure-body .cta-block { margin-top: 48px; }

@media (max-width: 600px) {
  .brochure-hero-inner { padding: 40px 0 36px; }
  .cta-block { padding: 36px 22px; }
}
