/* ============================================
   Composición de Teatro Musical — Sections
   ============================================ */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Enfoque ── */
.enfoque__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.enfoque__line {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.enfoque__line-tag {
  margin-bottom: var(--space-sm);
}

.enfoque__line h3 {
  margin-bottom: var(--space-sm);
}

.enfoque__shared {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.enfoque__shared-list {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
}

.enfoque__shared-list li {
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

/* ── Servicios ── */
.servicios__entregables {
  margin-top: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.servicios__entregables h3 {
  margin-bottom: var(--space-sm);
}

/* ── Sub-services within a card ── */
.sub-service {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.sub-service:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sub-service__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--brand);
  margin-bottom: 0.375rem;
}

.sub-service__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Trayectoria / Autoridad ── */
.trayectoria__formation {
  margin-top: var(--space-lg);
  text-align: left;
  border-left: 3px solid var(--brand);
  padding-left: var(--space-md);
  max-width: 720px;
  margin-inline: auto;
}

.trayectoria__formation h3 {
  color: var(--brand);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.formation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formation-list li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.formation-list li:last-child {
  border-bottom: none;
}

.formation-list li strong {
  color: var(--text);
}

/* ── Contacto ── */
.contacto__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}
