.itens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.item-row {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 2rem);
    justify-content: space-between;
    align-items: center;
    background: url(../_img/ui/backgrounds/bg_home.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    /* box-shadow: 0px 0px 10px rgba(0,0,0,1); */
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 3rem;
    text-shadow: 0px 0px 10px rgba(0,0,0,1);
}

.item-info {
    flex-grow: 1;
    padding: 1rem;
    max-width: 50%;
}

.item-row img {
    background: url(../_img/ui/uzu.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.battlepass-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* width: 320px; */
}

.battlepass-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 280px;
    justify-content: space-around;
    align-items: center;
    background: url(../_img/ui/backgrounds/bg_home.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    /* box-shadow: 0px 0px 10px rgba(0,0,0,1); */
}

.battlepass-item-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}