/* ─────────────────────────────────────────────────────────
   SOLICITANTES
───────────────────────────────────────────────────────── */

#solicitantes {
  position: relative;
  overflow: hidden;

  background: #07172f;
}

/* ── Fondo decorativo ──────────────────────────────── */

.sol-bg-pattern {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg, rgba(4, 14, 32, 0.98) 0%, rgba(10, 28, 58, 0.92) 50%, rgba(15, 42, 84, 0.94) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
}

/* Glow Effect */

#solicitantes::before {
  content: '';

  position: absolute;

  width: 800px;
  height: 800px;

  right: -250px;
  top: -150px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(60, 130, 255, 0.18),
      transparent 70%
    );

  pointer-events: none;
}

/* ── Container ─────────────────────────────────────── */

.solicitantes-inner {
  position: relative;
  z-index: 2;
}

/* ── Header ────────────────────────────────────────── */

.solicitantes-header {
  max-width: 780px; /* era 620px */
  margin: 0 auto 4rem auto;
  text-align: center;
}

.solicitantes-header .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.solicitantes-header .section-label::before {
  content: '';          /* ← agregar content */
  display: block;       /* ← cambiar none por block */
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.solicitantes-header .section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.solicitantes-header p {
  font-size: 15px;
  line-height: 1.9;

  color: rgba(255,255,255,0.72);

  margin-top: 1rem;
  text-align: center;
}

/* ── Grid ─────────────────────────────────────────── */

.sol-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

/* ── Cards ────────────────────────────────────────── */

.sol-card {
  position: relative;

  padding: 2rem;

  border-radius: 22px;

  background:
    rgba(255,255,255,0.07);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover */

.sol-card:hover {
  transform: translateY(-8px);

  background:
    rgba(255,255,255,0.10);

  border-color:
    rgba(255,255,255,0.22);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28);
}

/* Light effect */

.sol-card::before {
  content: '';

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      transparent 40%
    );

  pointer-events: none;
}

/* ── Top ──────────────────────────────────────────── */

.sol-card-top {
  margin-bottom: 1.5rem;
}

/* ── Icon ─────────────────────────────────────────── */

.sol-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  margin-bottom: 1rem;

  color: white;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.12);
}

/* ── Titles ───────────────────────────────────────── */

.sol-card h4 {
  font-size: 1.15rem;
  line-height: 1.45;

  color: white;

  padding-bottom: 1rem;

  border-bottom:
    1px solid rgba(255,255,255,0.12);
}

/* ── List ─────────────────────────────────────────── */

.sol-card ul {
  list-style: none;

  margin-top: 1.25rem;
}

.sol-card ul li {
  position: relative;

  padding: 0.55rem 0;
  padding-left: 18px;

  font-size: 13.5px;

  color:
    rgba(255,255,255,0.72);

  line-height: 1.7;
}

.sol-card ul li::before {
  content: '→';

  position: absolute;
  left: 0;

  color:
    rgba(255,255,255,0.42);

  font-size: 11px;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 1024px) {

  .sol-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {

  .sol-grid {
    grid-template-columns: 1fr;
  }

  .solicitantes-header {
    margin-bottom: 3rem;
  }

  .sol-card {
    padding: 1.75rem;
  }

}