/* === SEÇÃO BÔNUS JÚPITER === */
.section-bonus {
    /* Gradient Background - Light Theme */
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 50%, #ffd4db 100%);
    overflow: hidden;
    position: relative;
    color: #333333;
}

/* Background Glow */
.bonus-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Badges */
.badge-bonus {
    background-color: #D4AF37;
    color: #1a0506;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Glass Card - Updated for Light Theme */
.glass-card-bonus {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Lighter shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card-bonus:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Image Wrapper */
.bonus-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.bonus-img {
    transition: transform 0.5s ease;
    width: 100%;
}

.glass-card-bonus:hover .bonus-img {
    transform: scale(1.05);
}

/* Typography - Updated for Light Theme */
.text-gold {
    color: #d4af37 !important;
}

.text-white-opacity {
    color: #444444 !important;
    /* Dark text for readability */
}

/* Títulos */
.section-bonus .section-title {
    color: #2c2c2c;
}

.section-bonus .h4,
.section-bonus .h3 {
    color: #333333;
}

/* CTA Button - Green Variant */
.icon-pulse-wrapper {
    position: relative;
    overflow: hidden;
}

@keyframes pulse-glow-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.btn-mars-glow {
    /* Overriding class name to keep HTML meaningful, but styling as green */
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #FFFFFF !important;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: pulse-glow-green 2s infinite;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-mars-glow:hover {
    background: linear-gradient(135deg, #218838 0%, #1fa885 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: #FFFFFF !important;
}

/* Responsive */
@media (max-width: 991px) {
    .section-bonus {
        text-align: center;
    }

    .bonus-content {
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .section-bonus .list-unstyled li {
        justify-content: flex-start;
        text-align: left;
    }

    .btn-mars-glow {
        width: 100%;
    }
}