.filter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-form input,
.filter-form select {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  min-width: 180px;
  font-size: 0.95rem;
  background: var(--white);
  transition: border 0.2s ease;
}

.filter-form input:focus,
.filter-form select:focus {
  outline: none;
  border-color: var(--red-main);
}

.filter-form button {
  background: var(--red-main);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.filter-form button:hover {
  background: var(--red-dark);
}

.inspetores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.inspetor-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.4rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  min-height: 220px;
}

.inspetor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.inspetor-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--black-main);
}

.inspetor-meta {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.inspetor-raca {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--black-soft);
}

.inspetor-profissao {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--black-soft);
}

.inspetor-racas-list {
  color: var(--black-main);
}

.inspetor-contact {
  margin-top: 0.5rem;
}

.inspetor-contact strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--black-soft);
}

.inspetor-contact ul {
  margin: 0;
  padding-left: 1rem;
}

.inspetor-contact li {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.inspetor-contact a {
  color: var(--black-main);
  text-decoration: none;
}

.inspetor-contact a:hover {
  text-decoration: underline;
}

.inspetor-email {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.inspetor-email strong {
  color: var(--black-soft);
}

.inspetor-email a {
  color: var(--red-main);
  text-decoration: none;
  font-weight: 500;
}

.inspetor-email a:hover {
  text-decoration: underline;
}

.inspetores-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.inspetores-empty h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: var(--black-main);
}

.inspetores-empty p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.email-link {
  text-transform: lowercase;
}
