.shops {
  display: flex;
  flex-direction: column;
  .navegacion {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 20px;
    padding-bottom: 1rem;
    padding-right: 10%;    
    img {
      width:25px;
    }
  }
  .contenedor {
    display: flex;
    margin-right: unset;
    margin-left: auto !important;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 1rem;    
  }
  .shop-item:hover {
      filter: grayscale(0);
      transform: scale(1.1);
      transition: all 0.5s;
   }    
  .shop-item {
    width: 180px;
    min-width: 180px;
    margin-left: 20px;
    filter: grayscale(1);
    transition: all 0.5s;
    img {
      width: 100%;
      height: auto;
    }
  }
  .nombre {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #2C2C2C;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .shops {
    margin-bottom: 1rem;
    .contenedor {
      width: 100vw !important;
      overflow-x: scroll !important;
      padding-bottom: 1rem;
    .shop-item {
      min-width: 38%;
      max-width: unset;
    }
    .nombre {
      font-size: 12px;  
    }
  }
}
