/* === SEÇÃO BÔNUS EXCLUSIVO === */
.section-bonus {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: #14213D;
}

/* === FUNDO COM OPACIDADE === */
.bonus-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../image/frame_6/img_fundo_bonus_exclusivo.png") center/cover no-repeat;
    opacity: 0.45;
    z-index: 0;
}
.container-bonus {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
/* === LISTA DE BÔNUS === */
.bonus-list {
    align-items: center;
    background-color: #14213D;
    padding: 20px;
    border-radius: 30px;
    border: 3px solid #FFF;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.bonus-list ol {
    list-style: decimal;
    list-style-position: inside ;
    padding-left: 20px;
    margin: 0 auto;
    max-width: 900px;
}

.bonus-list li {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 10px;
}

/* === RESPONSIVIDADE (MOBILE-FIRST) === */
@media (min-width: 768px) {
    .section-bonus {
        padding: 80px 20px;
    }
    .bonus-list {
        padding: 30px;
        border-radius: 45px;
    }
    .bonus-title {
        font-size: 40px;
    }
    .bonus-list li {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .bonus-title {
        font-size: 50px;
    }
    .bonus-list li {
        font-size: 24px;
    }
    .btn-primary {
        width: auto;
    }
}
