body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

/* Selector idioma */
.ak-lang-selector {
  text-align: center;
  margin: 20px 0;
}

.ak-lang-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  margin: 0 5px;
}

.ak-lang-btn.active {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

/* Idioma */
.lang-en { display: none; }
body.ak-lang-en .lang-es { display: none; }
body.ak-lang-en .lang-en { display: inline; }

/* HERO CORPORATIVO SOBRIO */
.ci-hero {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f3f6f9 40%,
    #d9e2ec 100%
  );
  text-align: center;
  padding: 40px 20px 50px;
  border-bottom: 1px solid #e2e8f0;
}

.ci-hero-logo img {
  height: 55px;
  margin-bottom: 20px;
}

.ci-hero h1 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #1e293b;
}

.ci-hero h2 {
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #1e3a8a;
}

.ci-hero p {
  max-width: 650px;
  margin: 15px auto 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}
/* Cards */
.ci-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  gap: 30px;
}

.ci-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: .3s ease;
}

.ci-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.ci-card h3 {
  display: flex;
  align-items: flex-start;   /* clave */
  gap: 10px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.ci-card ul {
  list-style: disc;
  padding-left: 20px;
}

.ci-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.ci-card li::marker {
  color: #1e3a8a;   /* azul corporativo */
}

@media (min-width: 900px) {
  .ci-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ci-icon {
  color: #1e3a8a;
  font-size: 18px;
  flex-shrink: 0;   /* evita que se deforme */
  margin-top: 3px;  /* ajuste fino vertical */
}
/* Botón volver */
.ci-hero-back {
  margin-top: 25px;
}

.ci-back-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease;
}

.ci-back-btn:hover {
  background: #1e3a8a;
  color: #ffffff;
}
