
.filter-menu {
  padding: 4vw;
}

.consulta{
  display: flex;
  width: 100%;
}


.consulta .area{
  width: 50%;

}

.pesq{
  width: 100%;
}

.pesq .form{
  width: 100%;
}

.titulo{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}

.pesq{
  width: 98%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pesq input, .pesq select{
  width: 200px;
  border: 1px solid #0077ff;
  padding: 10px 5px;
  margin: 5px;
  outline: none;
  border-radius: 5px;
}

.form select option[disabled] {
  color: rgb(197, 195, 195); /* Altera a cor do texto para cinza quando a opção desabilitada está selecionada */
}


.pesq .check{
  width: clamp(50px, 95%, 300px);

  display: flex;
  justify-content: space-evenly;
}

.pesq .check p{
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.basic-btn  {
  cursor: pointer;
  --color: #0077ff;
  font-family: inherit;
  display: inline-block;
  width: 6em;
  height: 2.6em;
  line-height: 2.5em;
  overflow: hidden;
  margin: 20px;
  font-size: 13px;
  z-index: 1;
  color: var(--color);
  border: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  margin: 0;
  padding: 0;
}

.basic-btn::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}

.basic-btn:hover {
  color: white;
}

.basic-btn:before {
  top: 100%;
  left: 100%;
  transition: .3s all;
}

.basic-btn:hover::before {
  top: -30px;
  left: -30px;
}

.area-result {
  padding: 0 4vw;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.area-result .espaco-cultural {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}

.info-container {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.area-result .espaco-cultural .img-container img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  cursor: pointer;
}

.user-information {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}

.user-information p {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}

.dia {
  background: #038fc6;
  border-radius: 4px;
  padding: 4px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-right: 6px;
}

.atividade-cultural {
  font-size: 12px;
}

.atividade-cultural span {
  font-weight: 700;
  font-size: 14px;
}

.Paginate {
  justify-content: start;
  padding: 40px;
  width: min-content;
}

@media(max-width:800px) {
  .filter-menu {
    padding: 80px 20px 20px 20px;
  }

  .pesq {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 6px;
  }

  .pesq input, .pesq select {
    margin: 0;
  }

  .form .titulo {
    margin-bottom: 10px;
  }

  .area-result {
    padding: 20px;
  }

  .Paginate {
    justify-content: start;
    padding: 20px;
  }

  
.area-result .espaco-cultural .img-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  cursor: pointer;
}
}
