/* ===== VIP PAGE - GOLDEN THEME ===== */
:root {
    --gold-primary: #d4af37;
    --gold-secondary: #f9e27d;
    --gold-dark: #aa841e;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --premium-black: #050505;
}

.vip-page {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    min-height: 100vh;
}

/* Menu Lateral VIP */
.nav-item-vip {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.nav-item-vip:hover, .nav-item-vip.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary)) !important;
    color: var(--premium-black) !important;
    border-color: var(--gold-secondary) !important;
    box-shadow: 0 0 15px var(--gold-glow) !important;
    transform: scale(1.05);
}

/* Main Content VIP */
.vip-page .main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Cartão VIP Flutuante */
.vip-card-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    z-index: 1;
}

/* Aura Dourada ao redor do cartão */
.vip-card-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-secondary), var(--gold-primary));
    border-radius: 24px;
    z-index: -1;
    filter: blur(25px);
    opacity: 0.6;
    animation: gold-pulse 4s infinite alternate;
}

@keyframes gold-pulse {
    0% { opacity: 0.4; filter: blur(20px); }
    100% { opacity: 0.8; filter: blur(35px); }
}

.vip-card {
    background-color: var(--premium-black);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 3rem;
    color: var(--text-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
}

.vip-header {
    margin-bottom: 2.5rem;
}

.vip-bot-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    box-shadow: 0 0 30px var(--gold-glow);
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.vip-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(to right, var(--gold-secondary), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.vip-subtitle {
    color: var(--gold-secondary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Lista de Funções VIP */
.vip-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-top: 3rem;
}

.vip-feature-category {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    grid-column: 1 / -1;
}

.vip-feature-category h3 {
    color: var(--gold-secondary);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.vip-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.vip-feature-item:hover {
    color: var(--gold-secondary);
}

.vip-feature-item i, .vip-feature-item::before {
    content: '✦';
    color: var(--gold-primary);
}

/* Seção +18 Premium */
.vip-adult-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px dashed var(--gold-dark);
}

.vip-adult-title {
    color: #ff4d4d;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vip-adult-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.adult-tag {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffb3b3;
}

.vip-cta {
    margin-top: 3.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-secondary));
    color: var(--premium-black) !important;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    font-weight: 800;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px var(--gold-glow);
}

/* Responsividade VIP */
@media (max-width: 768px) {
    .vip-page .main-content {
        padding: 1rem;
        min-height: auto;
        display: block; /* Mudar para block para evitar bugs de alinhamento no mobile */
    }

    .vip-card-container {
        margin: 1rem auto;
    }

    .vip-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .vip-bot-image {
        width: 120px;
        height: 120px;
    }

    .vip-title {
        font-size: 2rem;
    }

    .vip-subtitle {
        font-size: 0.9rem;
    }

    .vip-features-grid {
        grid-template-columns: 1fr; /* Uma coluna no mobile para melhor leitura */
        gap: 1rem;
        margin-top: 2rem;
    }

    .vip-feature-category h3 {
        font-size: 1.25rem;
    }

    .vip-feature-item {
        font-size: 0.85rem;
    }

    .vip-adult-section {
        padding: 1.5rem 0.5rem;
        margin-top: 2rem;
    }

    .adult-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }

    .btn-gold {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%; /* Botão ocupa toda a largura no mobile */
    }
}
