:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --text: #111827;
  --muted: #2A7289;
  --border: #e5e7eb;
  --background: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Kufi Arabic', 'Sansation','Inter', sans-serif;
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      #eef6ff 0px,
      #f8fafc 280px,
      #f8fafc 100%);
  color: var(--text);
}

.container {
  max-width: 996px !important;
}

/* =========================
   NAVBAR
========================== */
.navbar-brand {
  font-weight: 700;
  color: var(--text) !important;
}

.nav-link {
  color: var(--text) !important;
}

/* =========================
   CONTAINER PRINCIPAL
========================== */
.main-card {
  padding: 6px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* =========================
   TÍTULO
========================== */
.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-subtitle {
  color: var(--muted);
  margin-bottom: 80px;
}

/* =========================
   BUSCA
========================== */
.search-box {
  margin-bottom: 35px;
}

.search-box .input-group {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: .2s;
}

.search-box .input-group:focus-within {
  border-color: var(--primary);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, .08);
}

.search-box .form-control {
  border: none;
  height: 60px;
  padding-left: 20px;
  font-size: 1rem;
}

.search-box .form-control:focus {
  box-shadow: none;
}

.search-box .btn {
  min-width: 80px;
  border-radius: 16px;
  background: none;
  color: var(--primary);
  border: 0;
  margin: 4px;
}

.search-box .btn:hover {
  background: #6495ed;
  border-color: #FFF;
  color: #FFF;
}

/* =========================
   RESULTADOS
========================== */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border);
}

.results-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: .15s;
}

.result-card:hover {
  border-color: #dbeafe;
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(37, 99, 235, .08);
}

.result-type {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.result-ativ {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #a9a9a9;
}

.result-meta {
  color: var(--muted);
  font-size: .85rem;
}

/* =========================
   RESPONSIVO
========================== */
@media(max-width:768px) {
  .main-card {
    padding: 2px;
    margin-top: 46px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .page-subtitle {
    margin-bottom: 46px;
  }   

  .search-box .btn {
    min-width: 90px;
  }

  .result-card {
    padding: 8px;
  }

  .result-ativ {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 2px;
  }  

  .result-meta {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.25rem;
  }
  
}