:root {
    --logo-size: 105px;
    --logo-games-size: 60px;
    --primary: #2faaff;
    --secondary: #1212f2;
    --btnColor: #000000;
    --footer: #06030a;
    --white: #fff;
    --background: #000000;
    --menu-height: 64px;
}

* {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 15px;
}

[type=button]:focus,
[type=submit]:focus,
button:focus {
    outline: none !important;
}

body,
html {
    overflow-x: hidden;
}

.container.login {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    min-height: 100vh;
}

.modal .description {
    font-size: 14px;
    width: 100%;
}

.modal h1 {
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    text-align: left;
}

.modal.login {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: calc(100% - 40px);
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
    padding: 30px 25px;
    background: #0a0a0a;
    border-radius: 8px;
    border: 0.1px solid #e5e7eb1f;
}

.modal.login button {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 14px 20px;
}

.modal .headerModal {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 10px 0;
}

.modal input {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #d1d5db61;
    background: #00000070;
    color: #fff;
}

.scroll-left {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(-30px, 0, 0);
}

.scroll-right {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(30px, 0, 0);
}

.scroll-bottom {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(0, 80px, 0);
}

.scroll-top {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(0, -80px, 0);
}

.ativo {
    opacity: 1;
}

:focus {
    outline: none !important;
}

body {
    padding: 0 0 150px 0;
    background: var(--background);
    color: var(--white);
    margin: 0;
    transition: padding-left 0.3s ease;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 14px;
}

header .container-menu {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    column-gap: 10px;
    justify-items: start;
    align-items: center;
    padding: 10px 20px;
    max-width: 720px;
    margin: 0 auto;
}

header h1 {
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    row-gap: 11px;
}

header .container-menu>h1>span {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    row-gap: 3px;
}

header .container-menu>h1>span>span {
    font-size: 10px;
    color: #fff;
}

.app {
    padding: 20px 20px 10px 20px;
}

.app {
    max-width: 720px;
    margin: 0 auto;
}

/* Responsividade Desktop */
@media screen and (min-width: 1024px) {
    .app {
        max-width: 900px;
        padding: 30px 40px 20px 40px;
    }

    header .container-menu {
        max-width: 900px;
        padding: 15px 40px;
        min-height: 100px;
    }

    header .logo {
        max-width: 100px;
    }

    header h1 {
        font-size: 18px;
    }

    .app_head {
        padding: 18px 15px;
        font-size: 19px;
    }

    .casa {
        max-width: 900px;
        padding: 0 40px;
    }

    footer ul {
        max-width: 900px;
        gap: 15px;
    }

    .menu_item a {
        padding: 12px;
    }

    .menu_item a span {
        font-size: 13px;
    }

    .infoHeader {
        max-width: 900px;
        padding: 20px 40px 0 40px;
    }

    .containerNotificacoes {
        max-width: 900px;
        padding: 0 40px;
    }

    .small-box {
        padding: 15px 20px;
        min-height: 130px;
    }

    .preco b {
        font-size: 28px;
    }

    .mensagem p {
        font-size: 13px;
    }

    .nome_jogador {
        font-size: 16px !important;
    }

    .mensagem b {
        font-size: 16px;
    }
}

@media screen and (min-width: 1440px) {
    .app {
        max-width: 900px;
        padding: 40px 20px 25px 20px;
    }

    header .container-menu {
        max-width: 900px;
        padding: 20px 50px;
        min-height: 110px;
    }

    header .logo {
        max-width: 110px;
    }

    .casa {
        max-width: 900px;
        padding: 0 50px;
    }

    footer ul {
        max-width: 900px;
    }

    .infoHeader {
        max-width: 900px;
        padding: 25px 50px 0 50px;
    }

    .containerNotificacoes {
        max-width: 900px;
        padding: 0 50px;
    }
}

.app_head {
    width: 100%;
    background: rgb(255 255 255 / 15%);
    padding: 14px 10px;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 6px;
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    font-size: 17px;
}

header .logo {
    max-width: 85px;
    border-radius: 5px;
}

#voltar {
    position: relative;
}

#voltar:after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 42px;
    width: 2px;
    background: var(--primary);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.app_content {
    display: grid;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 10px 0 5px 0;
    border: 2px solid transparent;
}

.app_head span {
    animation: fadeInOut 1.6s infinite ease-in-out;
}

.app_coluna {
    background: rgb(255 255 255 / 8%);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 10px;
    height: 100%;
    transition: all 1s;
}

button {
    background: var(--primary);
    color: var(--btnColor) !important;
    margin: 10px 0 0 0;
    padding: 14px 21px;
    width: 100%;
    appearance: none !important;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

button:disabled {
    opacity: 0.45;
    color: var(--white);
    background: #020b0b;
    border: 2px solid var(--primary);
    color: #fff !important;
}

.casa {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.casa .frame {
    width: 100%;
    height: 100%;
    min-height: 75vh;
    background: #fdfdfd;
    border: 1px solid #2c2c2c;
    border-radius: 15px;
    margin-top: 1em;
}

.app_head.active {
    border: 2px solid #06da6a;
    animation: fadeInOut 1.3s infinite ease-in-out;
}


/* Animações */

@keyframes fadeInOut {
    0% {
        opacity: 0
    }

    25% {
        opacity: 1
    }

    75% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

footer ul {
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.gridTres {
    grid-template-columns: 1fr 1fr 1fr;
}

.gridQuatro {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gridCinco {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.gridSeis {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

nav {
    padding: 8px 0;
}

.menu_item.active a {
    color: var(--primary);
}

.menu_item a {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #fff;
    padding: 9px;
}

.menu_item a span {
    text-transform: uppercase;
    font-size: 12px;
}

/* Menu Lateral - Ocultar no mobile por padrão */
.sidebar-menu {
    display: none !important;
}

/* Mobile: garantir padding bottom para o footer e remover padding left */
@media screen and (max-width: 1023px) {
    body {
        padding-left: 0 !important;
        padding-bottom: 150px !important;
    }

    /* Garantir que o menu lateral esteja oculto */
    .sidebar-menu {
        display: none !important;
    }

    /* Ocultar elementos do sidebar no mobile */
    .sidebar-header,
    .sidebar-user {
        display: none !important;
    }

    /* Garantir que o footer apareça no mobile */
    footer {
        display: block !important;
    }

    /* Mostrar infoHeader no mobile */
    .infoHeader {
        display: flex !important;
    }

    /* Suporte flutuante deve aparecer no mobile */
    a.suporteWhatsapp:not(.suporteSidebar) {
        display: flex !important;
    }

    /* Ocultar suporte do sidebar no mobile */
    .sidebar-menu .suporteWhatsapp {
        display: none !important;
    }

    /* Garantir que containers usem largura total no mobile */
    .app {
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px !important;
    }

    header .container-menu {
        max-width: 100% !important;
        width: 100% !important;
    }

    .casa {
        max-width: 100% !important;
        width: 100% !important;
    }

    .containerNotificacoes {
        max-width: 100% !important;
        width: 100% !important;
    }

    .infoHeader {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Menu Lateral Desktop */
@media screen and (min-width: 1024px) {
    /* Ocultar menu do footer no desktop */
    footer {
        display: none !important;
    }

    /* Mostrar menu lateral desktop */
    .sidebar-menu {
        display: flex !important;
    }

    /* Aplicar padding no body apenas no desktop */
    body {
        padding-left: 305px !important;
        padding-bottom: 0 !important;
    }

    /* Ocultar infoHeader no desktop - ele vai para o sidebar */
    .infoHeader {
        display: none !important;
    }

    /* Ocultar seção de instalação no desktop */
    .app_content.install {
        display: none !important;
    }
    
    /* Ocultar o título "Instalação do app" - verifica se tem ícone de download */
    .app_head h2:has(i.fi-rr-download) {
        display: none !important;
    }
    
    .app_head:has(h2:has(i.fi-rr-download)) {
        display: none !important;
    }

    /* Mostrar elementos do sidebar apenas no desktop */
    .sidebar-header,
    .sidebar-user {
        display: flex !important;
    }

    /* Menu lateral desktop */
    .sidebar-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 305px;
        height: 100vh;
        background: #0a0a0a;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sidebar-menu nav {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        justify-content: flex-start;
        padding-top: 20px;
        position: relative;
    }

    /* Header do sidebar - Logo e botão sair */
    .sidebar-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 18px;
        margin-bottom: 20px;
        width: 100%;
    }

    .sidebar-logo img {
        max-width: 115px;
        height: auto;
    }

    .sidebar-logout {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }

    .sidebar-logout:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .sidebar-logout i {
        display: flex;
    }

    /* Informações do usuário no sidebar */
    .sidebar-user {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 15px 18px;
        margin-top: auto;
        width: 100%;
        font-size: 14px;
    }

    .sidebar-user i {
        display: flex;
        width: 32px;
        height: 32px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.1);
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
    }

    .sidebar-user span {
        font-size: 14px;
    }

    .sidebar-user span#primeiroNomeHeader {
        font-weight: 800;
        color: var(--primary);
    }

    .sidebar-menu ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        padding: 0 15px;
        margin: 0;
        width: 100%;
        flex: 1;
    }

    .sidebar-menu .menu_item {
        width: 100%;
    }

    .sidebar-menu .menu_item a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 18px;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s;
        position: relative;
        color: #fff;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        gap: 12px;
    }

    .sidebar-menu .menu_item a:hover {
        background: rgba(47, 170, 255, 0.1);
    }

    .sidebar-menu .menu_item.active a {
        background: var(--primary);
        color: var(--btnColor);
    }

    .sidebar-menu .menu_item a i {
        font-size: 20px;
        display: flex;
        min-width: 24px;
    }

    .sidebar-menu .menu_item a span {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: left;
    }

    .sidebar-menu .menu_item:before {
        display: none;
    }

    /* Botão suporte no menu lateral */
    .sidebar-menu .suporteWhatsapp {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #000;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        gap: 10px;
        bottom: 50px;
    }
    
    .sidebar-menu .suporteWhatsapp span {
        font-size: 13px;
    }

    .sidebar-menu .suporteWhatsapp i {
        font-size: 15px;
        color: #1db915;
        display: flex;
    }

    .sidebar-menu .suporteWhatsapp span {
        text-transform: uppercase;
    }



    /* Ajustar header para não ficar atrás do menu */
    header {
        margin-left: 0;
        z-index: 5;
    }


    /* Ocultar suporte whatsapp flutuante no desktop (já está no menu lateral) */
    a.suporteWhatsapp:not(.suporteSidebar) {
        display: none !important;
    }

    /* Suporte no menu lateral */
    .sidebar-menu .suporteWhatsapp.suporteSidebar {
        display: flex !important;
    }
}

@media screen and (min-width: 1440px) {
    .sidebar-menu {
        width: 305px;
    }

    body {
        padding-left: 305px;
    }
}

a.sair {
    color: #fff;
    margin: 0 0 0 auto;
}

a.sair i {
    color: #fff;
    font-size: 20px;
}

.container_deposito {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

a.depositar {
    display: inline-flex;
    padding: 12px 16px;
    background: var(--primary);
    color: var(--btnColor);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    border-radius: 6px;
    margin: 30px 0 10px 0;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
}

a.depositar img {
    width: 26px;
    filter: contrast(0) brightness(2) invert(1);
}

input[type="submit"] {
    cursor: pointer;
    appearance: auto;
}

header {
    background: #000000;
    border: 2px solid;
    border-image: linear-gradient(90deg, #F2298200, var(--primary), #F2298200) 1;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    position: relative;
    z-index: 5;
}

footer {
    background: #080909a1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid;
    border-image: linear-gradient(90deg, #F2298200, #000000, #F2298200) 1;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
    z-index: 2;
}

.kpopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

.kpopup iframe {
    border: none !important;
    width: 100%;
    height: 100%;
    display: block;
}

.kpopup-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    width: 100%;
    height: 100%;
    background: var(--background);
    overflow: hidden;
    z-index: 10000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.close-btn-popup {
    display: flex;
    cursor: pointer;
    border-radius: 50px;
    position: fixed;
    right: 15px;
    top: 15px;
    background: var(--primary);
    padding: 0 12px;
    width: 45px;
    height: 45px;
    z-index: 10001;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.close-btn-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.close-btn-popup i {
    display: inline-flex;
    transform: scaleX(1.15);
    font-size: 14px;
    color: #000;
}

.close-btn-popup:hover,
.close-btn-popup:focus {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

a {
    cursor: pointer;
}

.actions-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}


@media screen and (max-width: 380px) {
    header .slogan {
        display: none;
    }
}


@media screen and (min-width: 360px) and (max-width: 390px) {
    header .container-menu>h1>.nome-jogo {
        font-size: 12px;
    }

    header .container-menu>h1>.nome-jogo>span {
        font-size: 9px;
    }
}


@media screen and (max-width: 380px) {
    header .container-menu>h1>.nome-jogo {
        display: none;
    }

    header .logo {
        max-width: 90px !important;
    }
}


@media screen and (max-width: 345px) {
    header .logo {
        max-width: 80px !important;
    }
}

@media screen and (max-width: 330px) {
    header .logo {
        max-width: 70px !important;
    }
}

@media screen and (max-width: 320px) {
    header .logo {
        display: none!important;
    }
}

.actions-menu i {
    font-size: 19px !important;
    color: #fff;
}

@keyframes sinalizar {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    25% {
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }

    100% {
        transform: rotate(-10deg) scale(1.1);
    }
}

.novidade {
    display: inline-block;
    transform: rotate(0deg) scale(1.1);
    animation: sinalizar 1.3s infinite ease-in-out;
}

.actions-menu>a:nth-child(1) {
    position: relative;
}


.actions-menu>a:nth-child(1):after {
    position: absolute;
    top: -20px;
    right: -7px;
    font-size: 14px;
    font-weight: 800;
    font-family: "Dystopian", sans-serif;
    color: var(--primary);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.avisos .destacar {
    background: var(--primary)!important;
}

header h1>span {
    margin-bottom: -10px;
}

.app_coluna .azul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #1070ed;
    text-transform: capitalize;
}

.app_coluna .azul:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #1070ed;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

.app_coluna .empate {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-transform: capitalize;
}

.app_coluna .empate:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

.app_coluna .vermelha,
.app_coluna .vermelho {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #d30202;
    text-transform: capitalize;
}

.app_coluna .vermelha:after,
.app_coluna .vermelho:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #d30202;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

.svgPix {
    width: 30px;
    height: 30px;
    fill: var(--btnColor);
}

#secaoBronze .app_head h2 i {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
}

#secaoBronze .app_head h2 > div {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#secaoPrata .app_head h2 i {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
}

#secaoPrata .app_head h2 > div {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#secaoOuro .app_head h2 i {
    background: linear-gradient(90deg, #ffd52c, #fff458);
}

#secaoOuro .app_head h2 > div {
    background: linear-gradient(90deg, #ffd52c, #fff458);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.bronze {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.prata {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.ouro {
    background: linear-gradient(90deg, #ffd52c, #fff458);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.container-perfil {
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 13px;
    row-gap: 5px;
}

span.nome-nivel {
    font-weight: 600;
    font-size: 11px;
}

span.nome-perfil > span {
    font-size: 11px;
}

span.nome-nivel > span {
    font-size: 13px;
}

span.nome-perfil {
    font-size: 13px;
}

div#secaoBronze i, div#secaoPrata i, div#secaoOuro i {
    color: #000;
}

.container-plano {
    position: relative;
}

.containerBotao {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.botaoDesbloquear, .emBreve {
    display: flex;
    background: var(--primary);
    color: var(--btnColor);
    padding: 15px 17px;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.botaoDesbloquear i, .emBreve i {
    display: flex;
    color: var(--btnColor)!important;
}

.menu_item {
    position: relative;
}

.menu_item.active:before {
    opacity: .3;
    transform: translate3d(0,0,0);
}

.menu_item:before {
    transition: .24s;
    filter: blur(10px);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    background-color: #005fff;
    border-radius: 50%;
    bottom: -60%;
    content: "";
    display: block;
    left: 0;
    height: 48px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 48px;
    z-index: -1;
}

li.menu_item.active a > span {
    font-weight: 600;
}

li.menu_item a > span {
    transition: all 400ms ease-in-out;
}

.container_responsabilidade img {
    width: 100%;
    max-width: 195px;
}

.container_responsabilidade {
    padding: 25px 20px 0 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.container_responsabilidade img {
    width: 100%;
    max-width: 195px;
}

.notyf__toast--error .notyf__ripple {
    background: #950d0d !important;
}

.notyf__wrapper {
    padding: 8px 20px 8px 20px!important;
}

.notyf__message {
    font-size: 15px!important;
}

.notyf__dismiss-btn {
    margin: 0!important;
}

.notyf__dismiss {
    margin-right: 0!important;
}

.notyf__toast--upper, .notyf__toast {
    padding: 0!important;
}

.notyf__icon--error, .notyf__icon--success {
    transform: scale(0.8)!important;
    margin-left: -5px!important;
}

a.suporteTelegram {
    position: fixed;
    right: 25px;
    bottom: 100px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 60px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

a.suporteWhatsapp {
    position: fixed;
    right: 25px;
    bottom: 100px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 60px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

a.suporteTelegram i {
    display: flex;
    color: #094bd4;
    font-size: 18px;
}

a.suporteWhatsapp i {
    display: flex;
    color: #1db915;
    font-size: 18px;
}

.onesignal-customlink-explanation {
    color: #fff!important;
    text-align: center!important;
    font-weight: 600!important;
    font-family: 'Montserrat'!important;
    font-size: 14px!important;
}

.onesignal-customlink-subscribe {
    padding: 14px 15px!important;
    color: #fff!important;
    font-family: 'Montserrat', sans-serif!important;
}

.onesignal-customlink-container {
    min-height: auto!important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.state-subscribed {
    display: none!important;
}


.containerNotificacoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    padding: 0 20px;
    max-width: 720px;
    margin: 14px auto 0 auto;
}

.containerNotificacoes h3 {
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.slidedown-body-icon {
    width: auto!important;
    height: auto!important;
}

.slidedown-body-icon img {
    max-width: 40px!important;
    width: 100%!important;
    height: auto!important;
}

div#slidedown-body {
    margin: 0 0 5px 0!important;
}

div#slidedown-body * {
    font-family: 'Montserrat', sans-serif!important;
}

#onesignal-slidedown-container #onesignal-slidedown-dialog .slidedown-button {
    padding: 9px 15px!important;
}

div#onesignal-slidedown-dialog {
    padding: 13px 20px!important;
}

button#onesignal-slidedown-cancel-button {
    display: none!important;
}

button#onesignal-slidedown-allow-button {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px!important;
    font-weight: 600!important;
}

.headerModal .logo {
    max-width: 175px;
    margin: 0 auto 5px auto;
}

h1#titleModal {
    text-align: center;
}

span.description {
    text-align: center;
}

.infoUser {
    visibility: hidden;
}

.containerDownload {
    display: flex;
    justify-content: center;
}

a.downloadBtn {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary);
    border-radius: 6px;
    color: var(--btnColor);
    font-weight: 600;
}

a.downloadBtn i {
    display: flex;
}

.popup-content .content img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--primary);
}

.tutorialMidia {
    display: flex;
    flex-direction: column;
    gap: 20px;
}