
/* =====================================================
   VELTRIX 2.0
===================================================== */

:root {
    --vx-bg: #050b12;
    --vx-bg-2: #08111c;
    --vx-bg-3: #0c1724;

    --vx-card: #101c29;
    --vx-card-2: #132232;

    --vx-blue: #1378ff;
    --vx-blue-2: #0066ff;
    --vx-cyan: #37b9ff;

    --vx-white: #ffffff;
    --vx-text: #f6f8fb;
    --vx-muted: #91a3b6;

    --vx-line: rgba(255,255,255,.08);

    --vx-radius: 16px;
}


/* =====================================================
   GLOBAL
===================================================== */

body {
    overflow-x: hidden;
}

.veltrix-container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.vx-header {
    position: relative;
    z-index: 20;
}

.vx-topbar {
    background: #050a10;
    border-bottom: 1px solid var(--vx-line);
    color: var(--vx-muted);
    font-size: 11px;
}

.vx-topbar-inner {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vx-topbar-left,
.vx-topbar-right {
    display: flex;
    gap: 24px;
}

.vx-topbar a:hover {
    color: #fff;
}


.vx-main-header {
    background: rgba(8,17,28,.97);
    border-bottom: 1px solid var(--vx-line);
}

.vx-main-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 190px minmax(300px,1fr) auto;
    gap: 28px;
    align-items: center;
}


.vx-brand {
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    font-style: italic;
    font-size: 29px;
    letter-spacing: -2px;
}

.vx-brand-name {
    color: #fff;
}

.vx-brand-x {
    color: var(--vx-blue);
    display: inline-block;
    margin-left: 2px;
    transform: skew(-9deg);
}


.vx-search {
    height: 46px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,.15);
}

.vx-search input {
    border: 0;
    outline: 0;
    flex: 1;
    padding: 0 17px;
    font-size: 13px;
    color: #172230;
}

.vx-search button {
    width: 56px;
    border: 0;
    background: var(--vx-blue);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}


.vx-actions {
    display: flex;
    gap: 18px;
}

.vx-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #cbd6e1;
}

.vx-action-icon {
    font-size: 18px;
}

.vx-action-label {
    font-size: 10px;
    white-space: nowrap;
}

.vx-action:hover {
    color: #fff;
}

.vx-cart-count {
    position: absolute;
    right: 5px;
    top: -8px;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--vx-blue);
    color: white;
    font-size: 9px;
}


.vx-nav {
    background: #07121d;
    border-bottom: 1px solid var(--vx-line);
}

.vx-nav-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 27px;
    overflow-x: auto;
    scrollbar-width: none;
}

.vx-nav-inner::-webkit-scrollbar {
    display: none;
}

.vx-nav-inner a {
    white-space: nowrap;
    color: #c6d1dd;
    font-size: 12px;
    font-weight: 600;
}

.vx-nav-inner a:hover {
    color: white;
}

.vx-departments {
    background: var(--vx-blue);
    color: white !important;
    padding: 11px 16px;
    border-radius: 6px;
}

.vx-offers-link {
    color: #4aa2ff !important;
}


/* =====================================================
   HERO
===================================================== */

.vx-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg,#050b12 0%,#071421 55%,#07121d 100%);
}

.vx-hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.vx-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.vx-hero-glow-a {
    width: 570px;
    height: 570px;
    right: -110px;
    top: -60px;
    background: radial-gradient(circle,
        rgba(19,120,255,.85),
        rgba(19,120,255,.18) 50%,
        transparent 68%);
}

.vx-hero-glow-b {
    width: 420px;
    height: 420px;
    right: 260px;
    bottom: -300px;
    background: rgba(0,102,255,.14);
}


.vx-kicker,
.vx-section-kicker {
    display: block;
    color: var(--vx-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.vx-hero h1 {
    margin: 15px 0 24px;
    max-width: 700px;
    font-size: clamp(48px,6vw,78px);
    line-height: .95;
    letter-spacing: -4px;
}

.vx-hero h1 span {
    color: #57a4ff;
}

.vx-hero-content > p {
    max-width: 590px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--vx-muted);
}

.vx-hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 32px;
}

.vx-btn {
    min-height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 23px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.vx-btn:hover {
    transform: translateY(-2px);
}

.vx-btn-primary {
    background: var(--vx-blue);
    color: white;
}

.vx-btn-secondary {
    border: 1px solid rgba(255,255,255,.16);
    color: white;
}

.vx-btn-white {
    background: white;
    color: #0a1726;
}

.vx-hero-mini {
    margin-top: 28px;
    display: flex;
    gap: 20px;
    color: #8da2b6;
    font-size: 11px;
}


/* =====================================================
   HERO DEVICES
===================================================== */

.vx-showcase {
    height: 500px;
    position: relative;
}

.vx-showcase-backdrop {
    position: absolute;
    right: -30px;
    top: 10px;
    width: 440px;
    height: 440px;
    background:
        linear-gradient(145deg,
            rgba(48,154,255,.8),
            rgba(0,73,255,.18));
    border-radius: 45% 55% 52% 48%;
    transform: rotate(7deg);
    box-shadow: 0 20px 120px rgba(0,94,255,.35);
}

.vx-phone {
    position: absolute;
    width: 218px;
    height: 430px;
    border-radius: 34px;
    background: linear-gradient(145deg,#253342,#07101a);
    border: 4px solid #25394d;
    box-shadow: 0 28px 70px rgba(0,0,0,.55);
}

.vx-phone-back {
    right: 230px;
    top: 25px;
    transform: rotate(-8deg);
}

.vx-phone-front {
    right: 80px;
    top: 55px;
    transform: rotate(6deg);
    overflow: hidden;
}

.vx-phone-camera {
    width: 105px;
    height: 105px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.vx-phone-camera i {
    display: block;
    width: 34px;
    height: 34px;
    background: #050a0e;
    border-radius: 50%;
    border: 4px solid #536574;
}

.vx-phone-screen {
    position: absolute;
    inset: 0;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background:
        radial-gradient(circle at 60% 30%,#1f8cff 0%,#0a4da8 24%,#061321 65%);
}

.vx-phone-screen::before {
    content: "";
    width: 80px;
    height: 20px;
    border-radius: 30px;
    background: #020508;
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
}

.vx-phone-screen span {
    color: #72b3ff;
    font-weight: 800;
    font-size: 12px;
}

.vx-phone-screen strong {
    font-size: 27px;
    line-height: 1;
    margin-top: 8px;
}

.vx-screen-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(48,160,255,.28);
    top: 80px;
    right: -110px;
}


.vx-watch {
    position: absolute;
    bottom: 10px;
    right: 330px;
    width: 112px;
    height: 133px;
    border-radius: 27px;
    background: #232f3b;
    border: 5px solid #516172;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
    z-index: 4;
}

.vx-watch::before,
.vx-watch::after {
    content: "";
    position: absolute;
    left: 34px;
    width: 34px;
    height: 70px;
    background: #111d29;
    z-index: -1;
}

.vx-watch::before {
    top: -62px;
}

.vx-watch::after {
    bottom: -62px;
}

.vx-watch-screen {
    position: absolute;
    inset: 7px;
    border-radius: 19px;
    background: linear-gradient(145deg,#07111b,#0c63bd);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vx-watch-screen span,
.vx-watch-screen strong {
    font-size: 25px;
}


.vx-earbuds {
    position: absolute;
    right: 13px;
    bottom: 25px;
    width: 132px;
    height: 95px;
    border-radius: 24px 24px 35px 35px;
    background: linear-gradient(#eff7ff,#b9cadb);
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.vx-earbuds span {
    width: 25px;
    height: 45px;
    background: white;
    border-radius: 16px 16px 10px 10px;
}


/* =====================================================
   TRUST
===================================================== */

.vx-trust {
    background: #07131f;
    border-top: 1px solid var(--vx-line);
    border-bottom: 1px solid var(--vx-line);
}

.vx-trust-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

.vx-trust-item {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border-right: 1px solid var(--vx-line);
}

.vx-trust-item:last-child {
    border-right: 0;
}

.vx-trust-icon {
    font-size: 28px;
    color: var(--vx-blue);
}

.vx-trust-item strong,
.vx-trust-item span {
    display: block;
}

.vx-trust-item strong {
    font-size: 12px;
}

.vx-trust-item span {
    margin-top: 5px;
    color: var(--vx-muted);
    font-size: 10px;
    line-height: 1.4;
}


/* =====================================================
   SECTIONS
===================================================== */

.vx-section {
    padding: 88px 0;
}

.vx-section-head {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.vx-section-head h2 {
    margin: 8px 0 0;
    font-size: 37px;
    letter-spacing: -1.8px;
}

.vx-view-all {
    color: #5da8ff;
    font-size: 12px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.vx-offers {
    background: #07111c;
}

.vx-products {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.vx-product-card {
    overflow: hidden;
    background: white;
    color: #101926;
    border-radius: 12px;
    transition: .25s ease;
}

.vx-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

.vx-product-media {
    position: relative;
    height: 300px;
    background:
        linear-gradient(145deg,#f7f9fc,#e7edf5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vx-discount {
    position: absolute;
    left: 13px;
    top: 13px;
    background: var(--vx-blue);
    color: white;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 10px;
    font-weight: 800;
}

.vx-heart {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: 0;
    font-size: 21px;
    color: #536171;
    cursor: pointer;
}

.vx-product-info {
    padding: 20px;
}

.vx-product-brand {
    color: #1778e9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.vx-product-info h3 {
    min-height: 42px;
    margin: 8px 0 13px;
    font-size: 15px;
    line-height: 1.35;
}

.vx-old-price {
    display: block;
    text-decoration: line-through;
    color: #93a0ad;
    font-size: 11px;
}

.vx-product-price {
    display: block;
    margin-top: 3px;
    color: #0665cf;
    font-size: 23px;
}

.vx-product-installment,
.vx-product-pix {
    display: block;
    margin-top: 4px;
    color: #657484;
    font-size: 10px;
}

.vx-product-pix {
    color: #278d58;
    font-weight: 700;
}


/* DEVICE PLACEHOLDERS */

.vx-demo-device {
    position: relative;
}

.vx-device-phone {
    width: 125px;
    height: 235px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 70% 30%,#65adff,#153f91 34%,#111927 68%);
    border: 5px solid #2c3844;
    box-shadow: 0 20px 32px rgba(0,0,0,.25);
}

.vx-device-phone::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 49px;
    height: 13px;
    border-radius: 20px;
    background: #020407;
}

.vx-device-notebook {
    width: 190px;
    height: 125px;
    background: #161e27;
    border-radius: 7px;
    border: 6px solid #293644;
    transform: perspective(500px) rotateX(-3deg);
}

.vx-device-notebook::before {
    content: "";
    position: absolute;
    inset: 5px;
    background:
        radial-gradient(circle at 65% 35%,#2195ff,#071324 65%);
}

.vx-device-notebook::after {
    content: "";
    position: absolute;
    left: -25px;
    right: -25px;
    height: 8px;
    bottom: -17px;
    border-radius: 2px 2px 15px 15px;
    background: #8595a3;
}

.vx-device-watch {
    width: 100px;
    height: 115px;
    border-radius: 24px;
    border: 7px solid #526274;
    background:
        radial-gradient(circle at 60% 30%,#258cff,#06111d 70%);
}

.vx-device-watch::before,
.vx-device-watch::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 80px;
    background: #18232f;
    left: 24px;
    z-index: -1;
}

.vx-device-watch::before {
    top: -63px;
}

.vx-device-watch::after {
    bottom: -63px;
}


/* =====================================================
   CATEGORIES
===================================================== */

.vx-categories-section {
    background: #091520;
}

.vx-categories {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 17px;
}

.vx-category {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(145deg,#101f2f,#0e1925);
    border: 1px solid rgba(255,255,255,.06);
    padding: 28px;
}

.vx-category-large {
    grid-row: span 2;
}

.vx-category-copy {
    position: relative;
    z-index: 3;
    max-width: 250px;
}

.vx-category-copy > span {
    color: var(--vx-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vx-category-copy strong {
    display: block;
    font-size: 23px;
}

.vx-category-large .vx-category-copy strong {
    margin-top: 10px;
    font-size: 34px;
}

.vx-category-copy p {
    color: var(--vx-muted);
    font-size: 12px;
    line-height: 1.5;
}

.vx-category-copy em {
    display: block;
    margin-top: 18px;
    font-style: normal;
    color: #68afff;
    font-size: 11px;
}


.vx-category-phone {
    position: absolute;
    width: 205px;
    height: 380px;
    right: 35px;
    bottom: -80px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 70% 20%,#3096ff,#0a3c82 38%,#08121c 70%);
    border: 5px solid #30465a;
    transform: rotate(9deg);
}

.vx-category-phone::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 20px;
    border-radius: 20px;
    background: #020507;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}


.vx-category-notebook {
    position: absolute;
    width: 155px;
    height: 100px;
    right: 18px;
    bottom: 28px;
    background: #111b25;
    border: 5px solid #354657;
}

.vx-category-notebook::before {
    content: "";
    position: absolute;
    inset: 5px;
    background:
        linear-gradient(135deg,#0c243e,#1584e7);
}

.vx-category-notebook::after {
    content: "";
    position: absolute;
    width: 185px;
    height: 7px;
    left: -20px;
    bottom: -16px;
    background: #728397;
}


.vx-category-tablet {
    position: absolute;
    width: 105px;
    height: 145px;
    right: 32px;
    bottom: 18px;
    border: 5px solid #38495c;
    border-radius: 11px;
    background:
        linear-gradient(145deg,#1b8fff,#101f31 65%);
}


.vx-category-watch {
    position: absolute;
    width: 88px;
    height: 100px;
    right: 40px;
    bottom: 35px;
    border: 6px solid #4f6072;
    border-radius: 22px;
    background:
        radial-gradient(circle,#2189ff,#0a1725 70%);
}


.vx-category-audio {
    position: absolute;
    width: 125px;
    height: 125px;
    right: 32px;
    bottom: 20px;
    border: 18px solid #334558;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.vx-category-audio::before,
.vx-category-audio::after {
    content: "";
    position: absolute;
    top: 58px;
    width: 32px;
    height: 58px;
    border-radius: 13px;
    background: #1a2735;
}

.vx-category-audio::before {
    left: -23px;
}

.vx-category-audio::after {
    right: -23px;
}


/* =====================================================
   CAMPAIGN
===================================================== */

.vx-campaign {
    padding: 35px 0 90px;
    background: #091520;
}

.vx-campaign-box {
    min-height: 360px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background:
        linear-gradient(105deg,#0768df,#0b8cff 52%,#27a5ff);
    box-shadow: 0 25px 70px rgba(0,67,153,.25);
}

.vx-campaign-content {
    padding: 60px;
    width: 55%;
    position: relative;
    z-index: 3;
}

.vx-campaign-content > span {
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 800;
}

.vx-campaign-content h2 {
    max-width: 560px;
    margin: 10px 0 14px;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -2px;
}

.vx-campaign-content p {
    max-width: 500px;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
    font-size: 13px;
}

.vx-campaign-content .vx-btn {
    margin-top: 18px;
}

.vx-campaign-devices {
    position: absolute;
    right: 30px;
    top: 0;
    width: 45%;
    height: 100%;
}

.vx-campaign-phone {
    position: absolute;
    width: 145px;
    height: 290px;
    border-radius: 24px;
    border: 5px solid rgba(255,255,255,.35);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.vx-campaign-phone.a {
    right: 270px;
    top: 70px;
    background: #172432;
    transform: rotate(-13deg);
}

.vx-campaign-phone.b {
    right: 145px;
    top: 28px;
    background:
        radial-gradient(circle at 60% 30%,#69c3ff,#113d7c 42%,#071321 75%);
    transform: rotate(2deg);
}

.vx-campaign-phone.c {
    right: 25px;
    top: 65px;
    background: #dce7f2;
    transform: rotate(12deg);
}


/* =====================================================
   BRANDS
===================================================== */

.vx-brands-section {
    background: #07111c;
}

.vx-brand-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.vx-brand-grid a {
    padding: 28px;
    min-height: 135px;
    border: 1px solid var(--vx-line);
    border-radius: 13px;
    background: #0d1926;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .2s ease;
}

.vx-brand-grid a:hover {
    border-color: rgba(19,120,255,.5);
    transform: translateY(-3px);
}

.vx-brand-grid strong {
    font-size: 24px;
}

.vx-brand-grid span {
    margin-top: 7px;
    color: var(--vx-muted);
    font-size: 11px;
}


/* =====================================================
   WHY
===================================================== */

.vx-why {
    background: #091520;
}

.vx-centered {
    justify-content: center;
    text-align: center;
}

.vx-centered p {
    max-width: 600px;
    margin: 12px auto 0;
    color: var(--vx-muted);
    font-size: 13px;
    line-height: 1.6;
}

.vx-why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.vx-why-grid article {
    min-height: 215px;
    padding: 27px;
    border-radius: 14px;
    background: #101d2a;
    border: 1px solid var(--vx-line);
}

.vx-why-grid article > span {
    color: #1e85ff;
    font-size: 11px;
    font-weight: 900;
}

.vx-why-grid strong {
    display: block;
    margin-top: 24px;
    font-size: 19px;
}

.vx-why-grid p {
    color: var(--vx-muted);
    font-size: 12px;
    line-height: 1.6;
}


/* =====================================================
   CONTACT
===================================================== */

.vx-contact-banner {
    background: #07111c;
    padding: 65px 0;
}

.vx-contact-inner {
    border: 1px solid var(--vx-line);
    background:
        linear-gradient(115deg,#101f30,#0c1723);
    border-radius: 16px;
    min-height: 175px;
    padding: 35px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vx-contact-inner > div > span {
    color: var(--vx-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.vx-contact-inner h2 {
    margin: 7px 0;
    font-size: 30px;
}

.vx-contact-inner p {
    margin: 0;
    color: var(--vx-muted);
    font-size: 12px;
}


/* =====================================================
   DEMO
===================================================== */

.vx-demo {
    background: #112947;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.vx-demo .veltrix-container {
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.vx-demo strong {
    font-size: 10px;
    letter-spacing: .8px;
}

.vx-demo span {
    color: #a9bbce;
    font-size: 11px;
}


/* =====================================================
   FOOTER
===================================================== */

.vx-footer {
    background: #040a10;
    padding: 68px 0 25px;
}

.vx-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 55px;
}

.vx-footer-brand p {
    max-width: 300px;
    color: var(--vx-muted);
    line-height: 1.6;
    font-size: 12px;
}

.vx-footer-demo {
    display: block;
    margin-top: 18px;
    color: #63788e;
    font-size: 10px;
}

.vx-footer-column strong {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
}

.vx-footer-column a {
    display: block;
    margin-top: 10px;
    color: var(--vx-muted);
    font-size: 11px;
}

.vx-footer-column a:hover {
    color: white;
}

.vx-footer-security {
    margin-top: 50px;
    padding: 23px 0;
    border-top: 1px solid var(--vx-line);
    border-bottom: 1px solid var(--vx-line);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.vx-footer-security strong,
.vx-footer-security span {
    display: block;
}

.vx-footer-security strong {
    font-size: 11px;
}

.vx-footer-security span {
    color: var(--vx-muted);
    margin-top: 3px;
    font-size: 9px;
}

.vx-footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #627588;
    font-size: 10px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .vx-main-header-inner {
        grid-template-columns: 150px 1fr;
    }

    .vx-actions {
        display: none;
    }

    .vx-hero-grid {
        gap: 25px;
    }

    .vx-trust-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .vx-products {
        grid-template-columns: repeat(2,1fr);
    }

    .vx-brand-grid,
    .vx-why-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 760px) {

    .veltrix-container {
        width: min(100% - 28px,1320px);
    }

    .vx-topbar-left span:nth-child(n+2),
    .vx-topbar-right {
        display: none;
    }

    .vx-main-header-inner {
        padding: 15px 0;
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .vx-brand {
        font-size: 26px;
    }

    .vx-nav-inner {
        gap: 19px;
    }

    .vx-departments {
        display: none;
    }

    .vx-hero-grid {
        min-height: auto;
        padding: 65px 0;
        grid-template-columns: 1fr;
    }

    .vx-hero h1 {
        font-size: 49px;
        letter-spacing: -3px;
    }

    .vx-hero-mini {
        flex-direction: column;
        gap: 7px;
    }

    .vx-showcase {
        height: 430px;
        transform: scale(.85);
        transform-origin: center;
    }

    .vx-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vx-products,
    .vx-brand-grid,
    .vx-why-grid {
        grid-template-columns: 1fr;
    }

    .vx-categories {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .vx-category-large {
        grid-row: auto;
        min-height: 370px;
    }

    .vx-campaign-box {
        min-height: 560px;
    }

    .vx-campaign-content {
        width: 100%;
        padding: 38px 28px;
    }

    .vx-campaign-content h2 {
        font-size: 36px;
    }

    .vx-campaign-devices {
        top: auto;
        bottom: -70px;
        width: 100%;
        height: 330px;
    }

    .vx-campaign-phone.a {
        right: 58%;
    }

    .vx-campaign-phone.b {
        right: 32%;
    }

    .vx-campaign-phone.c {
        right: 5%;
    }

    .vx-contact-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .vx-demo .veltrix-container {
        padding: 15px 0;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .vx-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vx-footer-security {
        grid-template-columns: 1fr;
    }

    .vx-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


@media (max-width: 470px) {

    .vx-products,
    .vx-footer-grid {
        grid-template-columns: 1fr;
    }

    .vx-trust-grid {
        grid-template-columns: 1fr;
    }

    .vx-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--vx-line);
    }

    .vx-hero h1 {
        font-size: 42px;
    }

    .vx-section-head h2 {
        font-size: 30px;
    }

}


/* VELTRIX 2D PREMIUM */

/* =====================================================
   HEADER PREMIUM
===================================================== */

.vx-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.vx-topbar {
    background: #03080e;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.vx-topbar-inner {
    min-height: 34px;
}

.vx-topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vx-topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #aebdcb;
    font-size: 11px;
    font-weight: 600;
}

.vx-topbar-left svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: #2c90ff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-topbar-right {
    gap: 18px;
}

.vx-topbar-right a {
    color: #8597aa;
    font-size: 11px;
    transition: color .2s ease;
}

.vx-topbar-right a:hover {
    color: #fff;
}

.vx-main-header {
    background: rgba(5,11,18,.98);
}

.vx-main-header-inner {
    min-height: 82px;
    gap: 28px;
}

.vx-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    letter-spacing: -1.6px;
    font-weight: 900;
    font-size: 25px;
    line-height: 1;
}

.vx-brand-name {
    color: #fff;
}

.vx-brand-x {
    position: relative;
    color: #1b82ff;
    margin-left: 2px;
    font-style: italic;
}

.vx-brand-x:after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 3px;
    background: #1b82ff;
    left: -1px;
    bottom: -5px;
    transform: skewX(-25deg);
}

.vx-search {
    height: 44px;
    max-width: 610px;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 8px 30px rgba(0,0,0,.16);
}

.vx-search:focus-within {
    box-shadow:
        0 0 0 2px rgba(19,120,255,.25),
        0 8px 30px rgba(0,0,0,.2);
}

.vx-search input {
    color: #16202b;
    font-size: 13px;
    padding-left: 16px;
}

.vx-search input::placeholder {
    color: #788594;
}

.vx-search button {
    width: 52px;
    min-width: 52px;
    background: linear-gradient(135deg,#167fff,#006cf2);
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
}

.vx-search button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
}

.vx-actions {
    gap: 8px;
    flex: 0 0 auto;
}

.vx-action {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 9px;
    transition:
        background .2s ease,
        transform .2s ease;
}

.vx-action:hover {
    background: rgba(255,255,255,.055);
    transform: translateY(-1px);
}

.vx-action-icon {
    position: relative;
    width: 23px;
    min-width: 23px;
    display: grid;
    place-items: center;
}

.vx-action-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #dce7f1;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-action-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.vx-action-copy small {
    color: #718599;
    font-size: 9px;
    margin-bottom: 3px;
    white-space: nowrap;
}

.vx-action-copy strong {
    color: #eef5fc;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.vx-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1378ff;
    border: 2px solid #07111c;
    font-size: 8px;
    font-weight: 800;
}

.vx-nav {
    background: #08121d;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.vx-nav-inner {
    min-height: 42px;
    gap: 22px;
}

.vx-nav-inner a {
    color: #9badbf;
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
    transition: color .18s ease;
}

.vx-nav-inner a:hover {
    color: #fff;
}

.vx-departments {
    color: #fff !important;
    font-weight: 750 !important;
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.vx-departments svg {
    width: 15px;
    height: 15px;
    margin-right: 7px;
    fill: none;
    stroke: #2b8cff;
    stroke-width: 2;
    stroke-linecap: round;
}

.vx-offers-link {
    margin-left: auto;
    color: #4da0ff !important;
}

.vx-offers-link span {
    display: inline-block;
    margin-left: 4px;
    color: #167fff;
    font-size: 7px;
    vertical-align: middle;
}


/* =====================================================
   HERO REFINEMENT
===================================================== */

.vx-hero {
    padding-top: 64px;
    padding-bottom: 56px;
}

.vx-hero h1 {
    max-width: 680px;
    font-size: clamp(43px,5vw,72px);
    line-height: .96;
    letter-spacing: -3.2px;
}

.vx-hero-content > p {
    max-width: 590px;
    font-size: 15px;
    line-height: 1.75;
}

.vx-hero-actions {
    margin-top: 27px;
}

.vx-btn-primary,
.vx-btn-secondary {
    min-height: 43px;
    padding: 0 19px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 750;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.vx-btn-primary:hover,
.vx-btn-secondary:hover {
    transform: translateY(-2px);
}

.vx-btn-primary:hover {
    box-shadow: 0 12px 30px rgba(19,120,255,.25);
}


/* =====================================================
   TRUST
===================================================== */

.vx-trust {
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.vx-trust-item {
    min-height: 92px;
}

.vx-trust-item strong {
    font-size: 11px;
}

.vx-trust-item span {
    line-height: 1.45;
}


/* =====================================================
   PRODUCT CARDS PREMIUM
===================================================== */

.vx-products {
    gap: 16px;
}

.vx-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 26px rgba(0,0,0,.11);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.vx-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 38px rgba(0,0,0,.18);
}

.vx-product-media {
    min-height: 245px;
    background:
        radial-gradient(circle at 50% 35%,rgba(26,126,255,.16),transparent 38%),
        linear-gradient(180deg,#f7fafc,#edf2f6);
}

.vx-product-info {
    padding: 18px 18px 20px;
}

.vx-product-brand {
    font-size: 9px;
    letter-spacing: .1em;
    font-weight: 850;
}

.vx-product-info h3 {
    min-height: 39px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.35;
}

.vx-product-old-price {
    margin-top: 13px;
    font-size: 10px;
}

.vx-product-price {
    margin-top: 3px;
    font-size: 21px;
    letter-spacing: -.6px;
}

.vx-product-installment {
    margin-top: 5px;
    font-size: 10px;
}

.vx-product-pix {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 750;
}

.vx-discount {
    border-radius: 5px;
    padding: 5px 7px;
    font-size: 9px;
    font-weight: 850;
}

.vx-favorite {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


/* =====================================================
   CATEGORIES
===================================================== */

.vx-category {
    border: 1px solid rgba(255,255,255,.055);
    transition:
        border-color .22s ease,
        background .22s ease,
        transform .22s ease;
}

.vx-category:hover {
    border-color: rgba(40,139,255,.32);
    background: #102031;
    transform: translateY(-3px);
}

.vx-category-copy strong {
    letter-spacing: -.3px;
}


/* =====================================================
   BRAND CARDS
===================================================== */

.vx-brand-card {
    transition:
        transform .22s ease,
        border-color .22s ease;
}

.vx-brand-card:hover {
    transform: translateY(-3px);
    border-color: rgba(32,135,255,.3);
}


/* =====================================================
   BENEFITS
===================================================== */

.vx-why-card {
    transition:
        transform .22s ease,
        border-color .22s ease;
}

.vx-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35,139,255,.27);
}


/* =====================================================
   RESPONSIVE 2D
===================================================== */

@media (max-width: 1150px) {

    .vx-main-header-inner {
        gap: 18px;
    }

    .vx-action-copy {
        display: none;
    }

    .vx-action {
        width: 36px;
        justify-content: center;
        padding: 4px;
    }

    .vx-search {
        max-width: none;
    }

}

@media (max-width: 820px) {

    .vx-topbar-left span:nth-child(2),
    .vx-topbar-left span:nth-child(3) {
        display: none;
    }

    .vx-main-header-inner {
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .vx-brand {
        order: 1;
    }

    .vx-actions {
        order: 2;
        margin-left: auto;
    }

    .vx-search {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
    }

    .vx-nav-inner {
        overflow-x: auto;
    }

    .vx-hero {
        padding-top: 46px;
    }

}

@media (max-width: 520px) {

    .veltrix-container {
        width: min(100% - 28px,1320px);
    }

    .vx-topbar-right {
        display: none;
    }

    .vx-brand {
        font-size: 22px;
    }

    .vx-main-header-inner {
        min-height: auto;
    }

    .vx-search {
        height: 42px;
    }

    .vx-nav-inner {
        gap: 17px;
    }

    .vx-hero h1 {
        font-size: 42px;
        letter-spacing: -2.2px;
    }

    .vx-product-card:hover,
    .vx-category:hover,
    .vx-brand-card:hover,
    .vx-why-card:hover {
        transform: none;
    }

}


/* VELTRIX 3B — CATÁLOGO DINÂMICO */

.vx-product-image-link {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vx-product-real-image {
    width: 82%;
    height: 205px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
}

.vx-product-card:hover .vx-product-real-image {
    transform: scale(1.035);
}

.vx-product-placeholder {
    width: 120px;
    height: 180px;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(44,139,255,.9),
            rgba(7,20,34,.95) 46%,
            #050a10 75%
        );
    box-shadow:
        0 18px 34px rgba(0,0,0,.22);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    color: rgba(255,255,255,.8);
    font-size: 8px;
    letter-spacing: .18em;
    font-weight: 800;
}

.vx-favorite svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #647383;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-favorite:hover svg {
    stroke: #1378ff;
}


/* =====================================================
   VELTRIX 3C — SINGLE PRODUCT
===================================================== */

.vx-single-product {
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(19,120,255,.09),
            transparent 26%
        ),
        #07111c;
    min-height: 70vh;
    padding: 32px 0 72px;
}

.vx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #6f8498;
    font-size: 10px;
    margin-bottom: 28px;
}

.vx-breadcrumb a {
    color: #7f94a8;
}

.vx-breadcrumb a:hover {
    color: #fff;
}

.vx-breadcrumb strong {
    color: #becbd7;
    font-weight: 600;
}

.vx-product-main {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
    gap: 58px;
    align-items: start;
}

.vx-product-gallery-main {
    min-height: 570px;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(25,125,255,.14),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            #f8fafc,
            #edf2f6
        );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
    overflow: hidden;
    box-shadow:
        0 22px 65px rgba(0,0,0,.21);
}

.vx-single-product-image {
    display: block;
    width: 100%;
    max-width: 500px;
    max-height: 480px;
    object-fit: contain;
}

.vx-single-placeholder {
    width: 245px;
    height: 390px;
    border-radius: 35px;
    background:
        radial-gradient(
            circle at 50% 28%,
            #197dff,
            #0c315d 35%,
            #07111b 70%
        );
    box-shadow:
        0 35px 70px rgba(0,0,0,.28);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.vx-single-placeholder span {
    color: #64adff;
    font-size: 9px;
    letter-spacing: .2em;
    font-weight: 800;
}

.vx-single-placeholder strong {
    margin-top: 6px;
    color: #fff;
    font-size: 18px;
}

.vx-gallery-trust {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.vx-gallery-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8ea2b5;
    font-size: 10px;
}

.vx-gallery-trust svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #258aff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-product-summary {
    padding-top: 9px;
}

.vx-single-brand {
    color: #3294ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    margin-bottom: 12px;
}

.vx-product-summary h1 {
    color: #fff;
    font-size: clamp(31px,3.2vw,47px);
    line-height: 1.06;
    letter-spacing: -1.7px;
    margin: 0;
}

.vx-product-code {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 15px;
    color: #687d91;
    font-size: 9px;
}

.vx-product-code strong {
    color: #93a6b9;
}

.vx-single-divider {
    height: 1px;
    background: rgba(255,255,255,.075);
    margin: 27px 0;
}

.vx-single-old-price {
    color: #8193a4;
    font-size: 11px;
}

.vx-single-old-price span {
    text-decoration: line-through;
}

.vx-single-price-row {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 4px;
}

.vx-single-price {
    color: #fff;
    font-size: 36px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.vx-single-discount {
    padding: 5px 8px;
    border-radius: 5px;
    color: #fff;
    background: #147dff;
    font-size: 9px;
    font-weight: 850;
}

.vx-single-installment {
    margin-top: 9px;
    color: #91a4b7;
    font-size: 11px;
}

.vx-single-installment strong {
    color: #dbe6f0;
}

.vx-single-pix {
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(36,151,255,.19);
    border-radius: 10px;
    background: rgba(18,119,255,.075);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vx-single-pix-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #147cff;
    font-size: 13px;
    font-weight: 900;
}

.vx-single-pix small,
.vx-single-pix strong {
    display: block;
}

.vx-single-pix small {
    color: #7790a5;
    font-size: 9px;
}

.vx-single-pix strong {
    margin-top: 3px;
    color: #6bb3ff;
    font-size: 15px;
}

.vx-single-stock {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 19px;
}

.vx-stock-dot {
    width: 8px;
    height: 8px;
    margin-top: 4px;
    border-radius: 50%;
}

.vx-single-stock.is-available .vx-stock-dot {
    background: #25c66c;
    box-shadow: 0 0 0 4px rgba(37,198,108,.1);
}

.vx-single-stock.is-unavailable .vx-stock-dot {
    background: #e64d56;
}

.vx-single-stock strong,
.vx-single-stock small {
    display: block;
}

.vx-single-stock strong {
    color: #e8f0f7;
    font-size: 10px;
}

.vx-single-stock small {
    margin-top: 3px;
    color: #71869a;
    font-size: 9px;
}

.vx-purchase-box {
    display: flex;
    gap: 10px;
    margin-top: 23px;
}

.vx-quantity {
    height: 49px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 9px;
    background: #0c1825;
}

.vx-quantity button,
.vx-quantity input {
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
}

.vx-quantity button {
    width: 34px;
    color: #8397aa;
}

.vx-quantity input {
    width: 36px;
    font-weight: 750;
    appearance: textfield;
}

.vx-buy-button {
    flex: 1;
    min-height: 49px;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #1685ff,
            #0067ed
        );
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    box-shadow:
        0 13px 30px rgba(13,111,244,.2);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.vx-buy-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow:
        0 16px 36px rgba(13,111,244,.3);
}

.vx-buy-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.vx-buy-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-cart-phase-notice {
    margin: 8px 0 0;
    color: #657a8e;
    font-size: 9px;
    text-align: right;
}

.vx-single-benefits {
    margin-top: 25px;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.075);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.vx-single-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vx-single-benefits svg {
    width: 17px;
    height: 17px;
    min-width: 17px;
    fill: none;
    stroke: #318fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-single-benefits span {
    color: #71869a;
    font-size: 8px;
    line-height: 1.45;
}

.vx-single-benefits strong {
    display: block;
    color: #c7d3df;
    font-size: 9px;
    margin-bottom: 2px;
}

.vx-product-information {
    margin-top: 72px;
    padding-top: 55px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
}

.vx-product-description h2,
.vx-specifications h2,
.vx-warranty-box h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 27px;
    letter-spacing: -1px;
}

.vx-product-description-content {
    margin-top: 22px;
    color: #8ea1b4;
    font-size: 13px;
    line-height: 1.8;
}

.vx-product-description-content p:first-child {
    margin-top: 0;
}

.vx-product-details {
    border-radius: 14px;
    background: #0c1926;
    border: 1px solid rgba(255,255,255,.065);
    padding: 24px;
}

.vx-product-details h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 14px;
}

.vx-product-details dl {
    margin: 0;
}

.vx-product-details dl > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,.055);
}

.vx-product-details dt,
.vx-product-details dd {
    margin: 0;
    font-size: 10px;
}

.vx-product-details dt {
    color: #71869a;
}

.vx-product-details dd {
    color: #d0dbe5;
    text-align: right;
}

.vx-specifications {
    margin-top: 64px;
}

.vx-spec-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.vx-spec-item {
    min-height: 62px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 10px;
    background: #0b1723;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.vx-spec-item span {
    color: #2e91ff;
    font-size: 9px;
    font-weight: 800;
}

.vx-spec-item strong {
    color: #c7d4df;
    font-size: 11px;
    line-height: 1.45;
}

.vx-warranty-box {
    margin-top: 55px;
    border-radius: 15px;
    border: 1px solid rgba(27,132,255,.16);
    background:
        linear-gradient(
            135deg,
            rgba(18,125,255,.08),
            rgba(10,23,36,.7)
        );
    padding: 28px;
    display: flex;
    gap: 19px;
}

.vx-warranty-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 11px;
    background: #147dff;
    display: grid;
    place-items: center;
}

.vx-warranty-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-warranty-box h2 {
    font-size: 21px;
}

.vx-warranty-box p {
    color: #879caf;
    font-size: 11px;
    line-height: 1.7;
    margin: 10px 0 0;
}

.vx-single-demo-notice {
    margin-top: 45px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 7px;
    border: 1px solid rgba(31,137,255,.15);
    background: rgba(15,121,255,.055);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
}

.vx-single-demo-notice strong {
    color: #3f9cff;
    font-size: 9px;
    letter-spacing: .09em;
}

.vx-single-demo-notice span {
    color: #6f8598;
    font-size: 9px;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .vx-product-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .vx-product-gallery-main {
        min-height: 480px;
    }

    .vx-product-information {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 620px) {

    .vx-single-product {
        padding-top: 22px;
    }

    .vx-product-gallery-main {
        min-height: 390px;
        padding: 25px;
    }

    .vx-single-product-image {
        max-height: 340px;
    }

    .vx-product-summary h1 {
        font-size: 33px;
    }

    .vx-single-price {
        font-size: 31px;
    }

    .vx-purchase-box {
        flex-direction: column;
    }

    .vx-quantity {
        width: 100%;
    }

    .vx-quantity input {
        flex: 1;
    }

    .vx-single-benefits {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .vx-spec-grid {
        grid-template-columns: 1fr;
    }

    .vx-gallery-trust {
        flex-direction: column;
        gap: 8px;
    }

    .vx-single-demo-notice {
        flex-direction: column;
    }

}


/* =====================================================
   VELTRIX 4A — CARRINHO
===================================================== */

.vx-cart-page {
    min-height: 70vh;
    padding: 32px 0 72px;
    background:
        radial-gradient(
            circle at 80% 4%,
            rgba(19,120,255,.08),
            transparent 26%
        ),
        #07111c;
}

.vx-cart-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.vx-cart-heading h1 {
    margin: 7px 0 0;
    color: #fff;
    font-size: 40px;
    letter-spacing: -1.5px;
}

.vx-cart-heading p {
    margin: 8px 0 0;
    color: #8195a8;
    font-size: 11px;
}

.vx-cart-heading-count {
    color: #71879b;
    font-size: 10px;
}

.vx-cart-message {
    margin-bottom: 18px;
    padding: 12px 15px;
    border-radius: 8px;
    background: #0d1a27;
    border: 1px solid rgba(255,255,255,.07);
    color: #9aacbd;
    font-size: 10px;
}

.vx-cart-message.is-success {
    border-color: rgba(37,198,108,.2);
    color: #82dbaa;
}

.vx-cart-message.is-error {
    border-color: rgba(230,77,86,.2);
    color: #ef9096;
}

.vx-cart-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    gap: 28px;
    align-items: start;
}

.vx-cart-items {
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 14px;
    background: #0b1723;
    overflow: hidden;
}

.vx-cart-item {
    display: grid;
    grid-template-columns: 115px minmax(0,1fr) 95px 125px 65px;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.vx-cart-item-image {
    min-height: 105px;
    border-radius: 9px;
    background: #f2f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vx-cart-item-image .vx-product-real-image {
    width: 90%;
    height: 95px;
    object-fit: contain;
}

.vx-cart-item-image .vx-product-placeholder {
    width: 54px;
    height: 84px;
    border-radius: 9px;
    padding: 6px;
    font-size: 4px;
}

.vx-cart-item-info h2 {
    margin: 6px 0 7px;
    font-size: 14px;
    line-height: 1.35;
    color: #eaf1f7;
}

.vx-cart-item-info h2 a:hover {
    color: #54a6ff;
}

.vx-cart-unit-price {
    color: #718699;
    font-size: 9px;
}

.vx-cart-item-quantity label {
    display: block;
    margin-bottom: 6px;
    color: #6f8498;
    font-size: 8px;
}

.vx-cart-item-quantity input {
    width: 68px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    background: #07121d;
    color: #fff;
    text-align: center;
    outline: none;
}

.vx-cart-item-subtotal small,
.vx-cart-item-subtotal strong {
    display: block;
}

.vx-cart-item-subtotal small {
    color: #6e8497;
    font-size: 8px;
}

.vx-cart-item-subtotal strong {
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
}

.vx-cart-remove button {
    padding: 0;
    border: 0;
    background: none;
    color: #73899c;
    cursor: pointer;
    font-size: 9px;
}

.vx-cart-remove button:hover {
    color: #ef6f77;
}

.vx-cart-update {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
}

.vx-cart-update a {
    color: #8195a8;
    font-size: 10px;
}

.vx-cart-update button {
    min-height: 38px;
    border: 1px solid rgba(38,139,255,.22);
    border-radius: 7px;
    padding: 0 15px;
    background: rgba(19,120,255,.08);
    color: #58a6ff;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.vx-cart-summary {
    position: sticky;
    top: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: #0d1926;
}

.vx-cart-summary h2 {
    margin: 7px 0 22px;
    color: #fff;
    font-size: 19px;
}

.vx-cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,.055);
    color: #7d91a4;
    font-size: 9px;
}

.vx-cart-summary-row strong {
    color: #becbd7;
    font-weight: 600;
    text-align: right;
}

.vx-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    margin-top: 9px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.vx-cart-summary-total span {
    color: #b9c7d3;
    font-size: 11px;
}

.vx-cart-summary-total strong {
    color: #fff;
    font-size: 22px;
    letter-spacing: -.7px;
}

.vx-cart-checkout {
    width: 100%;
    min-height: 45px;
    margin-top: 22px;
    border: 0;
    border-radius: 8px;
    background: #1378ff;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.vx-cart-checkout:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.vx-cart-summary p {
    margin: 10px 0 0;
    color: #647a8e;
    font-size: 8px;
    line-height: 1.5;
    text-align: center;
}

.vx-empty-cart {
    min-height: 420px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 15px;
    background: #0a1622;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px;
}

.vx-empty-cart-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(19,120,255,.1);
    display: grid;
    place-items: center;
}

.vx-empty-cart-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #3996ff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vx-empty-cart h2 {
    margin: 19px 0 0;
    color: #fff;
    font-size: 23px;
}

.vx-empty-cart p {
    margin: 9px 0 20px;
    color: #7c90a3;
    font-size: 11px;
}

@media (max-width: 1000px) {

    .vx-cart-layout {
        grid-template-columns: 1fr;
    }

    .vx-cart-summary {
        position: static;
    }

    .vx-cart-item {
        grid-template-columns:
            100px
            minmax(0,1fr)
            80px
            105px;
    }

    .vx-cart-remove {
        grid-column: 2 / -1;
    }
}

@media (max-width: 680px) {

    .vx-cart-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .vx-cart-item {
        grid-template-columns: 80px 1fr;
        gap: 13px;
    }

    .vx-cart-item-image {
        grid-row: span 2;
        min-height: 90px;
    }

    .vx-cart-item-quantity,
    .vx-cart-item-subtotal,
    .vx-cart-remove {
        grid-column: 2;
    }

    .vx-cart-update {
        align-items: stretch;
        flex-direction: column;
    }
}



/* =====================================================
   VELTRIX 4C — INTERAÇÃO DO CARRINHO
===================================================== */

.vx-cart-count {
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.vx-cart-count.is-updated {
    transform: scale(1.28);
    box-shadow:
        0 0 0 5px rgba(19,120,255,.13);
}


.vx-cart-toast {
    position: fixed;
    z-index: 99999;
    right: 22px;
    bottom: 22px;
    width: min(360px, calc(100vw - 44px));
    padding: 15px 17px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: #0c1926;
    box-shadow:
        0 20px 55px rgba(0,0,0,.35);
    color: #dce8f2;
    font-size: 11px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;
}

.vx-cart-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vx-cart-toast.is-success {
    border-color:
        rgba(37,198,108,.22);
}

.vx-cart-toast.is-error {
    border-color:
        rgba(230,77,86,.25);
    color: #f0a0a5;
}


.vx-buy-button.is-loading {
    opacity: .7;
    cursor: wait;
}


.vx-cart-item {
    transition:
        opacity .18s ease,
        transform .18s ease;
}

.vx-cart-item.is-loading {
    opacity: .62;
    pointer-events: none;
}

.vx-cart-item.is-removing {
    opacity: 0;
    transform: translateX(10px);
}


.vx-cart-qty-control {
    width: 92px;
    height: 38px;
    display: grid;
    grid-template-columns:
        27px
        38px
        27px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    background: #07121d;
}

.vx-cart-item-quantity
.vx-cart-qty-control
input {
    width: 38px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.vx-cart-item-quantity
.vx-cart-qty-control
input::-webkit-inner-spin-button,
.vx-cart-item-quantity
.vx-cart-qty-control
input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.vx-cart-qty-control button {
    width: 27px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8195a8;
    cursor: pointer;
    font-size: 14px;
    transition:
        color .18s ease,
        background .18s ease;
}

.vx-cart-qty-control button:hover {
    color: #fff;
    background:
        rgba(19,120,255,.09);
}


.vx-cart-update button.is-automatic {
    opacity: .55;
    cursor: default;
}


.vx-purchase-box .vx-quantity button:not(:disabled) {
    cursor: pointer;
}

.vx-purchase-box .vx-quantity button:not(:disabled):hover {
    color: #fff;
    background:
        rgba(19,120,255,.08);
}


@media (max-width: 680px) {

    .vx-cart-toast {
        right: 14px;
        bottom: 14px;
        width:
            calc(100vw - 28px);
    }

}

