/* =========================================================
   VRUM UPLOAD
   BASE VISUAL DARK
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --orange: #ff6600;
    --orange-light: #ff7a1a;

    --black: #050505;
    --black-2: #090909;

    --panel: #111111;
    --panel-2: #151515;
    --panel-3: #1b1b1b;

    --border: #292929;
    --border-soft: #202020;

    --white: #ffffff;
    --text: #eeeeee;

    --gray: #909090;
    --gray-dark: #606060;

    --ease-premium:
        cubic-bezier(.16, 1, .3, 1);
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        #050505;

    color:
        #ffffff;

    overflow-x:
        hidden;
}


/* =========================================================
   PÁGINA
========================================================= */

.upload-page {
    position: relative;

    width: 100vw;
    min-height: 100vh;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 72% 35%,
            rgba(255, 102, 0, .055),
            transparent 30%
        ),

        radial-gradient(
            circle at 25% 75%,
            rgba(255, 102, 0, .025),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #050505 0%,
            #080808 48%,
            #050505 100%
        );
}


/* =========================================================
   ELEMENTOS LARANJA DE FUNDO
========================================================= */

.upload-bg-accent {
    position: absolute;

    z-index: 0;

    pointer-events: none;
}


.upload-bg-accent-1 {
    width: 430px;
    height: 120px;

    right: -100px;
    top: -48px;

    background:
        linear-gradient(
            90deg,
            rgba(255,102,0,.15),
            #ff6600
        );

    transform:
        skewX(-38deg);

    opacity:
        .9;
}


.upload-bg-accent-2 {
    width: 420px;
    height: 220px;

    left: -250px;
    bottom: -100px;

    background:
        linear-gradient(
            90deg,
            #ff6600,
            rgba(255,102,0,.16)
        );

    transform:
        rotate(24deg)
        skewX(-12deg);

    opacity:
        .8;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.upload-header {
    position: relative;

    z-index: 20;

    width:
        min(
            92vw,
            1680px
        );

    height:
        110px;

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    border-bottom:
        1px solid
        rgba(255,255,255,.045);
}


/* =========================================================
   LOGO
========================================================= */

.upload-logo {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    line-height:
        .88;

    cursor:
        default;

    user-select:
        none;
}


.upload-logo-main {
    color:
        #ffffff;

    font-size:
        30px;

    font-weight:
        900;

    letter-spacing:
        -1.8px;
}


.upload-logo-main::after {
    content:
        ".";

    color:
        var(--orange);
}


.upload-logo-sub {
    margin-top:
        5px;

    color:
        #747474;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        5.5px;
}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

.upload-nav {
    display:
        flex;

    align-items:
        center;

    gap:
        44px;
}


.upload-nav-item {
    position:
        relative;

    border:
        0;

    outline:
        0;

    padding:
        14px 1px;

    background:
        transparent;

    color:
        #777777;

    font-family:
        inherit;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .65px;

    cursor:
        pointer;

    transition:
        color .28s ease;
}


.upload-nav-item::after {
    content:
        "";

    position:
        absolute;

    left:
        50%;

    bottom:
        4px;

    width:
        0;

    height:
        2px;

    border-radius:
        99px;

    background:
        var(--orange);

    transform:
        translateX(-50%);

    transition:
        width .35s
        var(--ease-premium);
}


.upload-nav-item:hover {
    color:
        #d9d9d9;
}


.upload-nav-item.ativo {
    color:
        #ffffff;
}


.upload-nav-item.ativo::after {
    width:
        100%;
}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.upload-main {
    position:
        relative;

    z-index:
        5;

    width:
        min(
            92vw,
            1680px
        );

    min-height:
        calc(
            100vh - 110px
        );

    margin:
        0 auto;

    padding:
        35px 0
        55px;

    display:
        grid;

    grid-template-columns:
        minmax(340px, .72fr)
        minmax(620px, 1.28fr);

    gap:
        clamp(
            45px,
            5vw,
            100px
        );

    align-items:
        center;
}


/* =========================================================
   LADO ESQUERDO
========================================================= */

.upload-copy {
    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    padding-left:
        clamp(
            10px,
            2vw,
            35px
        );
}


/* =========================================================
   EYEBROW
========================================================= */

.upload-eyebrow {
    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    margin-bottom:
        30px;
}


.upload-eyebrow span:first-child {
    color:
        #8d8d8d;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        4px;
}


.upload-eyebrow-line {
    display:
        block;

    width:
        58px;

    height:
        2px;

    background:
        var(--orange);
}


/* =========================================================
   TÍTULO
========================================================= */

.upload-title {
    max-width:
        580px;

    display:
        flex;

    flex-direction:
        column;

    margin:
        0;

    line-height:
        .93;

    letter-spacing:
        -3px;

    text-transform:
        uppercase;
}


.upload-title span {
    color:
        #ffffff;

    font-size:
        clamp(
            52px,
            5.5vw,
            90px
        );

    font-weight:
        900;
}


.upload-title strong {
    color:
        var(--orange);

    font-size:
        clamp(
            58px,
            6vw,
            98px
        );

    font-weight:
        900;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.upload-description {
    width:
        min(
            470px,
            95%
        );

    margin-top:
        31px;

    color:
        #858585;

    font-size:
        clamp(
            14px,
            1.15vw,
            18px
        );

    line-height:
        1.55;
}


/* =========================================================
   BOTÃO PRINCIPAL ESQUERDO
========================================================= */

.upload-main-button {
    min-width:
        265px;

    height:
        58px;

    margin-top:
        36px;

    padding:
        0 28px;

    border:
        0;

    border-radius:
        999px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    background:
        linear-gradient(
            90deg,
            #ff5a00,
            #ff7200
        );

    color:
        #ffffff;

    font-family:
        inherit;

    font-size:
        13px;

    font-weight:
        800;

    letter-spacing:
        .3px;

    cursor:
        pointer;

    box-shadow:
        0 12px 35px
        rgba(255,102,0,.12);

    transition:
        transform .4s
        var(--ease-premium),
        filter .35s ease,
        box-shadow .35s ease;
}


.upload-main-button:hover {
    transform:
        translateY(-3px);

    filter:
        brightness(1.1);

    box-shadow:
        0 18px 45px
        rgba(255,102,0,.22);
}


.upload-main-button:active {
    transform:
        translateY(0)
        scale(.97);
}


.upload-button-icon {
    width:
        25px;

    height:
        25px;

    border:
        2px solid
        rgba(255,255,255,.85);

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        18px;

    line-height:
        1;
}


/* =========================================================
   INFORMAÇÃO ABAIXO DO BOTÃO
========================================================= */

.upload-file-info {
    margin:
        13px 0 0
        14px;

    color:
        #5f5f5f;

    font-size:
        11px;

    letter-spacing:
        .15px;
}


/* =========================================================
   WORKSPACE
========================================================= */

.upload-workspace {
    width:
        100%;

    min-width:
        0;

    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;
}


/* =========================================================
   DROPZONE
========================================================= */

.upload-dropzone {
    position:
        relative;

    width:
        100%;

    min-height:
        305px;

    padding:
        35px;

    border:
        1px solid
        #242424;

    border-radius:
        18px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    background:
        linear-gradient(
            145deg,
            #151515,
            #101010
        );

    box-shadow:
        0 22px 70px
        rgba(0,0,0,.27);

    cursor:
        pointer;

    overflow:
        hidden;

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .45s
        var(--ease-premium),
        box-shadow .35s ease;
}


/* LINHA TRACEJADA INTERNA */

.upload-dropzone::before {
    content:
        "";

    position:
        absolute;

    inset:
        27px;

    border:
        1px dashed
        #4b4b4b;

    border-radius:
        12px;

    pointer-events:
        none;

    transition:
        border-color .35s ease;
}


/* BRILHO DISCRETO */

.upload-dropzone::after {
    content:
        "";

    position:
        absolute;

    width:
        250px;

    height:
        250px;

    left:
        50%;

    top:
        50%;

    border-radius:
        50%;

    background:
        rgba(255,102,0,.035);

    filter:
        blur(50px);

    transform:
        translate(-50%, -50%);

    pointer-events:
        none;
}


.upload-dropzone:hover {
    border-color:
        #3b3b3b;

    transform:
        translateY(-2px);

    box-shadow:
        0 27px 75px
        rgba(0,0,0,.34);
}


.upload-dropzone:hover::before {
    border-color:
        rgba(255,102,0,.7);
}


.upload-dropzone.dragover {
    border-color:
        var(--orange);

    background:
        #17130f;
}


.upload-dropzone.dragover::before {
    border-color:
        var(--orange);
}


/* =========================================================
   ÍCONE DA NUVEM
========================================================= */

.upload-cloud {
    position:
        relative;

    z-index:
        2;

    width:
        92px;

    height:
        70px;

    margin-bottom:
        18px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.upload-cloud-shape {
    position:
        relative;

    width:
        69px;

    height:
        38px;

    border-radius:
        999px;

    background:
        var(--orange);

    box-shadow:
        0 0 28px
        rgba(255,102,0,.16);
}


.upload-cloud-shape::before {
    content:
        "";

    position:
        absolute;

    width:
        40px;

    height:
        40px;

    left:
        9px;

    top:
        -21px;

    border-radius:
        50%;

    background:
        var(--orange);
}


.upload-cloud-shape::after {
    content:
        "";

    position:
        absolute;

    width:
        31px;

    height:
        31px;

    right:
        5px;

    top:
        -13px;

    border-radius:
        50%;

    background:
        var(--orange);
}


.upload-cloud-arrow {
    position:
        absolute;

    z-index:
        4;

    left:
        50%;

    top:
        3px;

    color:
        #101010;

    font-size:
        42px;

    font-weight:
        700;

    line-height:
        1;

    transform:
        translateX(-50%);
}


/* =========================================================
   TEXTO DROPZONE
========================================================= */

.upload-dropzone h2 {
    position:
        relative;

    z-index:
        2;

    margin:
        0;

    color:
        #ffffff;

    font-size:
        clamp(
            20px,
            1.6vw,
            27px
        );

    font-weight:
        800;

    letter-spacing:
        -.6px;
}


.upload-dropzone > p {
    position:
        relative;

    z-index:
        2;

    margin-top:
        6px;

    color:
        #8a8a8a;

    font-size:
        14px;
}


.upload-formats {
    position:
        relative;

    z-index:
        2;

    margin-top:
        21px;

    color:
        #606060;

    font-size:
        11px;

    letter-spacing:
        .3px;
}


/* =========================================================
   PARTE INFERIOR
========================================================= */

.upload-bottom-grid {
    width:
        100%;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(265px, .75fr);

    gap:
        18px;
}


/* =========================================================
   PAINÉIS INFERIORES
========================================================= */

.upload-preview-panel,
.upload-files-panel {
    min-width:
        0;

    min-height:
        245px;

    padding:
        18px;

    border:
        1px solid
        #252525;

    border-radius:
        15px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #111111
        );

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.18);
}


/* =========================================================
   CABEÇALHO DOS PAINÉIS
========================================================= */

.upload-section-header {
    height:
        28px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        11px;
}


.upload-section-header h3 {
    color:
        #efefef;

    font-size:
        13px;

    font-weight:
        800;

    letter-spacing:
        .2px;
}


#uploadFileCount {
    min-width:
        27px;

    height:
        20px;

    padding:
        0 7px;

    border:
        1px solid
        #333333;

    border-radius:
        999px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #777777;

    font-size:
        10px;

    font-weight:
        700;
}


/* =========================================================
   PRÉ-VISUALIZAÇÃO
========================================================= */

.upload-preview-empty {
    width:
        100%;

    height:
        174px;

    border-radius:
        10px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    background:
        #0b0b0b;

    border:
        1px solid
        #202020;

    color:
        #555555;

    overflow:
        hidden;
}


.upload-preview-icon {
    width:
        48px;

    height:
        48px;

    border:
        1px solid
        #363636;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding-left:
        3px;

    color:
        #6d6d6d;

    font-size:
        17px;
}


.upload-preview-empty p {
    color:
        #5f5f5f;

    font-size:
        11px;
}


.upload-preview-empty video {
    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    background:
        #000000;
}


/* =========================================================
   LISTA DE ARQUIVOS
========================================================= */

.upload-file-list {
    width:
        100%;

    height:
        174px;

    overflow-y:
        auto;

    overflow-x:
        hidden;

    padding-right:
        3px;

    scrollbar-width:
        thin;

    scrollbar-color:
        #343434
        transparent;
}


.upload-file-list::-webkit-scrollbar {
    width:
        5px;
}


.upload-file-list::-webkit-scrollbar-track {
    background:
        transparent;
}


.upload-file-list::-webkit-scrollbar-thumb {
    background:
        #333333;

    border-radius:
        99px;
}


.upload-file-empty {
    width:
        100%;

    height:
        100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #555555;

    font-size:
        11px;

    text-align:
        center;
}


/* =========================================================
   CARD DE ARQUIVO
========================================================= */

.upload-file-item {
    width:
        100%;

    min-height:
        56px;

    margin-bottom:
        7px;

    padding:
        10px;

    border:
        1px solid
        #252525;

    border-radius:
        9px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    background:
        #101010;
}


.upload-file-item:last-child {
    margin-bottom:
        0;
}


.upload-file-item-icon {
    flex:
        0 0 auto;

    width:
        34px;

    height:
        34px;

    border-radius:
        7px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #191919;

    color:
        var(--orange);

    font-size:
        13px;
}


.upload-file-item-info {
    min-width:
        0;

    flex:
        1;
}


.upload-file-item-name {
    overflow:
        hidden;

    color:
        #e5e5e5;

    font-size:
        11px;

    font-weight:
        700;

    white-space:
        nowrap;

    text-overflow:
        ellipsis;
}


.upload-file-item-size {
    margin-top:
        4px;

    color:
        #606060;

    font-size:
        9px;
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
========================================================= */

.upload-header {
    opacity:
        0;

    animation:
        uploadHeaderEntrada
        .65s
        ease-out
        .05s
        forwards;
}


@keyframes uploadHeaderEntrada {

    from {
        opacity:
            0;

        transform:
            translateY(-10px);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0);
    }
}


.upload-copy {
    opacity:
        0;

    animation:
        uploadCopyEntrada
        .8s
        var(--ease-premium)
        .15s
        forwards;
}


@keyframes uploadCopyEntrada {

    from {
        opacity:
            0;

        transform:
            translateX(-25px);
    }

    to {
        opacity:
            1;

        transform:
            translateX(0);
    }
}


.upload-workspace {
    opacity:
        0;

    animation:
        uploadWorkspaceEntrada
        .85s
        var(--ease-premium)
        .25s
        forwards;
}


@keyframes uploadWorkspaceEntrada {

    from {
        opacity:
            0;

        transform:
            translateX(30px);
    }

    to {
        opacity:
            1;

        transform:
            translateX(0);
    }
}


/* =========================================================
   MONITORES MÉDIOS
========================================================= */

@media (max-width: 1280px) {

    .upload-header {
        width:
            94vw;

        height:
            90px;
    }


    .upload-main {
        width:
            94vw;

        min-height:
            calc(100vh - 90px);

        grid-template-columns:
            minmax(300px, .72fr)
            minmax(560px, 1.28fr);

        gap:
            35px;

        padding:
            25px 0 35px;
    }


    .upload-title span {
        font-size:
            clamp(
                45px,
                5vw,
                70px
            );
    }


    .upload-title strong {
        font-size:
            clamp(
                52px,
                5.5vw,
                78px
            );
    }


    .upload-dropzone {
        min-height:
            270px;
    }


    .upload-preview-panel,
    .upload-files-panel {
        min-height:
            220px;
    }


    .upload-preview-empty,
    .upload-file-list {
        height:
            150px;
    }

}


/* =========================================================
   NOTEBOOK / TABLET HORIZONTAL
========================================================= */

@media (max-width: 1020px) {

    body {
        overflow-y:
            auto;
    }


    .upload-page {
        min-height:
            100vh;
    }


    .upload-header {
        width:
            90vw;
    }


    .upload-nav {
        gap:
            23px;
    }


    .upload-main {
        width:
            90vw;

        grid-template-columns:
            1fr;

        gap:
            45px;

        padding-top:
            45px;
    }


    .upload-copy {
        padding-left:
            0;

        align-items:
            center;

        text-align:
            center;
    }


    .upload-eyebrow {
        justify-content:
            center;
    }


    .upload-title {
        align-items:
            center;
    }


    .upload-description {
        text-align:
            center;
    }


    .upload-file-info {
        margin-left:
            0;
    }


    .upload-workspace {
        padding-bottom:
            50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .upload-header {
        width:
            88vw;

        height:
            78px;
    }


    .upload-logo-main {
        font-size:
            24px;
    }


    .upload-nav {
        display:
            none;
    }


    .upload-main {
        width:
            88vw;

        padding-top:
            35px;
    }


    .upload-eyebrow span:first-child {
        font-size:
            9px;

        letter-spacing:
            2.8px;
    }


    .upload-title {
        letter-spacing:
            -2px;
    }


    .upload-title span {
        font-size:
            44px;
    }


    .upload-title strong {
        font-size:
            50px;
    }


    .upload-description {
        width:
            100%;

        font-size:
            14px;
    }


    .upload-main-button {
        width:
            100%;

        min-width:
            0;
    }


    .upload-dropzone {
        min-height:
            260px;

        padding:
            25px 18px;
    }


    .upload-dropzone::before {
        inset:
            16px;
    }


    .upload-dropzone h2 {
        font-size:
            18px;

        text-align:
            center;
    }


    .upload-bottom-grid {
        grid-template-columns:
            1fr;
    }


    .upload-preview-panel,
    .upload-files-panel {
        min-height:
            230px;
    }


    .upload-preview-empty,
    .upload-file-list {
        height:
            160px;
    }

}


/* =========================================================
   AJUSTE PARA CABER INTEIRO NA TELA
========================================================= */

@media (max-height: 820px) and (min-width: 1000px) {

    body {
        overflow:
            hidden;
    }


    .upload-header {
        height:
            78px;
    }


    .upload-main {
        min-height:
            calc(100vh - 78px);

        padding-top:
            18px;

        padding-bottom:
            22px;

        align-items:
            center;
    }


    .upload-eyebrow {
        margin-bottom:
            20px;
    }


    .upload-title span {
        font-size:
            clamp(
                48px,
                4.7vw,
                72px
            );
    }


    .upload-title strong {
        font-size:
            clamp(
                52px,
                5.1vw,
                78px
            );
    }


    .upload-description {
        margin-top:
            22px;
    }


    .upload-main-button {
        margin-top:
            25px;

        height:
            52px;
    }


    .upload-dropzone {
        min-height:
            255px;

        padding:
            25px;
    }


    .upload-dropzone::before {
        inset:
            22px;
    }


    .upload-cloud {
        transform:
            scale(.86);

        margin-bottom:
            7px;
    }


    .upload-dropzone h2 {
        font-size:
            21px;
    }


    .upload-formats {
        margin-top:
            15px;
    }


    .upload-bottom-grid {
        gap:
            14px;
    }


    .upload-preview-panel,
    .upload-files-panel {
        min-height:
            195px;

        padding:
            14px;
    }


    .upload-preview-empty,
    .upload-file-list {
        height:
            135px;
    }

}


/* =========================================================
   REFINO TOPO - VRUM UPLOAD
========================================================= */

.upload-logo {
    width:
        150px;

    height:
        auto;

    display:
        flex;

    align-items:
        center;

    user-select:
        none;
}


.upload-logo-img {
    width:
        150px;

    height:
        auto;

    display:
        block;

    object-fit:
        contain;

    filter:
        brightness(0)
        invert(1);

    transition:
        transform .35s
        var(--ease-premium),
        filter .35s ease;
}


.upload-logo-img:hover {
    transform:
        translateY(-3px)
        scale(1.025);

    filter:
        brightness(0)
        invert(1)
        drop-shadow(
            0 0 12px
            rgba(255,255,255,.18)
        );
}


/* =========================================================
   CABEÇALHO MAIS PRÓXIMO DO PORTAL REVISÃO
========================================================= */

.upload-header {
    height:
        92px;

    border-bottom:
        1px solid
        rgba(255,255,255,.035);
}


/* MENU */

.upload-nav {
    gap:
        46px;
}


.upload-nav-item {
    color:
        #737373;

    font-size:
        11px;

    font-weight:
        600;

    letter-spacing:
        .35px;
}


.upload-nav-item.ativo {
    color:
        #e9e9e9;
}


.upload-nav-item::after {
    height:
        2px;

    background:
        #ff6600;
}


/* =========================================================
   ACENTO SUPERIOR
========================================================= */

.upload-bg-accent-1 {
    width:
        230px;

    height:
        5px;

    right:
        7%;

    top:
        0;

    border-radius:
        0 0 999px 999px;

    background:
        #ff6600;

    transform:
        none;

    opacity:
        .85;

    box-shadow:
        0 0 12px
        rgba(255,102,0,.3);
}


/* =========================================================
   ACENTO INFERIOR
========================================================= */

.upload-bg-accent-2 {
    width:
        310px;

    height:
        140px;

    left:
        -205px;

    bottom:
        -75px;

    background:
        linear-gradient(
            135deg,
            #ff6600,
            #301203
        );

    transform:
        rotate(23deg);

    opacity:
        .7;
}


/* =========================================================
   PADRÃO OFICIAL VRUM
   LOGO + TOPO IGUAIS ENTRE MÓDULOS
========================================================= */

.upload-header {
    position:
        absolute !important;

    left:
        0 !important;

    top:
        0 !important;

    width:
        100vw !important;

    height:
        100vh !important;

    margin:
        0 !important;

    pointer-events:
        none;

    border-bottom:
        0 !important;

    z-index:
        30;
}


/* =========================================================
   LOGO
========================================================= */

.upload-logo {
    position:
        absolute !important;

    left:
        6% !important;

    top:
        10% !important;

    width:
        150px !important;

    height:
        auto !important;

    margin:
        0 !important;

    padding:
        0 !important;

    display:
        block !important;

    pointer-events:
        auto;
}


.upload-logo-img {
    display:
        block !important;

    width:
        150px !important;

    height:
        auto !important;

    max-width:
        none !important;

    margin:
        0 !important;

    padding:
        0 !important;

    object-fit:
        contain;

    transform:
        none !important;

    filter:
        none !important;
}


/* =========================================================
   MENU
========================================================= */

.upload-nav {
    position:
        absolute !important;

    right:
        6% !important;

    top:
        6.2% !important;

    display:
        flex !important;

    align-items:
        center;

    gap:
        46px;

    pointer-events:
        auto;
}


/* =========================================================
   CONTEÚDO ESQUERDO
========================================================= */

.upload-copy {
    margin-top:
        150px !important;

    padding-left:
        0 !important;
}


/* =========================================================
   REMOVE LINHA SUPERIOR
========================================================= */

.upload-bg-accent-1 {
    display:
        none !important;
}


/* =========================================================
   LOGO VRUM UPLOAD - EFEITO
========================================================= */

.upload-logo {
    opacity:
        0;

    animation:
        entradaLogoUpload
        .8s
        ease-out
        .15s
        forwards;
}


@keyframes entradaLogoUpload {

    from {
        opacity:
            0;

        translate:
            0 -15px;
    }

    to {
        opacity:
            1;

        translate:
            0 0;
    }

}


.upload-logo-img {
    cursor:
        pointer;

    transition:
        filter .25s ease,
        translate .25s ease,
        scale .25s ease !important;
}


.upload-logo-img:hover {
    translate:
        0 -6px !important;

    scale:
        1.04 !important;

    filter:
        brightness(1.35)
        drop-shadow(
            0 0 6px
            rgba(255,255,255,.55)
        )
        drop-shadow(
            0 0 18px
            rgba(255,255,255,.25)
        )
        !important;
}


/* =========================================================
   SCROLL HORIZONTAL OFICIAL VRUM
========================================================= */

html,
body {
    width:
        100%;

    height:
        100%;

    overflow:
        hidden !important;
}


.site {
    display:
        flex;

    flex-direction:
        row;

    flex-wrap:
        nowrap;

    width:
        100vw;

    height:
        100vh;

    overflow-x:
        auto;

    overflow-y:
        hidden;

    scroll-behavior:
        smooth;

    scroll-snap-type:
        x mandatory;

    scrollbar-width:
        none;

    -ms-overflow-style:
        none;
}


.site::-webkit-scrollbar {
    display:
        none;

    width:
        0;

    height:
        0;
}


.site > .pagina {
    flex:
        0 0 100vw;

    width:
        100vw;

    min-width:
        100vw;

    max-width:
        100vw;

    height:
        100vh;

    position:
        relative;

    scroll-snap-align:
        start;

    overflow:
        hidden;
}


/* =========================================================
   CURSOR VRUM - IGUAL AO PORTAL REVISÃO
========================================================= */

@media (hover: hover) and (pointer: fine) {

    body.has-vrum-cursor,
    body.has-vrum-cursor * {
        cursor:
            none !important;
    }


    .vrum-cursor-trail {
        position:
            fixed;

        z-index:
            2147483645;

        inset:
            0;

        width:
            100vw;

        height:
            100vh;

        pointer-events:
            none;
    }


    .vrum-cursor-arrow {
        position:
            fixed;

        z-index:
            2147483646;

        left:
            0;

        top:
            0;

        width:
            17px;

        height:
            22px;

        overflow:
            visible;

        pointer-events:
            none;

        opacity:
            0;

        transform-origin:
            5px 3px;

        filter:
            drop-shadow(
                0 0 5px
                rgba(255,101,0,.24)
            );

        will-change:
            transform,
            opacity,
            filter;

        transition:
            opacity .22s ease,
            filter .42s
            var(--ease-premium);
    }


    .vrum-cursor-arrow path {
        fill:
            #ff6500;

        stroke:
            #ffffff;

        stroke-width:
            .8;

        vector-effect:
            non-scaling-stroke;

        stroke-linejoin:
            round;

        stroke-linecap:
            round;

        transition:
            fill .42s
            var(--ease-premium),
            stroke .42s
            var(--ease-premium),
            stroke-width .42s
            var(--ease-premium);
    }


    .vrum-cursor-arrow.is-visible {
        opacity:
            1;
    }

}


/* =========================================================
   MOBILE / TOUCH
========================================================= */

@media (max-width: 800px) {

    .vrum-cursor-trail,
    .vrum-cursor-arrow {
        display:
            none !important;
    }

}


/* =========================================================
   SELETOR DE ARQUIVOS / PASTAS
========================================================= */

.upload-picker-actions {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    margin-top:
        18px;
}


.upload-picker-btn {
    min-width:
        170px;

    height:
        42px;

    padding:
        0 18px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius:
        7px;

    background:
        rgba(255,255,255,.045);

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1.2px;

    cursor:
        pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        filter .25s ease;
}


.upload-picker-btn:hover {
    border-color:
        rgba(255,102,0,.65);

    background:
        rgba(255,102,0,.08);

    transform:
        translateY(-1px);
}


.upload-picker-btn-primary {
    border-color:
        #ff6600;

    background:
        #ff6600;

    color:
        #070707;
}


.upload-picker-btn-primary:hover {
    background:
        #ff7417;

    filter:
        brightness(1.08);
}


.upload-dropzone.dragover {
    border-color:
        #ff6600 !important;

    background:
        rgba(255,102,0,.075) !important;

    box-shadow:
        inset 0 0 45px
        rgba(255,102,0,.055);
}


.upload-dropzone.dragover::before {
    border-color:
        #ff6600 !important;
}


/* =========================================================
   LINHA DE ARQUIVO SELECIONADO
========================================================= */

.upload-file-item {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        14px;

    padding:
        10px 4px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


.upload-file-name {
    min-width:
        0;

    overflow:
        hidden;

    color:
        #dddddd;

    font-size:
        11px;

    white-space:
        nowrap;

    text-overflow:
        ellipsis;
}


.upload-file-size {
    flex:
        0 0 auto;

    color:
        #737373;

    font-size:
        10px;
}

/* =========================================================
   VRUM UPLOAD
   GALERIA DE ARQUIVOS - ESTILO ANEXOS
========================================================= */


/* =========================================================
   AUMENTA OS DOIS PAINÉIS PARA BAIXO
========================================================= */

.upload-preview-panel,
.upload-files-panel {
    min-height: 265px;
}


.upload-preview-empty,
.upload-file-list {
    height: 205px;
}


/* =========================================================
   PRÉ-VISUALIZAÇÃO COM VÁRIOS ARQUIVOS
========================================================= */

.upload-preview-empty {
    position: relative;

    align-items: stretch;
    justify-content: flex-start;

    padding: 12px;

    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #353535 transparent;
}


.upload-preview-empty::-webkit-scrollbar {
    width: 5px;
}


.upload-preview-empty::-webkit-scrollbar-track {
    background: transparent;
}


.upload-preview-empty::-webkit-scrollbar-thumb {
    background: #353535;

    border-radius: 999px;
}


/* =========================================================
   GALERIA
========================================================= */

.upload-preview-gallery {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(94px, 94px)
        );

    gap: 11px;

    align-content: start;
}


/* =========================================================
   CARD DE ANEXO
========================================================= */

.upload-preview-card {
    position: relative;

    width: 94px;
    height: 94px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 13px;

    overflow: hidden;

    background: #171717;

    cursor: pointer;

    isolation: isolate;

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}


.upload-preview-card:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255,102,0,.55);

    background:
        #1b1b1b;

    box-shadow:
        0 7px 22px
        rgba(0,0,0,.32);
}


/* =========================================================
   IMAGEM / VÍDEO DO CARD
========================================================= */

.upload-preview-card img,
.upload-preview-card video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    background: #080808;
}


/* =========================================================
   SOMBRA EMBAIXO
========================================================= */

.upload-preview-card::after {
    content: "";

    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   NOME DO ARQUIVO
========================================================= */

.upload-preview-card-name {
    position: absolute;

    z-index: 4;

    left: 8px;
    right: 8px;
    bottom: 7px;

    overflow: hidden;

    color: #ffffff;

    font-size: 8px;
    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;

    pointer-events: none;
}


/* =========================================================
   BOTÃO REMOVER
========================================================= */

.upload-preview-remove {
    position: absolute;

    z-index: 10;

    top: 6px;
    right: 6px;

    width: 23px;
    height: 23px;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(8,8,8,.82);

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transform:
        scale(.88);

    backdrop-filter:
        blur(6px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        background .18s ease;
}


.upload-preview-card:hover
.upload-preview-remove {
    opacity: 1;

    transform:
        scale(1);
}


.upload-preview-remove:hover {
    background:
        #ff6600;

    border-color:
        #ff6600;

    color:
        #050505;
}


/* =========================================================
   ÍCONE EXPANDIR
========================================================= */

.upload-preview-expand {
    position: absolute;

    z-index: 6;

    right: 7px;
    bottom: 7px;

    width: 19px;
    height: 19px;

    border-radius: 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(10,10,10,.72);

    color:
        rgba(255,255,255,.8);

    font-size: 11px;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .18s ease;
}


.upload-preview-card:hover
.upload-preview-expand {
    opacity: 1;
}


/* =========================================================
   ARQUIVO SEM THUMBNAIL
========================================================= */

.upload-preview-file-generic {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 10px;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(255,102,0,.09),
            transparent 55%
        ),
        #151515;
}


.upload-preview-file-icon {
    color: #ff6600;

    font-size: 25px;

    font-weight: 800;
}


.upload-preview-extension {
    max-width: 80px;

    color: #8d8d8d;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   ÁUDIO
========================================================= */

.upload-preview-audio {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    background:
        radial-gradient(
            circle,
            rgba(255,102,0,.12),
            transparent 65%
        ),
        #151515;
}


.upload-preview-audio-icon {
    color: #ff6600;

    font-size: 29px;

    line-height: 1;
}


/* =========================================================
   VISUALIZADOR GRANDE
========================================================= */

.upload-viewer {
    position: fixed;

    z-index: 2147483000;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 55px;

    background:
        rgba(0,0,0,.88);

    backdrop-filter:
        blur(12px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.upload-viewer.is-open {
    opacity: 1;

    visibility: visible;
}


.upload-viewer-content {
    position: relative;

    width: min(1100px, 88vw);
    height: min(720px, 82vh);

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #090909;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.65);
}


.upload-viewer-content img,
.upload-viewer-content video {
    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #050505;
}


.upload-viewer-content audio {
    width: min(600px, 75%);

    position: relative;

    z-index: 3;
}


/* =========================================================
   ARQUIVO GENÉRICO NO VISUALIZADOR
========================================================= */

.upload-viewer-generic {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    color: #ffffff;
}


.upload-viewer-generic strong {
    color: #ff6600;

    font-size: 34px;
}


.upload-viewer-generic span {
    max-width: 500px;

    color: #bcbcbc;

    font-size: 13px;

    text-align: center;

    overflow-wrap: anywhere;
}


/* =========================================================
   FECHAR VISUALIZADOR
========================================================= */

.upload-viewer-close {
    position: absolute;

    z-index: 20;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(20,20,20,.82);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    backdrop-filter:
        blur(8px);

    transition:
        background .2s ease,
        transform .2s ease;
}


.upload-viewer-close:hover {
    background:
        #ff6600;

    color:
        #050505;

    transform:
        scale(1.05);
}


/* =========================================================
   AJUSTE PARA SUA RESOLUÇÃO ATUAL
========================================================= */

@media (max-height: 820px) and (min-width: 1000px) {

    .upload-preview-panel,
    .upload-files-panel {
        min-height:
            250px;
    }


    .upload-preview-empty,
    .upload-file-list {
        height:
            190px;
    }

}

/* =========================================================
   VRUM UPLOAD
   ENVIO REAL + PROGRESSO
========================================================= */


/* =========================================================
   ÁREA DO BOTÃO ENVIAR
========================================================= */

.upload-send-area {
    position: relative;
    z-index: 4;

    width: 100%;

    margin-top: 15px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;
}


/* =========================================================
   BOTÃO ENVIAR PROJETO
========================================================= */

.upload-send-button {
    min-width: 230px;
    height: 46px;

    padding: 0 24px;

    border: 0;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background:
        linear-gradient(
            90deg,
            #ff5c00,
            #ff7200
        );

    color: #080808;

    font-family: inherit;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.1px;

    cursor: pointer;

    box-shadow:
        0 8px 26px
        rgba(255,102,0,.14);

    transition:
        transform .22s ease,
        filter .22s ease,
        opacity .22s ease,
        box-shadow .22s ease;
}


.upload-send-button:not(:disabled):hover {
    transform: translateY(-2px);

    filter: brightness(1.09);

    box-shadow:
        0 11px 30px
        rgba(255,102,0,.24);
}


.upload-send-button:disabled {
    opacity: .28;
    cursor: default;

    filter: saturate(.35);

    box-shadow: none;
}


.upload-send-icon {
    width: 20px;
    height: 20px;

    border: 1.5px solid currentColor;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
}


/* =========================================================
   STATUS GLOBAL
========================================================= */

.upload-global-status {
    min-height: 13px;

    color: #5d5d5d;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .85px;

    text-transform: uppercase;

    transition:
        color .2s ease,
        opacity .2s ease;
}


.upload-global-status.is-working {
    color: #a5a5a5;
}


.upload-global-status.is-success {
    color: #ff7b27;
}


.upload-global-status.is-error {
    color: #ff755e;
}


/* =========================================================
   DURANTE O ENVIO

   Impede alterar/remover arquivos enquanto os bytes
   estão sendo enviados.
========================================================= */

body.upload-is-running
.upload-picker-btn,

body.upload-is-running
.upload-preview-remove,

body.upload-is-running
.upload-dropzone {
    pointer-events: none;
}


body.upload-is-running
.upload-dropzone {
    cursor: default;
}


body.upload-is-running
.upload-send-button {
    pointer-events: none;
}


/* =========================================================
   LINHA DE TRANSFERÊNCIA
========================================================= */

.upload-transfer-row {
    width: 100%;

    padding: 11px 8px 12px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


.upload-transfer-row:last-child {
    border-bottom: 0;
}


/* =========================================================
   CABEÇALHO DA LINHA
========================================================= */

.upload-transfer-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;
}


/* =========================================================
   NOME
========================================================= */

.upload-transfer-name {
    min-width: 0;

    overflow: hidden;

    color: #dedede;

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   PORCENTAGEM
========================================================= */

.upload-transfer-percent {
    flex: 0 0 auto;

    color: #777;

    font-size: 9px;
    font-weight: 800;

    font-variant-numeric: tabular-nums;
}


/* =========================================================
   BARRA DE PROGRESSO
========================================================= */

.upload-progress-track {
    position: relative;

    width: 100%;
    height: 4px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,.075);
}


.upload-progress-fill {
    position: absolute;

    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #ff5900,
            #ff7a1f
        );

    box-shadow:
        0 0 9px
        rgba(255,102,0,.23);

    transition:
        width .26s ease;
}


/* =========================================================
   STATUS DO ARQUIVO
========================================================= */

.upload-transfer-bottom {
    margin-top: 6px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


.upload-transfer-status {
    color: #626262;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .55px;

    text-transform: uppercase;
}


.upload-transfer-size {
    color: #505050;

    font-size: 8px;

    white-space: nowrap;
}


/* =========================================================
   ESTADOS
========================================================= */

.upload-transfer-row.is-uploading
.upload-transfer-status {
    color: #a5a5a5;
}


.upload-transfer-row.is-complete
.upload-transfer-status,

.upload-transfer-row.is-complete
.upload-transfer-percent {
    color: #ff7923;
}


.upload-transfer-row.is-complete
.upload-progress-fill {
    width: 100% !important;
}


.upload-transfer-row.is-error
.upload-transfer-status,

.upload-transfer-row.is-error
.upload-transfer-percent {
    color: #ff6c56;
}


.upload-transfer-row.is-error
.upload-progress-fill {
    background: #ff5944;
}


/* =========================================================
   AJUSTE DO DROPZONE PARA CABER O NOVO BOTÃO
========================================================= */

@media (max-height: 820px) and (min-width: 1000px) {

    .upload-picker-actions {
        margin-top: 11px;
    }


    .upload-send-area {
        margin-top: 10px;
    }


    .upload-send-button {
        height: 38px;

        min-width: 205px;

        font-size: 9px;
    }


    .upload-global-status {
        font-size: 7px;
    }


    .upload-formats {
        margin-top: 9px;
    }

}