/* BUSCA PAGE */
main.acervo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.acervo .topContent {
  padding: 50px 0 0px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 100vh;
  overflow-y: scroll;
}
main.acervo header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
main.acervo header h1 {
  font-family: "Poppins-Black";
  color: #393939;
  font-size: 36px;
}

.acervo .contentacervo {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}
.acervo .contentacervo .acervoBox {
  width: 90%;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  border: 1px solid black;
  gap: 15px;
  align-items: center;
}
/*.acervo .contentacervo .acervoBox > img {
  width: 24px;
}*/
.acervo .contentacervo .acervoBox input[type="text"] {
  width: 100%;
}
.acervo .contentacervo .acervoBox input[type="text"]::placeholder {
  color: #393939;
  font-family: "Poppins-Medium";
  font-size: 16px;
}
.acervo .contentacervo .acervoBox input:focus {
  color: #393939;
  font-family: "Poppins-Medium";
  font-size: 16px;
}
.acervo .contentacervo .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 30px;
}
.acervo .contentacervo .items a{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.acervo .contentacervo .items a > img{
	width: 100%;
	flex: auto;
	border-radius: 10px;
	min-height: 272px;
	/* height: 271px; */
	object-fit: cover;
	object-position: center left;
}
.acervo .contentacervo .items a > h2 {
  color: #393939;
  font-size: 14px;
  font-family: "Poppins-Bold";
  line-height: 18px;
  margin-top: 10px;
  margin-bottom: 13px;
}
footer.acervo {
  display: none;
}
@media (max-width:700px){
  footer.acervo {
    max-width: 700px;
    width: 100%;
    padding: 30px;
    background: rgb(82, 166, 210);
    background: linear-gradient(
      180deg,
      rgba(82, 166, 210, 0) 0%,
      rgba(255, 255, 255, 1) 100%
    );
    position: fixed;
    bottom: 0px;
  }
  footer.acervo .menu {
    background-color: #3757a0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-radius: 10px;
  }
}
@media (max-width:1000px){
  .acervo .contentacervo .items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width:700px){
  .acervo .contentacervo .items {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width:530px){
  .acervo .contentacervo .items {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width:350px){
  .acervo .contentacervo .items {
    grid-template-columns: repeat(1, 1fr);
}
}
#returnSearch{
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}


@keyframes fadeOut {
  from {opacity: 1;}
  to {opacity: 0;}
}

loading-info {
  display:flex;
  align-items:center;
  justify-content: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color:rgba(0,0,0,.9);
  width: 100px;
  height: 36px;
  border-radius: 4px;
  gap: 5px;
  color: white;
  font-family: arial;
  font-weight: bold;
  font-size: 13px;
  animation-name: fadeOut;
  animation-duration: 1.5s;
  animation-timing-function: ease-in;
}
