.article-offers {
   padding-bottom: 40px;
}

.container-offers {
    padding: 0 15px 0 15px;
}

.offers-group-title {
    margin-bottom: 40px;
     
}

.offers-group-title > span {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    color: var( --font-top-span-offer-color);
    text-align: center;
}

.offers-group-title > h2 {
    margin-bottom: 8px;
    font-size: 30px;
    color: var(--font-title-offer-color);
    font-weight: 400;
    text-size-adjust: 100%;
    text-align: left;
    line-height: 36px;
    text-align: center;
}

.offer-thumb {
    height: 333px;
    overflow: hidden; /* tudo que sair fora da div ficará escondido */
}

.offer-thumb > img:hover {
  transform: scale(1.1); /* Imagem aumenta de tamanho */
  transition: 0.5s;
}

.offer-thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.offer-container {
    margin-bottom: 30px;
}

.offer-container > h2 {
    margin-top: 32px;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 400;
    color: var(--font-title-offer-container-color);
}

.offer-container > ul > li {
    position: relative;
    padding-left: 23px;
    color: var(--font-li-offer-ul-color);
}

.offer-container > ul >li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #4D4D4D;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Centraliza a bolinha no meio do li no eixo Y */
    border-radius: 50%;
}

.offer-container > ul {
    color: var(--branco-transparente);
    margin-top: 17px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    list-style-type: none;  
}

.button-offer {
    width: 100%;
    text-align: center;
}


@media only screen and (min-width:768px) {
    .offers {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

    .offer {
        width: 324px;
    }

    .offer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}