/* ==========================================
   HERO — DISCAPACIDAD
   ========================================== */

.hero-somos {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
}

.hero-somos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-somos .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-somos h1 {
  font-size: var(--fs-xl);
  margin-bottom: 8px;
}

.hero-somos p {
  font-size: var(--fs-md);
}

/* Responsive HERO */
@media (max-width: 768px) {
  .hero-somos {
    height: 35vh;
  }
}


/* ==========================================
   BLOQUE EDUCATIVO PRINCIPAL (texto-somos)
   ========================================== */

.texto-somos {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.texto-somos h2 {
  font-size: 1.4rem;
  margin: 22px 0 10px;
  color: #222;
}

.texto-somos p {
  margin-bottom: 14px;
}

.texto-somos ul {
  margin: 4px 0 14px 22px;
  padding-left: 10px;
  list-style: disc;
}

.texto-somos li {
  margin-bottom: 8px;
}

/* Botón de descarga Ley */
.texto-somos .btn-primary {
  margin-top: 10px;
  display: inline-block;
}


/* ==========================================
   ICONO GENÉRICO
   ========================================== */

.icon {
  display: inline-block;
  margin-right: 4px;
}


/* ==========================================
   BLOQUE JZ DISC – COMPROMISO
   ========================================== */

.bloque-jz-disc {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 24px 20px 30px;
  background: #f9fbff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.bloque-jz-disc h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bloque-jz-disc p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #444;
}

.bloque-jz-disc ul {
  margin: 0 0 10px 22px;
  padding-left: 10px;
  list-style: disc;
}

.bloque-jz-disc li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* CTA centrada */
.bloque-jz-disc .cta-center {
  text-align: center;
  margin-top: 10px;
}


/* ==========================================
   RESPONSIVE AJUSTES GENERALES
   ========================================== */

@media (max-width: 768px) {
  .texto-somos {
    padding: 30px 16px 20px;
  }

  .bloque-jz-disc {
    margin: 0 10px 30px;
    padding: 20px 16px 26px;
  }
}


/* ==========================================
   BLOQUE DESTACADO – REGISTRO DE PERSONAS
   ========================================== */

.bloque-registro-disc {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 30px 20px 35px;
  background: #eef5ff; /* Fondo azul muy suave */
  border-left: 6px solid #0A6FB5; /* Línea de identidad JZ */
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.bloque-registro-disc h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0A6FB5;
}

.bloque-registro-disc p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}

.bloque-registro-disc ul {
  margin: 0 0 16px 25px;
  padding-left: 0;
  list-style: disc;
}

.bloque-registro-disc li {
  margin-bottom: 8px;
  color: #444;
}

.bloque-registro-disc .cta-center {
  text-align: center;
  margin: 20px 0;
}

.bloque-registro-disc .btn-primary {
  font-size: 1rem;
  padding: 10px 22px;
}

.bloque-registro-disc small {
  color: #555;
  line-height: 1.6;
}

.nota-exito {
  margin-top: 24px;
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
  background: #f7faff;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dde8f7;
}

/* Responsive */
@media (max-width: 768px) {
  .bloque-registro-disc {
    padding: 24px 16px 28px;
    margin: 0 10px 32px;
  }

  .bloque-registro-disc ul {
    margin-left: 20px;
  }
}


/* ==========================================
   CASOS DE ÉXITO (OCULTO POR AHORA)
   ========================================== */

.oculto {
  display: none;
}

.casos-exito {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 30px 20px;
}

.casos-exito h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0A6FB5;
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.caso-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.caso-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}

.caso-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.caso-item .empresa {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.caso-item .descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .casos-grid {
    grid-template-columns: 1fr;
  }
}
