.lid-public {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2937;
}

/* HERO */
.lid-public-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 60px 20px;
}

.lid-public-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.lid-public-breadcrumb {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* TOOLBAR */
.lid-public-toolbar {
  display: flex;
  gap: 10px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.lid-public-toolbar a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: white;
  transition: all 0.2s ease;
  text-decoration: none;
}

.lid-public-toolbar a:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* CARD */
.lid-search-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-top: 20px;
}

/* GRID */
.lid-public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

/* INPUTS */
.lid-public-grid input,
.lid-public-grid select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  transition: 0.2s;
}

.lid-public-grid input:focus,
.lid-public-grid select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* TABS */
.lid-search-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.lid-search-tabs span {
  padding-bottom: 8px;
  cursor: pointer;
}

.lid-search-tabs span:first-child {
  border-bottom: 2px solid #2563eb;
  font-weight: 600;
}

/* BUTTON */
.lid-search-card button {
  margin-top: 15px;
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.lid-search-card button:hover {
  background: #1d4ed8;
}

/* CONTAINER RESULTADOS */
.lid-results {
  margin-top: 40px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* TÍTULO */
.lid-results h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
}

/* LEGENDA */
.lid-public-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #6b7280;
}

/* TEXTO "Legenda:" */
.lid-public-legend strong {
  color: #374151;
  font-weight: 600;
}

/* BADGE */
.lid-public-legend span {
  background: #eff6ff;
  color: #2563eb;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #dbeafe;
}

/* DIVISÃO VISUAL (opcional) */
.lid-results::after {
  content: "";
  display: block;
  margin-top: 20px;
  border-bottom: 1px solid #e5e7eb;
}