/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes float-gem {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-10px) rotate(3deg); }
    66%       { transform: translateY(-5px) rotate(-2deg); }
}
@keyframes glow-pulse-icon {
    0%, 100% { filter: drop-shadow(0 0 4px currentColor); }
    50%       { filter: drop-shadow(0 0 14px currentColor) drop-shadow(0 0 28px currentColor); }
}
@keyframes shine-sweep {
    0%   { left: -80%; }
    100% { left: 160%; }
}
@keyframes particle-rise {
    0%  { transform: translateY(0) scale(1);    opacity: 0; }
    8%  { opacity: 1; }
    90% { opacity: .5; }
    100%{ transform: translateY(-130px) scale(.4); opacity: 0; }
}
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -25px) scale(1.05); }
    66%       { transform: translate(-12px, 12px) scale(.96); }
}
@keyframes pulse-badge {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 12px currentColor; }
    50%       { transform: translateX(-50%) scale(1.07); box-shadow: 0 0 24px currentColor; }
}
@keyframes termo-shake {
    0%,100% { transform: translateX(0); }
    20%     { transform: translateX(-7px); }
    40%     { transform: translateX(7px); }
    60%     { transform: translateX(-4px); }
    80%     { transform: translateX(4px); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .28s; }
.reveal-d4 { transition-delay: .38s; }

/* ============================================================
   HERO — ORBS E PARTÍCULAS
   ============================================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-orbs, .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: orb-drift ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(0,200,83,.08);  top: -180px; right: -80px;  animation-duration: 10s;  }
.hero-orb-2 { width: 320px; height: 320px; background: rgba(88,101,242,.07); bottom: -100px; left: -60px; animation-duration: 13s; animation-delay: 2s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(0,200,83,.05);  top: 40%; left: 20%;       animation-duration: 8s;  animation-delay: 4s; }

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent, #00c853);
    animation: particle-rise linear infinite;
    pointer-events: none;
}

/* ============================================================
   VIP CARDS — UPGRADE COMPLETO
   ============================================================ */
.vip-card {
    position: relative;
    overflow: hidden;
}

/* Shine no hover */
.vip-card::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
    pointer-events: none;
    z-index: 1;
}
.vip-card:hover::after { animation: shine-sweep .6s ease forwards; }

/* Garante que o conteúdo fica acima do shine */
.vip-card > * { position: relative; z-index: 2; }

/* Hover elevado com glow colorido */
.vip-card:hover {
    border-color: var(--vip-color, var(--accent));
    transform: translateY(-8px);
    box-shadow:
        0 6px 0 -3px var(--vip-color, var(--accent)),
        0 28px 60px rgba(0,0,0,.5),
        0 0 50px color-mix(in srgb, var(--vip-color, #00c853) 18%, transparent);
}

/* Ícone flutuante */
.vip-icon {
    font-size: 3rem !important;
    animation: float-gem 4s ease-in-out infinite;
    display: inline-block;
}
.vip-icon i { animation: glow-pulse-icon 3s ease-in-out infinite; }

/* Preço em destaque */
.vip-price {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: .45rem 1.1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Badge "Mais Popular" */
.vip-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vip-color, var(--accent));
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .25rem 1.1rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .06em;
    text-transform: uppercase;
    animation: pulse-badge 2.2s ease-in-out infinite;
    z-index: 3;
}

/* Card em destaque */
.vip-card-featured {
    border-color: var(--vip-color, var(--accent)) !important;
    box-shadow:
        0 0 0 1px var(--vip-color, var(--accent)),
        0 16px 48px color-mix(in srgb, var(--vip-color, #00c853) 18%, transparent);
}

/* ============================================================
   STEP CARDS — UPGRADE
   ============================================================ */
.step-card {
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.step-card:hover {
    border-color: rgba(0,200,83,.5);
    box-shadow: 0 10px 36px rgba(0,0,0,.35);
}
.step-icon {
    animation: float-gem 4s ease-in-out infinite;
    display: inline-block;
}

/* ============================================================
   PACOTE CARDS — SHINE
   ============================================================ */
.pacote-card {
    position: relative;
    overflow: hidden;
}
.pacote-card::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
    pointer-events: none;
}
.pacote-card:hover::after { animation: shine-sweep .6s ease forwards; }
.pacote-icon {
    animation: float-gem 4s ease-in-out infinite;
    display: inline-block;
}
.pacote-destaque .pacote-icon {
    animation: float-gem 3s ease-in-out infinite, glow-pulse-icon 2.5s ease-in-out infinite;
}
.pacote-destaque:hover {
    box-shadow:
        0 6px 0 -3px var(--accent),
        0 20px 52px rgba(0,200,83,.2);
}

/* ============================================================
   ITEM CARDS — SHINE
   ============================================================ */
.item-card {
    position: relative;
    overflow: hidden;
}
.item-card::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
    pointer-events: none;
}
.item-card:hover::after { animation: shine-sweep .55s ease forwards; }
.item-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ============================================================
   STAT CARDS
   ============================================================ */
.stat-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

/* ============================================================
   TERMO DO CHECKOUT
   ============================================================ */
.termo-checkout {
    background: rgba(234,179,8,.05);
    border: 1px solid rgba(234,179,8,.22);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: border-color .35s, background .35s, box-shadow .35s;
}
.termo-checkout.shake {
    animation: termo-shake .4s ease;
}
.termo-checkout.aceito {
    background: rgba(0,200,83,.06);
    border-color: rgba(0,200,83,.35);
    box-shadow: 0 0 20px rgba(0,200,83,.08);
}
.termo-check-label {
    display: flex;
    align-items: center;
    gap: .7rem;
    cursor: pointer;
    padding: .55rem .7rem;
    border-radius: 8px;
    margin-top: .75rem;
    transition: background .2s;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: .92rem;
}
.termo-check-label:hover { background: rgba(255,255,255,.04); }
.termo-check-input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 5px;
}

/* Botão desabilitado por termos */
.btn-accent:disabled, .btn-buy:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
