/*
|--------------------------------------------------------------------------
| MULTIVERSO GEEK
|--------------------------------------------------------------------------
*/

:root {

    --mg-red:
        #ef1735;

    --mg-red-dark:
        #730010;

    --mg-cyan:
        #00e7f2;

    --mg-cyan-soft:
        #57f6ff;

    --mg-black:
        #020406;

}


/*
|--------------------------------------------------------------------------
| LOGIN
|--------------------------------------------------------------------------
*/

.area-login-bloqueada {

    display: none !important;

}


.area-login-liberada {

    display: block !important;

}


/*
|--------------------------------------------------------------------------
| SPLASH
|--------------------------------------------------------------------------
*/

.evento-splash {

    position: fixed;

    inset: 0;

    z-index: 999999;

    width: 100%;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow-y: auto;

    overflow-x: hidden;

    padding:
        30px
        25px;

    color: #fff;

    background:
        #020406
        url('../images/multiverso-jujutsu.jpg')
        center
        / cover
        no-repeat;

}


/*
|--------------------------------------------------------------------------
| EFEITO DE DOMÍNIO AO FUNDO
|--------------------------------------------------------------------------
*/

.evento-splash::before,
.evento-splash::after {

    content: '';

    position: absolute;

    inset: -10%;

    pointer-events: none;

}


/*
|--------------------------------------------------------------------------
| PULSO VERMELHO
|--------------------------------------------------------------------------
*/

.evento-splash::before {

    z-index: 0;

    background:

        radial-gradient(
            circle at 15% 30%,
            rgba(190, 0, 22, .35),
            transparent 24%
        ),

        radial-gradient(
            circle at 85% 35%,
            rgba(130, 0, 15, .28),
            transparent 28%
        ),

        radial-gradient(
            circle at 50% 85%,
            rgba(255, 0, 38, .20),
            transparent 32%
        );

    filter:
        blur(18px);

    animation:
        dominioPulso 5s ease-in-out infinite;

}


/*
|--------------------------------------------------------------------------
| MOVIMENTO VERMELHO NO FUNDO
|--------------------------------------------------------------------------
*/

.evento-splash::after {

    z-index: 0;

    background:

        repeating-linear-gradient(
            105deg,
            transparent 0px,
            transparent 45px,
            rgba(150, 0, 20, .08) 50px,
            rgba(100, 0, 12, .18) 62px,
            transparent 75px
        );

    opacity:
        .45;

    animation:
        dominioMovimento 12s linear infinite;

}


/*
|--------------------------------------------------------------------------
| OVERLAY
|--------------------------------------------------------------------------
*/

.evento-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:

        radial-gradient(
            circle at center,
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .25) 40%,
            rgba(0, 0, 0, .80) 80%,
            rgba(0, 0, 0, .95)
        ),

        linear-gradient(
            90deg,
            rgba(90, 0, 15, .32),
            transparent 30%,
            transparent 70%,
            rgba(90, 0, 15, .32)
        );

}


/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.evento-container {

    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 1180px;

    margin: auto;

    text-align: center;

}


/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.evento-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

}


.evento-sistema {

    display: flex;

    align-items: center;

    gap: 14px;

    text-align: left;

}


.evento-sistema-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mg-red),
            #710010
        );

    box-shadow:
        0 0 25px
        rgba(239, 23, 53, .40);

}


.evento-sistema strong {

    display: block;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 4px;

}


.evento-sistema span {

    display: block;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 9px;

    letter-spacing: 4px;

}


.evento-data-topo {

    text-align: right;

}


.evento-data-topo span {

    display: block;

    color:
        rgba(255, 255, 255, .55);

    font-size: 10px;

    letter-spacing: 4px;

}


.evento-data-topo strong {

    display: block;

    margin-top: 5px;

    color:
        var(--mg-red);

    font-size: 12px;

    letter-spacing: 3px;

}


/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.evento-logo {

    margin:
        -5px
        auto
        5px;

}


.evento-logo img {

    width: 220px;

    max-width: 55vw;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 14px
            rgba(0, 231, 242, .40)
        )
        drop-shadow(
            0 0 30px
            rgba(0, 80, 255, .25)
        );

}


/*
|--------------------------------------------------------------------------
| TÍTULOS
|--------------------------------------------------------------------------
*/

.evento-pre-titulo {

    color:
        rgba(255, 255, 255, .72);

    font-size: 11px;

    letter-spacing: 8px;

}


.evento-titulo {

    margin:
        10px
        0
        0;

    color: #fff;

    font-size:
        clamp(
            45px,
            6vw,
            82px
        );

    font-weight: 900;

    line-height: .95;

    letter-spacing: -3px;

}


.evento-titulo span {

    color:
        var(--mg-red);

    font-style: italic;

    text-shadow:
        0 0 16px
        rgba(239, 23, 53, .45);

}


.evento-subtitulo {

    margin-top: 16px;

    color:
        rgba(255, 255, 255, .76);

    font-size: 10px;

    letter-spacing: 6px;

}


/*
|--------------------------------------------------------------------------
| CONTAGEM
|--------------------------------------------------------------------------
*/

.evento-contador {

    width: 100%;

    max-width: 850px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 13px;

    margin:
        30px
        auto
        15px;

}


.contador-card {

    position: relative;

    overflow: hidden;

    padding:
        20px
        12px;

    border:
        1px
        solid
        rgba(0, 231, 242, .27);

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            rgba(0, 18, 25, .77),
            rgba(0, 5, 8, .88)
        );

    backdrop-filter:
        blur(10px);

    box-shadow:
        inset 0 0 25px
        rgba(0, 231, 242, .03),
        0 0 35px
        rgba(0, 0, 0, .35);

}


.contador-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 25%;

    width: 50%;

    height: 1px;

    background:
        var(--mg-cyan);

    box-shadow:
        0 0 11px
        var(--mg-cyan);

}


.contador-numero {

    display: block;

    color:
        var(--mg-red);

    font-size:
        clamp(
            36px,
            5vw,
            54px
        );

    font-weight: 800;

    line-height: 1;

    text-shadow:
        0 0 15px
        rgba(239, 23, 53, .30);

}


.contador-card span {

    display: block;

    margin-top: 10px;

    color:
        rgba(255, 255, 255, .73);

    font-size: 9px;

    letter-spacing: 4px;

}


/*
|--------------------------------------------------------------------------
| INFORMAÇÕES
|--------------------------------------------------------------------------
*/

.evento-informacoes {

    width: fit-content;

    max-width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin:
        0
        auto;

    padding:
        13px
        25px;

    border:
        1px
        solid
        rgba(0, 231, 242, .22);

    border-radius: 8px;

    background:
        rgba(0, 7, 10, .78);

}


.evento-informacoes div {

    display: flex;

    align-items: center;

    gap: 8px;

}


.evento-informacoes i {

    color:
        var(--mg-cyan-soft);

}


.evento-informacoes span {

    color:
        rgba(255, 255, 255, .80);

    font-size: 10px;

    letter-spacing: 2px;

}


.evento-informacoes
.evento-separador {

    width: 1px;

    height: 20px;

    background:
        rgba(255, 255, 255, .20);

}


/*
|--------------------------------------------------------------------------
| INSTAGRAM
|--------------------------------------------------------------------------
*/

.evento-instagram {

    margin-top: 18px;

}


.evento-instagram a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

}


.evento-instagram i {

    color:
        var(--mg-red);

    font-size: 18px;

}


/*
|--------------------------------------------------------------------------
| MENSAGEM
|--------------------------------------------------------------------------
*/

.evento-mensagem {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 24px;

}


.evento-mensagem p {

    margin: 0;

    color:
        rgba(255, 255, 255, .45);

    font-size: 8px;

    letter-spacing: 4px;

}


.evento-mensagem-linha {

    width: 60px;

    height: 1px;

    background:
        var(--mg-red);

}


/*
|--------------------------------------------------------------------------
| ACESSO RESTRITO DISCRETO
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante {

    position: fixed;

    left: 12px;

    bottom: 12px;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    pointer-events: auto;

}


/*
|--------------------------------------------------------------------------
| CADEADO DISCRETO
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante
.evento-botao-cadeado {

    width: 32px;

    height: 32px;

    min-width: 32px;

    min-height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0;

    padding: 0;

    border: none;

    border-radius: 50%;

    outline: none;

    background: transparent;

    color:
        rgba(255, 255, 255, .14);

    font-size: 11px;

    cursor: pointer;

    pointer-events: auto;

    touch-action: manipulation;

    -webkit-tap-highlight-color:
        transparent;

    box-shadow: none;

    opacity: .65;

    transition:
        color .25s ease,
        opacity .25s ease,
        transform .25s ease;

}


/*
|--------------------------------------------------------------------------
| HOVER DESKTOP
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante
.evento-botao-cadeado:hover {

    color:
        rgba(255, 255, 255, .55);

    opacity: 1;

    background: transparent;

    border: none;

    box-shadow: none;

    transform:
        scale(1.08);

}


/*
|--------------------------------------------------------------------------
| CLIQUE
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante
.evento-botao-cadeado:active {

    color:
        rgba(255, 255, 255, .65);

    opacity: 1;

    transform:
        scale(.90);

}


/*
|--------------------------------------------------------------------------
| FOCO POR TECLADO
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante
.evento-botao-cadeado:focus {

    outline: none;

}


.evento-acesso-flutuante
.evento-botao-cadeado:focus-visible {

    outline:
        1px solid
        rgba(0, 231, 242, .45);

    outline-offset:
        2px;

}


/*
|--------------------------------------------------------------------------
| FONT AWESOME NÃO INTERCEPTA O TOQUE
|--------------------------------------------------------------------------
*/

.evento-acesso-flutuante
.evento-botao-cadeado i,
.evento-acesso-flutuante
.evento-botao-cadeado svg {

    pointer-events: none;

}


/*
|--------------------------------------------------------------------------
| ANIMAÇÃO DO PULSO
|--------------------------------------------------------------------------
*/

@keyframes dominioPulso {

    0% {

        transform:
            scale(1);

        opacity:
            .48;

    }


    50% {

        transform:
            scale(1.10);

        opacity:
            .90;

    }


    100% {

        transform:
            scale(1);

        opacity:
            .48;

    }

}


/*
|--------------------------------------------------------------------------
| MOVIMENTO DA ENERGIA
|--------------------------------------------------------------------------
*/

@keyframes dominioMovimento {

    0% {

        transform:
            translate3d(
                -2%,
                -2%,
                0
            )
            rotate(0deg);

    }


    50% {

        transform:
            translate3d(
                3%,
                2%,
                0
            )
            rotate(.5deg);

    }


    100% {

        transform:
            translate3d(
                -2%,
                -2%,
                0
            )
            rotate(0deg);

    }

}


/*
|--------------------------------------------------------------------------
| SWEETALERT
|--------------------------------------------------------------------------
*/

.swal2-container {

    z-index:
        2000000 !important;

}


.swal2-popup {

    border:
        1px
        solid
        rgba(0, 231, 242, .20) !important;

    border-radius:
        14px !important;

    box-shadow:
        0 20px 80px
        rgba(0, 0, 0, .80) !important;

}


.swal2-title {

    color:
        #ffffff !important;

}


.swal2-html-container {

    color:
        rgba(255, 255, 255, .70) !important;

}


.swal2-input {

    color:
        #ffffff !important;

    background:
        rgba(255, 255, 255, .06) !important;

    border:
        1px
        solid
        rgba(0, 231, 242, .30) !important;

}


.swal2-input::placeholder {

    color:
        rgba(255, 255, 255, .35) !important;

}


.swal2-input:focus {

    border-color:
        var(--mg-cyan) !important;

    box-shadow:
        0 0 0 3px
        rgba(0, 231, 242, .10) !important;

}


.swal2-validation-message {

    color:
        #ff9cab !important;

    background:
        rgba(239, 23, 53, .10) !important;

}


.swal2-confirm,
.swal2-cancel {

    border-radius:
        8px !important;

}


.acesso-restrito-descricao {

    margin:
        0
        0
        16px;

    color:
        rgba(255, 255, 255, .60);

    font-size: 13px;

}


/*
|--------------------------------------------------------------------------
| FINALIZAR SPLASH
|--------------------------------------------------------------------------
*/

.evento-finalizado {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .6s ease,
        visibility .6s ease;

}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (
    max-width: 768px
) {

    .evento-splash {

        align-items:
            flex-start;

        padding:
            20px
            14px
            70px;

    }


    .evento-header {

        align-items:
            flex-start;

    }


    .evento-sistema-icon {

        width: 40px;

        height: 40px;

    }


    .evento-sistema strong {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .evento-sistema span {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .evento-data-topo span {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .evento-data-topo strong {

        font-size: 9px;

    }


    .evento-logo {

        margin-top: 20px;

    }


    .evento-logo img {

        width: 155px;

    }


    .evento-pre-titulo {

        font-size: 8px;

        letter-spacing: 5px;

    }


    .evento-titulo {

        font-size: 45px;

    }


    .evento-subtitulo {

        font-size: 8px;

        line-height: 1.8;

        letter-spacing: 3px;

    }


    .evento-contador {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap: 9px;

        margin-top: 22px;

    }


    .contador-numero {

        font-size: 37px;

    }


    .evento-informacoes {

        width: 100%;

        flex-direction: column;

        gap: 10px;

    }


    .evento-informacoes
    .evento-separador {

        display: none;

    }


    .evento-mensagem {

        margin-bottom: 10px;

    }


    .evento-mensagem p {

        font-size: 7px;

        line-height: 1.6;

        letter-spacing: 2px;

    }


    /*
    |--------------------------------------------------------------------------
    | CADEADO MOBILE
    |--------------------------------------------------------------------------
    */

    .evento-acesso-flutuante {

        left:
            max(
                6px,
                env(safe-area-inset-left)
            );

        bottom:
            max(
                6px,
                env(safe-area-inset-bottom)
            );

        z-index: 9999;

    }


    .evento-acesso-flutuante
    .evento-botao-cadeado {

        /*
        |------------------------------------------------------------------
        | A ÁREA DE TOQUE É GRANDE, MAS O ÍCONE CONTINUA PEQUENO.
        |------------------------------------------------------------------
        */

        width: 46px;

        height: 46px;

        min-width: 46px;

        min-height: 46px;

        font-size: 10px;

        color:
            rgba(255, 255, 255, .12);

        background:
            transparent;

        border: none;

        box-shadow: none;

        opacity: .70;

    }


    .evento-acesso-flutuante
    .evento-botao-cadeado:active {

        color:
            rgba(255, 255, 255, .55);

        opacity: 1;

    }


    /*
    |--------------------------------------------------------------------------
    | SWEETALERT MOBILE
    |--------------------------------------------------------------------------
    */

    .swal2-popup {

        width:
            calc(100% - 28px) !important;

        margin:
            14px !important;

    }


    .swal2-title {

        font-size:
            21px !important;

    }


    .swal2-input {

        width:
            calc(100% - 40px) !important;

        margin-left:
            20px !important;

        margin-right:
            20px !important;

    }

}


/*
|--------------------------------------------------------------------------
| REDUZIR ANIMAÇÕES
|--------------------------------------------------------------------------
*/

@media (
    prefers-reduced-motion:
    reduce
) {

    .evento-splash::before,
    .evento-splash::after {

        animation:
            none !important;

    }

}