/* VIP CSS - Chefe das Lives */

.hero-vip {
    min-height: 80vh;
}

.badge-gold {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

.glow-gold {
    background: #FFD700 !important;
    color: #040B14 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    border-color: #FFD700 !important;
}

.glow-gold:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-2px);
}

/* Benefícios Grid */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: #FFD700;
    margin-bottom: 25px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--color-text-on-dark);
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-card {
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    border-top: 4px solid #FFD700;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.payment-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.payment-header h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-text-on-dark);
    margin-bottom: 25px;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #FFD700;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.payment-body p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Área do PIX */
.pix-area {
    margin-top: 35px;
    animation: fadeInPix 0.5s ease forwards;
}

.pix-area.hidden {
    display: none;
}

.pix-qrcode {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.pix-qrcode img {
    display: block;
    width: 250px;
    height: 250px;
}

.pix-copy-paste {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.pix-copy-paste input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--color-text-on-dark);
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.95rem;
    outline: none;
}

.pix-copy-paste input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #FFD700;
    color: #040B14;
}

.pix-timer {
    color: var(--color-text-muted);
    font-size: 1rem;
}

#timer {
    color: #00FF88;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
}

@keyframes fadeInPix {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .payment-card {
        padding: 30px 20px;
    }
    .pix-copy-paste {
        flex-direction: column;
    }
    .copy-btn {
        padding: 15px;
        justify-content: center;
    }
}
