.flex-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.gratis-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    width: 180px;
    background-color: #FEF6F6;
    border: 1px solid #efefef;
    border-radius: 10px;
}

.gratis-item-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    width: 180px;
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
}

.gratis-btn-list {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    width: 180px;
    background-color: #efefef;
    border: 1px solid #efefef;
    border-radius: 10px;
}

@media(max-width:768px) {
    .flex-list {
        gap: 0.5rem;
    }

    .gratis-item {
        width: 140px;
    }

    .gratis-item-white {
        width: 140px;
    }

    .gratis-btn-list {
        width: 140px;
    }
}

.gratis-item-img {
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #efefef;
}

.gratis-item-price {
    font-size: 13px;
    height: 1rem;
    text-align: center;
    margin-bottom: 10px;
}

.gratis-item-name {
    font-weight: 600;
    font-size: 13px;
    height: 3rem;
    text-align: center;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gratis-btn {
    font-size: 12px !important;
    font-weight: 600;
    color: #fff;
    background-color: #393939;
    border-color: #393939
}
.gratis-btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fbfbfb;
}