/* =========================
   CONTENEDOR GENERAL
=========================*/
.normograma {
  /* background: #e9e9e9;
  padding: 50px 30px 70px; */
  font-family: Arial, Helvetica, sans-serif;
}

.normograma h2 {
  color: #7ac143;
  margin-bottom: 20px;
  font-weight: 600;
 letter-spacing: 0.3px;
 font-size: 30px;
}

/* GRID PRINCIPAL */
.normograma-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =========================
   CARD COMO COLUMNA TABLA
=========================*/
.card {
  display: grid;

  grid-template-rows:
    31px
    115px
    166px
    31px
    70px
    25px
    25px
    25px
    25px;

  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 14px;
  overflow: hidden;
}

/* FILAS */
.row {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
}

/* TITULO */
.title {
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #0b4f9e;
  white-space: nowrap;
}

/* ICONO */
.icon {
  justify-content: center;
}

.icon img {
  height: 95px;
}

/* DESCRIPCION */
.description {
  align-items: flex-start;
  padding-top: 20px;
  line-height: 1;
  color: #333;
  text-align: justify;
}

/* FRANJA VERDE */
.green {
  background: #76b82a;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  text-align: center;
}

/* LINKS */
.link {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #0074c8;
  gap: 10px;
}

.link:hover {
  background: #ececec;
}

/* CHECK */
.check {
  width: 18px;
  height: 18px;
  background: #76b82a;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.check::after {
  content: "✔";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* LINEAMIENTOS */
.lineamientos {
  background: #dedede;
  border-top: 1px solid #ccc;
  color: #333;
}

/* =========================
   RESPONSIVE
=========================*/
@media (max-width: 1200px) {
  .normograma-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .normograma-grid {
    grid-template-columns: 1fr;
  }

  .normograma h1 {
    font-size: 34px;
  }
}
