/* ===============================
   LAYOUT / HEADERS
=============================== */

/* BASE COMPARTIDA */
.header-base {
  max-width: 720px;
}

/* ===============================
   LABEL
=============================== */

.header-base .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font: 600 0.75rem/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #081a3a;
}

.header-base .section-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: #081a3a;
  border-radius: 2px;
}

/* ===============================
   TITULOS
=============================== */

.header-base h2 {
  max-width: 680px;
  margin-bottom: 0.6rem;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #0b1f2a;
}

/* SUBTEXTO */
.header-base p.text-muted {
  max-width: 620px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.65;
  color: #6c757d;
}

/* ===============================
   VARIANTES DE POSICION
=============================== */

/* CENTRADO */
.header-centered {
  margin: 0 auto;
  text-align: center;
}

.header-centered h2,
.header-centered p {
  margin-left: auto;
  margin-right: auto;
}

/* IZQUIERDA / DERECHA */
.header-left,
.header-right {
  text-align: left;
}

.header-right {
  margin-left: auto;
  margin-right: 0;
}

.header-right h2,
.header-right p {
  margin-left: auto;
  margin-right: 0;
}

.header-left h2::after,
.header-right h2::after {
  display: none;
}

/* ===============================
   M3 — TYPOGRAPHY
=============================== */

.problema-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0b1f2a;
}

.problema-description,
.problema-texto p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
}

.section-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===============================
   M3 — LAYOUT
=============================== */

.bloque-problema {
  padding: 5.5rem 0;
}

.problema-cta {
  margin-top: 1.7rem;
}

.problema-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ===============================
   M5 — BENEFICIOS
=============================== */

.solucion-beneficios {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.solucion-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #334155;
}

.solucion-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #4f7c59;
}

/* ======================================
   LAYOUT — SEGURO EDUCACIÓN
====================================== */

.seguro-educacion {
  padding: 4.5rem 0;
  background-color: #f8f9fa;
}

.seguro-educacion-puntos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 991px) {
  .seguro-educacion {
    padding: 3.5rem 0;
  }
}