body {
    margin: 0;
    background-color: #222
}

.carousel-container {
    position: relative;
    width: 100%;
    font-family: monospace;
    overflow: hidden
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 1
}

button {
    position: absolute;
    bottom: 40px;
    left: 15px
}

.carousel-container::before {
    background: linear-gradient(to right, #0009, #0000);
    left: 0
}

.carousel-container::after {
    background: linear-gradient(to left, #0009, #0000);
    right: 0
}


.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out
}

.carousel-item {
    min-width: 140px;
    width: 140px;
    height: 200px;
    padding: 0px;
    color: #fff;
    background: linear-gradient(to bottom, #444, #222);
    border: 1px solid #777;
    box-shadow: 0 0 10px #000;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    transition: all 0.1s ease;
    box-sizing: border-box
}

.carousel-item img {
    margin-top: 10px;
    width: 129px;
    height: 129px
}

.carousel-item h3 {
    padding: 2px 0 0 0;
    margin-top: 5px;
    background: linear-gradient(to right, #111, #333, #111);
    border-top: 1px solid #777;
    box-shadow: 0 0 50px #000;
    height: 50px
}

.carousel-item p {
    color: #999;
    margin-top: -44px
}

.carousel-item:hover {
    transform: scale(1.1);
    margin-top: 10px;
    background: linear-gradient(to bottom, #777, #333);
    border: 4px solid #fff
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 70px;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 2;
    opacity: 0;
    user-select: none;
    transition: color 0.5s ease
}

.carousel-arrow:hover {
    opacity: 1;
    color: #3498db
}

.prev {
    left: 10px
}

.next {
    right: 10px
}

.catalogo {
    margin-top: -17px;
    box-shadow: 0 0 50px #000
}

.catalogo h1 {
    font-family: monospace;
    color: #fff;
    margin-left: 10px
}

@media only screen and (max-width: 768px) {
    .prev,
    .next {
        opacity: 1
    }
}