.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    
    margin: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.card {    
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.card img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card img:hover {
    transform: scale(1.05);
}

.card p {    
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color: cornflowerblue;
}

/* Responsivo */
@media (max-width: 900px) {
    .card {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .card {
        min-width: 100%;
    }
}

.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10;    
}

.arrow.left { left: 0; }
.arrow.right { right: 0; }

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}


.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 33.33%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;    
}

.card img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card img:hover {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
    .card { flex: 0 0 50%; }
}

@media (max-width: 600px) {
    .card { flex: 0 0 100%; }
}

.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10;    
}




.arrow.left { left: 20px; }
.arrow.right { right: 20px; }


.card a,
.card a:visited,
.card a:hover {
    text-decoration: none;
    color: inherit;
}