/*!
 * Versão: 1.0.1
 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 18px;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

.busca-box {
  max-width: 920px;
  margin: 0 auto;
  background: #efe2e8;
  border-radius: 18px;
  padding: 32px;
}

.filtro-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filtro-form input,
.filtro-form select {
  height: 40px;
  border: 1px solid #d8c0df;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  background: #fff;
  color: #444;
}

.filtro-form input {
  flex: 1;
  min-width: 220px;
}

.filtro-form select {
  width: 250px;
}

.filtro-form button {
  height: 40px;
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  background: #7d43a8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.filtro-form button:hover {
  opacity: 0.92;
}

.aviso {
  margin: 24px 0 0;
  text-align: center;
  color: #a22c68;
  font-size: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.ativo {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-content {
  position: relative;
  width: min(92%, 760px);
  max-height: 85vh;
  overflow-y: auto;
  margin: 5vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

#modalTitulo {
  margin: 0 28px 10px 0;
  font-size: 26px;
  color: #7d43a8;
}

.resultado-resumo {
  margin-bottom: 18px;
  font-size: 15px;
  color: #666;
}

.resultado-lista {
  display: grid;
  gap: 14px;
}

.resultado-item {
  border: 1px solid #ead9ef;
  border-radius: 12px;
  padding: 16px;
  background: #faf7fc;
}

.resultado-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: #5e2d86;
}

.resultado-item p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.45;
}

.resultado-item strong {
  color: #333;
}

.resultado-vazio {
  padding: 22px;
  text-align: center;
  border: 1px dashed #d8c0df;
  border-radius: 12px;
  color: #777;
  background: #fcf9fd;
}

@media (max-width: 768px) {
  .busca-box {
    padding: 20px;
  }

  .filtro-form {
    flex-direction: column;
    align-items: stretch;
  }

  .filtro-form input,
  .filtro-form select,
  .filtro-form button {
    width: 100%;
  }

  .modal-content {
    width: 94%;
    padding: 22px 18px 18px;
  }

  #modalTitulo {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .busca-box {
    padding: 20px;
  }

  .filtro-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filtro-form input,
  .filtro-form select,
  .filtro-form button {
    width: 100%;
    min-width: 100%;
    flex: none;
  }

  .modal-content {
    width: 94%;
    padding: 22px 18px 18px;
  }

  #modalTitulo {
    font-size: 22px;
  }
}
a {
  color: #7d43a8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#modalTitulo {
  margin: 0 0 18px;
  font-size: 26px;
  color: #7d43a8;
}