/* ===== Certificaciones ===== */
.kfl-cert-section {
  background: transparent;
}

.kfl-cert-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #555;
}

.kfl-cert-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
  height: 100%;
  width: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kfl-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* encabezado del card */
.kfl-cert-head {
  width: 100%;
  margin-bottom: 14px;
}

.kfl-cert-line1,
.kfl-cert-line2 {
  display: block;
  text-align: center;
  line-height: 1.35;
}

.kfl-cert-line1 {
  font-weight: 600;
  font-size: 16px;
  color: #2c5f88;
  margin-bottom: 2px;
}

.kfl-cert-line2 {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.kfl-cert-img-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kfl-cert-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 170px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 991.98px) {
  .kfl-cert-card {
    min-height: 240px;
    padding: 20px;
  }

  .kfl-cert-img {
    max-height: 150px;
  }

  .kfl-cert-line1 {
    font-size: 15px;
  }

  .kfl-cert-line2 {
    font-size: 13px;
  }
}

/* Móvil */
@media (max-width: 767.98px) {
  .kfl-cert-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .kfl-cert-card {
    min-height: 220px;
    border-radius: 20px;
    padding: 18px;
  }

  .kfl-cert-img {
    max-height: 130px;
  }

  .kfl-cert-head {
    margin-bottom: 12px;
  }

  .kfl-cert-line1 {
    font-size: 14px;
  }

  .kfl-cert-line2 {
    font-size: 12px;
  }
}

/* Móvil pequeño */
@media (max-width: 430px) {
  .kfl-cert-subtitle {
    font-size: 0.95rem;
  }

  .kfl-cert-card {
    min-height: 200px;
    padding: 16px;
  }

  .kfl-cert-img {
    max-height: 115px;
  }

  .kfl-cert-head {
    margin-bottom: 10px;
  }

  .kfl-cert-line1 {
    font-size: 13px;
  }

  .kfl-cert-line2 {
    font-size: 11px;
  }
}