.recursos {
  display: flex;
  margin-top: 10px;
  height: 100%;
  padding-top: 10px;
}
/* BLOQUE IZQUIERDO */
.bloquelateraliz {
  display: flex;
  flex-direction: column;
  width: 20%;
  margin-right: 20px;
}
.bloquelateraliz h1 {
  padding: 10px 0 0 20px;
}

/* BLOQUE DERECHO */
.bloquelateralde {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.filtros {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  border: 2px solid #333333;
  gap: 10px;
  margin: 0 20px 20px 0;
}
.filtros .an {
  margin-left: 40px;
}
.filtros select:hover {
  cursor: pointer;
}

#limpiarFiltros {
  border: none;
  background-color: #333333;
  color: white;
  padding: 10px 20px 10px 20px;
  transition: 0.3s;
}

#limpiarFiltros:hover {
  font-weight: bold;
  background-color: black;
  cursor: pointer;
}

/* //menu lateral*/

.buscador-lateral {
  background-color: #333333;

  height: 100%;
  min-height: 900px;

  margin-top: 20px;
}

.menuu {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
}

.menuu li,
.submenu li {
  border-bottom: 1px solid #5f5f5f; 
  padding: 5px 0; 
  width: 100%;
}

:root {
  --cada-item: 38px;
  --cantidad-items: 0;
}

.buscador-lateral ul ul {
  height: 0px;
  overflow: hidden;
  transition: 0.3s;
  counter-reset: items;
}

.buscador-lateral ul ul li {
  counter-increment: items;
}

.buscador-lateral ul li:hover ul {
  height: calc(var(--cantidad-items) * var(--cada-item)+ 0.5);
  margin-left: 30px;
}

.buscador-lateral button {
  background: transparent;
  color: white;
  font-size: 16px;
  border: none;
  margin-top: 10px;
}

.buscador-lateral button:hover {
  cursor: pointer;
  font-weight: bold;
}

/* ELEMENTOS */
.elemento-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.elemento {
  border: 1px solid #cdcdcd;
  width: 300px;
}

.elemento img {
  width: 100%;
  height: 150px;
  margin-bottom: -5px;
  background-color: #f0f0f0;
}

.descarga {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
.descarga p {
  font-size: 13px;
}

.descarga button {
  background-color: #333333;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
}
.descarga button:hover {
  font-weight: bold;
}
