/* ============================================================
   VENTACTIVE
   HOME HERO / COMMERCE STAGE
============================================================ */

.vcHomeHero{

    position:relative;

    min-height:
        calc(
            100vh -
            var(--vc-header-height,82px)
        );

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 42%,
            #f3f7fa 100%
        );

    font-family:
        Inter,
        "Helvetica Neue",
        Arial,
        sans-serif;

}


/* ============================================================
   AMBIENT BACKGROUND
============================================================ */

.vcHeroAmbient{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}


.vcHeroGlow{

    position:absolute;

    border-radius:50%;

    filter:blur(1px);

}


.vcHeroGlowOne{

    width:700px;
    height:700px;

    top:-400px;
    right:-120px;

    background:
        radial-gradient(
            circle,
            rgba(255,138,0,.11),
            transparent 68%
        );

}


.vcHeroGlowTwo{

    width:650px;
    height:650px;

    bottom:-430px;
    left:-240px;

    background:
        radial-gradient(
            circle,
            rgba(23,77,120,.10),
            transparent 70%
        );

}


.vcHeroGrid{

    position:absolute;

    inset:0;

    opacity:.35;

    background-image:
        linear-gradient(
            rgba(23,77,120,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23,77,120,.035) 1px,
            transparent 1px
        );

    background-size:
        54px 54px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 35%,
            #000 100%
        );

}


.vcHeroNoise{

    position:absolute;

    inset:0;

    opacity:.18;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.4) 0,
            transparent 1px
        );

    background-size:
        7px 7px;

}


/* ============================================================
   CONTAINER
============================================================ */

.vcHeroContainer{

    position:relative;

    z-index:2;

    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    min-height:
        calc(
            100vh -
            var(--vc-header-height,82px)
        );

    margin:auto;

    display:grid;

    grid-template-columns:
        minmax(420px,.84fr)
        minmax(620px,1.16fr);

    align-items:center;

    gap:50px;

    padding:
        55px
        0
        48px;

}


/* ============================================================
   COPY
============================================================ */

.vcHeroCopy{

    position:relative;

    z-index:5;

    max-width:650px;

}


.vcHeroEyebrow{

    display:inline-flex;
    align-items:center;

    gap:9px;

    margin-bottom:24px;

    color:
        var(--vc-blue);

    font-size:11px;
    font-weight:800;

    letter-spacing:.13em;

    text-transform:uppercase;

}


.vcHeroEyebrowDot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:
        var(--vc-orange);

    box-shadow:
        0 0 0 6px
        rgba(255,138,0,.10);

}


.vcHeroTitle{

    max-width:650px;

    margin:
        0
        0
        22px;

    color:
        var(--vc-ink);

    font-size:
        clamp(
            46px,
            5.1vw,
            82px
        );

    font-weight:650;

    line-height:.96;

    letter-spacing:-.065em;

}


.vcHeroTitle span{

    display:block;

    margin-top:9px;

    color:
        var(--vc-blue);

}


.vcHeroDescription{

    max-width:500px;

    margin:
        0
        0
        30px;

    color:
        var(--vc-text);

    font-size:16px;

    line-height:1.7;

}


/* ============================================================
   MAIN CTA
============================================================ */

.vcHeroActions{

    display:flex;
    align-items:center;

    gap:12px;

}


.vcHeroPrimary,
.vcHeroSecondary{

    height:52px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    border-radius:14px;

    font-family:inherit;
    font-size:13px;
    font-weight:700;

    cursor:pointer;

    text-decoration:none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}


.vcHeroPrimary{

    padding:
        0
        22px;

    border:0;

    background:
        var(--vc-blue);

    color:#fff;

    box-shadow:
        0 14px 30px
        rgba(23,77,120,.16);

}


.vcHeroPrimary:hover{

    transform:
        translateY(-3px);

    background:
        var(--vc-blue-dark);

    box-shadow:
        0 20px 38px
        rgba(23,77,120,.22);

}


.vcHeroPrimary svg{

    width:17px;
    height:17px;

    transition:
        transform .2s ease;

}


.vcHeroPrimary:hover svg{

    transform:
        translateX(3px);

}


.vcHeroSecondary{

    padding:
        0
        18px;

    border:
        1px solid
        var(--vc-line);

    background:
        rgba(255,255,255,.75);

    color:
        var(--vc-blue);

}


.vcHeroSecondary:hover{

    transform:
        translateY(-3px);

    background:#fff;

    box-shadow:
        0 12px 25px
        rgba(16,47,73,.08);

}


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

.vcHeroCategories{

    margin-top:42px;

}


.vcHeroCategoriesLabel{

    display:block;

    margin-bottom:12px;

    color:
        var(--vc-muted);

    font-size:10px;
    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;

}


.vcHeroCategoryList{

    display:flex;
    flex-wrap:wrap;

    gap:7px;

}


.vcHeroCategory{

    height:34px;

    padding:
        0
        12px;

    border:
        1px solid var(--vc-line);

    border-radius:999px;

    background:
        rgba(255,255,255,.7);

    color:
        var(--vc-text);

    font-family:inherit;
    font-size:10px;
    font-weight:650;

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;

}


.vcHeroCategory:hover{

    transform:
        translateY(-2px);

    color:
        var(--vc-blue);

    background:#fff;

}


.vcHeroCategory.is-active{

    border-color:
        var(--vc-blue);

    background:
        var(--vc-blue);

    color:#fff;

}


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

.vcHeroBenefits{

    margin-top:28px;

    display:flex;
    align-items:center;

    gap:24px;

}


.vcHeroBenefit{

    display:flex;
    align-items:center;

    gap:8px;

    color:
        var(--vc-muted);

    font-size:10px;
    font-weight:600;

}


.vcHeroBenefit > span{

    width:25px;
    height:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        var(--vc-blue-soft);

    color:
        var(--vc-blue);

}


.vcHeroBenefit svg{

    width:14px;
    height:14px;

}


/* ============================================================
   PRODUCT STAGE
============================================================ */

.vcHeroStage{

    position:relative;

    min-height:680px;

    display:flex;
    align-items:center;
    justify-content:center;

    perspective:1200px;

}


/* ============================================================
   BIG NUMBER
============================================================ */

.vcHeroStageNumber{

    position:absolute;

    top:3%;
    right:4%;

    color:
        rgba(23,77,120,.055);

    font-size:
        clamp(
            150px,
            17vw,
            270px
        );

    font-weight:800;

    line-height:1;

    letter-spacing:-.08em;

    user-select:none;

}


/* ============================================================
   ORBITS
============================================================ */

.vcHeroOrbit{

    position:absolute;

    left:50%;
    top:43%;

    border:
        1px solid
        rgba(23,77,120,.08);

    border-radius:50%;

    transform:
        translate(-50%,-50%);

}


.vcHeroOrbitOne{

    width:520px;
    height:520px;

    animation:
        vcHeroOrbitRotate
        28s linear infinite;

}


.vcHeroOrbitTwo{

    width:390px;
    height:390px;

    border-style:dashed;

    animation:
        vcHeroOrbitRotateReverse
        22s linear infinite;

}


@keyframes vcHeroOrbitRotate{

    to{

        transform:
            translate(-50%,-50%)
            rotate(360deg);

    }

}


@keyframes vcHeroOrbitRotateReverse{

    to{

        transform:
            translate(-50%,-50%)
            rotate(-360deg);

    }

}


/* ============================================================
   PRODUCT GLOW
============================================================ */

.vcHeroProductGlow{

    position:absolute;

    left:50%;
    top:42%;

    width:460px;
    height:460px;

    border-radius:50%;

    transform:
        translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,138,0,.14),
            rgba(255,138,0,.03) 48%,
            transparent 70%
        );

    filter:blur(1px);

    transition:
        transform .6s ease,
        opacity .6s ease;

}


/* ============================================================
   PRODUCT VISUAL
============================================================ */

.vcHeroProductVisual{

    position:absolute;

    left:50%;
    top:42%;

    width:510px;
    height:460px;

    transform:
        translate(-50%,-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    transform-style:
        preserve-3d;

    transition:
        transform .2s ease;

}


.vcHeroProductImage{

    position:relative;

    z-index:2;

    width:100%;
    height:100%;

    object-fit:contain;

    filter:
        drop-shadow(
            0 35px 26px
            rgba(16,47,73,.14)
        );

    animation:
        vcHeroProductFloat
        5s ease-in-out infinite;

    transition:
        opacity .35s ease,
        transform .5s
        cubic-bezier(.2,.8,.2,1);

}


.vcHeroProductImage.is-changing{

    opacity:0;

    transform:
        scale(.9)
        translateY(15px);

}


@keyframes vcHeroProductFloat{

    0%,
    100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-10px);

    }

}


.vcHeroProductShadow{

    position:absolute;

    z-index:1;

    left:50%;
    bottom:9%;

    width:65%;
    height:45px;

    border-radius:50%;

    transform:
        translateX(-50%);

    background:
        rgba(16,47,73,.13);

    filter:blur(20px);

    transition:
        transform .2s ease;

}


.vcHeroProductPlaceholder{

    width:300px;
    height:300px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        var(--vc-blue-soft);

    color:
        var(--vc-blue);

    font-size:30px;
    font-weight:700;

}


/* ============================================================
   PRODUCT INFO
============================================================ */

.vcHeroProductInfo{

    position:absolute;

    left:4%;
    bottom:5%;

    z-index:7;

    width:420px;

    padding:
        20px
        22px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:20px;

    background:
        rgba(255,255,255,.78);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        0 22px 55px
        rgba(16,47,73,.10);

    transition:
        opacity .25s ease,
        transform .3s ease;

}


.vcHeroProductInfo.is-changing{

    opacity:0;

    transform:
        translateY(8px);

}


.vcHeroProductCategory{

    margin-bottom:7px;

    color:
        var(--vc-blue);

    font-size:9px;
    font-weight:800;

    letter-spacing:.11em;

    text-transform:uppercase;

}


.vcHeroProductName{

    margin:0;

    display:-webkit-box;

    overflow:hidden;

    color:
        var(--vc-ink);

    font-size:19px;
    font-weight:680;

    line-height:1.25;

    letter-spacing:-.03em;

    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

}


.vcHeroPriceRow{

    margin-top:15px;

    display:flex;
    align-items:center;

    gap:13px;

}


.vcHeroProductPrice{

    color:
        var(--vc-ink);

    font-size:27px;

    letter-spacing:-.05em;

}


.vcHeroShipping{

    color:#178450;

    font-size:10px;
    font-weight:700;

}


.vcHeroProductActions{

    margin-top:17px;

    display:grid;

    grid-template-columns:
        1fr
        auto;

    gap:8px;

}


.vcHeroAddCart,
.vcHeroViewProduct{

    height:43px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    border-radius:11px;

    font-family:inherit;
    font-size:10px;
    font-weight:750;

    text-decoration:none;

    cursor:pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.vcHeroAddCart{

    border:0;

    background:
        var(--vc-orange);

    color:#fff;

}


.vcHeroAddCart:hover{

    transform:
        translateY(-2px);

    background:
        var(--vc-orange-dark);

    box-shadow:
        0 10px 24px
        rgba(255,138,0,.24);

}


.vcHeroAddCart svg{

    width:17px;
    height:17px;

}


.vcHeroViewProduct{

    padding:
        0
        14px;

    border:
        1px solid
        var(--vc-line);

    background:#fff;

    color:
        var(--vc-blue);

}


.vcHeroViewProduct:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(16,47,73,.08);

}


.vcHeroViewProduct svg{

    width:14px;
    height:14px;

}


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

.vcHeroFloatingProduct{

    position:absolute;

    z-index:8;

    width:78px;
    height:78px;

    padding:8px;

    border:
        1px solid
        rgba(17,24,32,.06);

    border-radius:20px;

    background:
        rgba(255,255,255,.85);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 14px 35px
        rgba(16,47,73,.10);

    cursor:pointer;

    transition:
        transform .3s
        cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;

}


.vcHeroFloatingProduct:nth-child(1){

    top:15%;
    left:4%;

}


.vcHeroFloatingProduct:nth-child(2){

    top:18%;
    right:2%;

}


.vcHeroFloatingProduct:nth-child(3){

    top:48%;
    right:-1%;

}


.vcHeroFloatingProduct:nth-child(4){

    top:43%;
    left:1%;

}


.vcHeroFloatingProduct:hover{

    transform:
        translateY(-7px)
        scale(1.07);

    border-color:
        rgba(255,138,0,.35);

    box-shadow:
        0 20px 42px
        rgba(16,47,73,.16);

}


.vcHeroFloatingImage{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

}


.vcHeroFloatingImage img{

    width:100%;
    height:100%;

    object-fit:contain;

}


.vcHeroFloatingPlus{

    position:absolute;

    right:-5px;
    bottom:-5px;

    width:23px;
    height:23px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
        3px solid #fff;

    border-radius:50%;

    background:
        var(--vc-blue);

    color:#fff;

    font-size:12px;
    font-weight:700;

}


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

.vcHeroProductNav{

    position:absolute;

    right:4%;
    bottom:7%;

    z-index:9;

    display:flex;
    align-items:center;

    gap:10px;

}


.vcHeroNavButton{

    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
        1px solid var(--vc-line);

    border-radius:50%;

    background:
        rgba(255,255,255,.85);

    color:
        var(--vc-blue);

    cursor:pointer;

    transition:
        transform .2s ease,
        background .2s ease;

}


.vcHeroNavButton:hover{

    transform:
        scale(1.08);

    background:#fff;

}


.vcHeroProgress{

    display:flex;
    align-items:center;

    gap:5px;

}


.vcHeroProgressItem{

    width:auto;
    height:20px;

    padding:0;

    display:flex;
    align-items:center;

    border:0;

    background:none;

    cursor:pointer;

}


.vcHeroProgressItem span{

    display:block;

    width:7px;
    height:7px;

    border-radius:999px;

    background:
        rgba(23,77,120,.18);

    transition:
        width .3s ease,
        background .3s ease;

}


.vcHeroProgressItem.is-active span{

    width:25px;

    background:
        var(--vc-orange);

}

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

/* ============================================================
   LARGE LAPTOP
============================================================ */

@media(max-width:1250px){

    .vcHeroContainer{

        grid-template-columns:
            minmax(360px,.82fr)
            minmax(500px,1.18fr);

        gap:24px;

    }


    .vcHeroCopy,
    .vcHeroStage{

        min-width:0;

    }


    .vcHeroStage{

        min-height:610px;

    }


    .vcHeroProductVisual{

        width:420px;
        height:390px;

    }


    .vcHeroProductInfo{

        width:360px;

    }

}


/* ============================================================
   TABLET / SMALL LAPTOP
============================================================ */

@media(max-width:1024px){

    .vcHomeHero{

        min-height:auto;

    }


    .vcHeroContainer{

        width:
            min(
                100% - 40px,
                900px
            );

        min-height:auto;

        grid-template-columns:1fr;

        gap:10px;

        padding:
            58px
            0
            50px;

    }


    .vcHeroCopy{

        width:100%;
        max-width:none;
        min-width:0;

    }


    .vcHeroTitle{

        width:100%;
        max-width:760px;

        font-size:
            clamp(
                48px,
                7.2vw,
                72px
            );

    }


    .vcHeroDescription{

        max-width:620px;

    }


    .vcHeroActions{

        max-width:600px;

    }


    .vcHeroCategories{

        max-width:100%;

    }


    .vcHeroCategoryList{

        max-width:100%;

    }


    .vcHeroStage{

        width:100%;
        min-width:0;

        min-height:620px;

        margin-top:15px;

        overflow:hidden;

        border-radius:30px;

    }


    .vcHeroProductInfo{

        left:4%;
        bottom:5%;

    }


    .vcHeroProductNav{

        right:4%;

    }

}


/* ============================================================
   TABLET PORTRAIT
============================================================ */

@media(max-width:768px){

    .vcHeroContainer{

        width:
            calc(100% - 32px);

        padding:
            44px
            0
            36px;

    }


    /* ========================================================
       COPY
    ========================================================= */

    .vcHeroEyebrow{

        max-width:100%;

        margin-bottom:18px;

        font-size:10px;

        letter-spacing:.11em;

    }


    .vcHeroTitle{

        width:100%;
        max-width:none;

        margin-bottom:20px;

        font-size:
            clamp(
                43px,
                9vw,
                62px
            );

        line-height:.96;

        letter-spacing:-.055em;

        overflow-wrap:normal;

        word-break:normal;

    }


    .vcHeroTitle span{

        margin-top:7px;

    }


    .vcHeroDescription{

        width:100%;
        max-width:590px;

        margin-bottom:24px;

        font-size:15px;

        line-height:1.6;

    }


    /* ========================================================
       CTA
    ========================================================= */

    .vcHeroActions{

        width:100%;
        max-width:none;

        display:grid;

        grid-template-columns:
            minmax(0,1fr)
            minmax(0,1fr);

        gap:9px;

    }


    .vcHeroPrimary,
    .vcHeroSecondary{

        width:100%;

        padding:
            0
            16px;

    }


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

    .vcHeroCategories{

        width:100%;

        margin-top:34px;

        overflow:hidden;

    }


    .vcHeroCategoryList{

        width:100%;

        flex-wrap:nowrap;

        gap:7px;

        overflow-x:auto;
        overflow-y:hidden;

        padding:
            1px
            2px
            7px;

        scroll-snap-type:x proximity;

        scrollbar-width:none;

        -webkit-overflow-scrolling:touch;

    }


    .vcHeroCategoryList::-webkit-scrollbar{

        display:none;

    }


    .vcHeroCategory{

        flex:0 0 auto;

        scroll-snap-align:start;

    }


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

    .vcHeroBenefits{

        margin-top:24px;

        flex-wrap:wrap;

        gap:
            12px
            20px;

    }


    /* ========================================================
       PRODUCT STAGE
    ========================================================= */

    .vcHeroStage{

        min-height:570px;

        margin-top:25px;

    }


    .vcHeroStageNumber{

        top:1%;
        right:0;

        font-size:150px;

    }


    .vcHeroOrbitOne{

        width:430px;
        height:430px;

    }


    .vcHeroOrbitTwo{

        width:320px;
        height:320px;

    }


    .vcHeroProductGlow{

        top:39%;

        width:370px;
        height:370px;

    }


    .vcHeroProductVisual{

        top:39%;

        width:min(410px,76vw);
        height:350px;

    }


    .vcHeroFloatingProduct{

        width:66px;
        height:66px;

        border-radius:17px;

    }


    .vcHeroFloatingProduct:nth-child(1){

        top:9%;
        left:2%;

    }


    .vcHeroFloatingProduct:nth-child(2){

        top:11%;
        right:2%;

    }


    .vcHeroFloatingProduct:nth-child(3){

        top:43%;
        right:0;

    }


    .vcHeroFloatingProduct:nth-child(4){

        top:41%;
        left:0;

    }


    .vcHeroProductInfo{

        left:18px;
        right:18px;
        bottom:17px;

        width:auto;

    }


    .vcHeroProductNav{

        top:auto;
        right:20px;
        bottom:206px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media(max-width:600px){

    .vcHomeHero{

        width:100%;

        overflow:hidden;

    }


    .vcHeroContainer{

        width:
            calc(100% - 28px);

        max-width:100%;

        gap:0;

        padding:
            34px
            0
            30px;

    }


    /*
    |--------------------------------------------------------------------------
    | Fundamental:
    | los dos hijos del grid pueden contraerse realmente.
    |--------------------------------------------------------------------------
    */

    .vcHeroCopy,
    .vcHeroStage{

        width:100%;
        max-width:100%;
        min-width:0;

    }


    /* ========================================================
       COPY
    ========================================================= */

    .vcHeroEyebrow{

        max-width:100%;

        gap:8px;

        margin-bottom:18px;

        font-size:9px;

        line-height:1.4;

    }


    .vcHeroEyebrowDot{

        width:7px;
        height:7px;

        box-shadow:
            0 0 0 5px
            rgba(255,138,0,.10);

    }


    .vcHeroTitle{

        width:100%;
        max-width:100%;

        margin:
            0
            0
            18px;

        font-size:
            clamp(
                38px,
                11.8vw,
                52px
            );

        line-height:.98;

        letter-spacing:-.052em;

        overflow:visible;

    }


    .vcHeroTitle span{

        display:block;

        width:100%;

        margin-top:6px;

    }


    .vcHeroDescription{

        width:100%;
        max-width:100%;

        margin-bottom:22px;

        font-size:14px;

        line-height:1.55;

    }


    /* ========================================================
       ACTIONS
    ========================================================= */

    .vcHeroActions{

        width:100%;

        display:grid;

        grid-template-columns:1fr;

        gap:8px;

    }


    .vcHeroPrimary,
    .vcHeroSecondary{

        width:100%;
        max-width:100%;

        height:50px;

        padding:
            0
            17px;

        justify-content:space-between;

        border-radius:14px;

        font-size:12px;

    }


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

    .vcHeroCategories{

        width:100%;
        max-width:100%;

        margin-top:34px;

        overflow:hidden;

    }


    .vcHeroCategoriesLabel{

        margin-bottom:11px;

        font-size:9px;

    }


    .vcHeroCategoryList{

        width:100%;
        max-width:100%;

        display:flex;

        flex-wrap:nowrap;

        overflow-x:auto;
        overflow-y:hidden;

        gap:7px;

        padding:
            2px
            1px
            8px;

        scrollbar-width:none;

        overscroll-behavior-x:contain;

        -webkit-overflow-scrolling:touch;

    }


    .vcHeroCategoryList::-webkit-scrollbar{

        display:none;

    }


    .vcHeroCategory{

        flex:0 0 auto;

        height:36px;

        padding:
            0
            13px;

        font-size:10px;

    }


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

    .vcHeroBenefits{

        width:100%;

        margin-top:22px;

        display:grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap:8px;

    }


    .vcHeroBenefit{

        min-width:0;

        font-size:9px;

        white-space:nowrap;

    }


    /* ========================================================
       STAGE
    ========================================================= */

    .vcHeroStage{

        width:100%;
        max-width:100%;

        min-height:500px;

        margin-top:20px;

        overflow:hidden;

        border-radius:24px;

    }


    .vcHeroStageNumber{

        top:10px;
        right:-4px;

        font-size:110px;

    }


    .vcHeroOrbitOne{

        top:37%;

        width:340px;
        height:340px;

    }


    .vcHeroOrbitTwo{

        top:37%;

        width:250px;
        height:250px;

    }


    .vcHeroProductGlow{

        top:36%;

        width:300px;
        height:300px;

    }


    .vcHeroProductVisual{

        top:36%;

        width:
            min(
                300px,
                78vw
            );

        height:275px;

    }


    .vcHeroProductImage{

        max-width:100%;

    }


    /*
    |--------------------------------------------------------------------------
    | En teléfono sólo dejamos dos mini productos.
    |--------------------------------------------------------------------------
    */

    .vcHeroFloatingProduct{

        width:56px;
        height:56px;

        padding:6px;

        border-radius:15px;

    }


    .vcHeroFloatingProduct:nth-child(1){

        top:7%;
        left:3px;

    }


    .vcHeroFloatingProduct:nth-child(2){

        top:9%;
        right:3px;

    }


    .vcHeroFloatingProduct:nth-child(3),
    .vcHeroFloatingProduct:nth-child(4){

        display:none;

    }


    .vcHeroFloatingPlus{

        width:20px;
        height:20px;

        right:-3px;
        bottom:-3px;

        border-width:2px;

        font-size:10px;

    }


    /* ========================================================
       PRODUCT INFO
    ========================================================= */

    .vcHeroProductInfo{

        left:8px;
        right:8px;
        bottom:8px;

        width:auto;
        max-width:none;

        padding:
            16px
            16px;

        border-radius:17px;

    }


    .vcHeroProductCategory{

        margin-bottom:5px;

        font-size:8px;

    }


    .vcHeroProductName{

        font-size:16px;

        line-height:1.25;

    }


    .vcHeroPriceRow{

        margin-top:11px;

        flex-wrap:wrap;

        gap:
            4px
            10px;

    }


    .vcHeroProductPrice{

        font-size:23px;

    }


    .vcHeroShipping{

        font-size:9px;

    }


    .vcHeroProductActions{

        margin-top:13px;

        grid-template-columns:
            minmax(0,1fr)
            auto;

        gap:7px;

    }


    .vcHeroAddCart,
    .vcHeroViewProduct{

        height:40px;

        font-size:9px;

    }


    .vcHeroAddCart{

        min-width:0;

        padding:
            0
            10px;

    }


    .vcHeroViewProduct{

        padding:
            0
            11px;

    }


    /* ========================================================
       PRODUCT NAV
    ========================================================= */

    .vcHeroProductNav{

        top:auto;
        right:14px;
        bottom:174px;

        gap:7px;

    }


    .vcHeroNavButton{

        width:32px;
        height:32px;

        background:
            rgba(255,255,255,.92);

    }


    .vcHeroProductNav
    .vcHeroProgress{

        display:none;

    }


    /* ========================================================
       BACKGROUND
    ========================================================= */

    .vcHeroGrid{

        background-size:
            38px
            38px;

    }


    .vcHeroGlowOne{

        width:420px;
        height:420px;

        top:-220px;
        right:-220px;

    }


    .vcHeroGlowTwo{

        width:400px;
        height:400px;

        left:-230px;
        bottom:-240px;

    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media(max-width:420px){

    .vcHeroContainer{

        width:
            calc(100% - 22px);

        padding-top:27px;

    }


    .vcHeroEyebrow{

        font-size:8px;

        letter-spacing:.09em;

    }


    .vcHeroTitle{

        font-size:
            clamp(
                35px,
                11.7vw,
                46px
            );

    }


    .vcHeroDescription{

        font-size:13px;

    }


    .vcHeroBenefits{

        grid-template-columns:1fr;

    }


    .vcHeroBenefit{

        white-space:normal;

    }


    .vcHeroStage{

        min-height:480px;

    }


    .vcHeroProductVisual{

        width:
            min(
                270px,
                76vw
            );

        height:250px;

    }


    .vcHeroOrbitOne{

        width:300px;
        height:300px;

    }


    .vcHeroOrbitTwo{

        width:220px;
        height:220px;

    }


    .vcHeroProductInfo{

        padding:14px;

    }


    .vcHeroProductActions{

        grid-template-columns:1fr;

    }


    .vcHeroViewProduct{

        width:100%;

    }


    .vcHeroProductNav{

        bottom:211px;

    }

}

/* ============================================================
   HERO CART LOADING
============================================================ */

.vcHeroAddCart.is-loading{

    pointer-events:none;

    opacity:.85;

}


.vcHeroCartSpinner{

    width:16px;
    height:16px;

    display:block;

    border:
        2px solid
        rgba(255,255,255,.35);

    border-top-color:#fff;

    border-radius:50%;

    animation:
        vcHeroCartSpin
        .65s linear infinite;

}


@keyframes vcHeroCartSpin{

    to{

        transform:
            rotate(360deg);

    }

}


.vcHeroAddCart.is-success{

    background:#168659;

}


.vcHeroCartCheck{

    width:18px;
    height:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        rgba(255,255,255,.16);

    font-size:11px;
    font-weight:800;

}
/* ============================================================
   RESPONSIVE SAFETY
============================================================ */

.vcHeroCopy,
.vcHeroStage,
.vcHeroActions,
.vcHeroCategories,
.vcHeroCategoryList,
.vcHeroBenefits,
.vcHeroProductInfo{

    min-width:0;

}


.vcHeroCopy{

    width:100%;

}


.vcHeroTitle,
.vcHeroDescription{

    max-width:100%;

}


.vcHeroPrimary,
.vcHeroSecondary,
.vcHeroAddCart,
.vcHeroViewProduct{

    box-sizing:border-box;

}


.vcHeroProductImage{

    max-width:100%;

}