  /* ── HERO CARRERA (fondo específico de Administración) ── */
  .carrera-hero {
      --hero-bg: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80');
  }

  /* ── IMÁGENES DE LA GALERÍA ── */
  .img-carrera-admin {
      border-radius: 20px;
      object-fit: contain;
      max-height: 250px;
      box-shadow: 0 20px 60px rgba(189, 130, 0, .15), 0 0 0 3px rgba(225, 161, 1, .25);
  }

  /* ── PERFIL ── */
  .perfil-section {
      background: var(--gris-light);
      padding: 5rem 0;
  }

  .perfil-card {
      background: #fff;
      border-radius: 16px;
      padding: 1.6rem;
      border: 1px solid #c8ddf5;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      height: 100%;
  }

  .perfil-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primario), var(--acento-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
  }

  .perfil-card h6 {
      font-weight: 700;
      color: var(--primario-dark);
      margin-bottom: .3rem;
  }

  .perfil-card p {
      font-size: .85rem;
      color: var(--gris);
      margin: 0;
      line-height: 1.6;
  }
