.other-item {
    width: 150px;
    height: 150px;
    cursor: pointer;
    border: 3px solid transparent;
    margin: 10px;
}
.other-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.other-item:hover img {
    transform: scale(1.1);
}

.other-item.active img{
    border: 3px solid #f9d616;
}

.botaoNovoVermelho {
    background-color: #f91616;
    color: #000;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.botaoNovoVermelho:hover {
    background-color: #b10f0f;
    color: #000!important;
}