/* === COMPONENTE: SECTION HEADER (BEM) === */

/* Bloque principal */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Elementos */
.section-header__kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-secundario);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: block;
}

.section-header__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-principal);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header__subtitle {
  font-size: 1.1rem;
  color: var(--text-secundario);
  max-width: 65ch;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* Modificadores */
.section-header--compact {
  margin-bottom: 2rem;
}

.section-header--medium .section-header__title {
  font-size: 2.25rem;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-header__subtitle {
  margin-left: 0;
  margin-right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header__title {
    font-size: 2.25rem;
  }
  
  .section-header--medium .section-header__title {
    font-size: 1.85rem;
  }
  
  .section-header__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-header__title {
    font-size: 1.85rem;
  }
  
  .section-header--medium .section-header__title {
    font-size: 1.5rem;
  }
  
  .section-header__kicker {
    font-size: 0.75rem;
  }
}
