.laboratorios-filter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.laboratorios-filter-form input,
.laboratorios-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;
}

.laboratorios-filter-form input:focus,
.laboratorios-filter-form select:focus {
  outline: none;
  border-color: var(--red-main);
}

.laboratorios-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;
}

.laboratorios-filter-form button:hover {
  background: var(--red-dark);
}

.laboratorios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.laboratorio-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.laboratorio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.laboratorio-card h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: var(--black-main);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.laboratorio-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.laboratorio-meta p {
  margin: 0;
}

.laboratorio-contact {
  display: flex;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.laboratorio-contact strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--black-soft);
}

.laboratorio-contact a {
  color: var(--black-main);
  text-decoration: none;
  margin-left: 0.5rem;
}

.laboratorio-contact a:hover {
  text-decoration: underline;
}

.laboratorio-email {
  display: flex;
  font-size: 0.85rem;
  word-break: break-word;
  margin-bottom: 0.5rem;
}

.laboratorio-email strong {
  min-width: fit-content;
}

.laboratorio-email p {
  margin-left: 0.5rem;
  margin-bottom: 0;
}

.laboratorio-email a {
  text-decoration: none;
  color: var(--black-main);
}

.laboratorio-email a:hover {
  text-decoration: underline;
}

.laboratorio-endereco {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.laboratorio-endereco a {
  color: var(--red-main);
  text-decoration: none;
  font-weight: 500;
}

.laboratorio-endereco a:hover {
  text-decoration: underline;
}

.laboratorios-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.laboratorios-empty h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: var(--black-main);
}

.laboratorios-empty p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.laboratorio-detalhe {
  max-width: 720px;
}
