/* ========== GRUPO VIP ========== */
#GrupoVip {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #0f1a2e 0%, #060b14 100%);
    position: relative;
    overflow: hidden;
}

.vip-fullpage {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logos flotantes */
.telegram-logo {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-logo i {
    color: #00bfff;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.25));
}

.telegram-logo .aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
}

/* Contenido */
.vip-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
}

.vip-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 191, 255, 0.7);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.vip-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.telegram-glow {
    color: #00bfff;
    text-shadow: 0 0 30px #00bfff, 0 0 60px rgba(0, 191, 255, 0.3);
}

.vip-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #b0d8ff;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Lista de características */
.vip-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: inline-block;
    text-align: left;
}

.vip-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: #c8e4ff;
    padding: 6px 0;
}

.vip-features li i {
    font-size: 1.3rem;
    color: #00bfff;
    width: 1.8rem;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.25));
}

/* Botón */
.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(45deg, #0088cc, #00bfff);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 16px 50px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.btn-telegram i {
    font-size: 1.6rem;
}

.btn-telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 191, 255, 0.6);
    background: linear-gradient(45deg, #0099dd, #33ccff);
}

/* Responsive */
@media (max-width: 768px) {
    .vip-features li {
        font-size: 0.95rem;
        gap: 10px;
    }
    .vip-features li i {
        font-size: 1.1rem;
        width: 1.5rem;
    }
    .btn-telegram {
        font-size: 1.1rem;
        padding: 14px 35px;
    }
    .vip-cursor {
        font-size: 2.8rem;
    }
}