.documentos-archive {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.documentos-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 50px;
  list-style: none;
  margin-inline: 10vw;
}

.documentos-list li {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 7px rgba(0, 0, 0, 0.2);
}
.doc-img{
  aspect-ratio: 16/7;
  width: 100%;
  object-position: top;
  object-fit: cover;
  background-position: top;
}

.documento-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.doc-info{
  padding-inline: 10%;
  padding-block: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.doc-title{
  padding-block: 20px;
  text-align: center;
  color: #15a69c;
  font-size: 1.3em;
  font-weight: 700;
}
.documentos-list a {
  display: grid;
  place-content: center;
  padding: 10px;
}

.documentos-list a:hover {
  filter: saturate(2.0);
}

.tabs-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding-inline: 3vw;
  margin: 0;
}
.tabs-list li{
  text-align: center;
  min-width: fit-content;
  width: 10%;
}

.tabs-list li a {
  text-decoration: none;
  padding: 13px 15px;
  font-size: large;
  font-weight: 600;
  display: block;
  border: 0px solid transparent;
  border-radius: 8px;
  background: #dadada;
  color: #333;
}

.tabs-list li.active a {
  background: #f19100;
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  color: white;
  pointer-events: none;
}

.tabs-list li:not(.active) a:hover{
  background: #eaeaea;
  pointer-events: all;
}

.documentos-list {
  list-style: none;
  padding: 0;
}

.documentos-list li {
  margin-bottom: 10px;
}

#searchDoc{
  display: flex;
  justify-content: center;
  width: 50%;
  margin-inline: auto;
}

#searchDoc .searchText{
  width: 90%;
  border-radius: 6px 0px 0px 6px ;
  background-color: #dadada;
  border: 0px solid transparent;
  padding-inline: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: black;
}

#searchDoc .searchText::placeholder{
  color: #3b3b3b;
}

#searchDoc .searchButton{
  width: 50px;
  height: 50px;
  border-radius: 0px 6px 6px 0px ;
  border: 0px solid transparent;
  background: #f19100;
  color: white;
}

#searchDoc .searchButton:hover{
  background: #e57f00;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .documentos-list{
    margin-inline: 0; 
    grid-template-columns: 1fr;
  }
  .doc-info{
    padding-block: 5px 15px;
  }
  
}