/* ============================
   HERO NOSOTROS (VERDE CLARO)
   ============================ */

.nosotros-hero {
  background: linear-gradient(135deg, #f7f9fc, #e7f4ee) !important;
  padding: 80px 0 70px;
  color: #00295E;
}

.nosotros-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.nosotros-hero .section__title {
  color: #00295E;
  margin-bottom: 14px;
}

.nosotros-hero__subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5670;
}

/* ============================
   CONTENEDOR BOTONES (VERTICAL)
   ============================ */

.nosotros-hero__actions {
  display: flex;
  flex-direction: column;       /* uno arriba del otro */
  align-items: stretch;         /* mismo ancho */
  gap: 14px;
  max-width: 260px;             /* ancho controlado */
  margin-left: auto;            /* empuja a la derecha */
}

/* ============================
   BOTONES
   ============================ */

.nosotros-btn,
.convenios-btn {
  display: block;
  width: 100%;                  /* mismo ancho */
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: 0.25s ease;
}

/* Verde */
.nosotros-btn {
  background: #00A033;
  color: #ffffff;
}

.nosotros-btn:hover {
  background: #008a2e;
  transform: translateY(-2px);
}

/* Azul */
.convenios-btn {
  background: #00295E;
  color: #ffffff;
}

.convenios-btn:hover {
  background: #001c3e;
  transform: translateY(-2px);
}

/* ============================
   CONTENIDO NOSOTROS (VERTICAL)
   ============================ */

.nosotros-content {
  background: #ffffff;
  padding: 80px 0;
}

/* flujo vertical */
.nosotros-content .wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* bloque */
.nosotros-block {
  max-width: 900px;
  margin: 0 auto;
}

/* t¨ªtulos */
.nosotros-block__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00295E;
  margin-bottom: 30px;
  position: relative;
}

/* l¨ªnea decorativa */
.nosotros-block__title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00A033;
  display: block;
  margin: 14px auto 0;
}

/* texto */
.nosotros-block__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  text-align: justify;
  margin-bottom: 18px;
}

/* ============================
   LISTAS
   ============================ */

.nosotros-list {
  margin: 0 0 20px 0;
  padding-left: 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* certificaciones */
.nosotros-list--inline {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nosotros-list--inline li {
  padding: 8px 18px;
  background: #f1f5fb;
  color: #00295E;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* valores */
.nosotros-values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.nosotros-values li {
  padding: 10px 18px;
  background: #f5f7fa;
  color: #00295E;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .nosotros-hero__inner {
    grid-template-columns: 1fr;
  }

  .nosotros-hero__actions {
    margin: 30px auto 0;
    align-items: stretch;
  }

  .nosotros-hero__subtitle {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nosotros-hero {
    padding: 60px 0 50px;
  }

  .nosotros-content {
    padding: 60px 0;
  }

  .nosotros-block__title {
    font-size: 1.6rem;
  }

  .nosotros-block__text {
    font-size: 1rem;
  }
}
