/*-------------============= MAIN =============-----------*/
  #comp-productos{
    position: relative;
  }

/*========== FILTROS =======*/
  .filtros{
    white-space: nowrap;
    overflow-x: auto;
    padding: 20px 0;
    text-align: center;
  }
  .filtro{
    width: 19%;
    display: inline-block;
    cursor: pointer;
  }
  .filtro-icono{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 60px;
    height: 60px;
    padding: 3px;
    border-radius: 50%;
    border: 1px solid #aaa;
  }
  .filtro-icono span{
    border-radius: 50%;
    background-color: #072130;
    width: 60px;
    height: 52px;
    display: block;
    margin: auto;
    background-size: 40px 40px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .filtro-nombre{
    display: block;
    margin-top: 5px;
    text-align: center;
    font-family: serif;
    font-style: italic;
    font-size: 0.8rem;
  }

/*========== BARRA BÚSQUEDA =======*/

  .barra-busqueda{
    /*position: absolute;*/
    /*top: 0;*/
    background-color: white;
    /*width: 100%;*/
    /*padding: 10px;*/
    /*display: block;*/
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  #input-buscar{
    background-color: #eee;
    border-radius: 5px;
    border: 0;
    padding: 5px;
    font-size: 1rem;
  }
    .search.show{
      display: block;
    }

/*========== LISTA =======*/
  div > img{
    border: 1px solid white;
  }
  
  #productos{
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(8rem, 1fr) );
    grid-auto-rows: 1fr;
    grid-gap: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
    /*height: 80vh;*/
    /*overflow-y: auto;*/
    /*overflow-x: hidden;*/
  }

  #productos li{
    width: 100%;
    /*height: 140px;*/
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: flex-end;
    /*max-width: 160px;*/
  }
    
  .producto a,
  .producto span{
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
  }
  .producto-nombre{
    /*position: absolute;*/
    width: 100%;
    bottom: 0;
    background-color: white;
    color: black;
    text-align: center;
    margin: 0;
    font-size: 0.7rem;
    line-height: 0.8rem;
    white-space: nowrap;
  }

/*========== CONTACTA =======*/
.contacta{
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.contacta a{
  display: inline-block;
  margin: auto;
  width: 300px;
  margin: 0 auto;
  padding: 20px;
  border: 3px solid #333;
  text-align: center;
  background-color: #ddd;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 1.5rem;
  color: #333;
}

/*========== RECOMIENDAN =======*/
.recomendaciones{
  text-align: center;
  margin: 50px 0;
}
.recomendaciones h4{
  font-size: 2rem;
  font-family: serif;
}
.recomendaciones img{
  width: 100%;
  display: block;
}
