/* =========================================================
   GERAL
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    background: #070707;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #070707;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
select,
textarea,
button {
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.hidden,
.esconder {
    display: none !important;
}

.cursor {
    cursor: pointer;
}


/* =========================================================
   APP
========================================================= */

.app {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 4%, rgba(215, 255, 63, .13), transparent 24%),
        linear-gradient(160deg, #050505 0%, #0a0a0a 55%, #070707 100%);
}


/* =========================================================
   LOADING
========================================================= */

#loading {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.loading-spinner {
    width: 58px;
    height: 58px;
    border: 5px solid rgba(255, 255, 255, .12);
    border-top-color: #d7ff3f;
    border-right-color: #d7ff3f;
    border-radius: 50%;
    animation: loading-girar .8s linear infinite;
    box-shadow: 0 0 22px rgba(215, 255, 63, .25);
}

@keyframes loading-girar {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   ALERTA
========================================================= */

#area_alerta {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 9999999999;
    width: 100%;
    max-width: 560px;
    padding: 18px;
    display: none;
    transform: translateX(-50%);
    pointer-events: none;
}

#alerta {
    width: 100%;
    min-height: 78px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 17, 17, .97);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
    animation: alerta-entrar .22s ease-out;
}

@keyframes alerta-entrar {

    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.alerta-icone {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alerta-icone i {
    font-size: 16px;
}

.alerta-conteudo {
    min-width: 0;
    flex: 1;
}

.alerta-conteudo strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.alerta-conteudo span {
    display: block;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.alerta-fechar {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: #888;
    cursor: pointer;
}

.alerta-fechar i {
    font-size: 12px;
}

.alerta-fechar:active {
    transform: scale(.95);
}


/* =========================================================
   ALERTA SUCCESS
========================================================= */

#alerta.alerta-success {
    border-color: rgba(215, 255, 63, .45);
    background:
        radial-gradient(circle at 0% 50%, rgba(215, 255, 63, .16), transparent 42%),
        #18200f;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .55),
        0 0 25px rgba(215, 255, 63, .08);
}

#alerta.alerta-success .alerta-icone {
    background: #d7ff3f;
    color: #111;
}

#alerta.alerta-success .alerta-conteudo strong {
    color: #d7ff3f;
}


/* =========================================================
   ALERTA ERROR
========================================================= */

#alerta.alerta-error {
    border-color: rgba(255, 92, 72, .45);
    background:
        radial-gradient(circle at 0% 50%, rgba(255, 92, 72, .17), transparent 42%),
        #241411;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .55),
        0 0 25px rgba(255, 92, 72, .08);
}

#alerta.alerta-error .alerta-icone {
    background: #ff5c48;
    color: #fff;
}

#alerta.alerta-error .alerta-conteudo strong {
    color: #ff725f;
}


/* =========================================================
   INSTALAR APP
========================================================= */

.instalar-app {
    width: calc(100% - 32px);
    min-height: 52px;
    margin: 14px 16px 0;
    padding: 0 16px;
    border: 1px solid rgba(215, 255, 63, .22);
    border-radius: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(215, 255, 63, .10);
    color: #d7ff3f;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    -webkit-tap-highlight-color: transparent;
}

.instalar-app i {
    font-size: 14px;
}

.instalar-app:active {
    transform: scale(.98);
}


/* =========================================================
   CABEÇALHO
========================================================= */

.topo {
    position: relative;
    width: 100%;
    min-height: 82px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(215, 255, 63, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: rgba(5, 5, 5, .92);
}

.topo::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 18px;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: #d7ff3f;
}

.topo-logo {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.topo-logo-img {
    width: auto;
    max-width: 145px;
    height: 52px;
    object-fit: contain;
}

.topo-acoes {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.topo-entrar {
    min-width: 94px;
    height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(215, 255, 63, .12);
    -webkit-tap-highlight-color: transparent;
}

.topo-entrar:active {
    transform: scale(.97);
}

.topo-saldo {
    min-height: 46px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, .045);
}

.topo-saldo span {
    color: #777;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.topo-saldo strong {
    margin-top: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.topo-conta {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
}

.topo-conta i {
    font-size: 14px;
}


/* =========================================================
   HOME
========================================================= */

.home-page {
    width: 100%;
    padding: 16px 16px 110px;
}

.home-destaque {
    position: relative;
    width: 100%;
    padding: 24px 20px 20px;
    border: 1px solid rgba(215, 255, 63, .16);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .18), transparent 38%),
        rgba(255, 255, 255, .055);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
}

.home-destaque::after {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(215, 255, 63, .08);
    filter: blur(4px);
}

.home-destaque-tag {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d7ff3f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.home-destaque-tag span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7ff3f;
    box-shadow: 0 0 10px rgba(215, 255, 63, .65);
}

.home-destaque-titulo {
    position: relative;
    z-index: 2;
    margin-top: 13px;
    color: #fff;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.8px;
}

.home-destaque-texto {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin-top: 12px;
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.home-destaque-status {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
}

.home-status-item {
    text-align: center;
}

.home-status-item strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.home-status-item span {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.home-status-divisor {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .08);
}

.home-secao {
    margin-top: 25px;
}

.home-secao-topo {
    min-height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.home-secao-label {
    margin-bottom: 5px;
    color: #7b7b7b;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .65px;
}

.home-secao-titulo {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.1;
}

.home-secao-icone {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border: 1px solid rgba(215, 255, 63, .18);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 255, 63, .08);
    color: #d7ff3f;
}

.home-secao-icone i {
    font-size: 15px;
}

.home-niveis {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.home-nivel-card {
    width: 100%;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.home-nivel-topo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-nivel-nome {
    margin-bottom: 5px;
    color: #888;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.home-nivel-blinds {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.home-nivel-status {
    min-height: 27px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    color: #888;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-nivel-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #777;
}

.home-nivel-status.ativo {
    border-color: rgba(215, 255, 63, .18);
    background: rgba(215, 255, 63, .08);
    color: #d7ff3f;
}

.home-nivel-status.ativo span {
    background: #d7ff3f;
    box-shadow: 0 0 8px rgba(215, 255, 63, .65);
}

.home-nivel-info {
    margin-top: 17px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.home-nivel-info-item span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-nivel-info-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.home-nivel-botao {
    width: 100%;
    height: 48px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d7ff3f;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.home-nivel-botao i {
    font-size: 12px;
}

.home-nivel-botao:active {
    transform: scale(.985);
}

.home-clubes {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.home-clube-card {
    width: 100%;
    min-height: 72px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 21px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.home-clube-icone {
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
}

.home-clube-icone i {
    font-size: 16px;
}

.home-clube-info {
    min-width: 0;
    flex: 1;
}

.home-clube-info strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-clube-info span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 10px;
    font-weight: 800;
}

.home-clube-seta {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: #777;
}

.home-clube-seta i {
    font-size: 10px;
}

.home-clube-card:active {
    transform: scale(.985);
}

.home-vazio {
    width: 100%;
    min-height: 150px;
    padding: 24px 18px;
    border: 1px dashed rgba(255, 255, 255, .10);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .035);
    text-align: center;
}

.home-vazio i {
    margin-bottom: 12px;
    color: #d7ff3f;
    font-size: 20px;
}

.home-vazio strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.home-vazio span {
    max-width: 270px;
    margin-top: 6px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.home-vazio-clubes {
    min-height: 110px;
}


/* =========================================================
   MENU
========================================================= */

.menu {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 9990;
    width: 100%;
    max-width: 560px;
    padding: 10px 10px calc(14px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    background: rgba(7, 7, 7, .94);
    border-top: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -16px 35px rgba(0, 0, 0, .28);
}

.menus {
    width: 100%;
    display: grid;
    gap: 8px;
}

.menus.menu-itens-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-item {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 5px 3px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    -webkit-tap-highlight-color: transparent;
}

.menu-item:active {
    transform: scale(.96);
}

.menu-item-conteudo {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-item i {
    color: #aaa;
    font-size: 18px;
    line-height: 1;
}

.menu-item label {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #aaa;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.menu-item-ativo {
    border-color: rgba(215, 255, 63, .20);
    background: rgba(215, 255, 63, .10);
}

.menu-item-ativo i,
.menu-item-ativo label {
    color: #d7ff3f;
}


/* =========================================================
   LOGIN
========================================================= */

.login-voltar {
    width: fit-content;
    margin: 14px 18px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #888;
    font-size: 11px;
    font-weight: 800;
}

.login-voltar i {
    color: #d7ff3f;
    font-size: 11px;
}

.login-voltar:active {
    opacity: .7;
}

.login-container {
    width: 100%;
    min-height: calc(100vh - 82px);
    padding: 18px 18px 110px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.login-card {
    width: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(215, 255, 63, .14);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .12), transparent 35%),
        rgba(255, 255, 255, .055);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.login-icone {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

.login-icone i {
    font-size: 24px;
}

.login-card > small,
.login-modal-topo small {
    display: block;
    margin-bottom: 7px;
    color: #d7ff3f;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.login-card > small {
    text-align: center;
}

.login-card h1 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
}

.login-card > p {
    max-width: 320px;
    margin: 10px auto 25px;
    color: #8b8b8b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.campo {
    width: 100%;
}

.campo label {
    margin: 0 0 8px 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.campo-opcional {
    color: #666;
    font-size: 8px;
    font-weight: 900;
}

.campo input {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .065);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    outline: none;
}

.campo input:focus {
    border-color: rgba(215, 255, 63, .45);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px rgba(215, 255, 63, .06);
}

.campo input[readonly] {
    color: #999;
    background: rgba(255, 255, 255, .035);
}

.whatsapp,
.codigo {
    text-align: center;
}

.codigo {
    font-size: 24px !important;
    font-weight: 900 !important;
    letter-spacing: 6px;
}

.login-botao {
    width: 100%;
    min-height: 58px;
    margin-top: 2px;
    padding: 0 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #d7ff3f;
    color: #111;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    -webkit-tap-highlight-color: transparent;
}

.login-botao i {
    font-size: 13px;
}

.login-botao:active {
    transform: scale(.985);
}

.login-acoes-codigo {
    margin-top: -3px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.login-acoes-codigo span {
    color: #888;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.login-acoes-codigo span:active {
    color: #d7ff3f;
}

.login-cadastro {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.login-cadastro > span {
    color: #777;
    font-size: 11px;
    font-weight: 700;
}

.login-cadastro > button {
    padding: 4px 8px;
    background: transparent;
    color: #d7ff3f;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.login-cadastro > button:active {
    opacity: .7;
}


/* =========================================================
   MODAL CADASTRO
========================================================= */

.login-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 99999;
    width: 100%;
    max-width: 560px;
    padding: 24px 18px 18px;
    display: none;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(-50%);
}

.login-modal-fundo {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.login-modal-conteudo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 22px;
    border: 1px solid rgba(215, 255, 63, .15);
    border-radius: 30px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .10), transparent 32%),
        #111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
    animation: loginModalAbrir .20s ease-out;
}

@keyframes loginModalAbrir {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.login-modal-topo {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.login-modal-topo h2 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.1;
}

.login-modal-fechar {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    cursor: pointer;
}

.login-modal-fechar i {
    font-size: 13px;
}

.login-modal-fechar:active {
    transform: scale(.96);
}

.login-modal-texto {
    margin: 15px 0 20px;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.politicas-aceite {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
}

.politicas-aceite input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #d7ff3f;
    cursor: pointer;
}

.politicas-aceite div {
    color: #999;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.politicas-aceite span {
    color: #d7ff3f;
    font-weight: 900;
    cursor: pointer;
}

.login-cadastro-botao {
    margin-top: 3px;
}


/* =========================================================
   POLÍTICAS
========================================================= */

.politicas-page {
    width: 100%;
    padding: 24px 16px 45px;
}

.politicas-topo {
    padding: 24px 20px;
    border: 1px solid rgba(215, 255, 63, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .12), transparent 36%),
        rgba(255, 255, 255, .05);
}

.politicas-icone {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
}

.politicas-icone i {
    font-size: 19px;
}

.politicas-topo small {
    display: block;
    margin-bottom: 7px;
    color: #d7ff3f;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.politicas-topo h1 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.politicas-topo p {
    margin: 10px 0 0;
    color: #888;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.politicas-card {
    margin-top: 14px;
    padding: 5px 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 26px;
    background: rgba(255, 255, 255, .045);
}

.politicas-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.politicas-item:last-child {
    border-bottom: 0;
}

.politicas-item h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.politicas-item p {
    margin: 0;
    color: #929292;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}

.politicas-item p + p {
    margin-top: 9px;
}

.politicas-voltar {
    width: 100%;
    height: 54px;
    margin-top: 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #d7ff3f;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.politicas-voltar:active {
    transform: scale(.985);
}


/* =========================================================
   CONTA
========================================================= */

.conta-page {
    width: 100%;
    padding: 20px 16px 115px;
}

.conta-perfil {
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(215, 255, 63, .13);
    border-radius: 26px;
    display: flex;
    align-items: center;
    gap: 15px;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .11), transparent 38%),
        rgba(255, 255, 255, .05);
}

.conta-avatar {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7ff3f;
    color: #111;
}

.conta-avatar i {
    font-size: 19px;
}

.conta-perfil-info {
    min-width: 0;
}

.conta-perfil-info small,
.conta-bloco-titulo small,
.conta-modal-topo small {
    display: block;
    margin-bottom: 5px;
    color: #d7ff3f;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .55px;
}

.conta-perfil-info h1 {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.conta-perfil-info p {
    margin: 5px 0 0;
    overflow: hidden;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   CONTA CARTEIRA
========================================================= */

.conta-carteira {
    width: 100%;
    margin-top: 14px;
    padding: 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .17), transparent 35%),
        #d7ff3f;
    color: #111;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
    -webkit-tap-highlight-color: transparent;
}

.conta-carteira:active {
    transform: scale(.985);
}

.conta-carteira small {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
    opacity: .62;
}

.conta-carteira strong {
    display: block;
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
}

.conta-carteira span {
    margin-top: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 900;
    opacity: .65;
}

.conta-carteira span i {
    font-size: 9px;
}

.conta-carteira-icone {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .10);
}

.conta-carteira-icone i {
    font-size: 18px;
}


/* =========================================================
   CONTA AÇÕES
========================================================= */

.conta-acoes {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.conta-acao {
    width: 100%;
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.conta-acao:active {
    transform: scale(.985);
}

.conta-acao-deposito {
    border-color: rgba(215, 255, 63, .20);
    background:
        radial-gradient(circle at 100% 50%, rgba(215, 255, 63, .10), transparent 32%),
        rgba(215, 255, 63, .065);
}

.conta-acao-icone {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 255, 63, .09);
    color: #d7ff3f;
}

.conta-acao-deposito .conta-acao-icone {
    background: #d7ff3f;
    color: #111;
}

.conta-acao-icone i {
    font-size: 15px;
}

.conta-acao > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.conta-acao strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.conta-acao span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 10px;
    font-weight: 700;
}

.conta-acao-seta {
    color: #666;
    font-size: 10px;
}

.conta-acao-deposito .conta-acao-seta {
    color: #d7ff3f;
}


/* =========================================================
   CONTA PERFIL
========================================================= */

.conta-bloco {
    width: 100%;
    margin-top: 14px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 25px;
    background: rgba(255, 255, 255, .045);
}

.conta-bloco-titulo {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.conta-bloco-titulo h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.conta-editar-link {
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid rgba(215, 255, 63, .13);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(215, 255, 63, .07);
    color: #d7ff3f;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
}

.conta-editar-link i {
    font-size: 8px;
}

.conta-editar-link:active {
    transform: scale(.96);
}

.conta-dados {
    display: flex;
    flex-direction: column;
}

.conta-dado {
    min-height: 62px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.conta-dado:last-child {
    border-bottom: 0;
}

.conta-dado-icone {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 255, 63, .08);
    color: #d7ff3f;
}

.conta-dado-icone i {
    font-size: 13px;
}

.conta-dado > div:last-child {
    min-width: 0;
}

.conta-dado small {
    display: block;
    margin-bottom: 4px;
    color: #707070;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.conta-dado strong {
    display: block;
    overflow: hidden;
    color: #ddd;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.conta-dado .conta-nao-cadastrado {
    color: #777;
}


/* =========================================================
   CONTA SAIR
========================================================= */

.conta-sair {
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .045);
    color: #aaa;
    font-size: 12px;
    font-weight: 900;
}

.conta-sair:active {
    transform: scale(.985);
}


/* =========================================================
   MODAL EDITAR PERFIL
========================================================= */

.conta-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 99999;
    width: 100%;
    max-width: 560px;
    padding: 24px 18px 18px;
    display: none;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(-50%);
}

.conta-modal-fundo {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.conta-modal-conteudo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: calc(100vh - 42px);
    padding: 22px;
    border: 1px solid rgba(215, 255, 63, .15);
    border-radius: 30px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 255, 63, .10), transparent 32%),
        #111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
    animation: contaModalAbrir .20s ease-out;
}

@keyframes contaModalAbrir {

    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.conta-modal-topo {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.conta-modal-topo h2 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.1;
}

.conta-modal-fechar {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    cursor: pointer;
}

.conta-modal-fechar i {
    font-size: 13px;
}

.conta-modal-fechar:active {
    transform: scale(.96);
}

.conta-modal-texto {
    margin: 15px 0 20px;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.conta-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.conta-form .campo select {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: #202020;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    outline: none;
}

.conta-form .campo select:focus {
    border-color: rgba(215, 255, 63, .45);
    box-shadow: 0 0 0 3px rgba(215, 255, 63, .06);
}

.conta-modal-aviso {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(215, 255, 63, .10);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: rgba(215, 255, 63, .05);
}

.conta-modal-aviso i {
    margin-top: 2px;
    color: #d7ff3f;
    font-size: 12px;
}

.conta-modal-aviso span {
    color: #888;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
}

.conta-salvar {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #d7ff3f;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.conta-salvar i {
    font-size: 12px;
}

.conta-salvar:active {
    transform: scale(.985);
}


/* =========================================================
   CARTEIRA
========================================================= */

.carteira-page {
    width: 100%;
    padding: 20px 16px 115px;
}

.carteira-saldo {
    width: 100%;
    padding: 22px;
    border-radius: 27px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .20), transparent 35%),
        #d7ff3f;
    color: #111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .27);
}

.carteira-saldo-topo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.carteira-saldo small {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .55px;
    opacity: .60;
}

.carteira-saldo span {
    display: block;
    font-size: 12px;
    font-weight: 900;
}

.carteira-saldo > strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.carteira-saldo-icone {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .10);
}

.carteira-saldo-icone i {
    font-size: 17px;
}

.carteira-acoes {
    width: 100%;
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.carteira-acao {
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 21px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.carteira-acao-principal {
    border-color: rgba(215, 255, 63, .15);
    background: rgba(215, 255, 63, .075);
}

.carteira-acao:active {
    transform: scale(.985);
}

.carteira-acao-icone {
    width: 43px;
    min-width: 43px;
    height: 43px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 255, 63, .09);
    color: #d7ff3f;
}

.carteira-acao-icone i {
    font-size: 15px;
}

.carteira-acao strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.carteira-acao span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 9px;
    font-weight: 800;
}

.carteira-bloco {
    width: 100%;
    margin-top: 14px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 25px;
    background: rgba(255, 255, 255, .045);
}

.carteira-bloco-titulo {
    margin-bottom: 14px;
}

.carteira-bloco-titulo small {
    display: block;
    margin-bottom: 5px;
    color: #d7ff3f;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .55px;
}

.carteira-bloco-titulo h1 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.carteira-extrato {
    display: flex;
    flex-direction: column;
}

.carteira-extrato-item {
    min-height: 65px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 11px;
}

.carteira-extrato-item:last-child {
    border-bottom: 0;
}

.carteira-extrato-icone {
    width: 41px;
    min-width: 41px;
    height: 41px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carteira-extrato-icone.credito {
    background: rgba(215, 255, 63, .09);
    color: #d7ff3f;
}

.carteira-extrato-icone.debito {
    background: rgba(255, 255, 255, .06);
    color: #aaa;
}

.carteira-extrato-info {
    min-width: 0;
    flex: 1;
}

.carteira-extrato-info strong {
    display: block;
    overflow: hidden;
    color: #ddd;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.carteira-extrato-info small {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 9px;
    font-weight: 700;
}

.carteira-extrato-valor {
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.carteira-extrato-valor.credito {
    color: #d7ff3f;
}

.carteira-extrato-valor.debito {
    color: #aaa;
}

.carteira-vazio {
    padding: 28px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carteira-vazio-icone {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    color: #555;
}

.carteira-vazio strong {
    color: #aaa;
    font-size: 12px;
    font-weight: 900;
}

.carteira-vazio span {
    margin-top: 5px;
    color: #666;
    font-size: 10px;
    font-weight: 700;
}