/* Portal do Parceiro - Coming Soon Styles */
.benefit-card-coming-soon {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1e 100%) !important;
    border: 2px solid var(--gold-primary) !important;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3) !important;
    animation: pulseGlow 3s ease-in-out infinite;
    overflow: hidden;
}

.benefit-card-coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
}

.benefit-card-coming-soon * {
    position: relative;
    z-index: 1;
}

.benefit-card-coming-soon h3,
.benefit-card-coming-soon p {
    color: #ffffff !important;
}

.benefit-icon-featured {
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
    transform: scale(1.1);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    }
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}