/* ==========================================================================
   VELQERIX · AURORA UI  (v2)
   Capa de rediseño global. Se carga DESPUÉS del <style> inline de cada
   página, por lo que gana la cascada. No cambia el HTML ni la lógica PHP.
   Estética: fondo espacial con aurora animada, glassmorphism, glow neón,
   gradiente eléctrico indigo -> violeta -> cyan, tipografía premium.
   ========================================================================== */

/* ---------- Tokens: se redefinen las variables que usan las páginas ------- */
:root{
    --vx-bg:#05060f;
    --vx-bg-2:#080a1a;
    --vx-ink:#eef1ff;
    --vx-muted:#9aa3c7;

    --vx-i1:#6366f1;   /* indigo  */
    --vx-i2:#a855f7;   /* violeta */
    --vx-i3:#22d3ee;   /* cyan    */
    --vx-gold:#fbbf24; /* dorado premium */
    --vx-green:#34e5b0;
    --vx-danger:#ff5d6c;

    --vx-grad:linear-gradient(120deg,#6366f1 0%,#a855f7 45%,#22d3ee 100%);
    --vx-grad-soft:linear-gradient(120deg,rgba(99,102,241,.22),rgba(168,85,247,.16),rgba(34,211,238,.20));

    --vx-glass:rgba(255,255,255,.045);
    --vx-glass-2:rgba(255,255,255,.07);
    --vx-line:rgba(255,255,255,.10);
    --vx-line-strong:rgba(140,140,255,.35);
    --vx-radius:22px;
    --vx-shadow:0 24px 70px rgba(2,4,16,.55);
    --vx-glow:0 0 0 1px rgba(140,140,255,.18), 0 18px 48px rgba(99,102,241,.28);

    /* Sobrescribe los tokens heredados de las páginas */
    --bg:var(--vx-bg);
    --background:var(--vx-bg);
    --panel:var(--vx-glass);
    --card:var(--vx-glass);
    --card2:var(--vx-glass-2);
    --text:var(--vx-ink);
    --muted:var(--vx-muted);
    --primary:var(--vx-i1);
    --blue:var(--vx-i1);
    --secondary:var(--vx-i2);
    --green:var(--vx-green);
    --danger:var(--vx-danger);
    --line:var(--vx-line);
    --shadow:var(--vx-shadow);
}

/* ---------- Tipografía premium ------------------------------------------- */
body, button, input, textarea, select{
    font-family:"Inter","Segoe UI",system-ui,-apple-system,Arial,sans-serif !important;
    letter-spacing:.1px;
}
h1,h2,h3,.brand,.logo,.otitle,.hero h1,.hero-title{
    font-family:"Space Grotesk","Inter",system-ui,sans-serif !important;
    letter-spacing:-.5px !important;
}

/* ---------- Fondo espacial + aurora animada ------------------------------ */
html{scroll-behavior:smooth;}
body{
    background:var(--vx-bg) !important;
    color:var(--vx-ink) !important;
    position:relative;
    overflow-x:hidden;
}
/* capa de aurora (blobs de color que flotan) */
body::before{
    content:"";
    position:fixed;
    inset:-20% -10% -10% -10%;
    z-index:-3;
    background:
        radial-gradient(42vmax 42vmax at 12% 8%, rgba(99,102,241,.30), transparent 60%),
        radial-gradient(38vmax 38vmax at 88% 2%, rgba(168,85,247,.24), transparent 60%),
        radial-gradient(46vmax 46vmax at 78% 92%, rgba(34,211,238,.18), transparent 62%),
        radial-gradient(40vmax 40vmax at 4% 96%, rgba(99,102,241,.16), transparent 60%);
    filter:blur(6px) saturate(120%);
    animation:vxAurora 22s ease-in-out infinite alternate;
    pointer-events:none;
}
/* capa de rejilla sutil + viñeta */
body::after{
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image:radial-gradient(circle at 50% 30%,#000 0%,transparent 78%);
            mask-image:radial-gradient(circle at 50% 30%,#000 0%,transparent 78%);
    pointer-events:none;
}
@keyframes vxAurora{
    0%   {transform:translate3d(0,0,0) scale(1);}
    50%  {transform:translate3d(0,-2%,0) scale(1.06);}
    100% {transform:translate3d(0,1%,0) scale(1.03);}
}
@media (prefers-reduced-motion: reduce){
    body::before{animation:none;}
    *{animation-duration:.001s !important;}
}

/* ---------- Selección y scrollbar ---------------------------------------- */
::selection{background:rgba(168,85,247,.35);color:#fff;}
*{scrollbar-width:thin;scrollbar-color:var(--vx-i2) transparent;}
::-webkit-scrollbar{width:11px;height:11px;}
::-webkit-scrollbar-track{background:transparent;}
::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--vx-i1),var(--vx-i2));
    border-radius:999px;
    border:3px solid rgba(0,0,0,0);
    background-clip:padding-box;
}
::-webkit-scrollbar-thumb:hover{background:linear-gradient(var(--vx-i2),var(--vx-i3));background-clip:padding-box;}

/* ---------- Topbar / header ---------------------------------------------- */
.topbar,.header,.appbar{
    background:rgba(8,10,26,.72) !important;
    border-bottom:1px solid var(--vx-line) !important;
    backdrop-filter:blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter:blur(18px) saturate(140%) !important;
}
.logo,.brand{font-weight:800 !important;}
.logo span,.brand span{
    background:var(--vx-grad);
    -webkit-background-clip:text;background-clip:text;
    -webkit-text-fill-color:transparent;color:transparent;
}

/* ---------- Glass panels genéricos --------------------------------------- */
.card,.product,.box,.miniCard,.saldo-card,.hero-box,.obox,.plan,
.panel,.tile,.method,.metodo,.service,.servicio,.noti,.notif,.item-card,
.copy-box,.modal-box{
    background:var(--vx-glass) !important;
    border:1px solid var(--vx-line) !important;
    border-radius:var(--vx-radius) !important;
    backdrop-filter:blur(14px) saturate(130%);
    -webkit-backdrop-filter:blur(14px) saturate(130%);
    box-shadow:var(--vx-shadow);
    position:relative;
    transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
/* brillo superior sutil en paneles */
.card::before,.product::before,.box::before,.hero-box::before,.miniCard::before{
    content:"";
    position:absolute;inset:0;
    border-radius:inherit;
    background:linear-gradient(180deg,rgba(255,255,255,.06),transparent 34%);
    pointer-events:none;
    z-index:0;
}
/* hover lift + glow para tarjetas de producto/servicio */
.card:hover,.product:hover,.miniCard:hover,.tile:hover,.service:hover,.servicio:hover,.method:hover,.metodo:hover{
    transform:translateY(-6px);
    border-color:var(--vx-line-strong) !important;
    box-shadow:var(--vx-glow);
}

/* imagen de producto con zoom suave */
.product img,.card img,.imgbox img{
    transition:transform .5s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.product:hover img,.card:hover img,.imgbox:hover img{
    transform:scale(1.06);
    filter:saturate(115%) contrast(103%);
}

/* ---------- Botones ------------------------------------------------------ */
.btn,.buy-btn,.action,button.btn,.btn-yellow,.blue,.pill.logout,
button[type="submit"],.submit,.cta{
    position:relative;
    overflow:hidden;
    border:0;
    border-radius:15px;
    font-weight:800 !important;
    color:#0a0b1e !important;
    background:var(--vx-grad) !important;
    background-size:180% 180% !important;
    box-shadow:0 10px 30px rgba(99,102,241,.38);
    cursor:pointer;
    transition:transform .18s ease, box-shadow .3s ease, background-position .6s ease, filter .3s ease;
    isolation:isolate;
}
.btn:hover,.buy-btn:hover,.action:hover,.btn-yellow:hover,.blue:hover,
button[type="submit"]:hover,.cta:hover{
    transform:translateY(-2px);
    background-position:100% 0 !important;
    box-shadow:0 16px 42px rgba(168,85,247,.5);
    filter:brightness(1.05);
}
.btn:active,.buy-btn:active,.action:active,button[type="submit"]:active{transform:translateY(0) scale(.985);}
.btn:disabled,.buy-btn:disabled,button:disabled{opacity:.55 !important;filter:grayscale(.3);cursor:not-allowed;transform:none;}
/* barrido de brillo */
.btn::after,.buy-btn::after,.action::after,.btn-yellow::after,.cta::after{
    content:"";
    position:absolute;top:0;left:-120%;
    width:60%;height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.55),transparent);
    transform:skewX(-20deg);
    transition:left .6s ease;
    z-index:1;
}
.btn:hover::after,.buy-btn:hover::after,.action:hover::after,.cta:hover::after{left:140%;}

/* variantes oscuras / secundarias -> glass */
.btn-dark,.action.dark,.dark,.btn.dark,.btn-ghost,.back,.menu-btn,.notif-btn{
    background:var(--vx-glass-2) !important;
    color:var(--vx-ink) !important;
    border:1px solid var(--vx-line) !important;
    box-shadow:none !important;
    -webkit-text-fill-color:currentColor;
    transition:transform .2s ease, border-color .3s ease, background .3s ease;
}
.btn-dark:hover,.action.dark:hover,.dark:hover,.back:hover,.menu-btn:hover,.notif-btn:hover{
    border-color:var(--vx-line-strong) !important;
    background:rgba(255,255,255,.1) !important;
    transform:translateY(-2px);
}
.btn-dark::after,.action.dark::after,.back::after{display:none;}

/* ---------- Pills de saldo ----------------------------------------------- */
.balance,.balance-pill,.balance-mini,.pill,.badge-saldo{
    background:rgba(52,229,176,.10) !important;
    border:1px solid rgba(52,229,176,.32) !important;
    color:var(--vx-green) !important;
    border-radius:999px !important;
    font-weight:800 !important;
    backdrop-filter:blur(8px);
}

/* ---------- Badges / etiquetas promo ------------------------------------- */
.badge,.tag,.chip,.label-promo{
    background:var(--vx-grad) !important;
    color:#0a0b1e !important;
    border:0 !important;
    border-radius:999px !important;
    font-weight:800 !important;
    box-shadow:0 6px 18px rgba(168,85,247,.4);
}

/* ---------- Inputs ------------------------------------------------------- */
input,textarea,select{
    background:rgba(255,255,255,.04) !important;
    border:1px solid var(--vx-line) !important;
    color:var(--vx-ink) !important;
    border-radius:14px !important;
    transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
input::placeholder,textarea::placeholder{color:rgba(154,163,199,.7);}
input:focus,textarea:focus,select:focus{
    outline:none !important;
    border-color:var(--vx-i2) !important;
    background:rgba(255,255,255,.06) !important;
    box-shadow:0 0 0 4px rgba(168,85,247,.18), 0 0 22px rgba(99,102,241,.25) !important;
}

/* ---------- Chips de categoría / tabs ------------------------------------ */
.cat,.categoria,.filter,.tab,.chip-cat{
    transition:all .25s ease;
}
.cat.active,.categoria.active,.filter.active,.tab.active,
.cat[aria-selected="true"]{
    background:var(--vx-grad) !important;
    color:#0a0b1e !important;
    border-color:transparent !important;
    box-shadow:0 8px 22px rgba(99,102,241,.35);
}

/* ---------- Hero --------------------------------------------------------- */
.hero-box,.hero{position:relative;}
.hero-box{
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(168,85,247,.20), transparent 55%),
        radial-gradient(120% 140% at 100% 0%, rgba(34,211,238,.16), transparent 55%),
        var(--vx-glass) !important;
    overflow:hidden;
}
.hero h1,.hero-title{
    background:linear-gradient(120deg,#fff,#c9c4ff 40%,#8be9ff);
    -webkit-background-clip:text;background-clip:text;
    -webkit-text-fill-color:transparent;color:transparent;
}

/* ---------- Overlay / modales -------------------------------------------- */
.overlay,.copy-modal,.modal,.modal-bg{
    background:rgba(4,5,16,.78) !important;
    backdrop-filter:blur(10px) saturate(120%);
    -webkit-backdrop-filter:blur(10px) saturate(120%);
}
.obox,.copy-box,.modal-box{
    background:linear-gradient(180deg,rgba(20,22,48,.92),rgba(10,12,28,.92)) !important;
    border:1px solid var(--vx-line-strong) !important;
    box-shadow:0 30px 90px rgba(0,0,0,.7), var(--vx-glow) !important;
    animation:vxPop .4s cubic-bezier(.2,.9,.2,1);
}
@keyframes vxPop{from{opacity:0;transform:translateY(18px) scale(.96);}to{opacity:1;transform:none;}}

/* loader con color de marca */
.loader,.spinner{
    border-color:rgba(255,255,255,.12) !important;
    border-top-color:var(--vx-i3) !important;
    box-shadow:0 0 24px rgba(34,211,238,.35);
}

/* key-box con glow */
.key-box{
    background:rgba(52,229,176,.08) !important;
    border:1px solid rgba(52,229,176,.4) !important;
    color:var(--vx-green) !important;
    box-shadow:inset 0 0 24px rgba(52,229,176,.12);
}

/* ---------- Toast -------------------------------------------------------- */
.toast,#vxToast{
    background:rgba(14,16,38,.95) !important;
    border:1px solid var(--vx-line-strong) !important;
    border-radius:16px !important;
    box-shadow:var(--vx-shadow) !important;
    backdrop-filter:blur(12px);
}
.toast.ok{border-color:rgba(52,229,176,.5) !important;color:var(--vx-green) !important;}
.toast.bad{border-color:rgba(255,93,108,.5) !important;color:#ffc4ca !important;}

/* ---------- Dropdown menú ------------------------------------------------ */
.dropdown{
    position:fixed !important;
    top:72px !important;
    right:16px !important;
    left:auto !important;
    bottom:auto !important;
    width:min(300px,92vw) !important;
    z-index:1200 !important;
    background:rgba(12,14,32,.97) !important;
    border:1px solid var(--vx-line-strong) !important;
    border-radius:18px !important;
    box-shadow:var(--vx-shadow) !important;
    backdrop-filter:blur(16px) saturate(140%);
    -webkit-backdrop-filter:blur(16px) saturate(140%);
    overflow:hidden;
    transform-origin:top right;
}
.dropdown.show{
    display:block !important;
    animation:vxDrop .28s cubic-bezier(.2,.9,.2,1);
}
@keyframes vxDrop{from{opacity:0;transform:translateY(-10px) scale(.96);}to{opacity:1;transform:none;}}
.dropdown a{border-bottom:1px solid rgba(255,255,255,.06) !important;transition:background .2s ease,padding-left .2s ease;}
.dropdown a:hover{background:var(--vx-grad-soft) !important;padding-left:22px !important;}

/* ---------- Stepper de cantidad (fix: el + se tapaba) -------------------- */
/* min-width:0 evita que el <input type=number> desborde el grid y tape el + */
.qty-control{
    width:100% !important;
    max-width:340px;
    margin-inline:auto;
    grid-template-columns:52px minmax(0,1fr) 52px !important;
    align-items:center !important;
}
.qty-control > *{min-width:0 !important;}
.qty-control input{
    min-width:0 !important;
    width:100% !important;
    -moz-appearance:textfield;
    appearance:textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.qty-control button{
    background:var(--vx-grad) !important;
    color:#0a0b1e !important;
    border:0 !important;
    font-weight:800 !important;
    box-shadow:0 8px 22px rgba(99,102,241,.35);
    transition:transform .18s ease, filter .2s ease;
}
.qty-control button:hover{transform:translateY(-2px);filter:brightness(1.08);}
.qty-control button:active{transform:scale(.92);}
/* ocultar spinners de number en todo el sitio */
input[type=number]{-moz-appearance:textfield;appearance:textfield;}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}

/* ---------- Estados de compra (colores correctos) ------------------------ */
.state-ok,.badge-ok,.ok-state,.entregado,.completado{color:var(--vx-green) !important;}
.state-warn,.warn,.pendiente{color:var(--vx-gold) !important;}
.state-bad,.bad,.error,.fallido{color:#ff8a94 !important;}

/* ---------- Reveal on scroll (lo activa velqerix-ui.js) ------------------ */
.vx-reveal{opacity:0;transform:translateY(26px);}
.vx-reveal.vx-in{
    opacity:1;transform:none;
    transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

/* ---------- Enlaces con foco accesible ----------------------------------- */
a:focus-visible,button:focus-visible,input:focus-visible{
    outline:2px solid var(--vx-i3);
    outline-offset:2px;
}


/* ==========================================================================
   VELQERIX · FX v3  — animaciones "wow", barra de confianza y asistente IA
   ========================================================================== */

/* ---------- Orbs flotantes (los inyecta el JS) --------------------------- */
.vx-orb{
    position:fixed;
    border-radius:50%;
    filter:blur(46px);
    opacity:.5;
    z-index:-2;
    pointer-events:none;
    mix-blend-mode:screen;
    will-change:transform;
}
.vx-orb.o1{width:320px;height:320px;background:radial-gradient(circle,#6366f1,transparent 70%);top:8%;left:-60px;animation:vxFloat1 18s ease-in-out infinite;}
.vx-orb.o2{width:280px;height:280px;background:radial-gradient(circle,#a855f7,transparent 70%);top:52%;right:-70px;animation:vxFloat2 22s ease-in-out infinite;}
.vx-orb.o3{width:240px;height:240px;background:radial-gradient(circle,#22d3ee,transparent 70%);bottom:-40px;left:38%;animation:vxFloat3 26s ease-in-out infinite;}
@keyframes vxFloat1{0%,100%{transform:translate(0,0)}50%{transform:translate(60px,40px)}}
@keyframes vxFloat2{0%,100%{transform:translate(0,0)}50%{transform:translate(-50px,-60px)}}
@keyframes vxFloat3{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(30px,-30px) scale(1.15)}}

/* ---------- Texto con degradado animado (shimmer) ------------------------ */
.logo span,.brand span,.hero h1,.hero-title{
    background:linear-gradient(90deg,#818cf8,#e879f9,#22d3ee,#818cf8) !important;
    background-size:280% 100% !important;
    -webkit-background-clip:text !important;background-clip:text !important;
    -webkit-text-fill-color:transparent !important;color:transparent !important;
    animation:vxShimmer 6s linear infinite;
}
@keyframes vxShimmer{to{background-position:280% 0;}}

/* ---------- Halo giratorio detrás del hero ------------------------------- */
.hero-box{isolation:isolate;}
.hero-box::after{
    content:"";
    position:absolute;
    inset:-40%;
    z-index:-1;
    background:conic-gradient(from 0deg,transparent 0 40%,rgba(168,85,247,.16) 55%,rgba(34,211,238,.16) 70%,transparent 85%);
    animation:vxSpin 16s linear infinite;
    pointer-events:none;
}
@keyframes vxSpin{to{transform:rotate(360deg);}}

/* ---------- Pulso de glow en botones principales ------------------------- */
.btn-yellow,.buy-btn,.cta,.vx-assistant-btn{animation:vxPulse 3.4s ease-in-out infinite;}
@keyframes vxPulse{
    0%,100%{box-shadow:0 10px 30px rgba(99,102,241,.38);}
    50%{box-shadow:0 12px 42px rgba(168,85,247,.62);}
}

/* ---------- Entrada suave del topbar y hero ------------------------------ */
.topbar{animation:vxSlideDown .6s cubic-bezier(.2,.8,.2,1);}
@keyframes vxSlideDown{from{opacity:0;transform:translateY(-16px);}to{opacity:1;transform:none;}}
.hero-box{animation:vxRise .8s cubic-bezier(.2,.8,.2,1);}
@keyframes vxRise{from{opacity:0;transform:translateY(26px) scale(.98);}to{opacity:1;transform:none;}}

/* ==========================================================================
   BARRA / SECCIÓN DE CONFIANZA (la inyecta el JS)
   ========================================================================== */
.vx-trust{
    width:min(1180px,94%);
    margin:34px auto 10px;
}
.vx-trust-title{
    text-align:center;
    font-family:"Space Grotesk",sans-serif;
    font-size:clamp(20px,4.5vw,30px);
    font-weight:700;
    margin:0 0 4px;
    background:linear-gradient(90deg,#fff,#c9c4ff,#8be9ff);
    -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;
}
.vx-trust-sub{text-align:center;color:var(--vx-muted);margin:0 0 20px;font-size:14px;}

.vx-trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:14px;
}
.vx-tcard{
    background:var(--vx-glass);
    border:1px solid var(--vx-line);
    border-radius:20px;
    padding:18px 16px;
    text-align:center;
    backdrop-filter:blur(12px);
    box-shadow:var(--vx-shadow);
    transition:transform .35s cubic-bezier(.2,.7,.2,1),border-color .35s,box-shadow .35s;
    position:relative;
    overflow:hidden;
}
.vx-tcard:hover{transform:translateY(-6px);border-color:var(--vx-line-strong);box-shadow:var(--vx-glow);}
.vx-tcard .vx-ic{
    width:52px;height:52px;margin:0 auto 10px;
    display:grid;place-items:center;border-radius:16px;
    background:var(--vx-grad-soft);
    color:#c9c4ff;
    box-shadow:inset 0 0 18px rgba(168,85,247,.25);
}
.vx-tcard .vx-ic svg{width:26px;height:26px;stroke:#d8d4ff;}
.vx-tcard h4{margin:0 0 4px;font-size:15px;font-weight:700;color:#eef1ff;}
.vx-tcard p{margin:0;font-size:12.5px;color:var(--vx-muted);line-height:1.45;}

/* stats con contador animado */
.vx-stats{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:14px;margin-top:14px;
}
.vx-stat{
    background:linear-gradient(180deg,rgba(99,102,241,.12),rgba(168,85,247,.06));
    border:1px solid var(--vx-line);border-radius:18px;padding:16px 10px;text-align:center;
}
.vx-stat b{display:block;font-family:"Space Grotesk";font-size:26px;font-weight:700;
    background:var(--vx-grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;}
.vx-stat span{display:block;margin-top:2px;font-size:12px;color:var(--vx-muted);}

/* marquee de sellos */
.vx-marquee{
    margin-top:16px;overflow:hidden;position:relative;
    border:1px solid var(--vx-line);border-radius:16px;
    background:rgba(255,255,255,.03);padding:11px 0;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
            mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.vx-marquee-track{display:flex;gap:34px;width:max-content;animation:vxMarquee 26s linear infinite;}
.vx-marquee:hover .vx-marquee-track{animation-play-state:paused;}
.vx-marquee-track span{display:inline-flex;align-items:center;gap:8px;color:#c8cff0;font-weight:700;font-size:13px;white-space:nowrap;}
.vx-marquee-track span::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--vx-i3);box-shadow:0 0 10px var(--vx-i3);}
@keyframes vxMarquee{to{transform:translateX(-50%);}}

/* ==========================================================================
   ASISTENTE IA (widget flotante) — lo inyecta el JS
   ========================================================================== */
.vx-assistant-btn{
    position:fixed;right:18px;bottom:18px;z-index:99990;
    width:62px;height:62px;border:0;border-radius:20px;cursor:pointer;
    background:var(--vx-grad);color:#0a0b1e;
    display:grid;place-items:center;
    box-shadow:0 14px 40px rgba(99,102,241,.5);
}
.vx-assistant-btn svg{width:30px;height:30px;}
.vx-assistant-btn .vx-ping{
    position:absolute;inset:0;border-radius:20px;border:2px solid rgba(168,85,247,.6);
    animation:vxPing 2.2s ease-out infinite;
}
@keyframes vxPing{0%{opacity:.7;transform:scale(1);}100%{opacity:0;transform:scale(1.5);}}

.vx-panel{
    position:fixed;right:18px;bottom:92px;z-index:99991;
    width:min(380px,calc(100vw - 28px));height:min(560px,72vh);
    display:none;flex-direction:column;
    background:linear-gradient(180deg,rgba(18,20,44,.98),rgba(10,12,28,.98));
    border:1px solid var(--vx-line-strong);border-radius:24px;overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.6);
    backdrop-filter:blur(20px);
    transform-origin:bottom right;
}
.vx-panel.open{display:flex;animation:vxPop .34s cubic-bezier(.2,.9,.2,1);}
.vx-panel-head{
    display:flex;align-items:center;gap:10px;padding:14px 16px;
    background:linear-gradient(120deg,rgba(99,102,241,.35),rgba(168,85,247,.22));
    border-bottom:1px solid var(--vx-line);
}
.vx-avatar{width:38px;height:38px;border-radius:12px;background:var(--vx-grad);display:grid;place-items:center;flex:0 0 auto;position:relative;}
.vx-avatar svg{width:22px;height:22px;color:#0a0b1e;}
.vx-avatar.speaking::after{content:"";position:absolute;inset:-4px;border-radius:16px;border:2px solid #22d3ee;animation:vxPing 1.2s ease-out infinite;}
.vx-panel-head .vx-h-txt b{display:block;font-size:14px;color:#fff;font-family:"Space Grotesk";}
.vx-panel-head .vx-h-txt small{color:#c9c4ff;font-size:11px;}
.vx-panel-head .vx-close{margin-left:auto;background:rgba(255,255,255,.1);border:0;color:#fff;width:32px;height:32px;border-radius:10px;cursor:pointer;font-size:18px;}

.vx-msgs{flex:1;overflow-y:auto;padding:14px;display:flex;flex-direction:column;gap:10px;}
.vx-msg{max-width:85%;padding:10px 13px;border-radius:16px;font-size:13.5px;line-height:1.5;animation:vxMsgIn .3s ease;}
@keyframes vxMsgIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}
.vx-msg.bot{align-self:flex-start;background:rgba(255,255,255,.06);border:1px solid var(--vx-line);color:#eef1ff;border-bottom-left-radius:5px;}
.vx-msg.user{align-self:flex-end;background:var(--vx-grad);color:#0a0b1e;font-weight:600;border-bottom-right-radius:5px;}
.vx-msg a{color:#8be9ff;font-weight:700;text-decoration:underline;}

.vx-chips{display:flex;flex-wrap:wrap;gap:7px;padding:0 14px 8px;}
.vx-chip{background:rgba(255,255,255,.05);border:1px solid var(--vx-line);color:#c8cff0;
    border-radius:999px;padding:7px 12px;font-size:12px;cursor:pointer;transition:all .2s;}
.vx-chip:hover{background:var(--vx-grad-soft);border-color:var(--vx-line-strong);color:#fff;transform:translateY(-2px);}

.vx-inputbar{display:flex;align-items:center;gap:7px;padding:10px;box-sizing:border-box;border-top:1px solid var(--vx-line);background:rgba(0,0,0,.2);}
.vx-inputbar input{flex:1 1 auto;min-width:0;width:auto;height:42px;border-radius:12px;border:1px solid var(--vx-line) !important;background:rgba(255,255,255,.05) !important;color:#fff !important;padding:0 12px;box-sizing:border-box;}
.vx-mic,.vx-send{width:42px;height:42px;min-width:42px;flex:0 0 42px;border:0;border-radius:12px;cursor:pointer;display:grid;place-items:center;box-sizing:border-box;padding:0;}
.vx-send{background:var(--vx-grad);color:#0a0b1e;}
.vx-mic{background:rgba(255,255,255,.08);color:#c9c4ff;border:1px solid var(--vx-line);}
.vx-mic.listening{background:#ff5d6c;color:#fff;animation:vxMicPulse 1s ease-in-out infinite;}
@keyframes vxMicPulse{0%,100%{box-shadow:0 0 0 0 rgba(255,93,108,.6);}50%{box-shadow:0 0 0 10px rgba(255,93,108,0);}}
.vx-mic svg,.vx-send svg{width:20px;height:20px;}
.vx-typing{display:flex;gap:4px;padding:10px 13px;}
.vx-typing i{width:7px;height:7px;border-radius:50%;background:#8be9ff;animation:vxBlink 1.2s infinite;}
.vx-typing i:nth-child(2){animation-delay:.2s;}
.vx-typing i:nth-child(3){animation-delay:.4s;}
@keyframes vxBlink{0%,60%,100%{opacity:.25;transform:translateY(0);}30%{opacity:1;transform:translateY(-4px);}}

/* ---------- Tarjeta de bienvenida con voz (primera visita) --------------- */
.vx-welcome{
    position:fixed;inset:0;z-index:99995;display:none;
    align-items:center;justify-content:center;padding:18px;
    background:rgba(4,5,16,.8);backdrop-filter:blur(10px);
}
.vx-welcome.open{display:flex;animation:vxMsgIn .4s ease;}
.vx-welcome-box{
    width:min(430px,100%);text-align:center;padding:26px 22px;
    background:linear-gradient(180deg,rgba(22,24,52,.98),rgba(10,12,28,.98));
    border:1px solid var(--vx-line-strong);border-radius:26px;
    box-shadow:0 30px 90px rgba(0,0,0,.7),var(--vx-glow);animation:vxPop .5s cubic-bezier(.2,.9,.2,1);
}
.vx-welcome-box .vx-wa{width:70px;height:70px;margin:0 auto 14px;border-radius:22px;background:var(--vx-grad);display:grid;place-items:center;box-shadow:0 12px 34px rgba(168,85,247,.5);}
.vx-welcome-box .vx-wa svg{width:38px;height:38px;color:#0a0b1e;}
.vx-welcome-box h3{margin:0 0 6px;font-family:"Space Grotesk";font-size:22px;color:#fff;}
.vx-welcome-box p{margin:0 0 18px;color:var(--vx-muted);font-size:14px;line-height:1.55;}
.vx-welcome-actions{display:grid;gap:10px;}
.vx-wbtn{height:50px;border:0;border-radius:15px;font-weight:800;cursor:pointer;font-size:15px;background:var(--vx-grad);color:#0a0b1e;display:flex;align-items:center;justify-content:center;gap:8px;}
.vx-wbtn.ghost{background:rgba(255,255,255,.07);color:#eef1ff;border:1px solid var(--vx-line);}

@media (prefers-reduced-motion: reduce){
    .vx-orb,.hero-box::after,.logo span,.brand span,.hero h1{animation:none !important;}
    .vx-marquee-track{animation:none !important;}
}


/* ==========================================================================
   VELQERIX · v4 — botón repetir voz, efectos de puntero, tarjetas nuevas
   ========================================================================== */

/* ---------- Botón "escuchar de nuevo" en mensajes del bot ---------------- */
.vx-msg.bot{position:relative;padding-bottom:14px;}
.vx-replay{
    position:absolute;right:8px;bottom:6px;
    width:26px;height:26px;border:0;border-radius:9px;cursor:pointer;
    background:rgba(255,255,255,.08);color:#8be9ff;display:grid;place-items:center;
    opacity:.65;transition:opacity .2s,transform .2s,background .2s;
}
.vx-replay svg{width:14px;height:14px;}
.vx-replay:hover{opacity:1;transform:scale(1.12);background:var(--vx-grad-soft);}

/* ---------- Glow que sigue el cursor (desktop) --------------------------- */
#vxCursor{
    position:fixed;left:0;top:0;width:340px;height:340px;margin:-170px 0 0 -170px;
    border-radius:50%;pointer-events:none;z-index:0;
    background:radial-gradient(circle,rgba(120,110,255,.16),rgba(34,211,238,.06) 40%,transparent 62%);
    transition:opacity .3s ease;mix-blend-mode:screen;will-change:transform;opacity:0;
}
@media (pointer:coarse){#vxCursor{display:none;}}

/* ---------- Partículas de toque/click (las crea el JS) ------------------- */
.vx-spark{
    position:fixed;z-index:99998;pointer-events:none;border-radius:50%;
    width:9px;height:9px;will-change:transform,opacity;
}

/* ---------- Spotlight en tarjetas al pasar el cursor --------------------- */
.product-card,.card.product-card{--mx:50%;--my:50%;}
.product-card::after,.card.product-card::after{
    content:"";position:absolute;inset:0;border-radius:inherit;z-index:1;pointer-events:none;
    background:radial-gradient(220px circle at var(--mx) var(--my),rgba(168,85,247,.18),transparent 60%);
    opacity:0;transition:opacity .35s ease;
}
.product-card:hover::after,.card.product-card:hover::after{opacity:1;}

/* ==========================================================================
   REDISEÑO REAL DE LA TARJETA DE PRODUCTO  (ej. "PATO TEAM / Comprar")
   ========================================================================== */
#grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
}
@media(max-width:600px){ #grid{gap:8px !important;} }
/* En móvil también 3 por fila (tarjetas más chicas) */
.product-card,.card.product-card{
    padding:0 !important;
    border-radius:24px !important;
    background:linear-gradient(180deg,rgba(24,26,54,.9),rgba(12,14,30,.92)) !important;
    border:1px solid var(--vx-line) !important;
    overflow:hidden !important;
    box-shadow:0 18px 50px rgba(2,4,16,.5) !important;
    transition:transform .4s cubic-bezier(.2,.7,.2,1),box-shadow .4s,border-color .4s !important;
}
/* borde degradado animado al hover */
.product-card::before,.card.product-card::before{
    content:"" !important;position:absolute !important;inset:0 !important;border-radius:inherit !important;
    padding:1px !important;background:var(--vx-grad) !important;background-size:200% 200% !important;
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0) !important;
    -webkit-mask-composite:xor !important;mask-composite:exclude !important;
    opacity:0 !important;transition:opacity .4s !important;z-index:2 !important;pointer-events:none !important;
    animation:vxShimmer 5s linear infinite;
}
.product-card:hover,.card.product-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 28px 70px rgba(99,102,241,.4) !important;
    border-color:transparent !important;
}
.product-card:hover::before,.card.product-card:hover::before{opacity:1 !important;}

.product-card .media,.card.product-card .media{
    position:relative;margin:0 !important;border-radius:0 !important;
    aspect-ratio:1/1;overflow:hidden;background:#05060f;
}
.product-card .media img,.product-card .product-img{
    width:100% !important;height:100% !important;object-fit:cover !important;
    transition:transform .6s cubic-bezier(.2,.7,.2,1),filter .5s !important;
}
.product-card:hover .product-img{transform:scale(1.09) !important;filter:saturate(120%);}
/* velo eliminado: la imagen se ve completa y clara */
.product-card .media::after{ display:none !important; }
.product-card .badge{
    position:absolute !important;top:12px;left:12px;z-index:3;
    background:rgba(8,10,26,.7) !important;color:#c9c4ff !important;
    border:1px solid var(--vx-line-strong) !important;backdrop-filter:blur(8px);
    font-size:10.5px !important;letter-spacing:.6px;padding:6px 10px !important;
}
.product-card .promo-badge{
    position:absolute !important;top:12px;right:12px;z-index:3;
    background:var(--vx-grad) !important;color:#0a0b1e !important;font-weight:800 !important;
    padding:6px 11px !important;border-radius:999px !important;box-shadow:0 6px 18px rgba(168,85,247,.5);
    animation:vxPulse 2.6s ease-in-out infinite;
}
.product-card .body{padding:15px 15px 16px !important;position:relative;z-index:3;}
.product-card .name{
    font-family:"Space Grotesk",sans-serif !important;font-size:17px !important;font-weight:700 !important;
    color:#fff !important;margin-bottom:8px !important;line-height:1.2;
}
.product-card .price,.product-card .price-pill{margin-bottom:12px !important;}
.product-card .price-pill{
    display:inline-flex !important;align-items:baseline;gap:5px;
    background:rgba(52,229,176,.1) !important;border:1px solid rgba(52,229,176,.3) !important;
    color:#9fe9cf !important;border-radius:999px !important;padding:6px 12px !important;font-size:12px !important;font-weight:600;
}
.product-card .price-pill span{color:#34e5b0 !important;font-weight:800 !important;font-size:16px;}
.product-card .buy-btn{
    width:100% !important;height:46px !important;border-radius:14px !important;
    display:flex !important;align-items:center;justify-content:center;gap:8px;
    font-size:15px !important;letter-spacing:.3px;
}
.product-card .buy-btn::after{content:"→";position:static;width:auto;height:auto;background:none;transform:none;
    transition:transform .3s ease;font-weight:900;margin-left:2px;}
.product-card .buy-btn:hover::after{transform:translateX(4px);}
.product-card .video-btn{
    width:100% !important;margin-top:9px !important;height:40px;border-radius:12px;
    background:rgba(255,255,255,.05) !important;border:1px solid var(--vx-line) !important;color:#c8cff0 !important;
    cursor:pointer;transition:all .25s;
}
.product-card .video-btn:hover{background:rgba(255,255,255,.1) !important;border-color:var(--vx-line-strong) !important;}

/* tabs / filtros y buscador con más caché */
.tab{border-radius:999px !important;transition:all .25s !important;}
.tab.active{background:var(--vx-grad) !important;color:#0a0b1e !important;border-color:transparent !important;box-shadow:0 8px 22px rgba(99,102,241,.4);}
.search-box input,#searchInput{height:48px;border-radius:16px !important;font-size:15px;}

/* ==========================================================================
   FOOTER + REDES SOCIALES (íconos de marca)
   ========================================================================== */
.vx-footer{
    text-align:center;padding:26px 0 40px !important;
    display:flex;flex-direction:column;align-items:center;gap:16px;
}
.vx-social{display:flex;gap:14px;justify-content:center;}
.vx-social a{
    width:50px;height:50px;border-radius:16px;display:grid;place-items:center;
    background:var(--vx-glass-2);border:1px solid var(--vx-line);color:#c8cff0;
    transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s,color .3s,border-color .3s;
    box-shadow:var(--vx-shadow);
}
.vx-social a svg{width:26px;height:26px;transition:transform .3s;}
.vx-social a:hover{transform:translateY(-5px) scale(1.06);}
.vx-social a:hover svg{transform:scale(1.1);}
.vx-social a.wa:hover{color:#25D366;border-color:rgba(37,211,102,.6);box-shadow:0 14px 34px rgba(37,211,102,.35);}
.vx-social a.yt:hover{color:#FF0033;border-color:rgba(255,0,51,.6);box-shadow:0 14px 34px rgba(255,0,51,.32);}
.vx-social a.tg:hover{color:#29A9EB;border-color:rgba(41,169,235,.6);box-shadow:0 14px 34px rgba(41,169,235,.35);}
.vx-copy{color:var(--vx-muted);font-size:13.5px;font-weight:600;}
.vx-copy span{background:var(--vx-grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;}

/* ==========================================================================
   RECARGAS: tarjetas de método de pago más premium
   ========================================================================== */
.recarga-methods .btn,.metodos .btn,.methods .btn{
    height:auto !important;min-height:60px;border-radius:18px !important;font-size:15px !important;
}


/* ==========================================================================
   VELQERIX · v5 — guard anti-overflow (arregla el "se agranda la pantalla")
   ========================================================================== */
html,body{max-width:100%;overflow-x:hidden !important;}
.vx-orb{max-width:60vw;max-height:60vw;}
.vx-trust,.vx-marquee{max-width:100%;box-sizing:border-box;}
.vx-marquee{overflow:hidden;}
/* nunca dejar que un elemento fuerce scroll horizontal en móvil */
img,video,iframe,table,pre{max-width:100%;}


/* ==========================================================================
   VELQERIX · v5 — modal de segunda confirmación de compra
   ========================================================================== */
.vx-confirm{width:min(440px,100%) !important;}
.vx-confirm-hero{display:flex;gap:12px;align-items:center;margin-bottom:14px;}
.vx-confirm-hero img{width:74px;height:74px;border-radius:16px;object-fit:cover;border:1px solid var(--vx-line);}
.vx-confirm-name{font-family:"Space Grotesk",sans-serif;font-size:18px;font-weight:700;color:#fff;line-height:1.15;}
.vx-confirm-cat{margin-top:5px;display:inline-block;font-size:10.5px;letter-spacing:.6px;color:#c9c4ff;background:var(--vx-grad-soft);border:1px solid var(--vx-line-strong);padding:3px 9px;border-radius:999px;}
.vx-confirm-rows{background:rgba(255,255,255,.03);border:1px solid var(--vx-line);border-radius:16px;padding:6px 14px;margin-bottom:12px;}
.vx-crow{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.06);font-size:14px;}
.vx-crow:last-child{border-bottom:0;}
.vx-crow span{color:var(--vx-muted);}
.vx-crow b{color:#eef1ff;font-weight:700;text-align:right;}
.vx-crow.total b{font-size:20px;background:var(--vx-grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;}
.vx-confirm-note{display:flex;gap:8px;align-items:flex-start;font-size:12.5px;color:#9fe9cf;background:rgba(52,229,176,.08);border:1px solid rgba(52,229,176,.28);border-radius:14px;padding:11px 12px;margin-bottom:14px;line-height:1.45;}
.vx-confirm-note svg{flex:0 0 auto;margin-top:1px;color:#34e5b0;}
.vx-confirm-actions{display:grid;grid-template-columns:1fr 1.3fr;gap:10px;}
.vx-cancel,.vx-ok{height:50px;border:0;border-radius:15px;font-weight:800;cursor:pointer;font-size:15px;transition:transform .18s ease,filter .2s ease,box-shadow .3s;}
.vx-cancel{background:rgba(255,255,255,.07);color:#eef1ff;border:1px solid var(--vx-line);}
.vx-cancel:hover{background:rgba(255,255,255,.12);transform:translateY(-2px);}
.vx-ok{background:var(--vx-grad);color:#0a0b1e;box-shadow:0 10px 30px rgba(99,102,241,.42);}
.vx-ok:hover{transform:translateY(-2px);filter:brightness(1.06);box-shadow:0 16px 40px rgba(168,85,247,.5);}


/* ==========================================================================
   VELQERIX · v5 — tarjetas de método de pago (recargar saldo)
   ========================================================================== */
.vx-methods{gap:16px !important;}
.rc-method{
    position:relative;text-align:center;
    display:flex;flex-direction:column;align-items:center;
    padding:22px 16px 18px !important;border-radius:24px !important;
    background:linear-gradient(180deg,rgba(24,26,54,.9),rgba(12,14,30,.92)) !important;
    border:1px solid var(--vx-line) !important;
}
.rc-method:hover{transform:translateY(-6px);border-color:var(--vx-line-strong) !important;box-shadow:var(--vx-glow) !important;}
.rc-ic{width:74px;height:74px;border-radius:22px;display:grid;place-items:center;margin-bottom:14px;
    box-shadow:inset 0 0 22px rgba(255,255,255,.06),0 12px 30px rgba(0,0,0,.35);}
.rc-ic svg{width:38px;height:38px;}
.rc-bank{background:linear-gradient(160deg,#6366f1,#8b5cf6);color:#fff;}
.rc-pp{background:linear-gradient(160deg,#1546a0,#2f8fe6);color:#fff;}
.rc-card{background:linear-gradient(160deg,#0ea5b7,#22d3ee);color:#04222a;}
.rc-method h2{margin:0 0 8px !important;font-family:"Space Grotesk",sans-serif;font-size:21px !important;color:#fff;}
.rc-method p{color:var(--vx-muted) !important;font-size:13px;line-height:1.5;min-height:auto !important;margin:0 0 12px !important;}
.rc-tag{display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:700;padding:6px 12px;border-radius:999px;margin-bottom:14px;}
.rc-tag::before{content:"";width:7px;height:7px;border-radius:50%;}
.rc-tag.auto{background:rgba(52,229,176,.12);color:#34e5b0;border:1px solid rgba(52,229,176,.3);}
.rc-tag.auto::before{background:#34e5b0;box-shadow:0 0 8px #34e5b0;}
.rc-tag.manual{background:rgba(196,181,253,.12);color:#c4b5fd;border:1px solid rgba(196,181,253,.3);}
.rc-tag.manual::before{background:#c4b5fd;}
.rc-method .btn{margin-top:auto !important;}
.rc-featured{border-color:var(--vx-line-strong) !important;box-shadow:0 0 0 1px rgba(140,140,255,.25),0 20px 55px rgba(99,102,241,.28) !important;}
.rc-best{position:absolute;top:-11px;left:50%;transform:translateX(-50%);
    background:var(--vx-grad);color:#0a0b1e;font-weight:800;font-size:11px;padding:5px 14px;border-radius:999px;
    box-shadow:0 6px 18px rgba(168,85,247,.5);white-space:nowrap;}
@media(max-width:850px){.vx-methods{grid-template-columns:1fr !important;}}


/* ==========================================================================
   VELQERIX · v6 — overlay de compra (generando key) + key con copiar
   ========================================================================== */
.vx-result{width:min(420px,100%) !important;text-align:center;padding:28px 22px !important;}
.vx-ring{
    width:84px;height:84px;margin:6px auto 18px;border-radius:50%;
    border:6px solid rgba(255,255,255,.1);
    border-top-color:#a855f7;border-right-color:#22d3ee;
    animation:vxSpin 0.9s linear infinite;
    box-shadow:0 0 34px rgba(168,85,247,.4);
}
.vx-result-check{
    width:84px;height:84px;margin:6px auto 18px;border-radius:50%;
    display:grid;place-items:center;
    background:radial-gradient(circle,rgba(52,229,176,.22),transparent 70%);
    border:2px solid rgba(52,229,176,.5);
    animation:vxPop .5s cubic-bezier(.2,.9,.2,1);
}
.vx-result-check svg{width:42px;height:42px;color:#34e5b0;}
.vx-result-title{font-family:"Space Grotesk",sans-serif;font-size:22px;margin:0 0 8px;color:#fff;}
.vx-result-text{color:var(--vx-muted);font-size:14px;line-height:1.55;margin:0 0 16px;}
.vx-keys{display:flex;flex-direction:column;gap:10px;margin-bottom:16px;}
.vx-key{
    display:flex;align-items:center;gap:8px;
    background:rgba(52,229,176,.08);border:1px solid rgba(52,229,176,.4);
    border-radius:14px;padding:10px 10px 10px 14px;
    box-shadow:inset 0 0 22px rgba(52,229,176,.1);
}
.vx-key-text{flex:1;text-align:left;color:#9fe9cf;font-weight:800;font-size:14px;word-break:break-all;
    user-select:text !important;-webkit-user-select:text !important;font-family:"Space Grotesk",monospace;}
.vx-key-copy{
    flex:0 0 auto;border:0;border-radius:11px;padding:9px 14px;cursor:pointer;font-weight:800;font-size:13px;
    background:var(--vx-grad);color:#0a0b1e;box-shadow:0 6px 16px rgba(99,102,241,.4);transition:transform .18s,filter .2s;
}
.vx-key-copy:hover{transform:translateY(-2px);filter:brightness(1.08);}
.vx-result-actions{display:flex;flex-direction:column;gap:9px;}
.vx-result-actions .vx-ok,.vx-result-actions .vx-cancel{
    height:48px;display:flex;align-items:center;justify-content:center;border-radius:14px;
    font-weight:800;font-size:15px;cursor:pointer;text-decoration:none;
}
.vx-result-actions .vx-ok{background:var(--vx-grad);color:#0a0b1e;box-shadow:0 10px 28px rgba(99,102,241,.4);}
.vx-result-actions .vx-cancel{background:rgba(255,255,255,.07);color:#eef1ff;border:1px solid var(--vx-line);}


/* ==========================================================================
   VELQERIX · v6 — servicios de redes sociales en una sola columna (apilados)
   ========================================================================== */
.grid:has(.service-card){
    grid-template-columns:1fr !important;
    max-width:560px;
    margin-inline:auto;
    gap:16px !important;
}
.service-card{width:100% !important;}


/* ==========================================================================
   VELQERIX · v6 — íconos de marca en páginas de pago (reemplazan imagen blanca)
   ========================================================================== */
.brandico{width:56px;height:56px;flex:0 0 auto;border-radius:18px;display:grid;place-items:center;
    box-shadow:inset 0 0 20px rgba(255,255,255,.08),0 10px 26px rgba(0,0,0,.35);}
.brandico svg{width:30px;height:30px;}
.brandico.pp{background:linear-gradient(160deg,#1546a0,#2f8fe6);color:#fff;}
.brandico.cc{background:linear-gradient(160deg,#0ea5b7,#22d3ee);color:#04222a;}


/* ==========================================================================
   VELQERIX · v6 — transferencia: todo apilado (comprobante abajo, prolijo)
   ========================================================================== */
#rtGrid{
    grid-template-columns:1fr !important;
    max-width:620px;
    margin-inline:auto;
    gap:16px !important;
}


/* ==========================================================================
   VELQERIX · v7 — 3 por fila también en móvil (tarjetas compactas) + promo
   ========================================================================== */
@media(max-width:600px){
    #grid .product-card .body{padding:9px !important;}
    #grid .product-card .name{font-size:12.5px !important;margin-bottom:6px !important;line-height:1.15;}
    #grid .product-card .price-pill{font-size:10px !important;padding:4px 8px !important;}
    #grid .product-card .price-pill span{font-size:12px !important;}
    #grid .product-card .buy-btn{height:38px !important;font-size:12px !important;border-radius:11px !important;}
    #grid .product-card .video-btn{height:32px !important;font-size:10.5px !important;margin-top:6px !important;}
    #grid .product-card .badge{font-size:8px !important;padding:3px 6px !important;top:8px;left:8px;}
    #grid .product-card .promo-badge{font-size:9px !important;padding:3px 7px !important;top:8px;right:8px;}
}

/* Badge de promo (ej: 3x1) sobre la foto del producto — más visible */
.product-card .promo-badge{
    display:inline-flex;align-items:center;gap:3px;
    font-weight:900 !important;letter-spacing:.3px;
    background:linear-gradient(120deg,#f59e0b,#ef4444,#a855f7) !important;
    background-size:180% 180% !important;
    color:#fff !important;
    text-shadow:0 1px 2px rgba(0,0,0,.35);
    box-shadow:0 8px 20px rgba(239,68,68,.45) !important;
    animation:vxShimmer 4s linear infinite, vxPulse 2.4s ease-in-out infinite !important;
}


/* ==========================================================================
   VELQERIX · v8 — RENDIMIENTO (adiós lag)
   El lag venía de los blur (aurora, orbs blur 46px, backdrop-filter en muchas
   tarjetas). En móvil/touch apagamos lo caro y usamos fondos sólidos.
   ========================================================================== */
@media (max-width: 820px), (hover: none), (pointer: coarse){
    .vx-orb{ display:none !important; }
    body::before{ animation:none !important; filter:none !important; }
    body::after{ display:none !important; }
    .hero-box::after{ display:none !important; }
    #vxCursor{ display:none !important; }

    /* backdrop-filter es lo que más traba el scroll: lo quitamos y usamos fondo sólido */
    .card,.product,.product-card,.box,.miniCard,.saldo-card,.hero-box,.obox,.plan,
    .panel,.tile,.method,.metodo,.service,.servicio,.noti,.notif,.item-card,
    .copy-box,.modal-box,.dropdown,.topbar,.header,.appbar,.balance,.balance-pill,
    .balance-mini,.vx-panel,.vx-tcard,.rc-method,.toast,#vxToast,.vx-marquee,
    .brandico,.vx-assistant-btn{
        backdrop-filter:none !important;
        -webkit-backdrop-filter:none !important;
    }
    .card,.box,.miniCard,.saldo-card,.hero-box,.obox,.plan,.panel,.vx-tcard,
    .rc-method,.dropdown,.vx-panel,.modal-box,.copy-box{
        background:rgba(18,20,44,.94) !important;
    }
    .topbar,.header,.appbar{ background:rgba(8,10,26,.96) !important; }

    /* animaciones continuas costosas: apagar en móvil (se mantiene el diseño estático) */
    .btn-yellow,.buy-btn,.cta,.vx-assistant-btn,.promo-badge,
    .logo span,.brand span,.hero h1,.hero-title,.vx-marquee-track{
        animation:none !important;
    }
    /* el brillo de barrido de botones lo quitamos en móvil */
    .btn::after,.buy-btn::after,.action::after,.cta::after{ display:none !important; }
    *{ will-change:auto !important; }
}

/* Desktop: aligerar un poco el blur de las tarjetas para scroll más fluido */
.card,.product,.box,.miniCard,.saldo-card,.hero-box,.obox,.plan,
.panel,.tile,.method,.metodo,.service,.servicio,.noti,.notif,.item-card,
.copy-box,.modal-box{
    backdrop-filter:blur(9px) saturate(120%);
    -webkit-backdrop-filter:blur(9px) saturate(120%);
}
.vx-orb{ filter:blur(34px); }


/* ==========================================================================
   VELQERIX · v9 — links de login/register ordenados
   ========================================================================== */
.links{
    display:flex !important;
    flex-wrap:wrap;
    gap:10px 18px;
    justify-content:center;
    align-items:center;
    margin-top:18px !important;
}
.links a{
    color:#8be9ff !important;
    font-weight:600;
    font-size:13.5px;
    white-space:nowrap;
    text-decoration:none;
    transition:color .2s;
}
.links a:hover{color:#c9c4ff !important;}
