/* LAYOUT, CORES E FONTES DA FUNCIONALIDADE PROMOÇÕES */

.lifetime-promos {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 80px 20px;
    background-color: #ffffff;
}

.lifetime-promos__container {
    max-width: 1100px;
    margin: 0 auto;
}

.lifetime-promos__main-title {
    font-size: clamp(28px, 4vw, 42px);
    color: #ce327e;
    margin-bottom: 20px;
}

.lifetime-promos__main-title .font-light {
    font-weight: 400;
}

.lifetime-promos__main-title strong {
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(206, 50, 126, 0.25);
}

.lifetime-promos__divider {
    border: none;
    border-top: 1px solid #d1d5db;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 60px auto;
}

.lifetime-promos__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.promo-card {
    flex: 1;
    min-width: min(100%, 280px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-card__image-side {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.promo-card__image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background-color: #ffffff;
}

.promo-card__image-wrapper img {
    width: 200%;
    height: 200%;
    object-fit: contain;
    display: block;
}

.promo-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #ce327e;
    margin-bottom: 12px;
}

.promo-card__text {
    font-size: 16px;
    color: #8c8c8c;
    line-height: 1.5;
    max-width: 280px;
}

.promo-card__text strong {
    font-weight: 700;
    color: #6b6b6b;
}

.lifetime-promos__footer {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 800;
    color: #a3a3a3;
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .lifetime-promos {
        padding: 60px 20px;
    }

    .lifetime-promos__grid {
        gap: 40px 20px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .lifetime-promos {
        padding: 40px 16px;
    }

    .lifetime-promos__divider {
        margin: 0 auto 40px auto;
    }

    .lifetime-promos__grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 50px;
    }

    .promo-card__text {
        max-width: 100%;
        padding: 0 10px;
    }
}