/* ==============================================
   SOBRE LA INICIATIVA — CSS
   Usa --page-margin de estilos.css: clamp(20px, 6vw, 120px)
   hero-title-overlay, page-title y highlight-text vienen de estilos.css
   ============================================== */

/* ── Contenedor con márgenes estándar ── */
.inic-container {
  width: 100%;
  max-width: min(1440px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left:  var(--page-margin, clamp(20px, 6vw, 120px));
  padding-right: var(--page-margin, clamp(20px, 6vw, 120px));
  box-sizing: border-box;
}

/* ==============================================
   HERO
   ============================================== */
.iniciativa-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: clamp(40px, 8vw, 160px);
  padding-left: var(--page-margin, clamp(20px, 6vw, 120px));
}

.iniciativa-hero .hero-background {
  position: absolute;
  inset: 0;
  background-image: url('/assets/Imagenes de alta resolucion/acercade-portada.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.iniciativa-hero .hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* ==============================================
   SECCIÓN CONTENIDO
   ============================================== */
.iniciativa-content {
  background: #FFFFFF;
  padding: clamp(56px, 10vw, 200px) 0;
}

/* Bloque intro: título grande + subtítulo */
.main-description {
  margin-bottom: clamp(48px, 7vw, 112px);
}

.main-title {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(24px, 4vw, 64px);
  font-weight: 600;
  color: #142139;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: clamp(32px, 5vw, 96px);
}

.main-subtitle {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(18px, 2.2vw, 36px);
  font-weight: 400;
  color: #2D3139;
  line-height: 1.3;
  margin: 0;
}

/* Highlight reutiliza estilos.css (.highlight-text),
   pero esta página lo sobreescribe a azul marino */
.iniciativa-content .highlight-text {
  color: #072A40 !important;
  font-weight: 600 !important;
}

/* ==============================================
   BLOQUES DE SECCIÓN (problema / solución)
   ============================================== */
.section-block {
  margin-bottom: clamp(40px, 5vw, 80px);
}

.section-block .section-title {
  font-family: 'Switzer', sans-serif !important;
  font-size: clamp(22px, 2.8vw, 40px) !important;
  font-weight: 600 !important;
  color: #142139 !important;
  margin-bottom: clamp(16px, 2vw, 32px) !important;
}

.section-text {
  font-family: 'Switzer', sans-serif !important;
  font-size: clamp(16px, 1.8vw, 28px) !important;
  font-weight: 400 !important;
  color: #2D3139 !important;
  line-height: 1.5 !important;
  margin-top: clamp(24px, 3vw, 64px) !important;
  margin-bottom: clamp(24px, 3vw, 64px) !important;
}

/* Lista de herramientas / acciones */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: clamp(24px, 3vw, 64px);
}

.feature-list li {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(15px, 1.7vw, 28px);
  font-weight: 400;
  color: #2D3139;
  line-height: 1.5;
  margin-bottom: clamp(10px, 1vw, 18px);
  padding-left: clamp(18px, 2vw, 28px);
  position: relative;
}

.feature-list li::before {
  content: '•';
  color: #7CB342;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-list li strong {
  color: #072A40;
  font-weight: 600;
}

/* Separador entre bloques */
.content-separator {
  border: none;
  height: 3px;
  background: #2D3139;
  border-radius: 4px;
  margin: clamp(40px, 5vw, 80px) 0;
}
