:root {
    --primary: #DDFF73;
    --secondary: #d5ff57;
    --tertiary: #bce937;
    --btnColor: #06030a;
    --footer: #06030a;
}

:root {
    --light-gray: #ffffff05;
    --dark-bg: #0a0a0a;
    --input-bg: #262626;
    --red: #DF2B20;
    --primary-text: #FFFFFF;
    --secondary-text: #9F9F9F;
    --faded-accent: rgb(130 149 249 / 15%);
}


* {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 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;
}

:focus {
    outline: none !important;
}

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: 30px 20px 10px 20px;
}

.app {
    max-width: 720px;
    margin: 0 auto;
}

.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: var(--logo-games-size);
    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;
    color: var(--btnColor) !important;
}

*,
*::before,
*::after {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    background: #080808;
    color: var(--primary-text);
    overflow: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

#staged-form {
    background: var(--dark-bg);
    max-width: 420px;
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--faded-accent);
    overflow: hidden;
    min-height: 405px;
    justify-content: center;
}

#staged-form h2 {
    margin: 0 0 12px 0;
}


/* ---------- STAGE PROGRESS ---------- */
#stage-progress {
    list-style: none;
    width: 90%;
}

#stage-progress li {
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
    color: var(--secondary-text);
    font-size: 12px;
}

#stage-progress li::before {
    display: block;
    content: "";
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    border: 4px solid var(--light-gray);
    background: var(--light-gray);
    transition: border 0.1s ease-in-out 0s, background 0.1s ease-in-out 0s;
}

#stage-progress li::after {
    position: absolute;
    content: "";
    width: calc(100% - 40px);
    height: 4px;
    border-radius: 5px;
    background: var(--light-gray);
    left: calc(-50% + 20px);
    top: 14px;
    background: linear-gradient(90deg, var(--primary) 50%, var(--light-gray) 50%);
    background-size: 210% 100%;
    background-position: -95% 0;
    transition: background-position 0.3s ease-in-out;
}

#stage-progress li:first-child::after {
    content: none;
}

#stage-progress li.active-stage::before {
    border-color: var(--primary);
    transition: border 0.1s ease-in-out 0.3s, background 0.1s ease-in-out;
}

#stage-progress li.active-stage::after {
    background-position: -190% 0;
}

#stage-progress li:has(~ .active-stage)::before,
#stage-progress li:has(~ .active-stage)::after {
    border-color: var(--primary);
    background: var(--primary);
    background-position: -190% 0;
}

#stage-progress li:has(~ .active-stage)::before {
    content: "\e35f";
    font-family: uicons-bold-straight !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    color: var(--btnColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#stage-progress li.active-stage::before {
    border-color: var(--primary);
    background: var(--primary);
    font-family: uicons-bold-straight !important;
    content: "\e35f";
    /* Unicode checkmark */
    color: var(--btnColor);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ---------- FORMS ---------- */
main {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mainContainer {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

form {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    flex-shrink: 0;
}

#form-section {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

main::before,
main::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 24px;
    top: 0;
    z-index: 1;
}

main::before {
    left: 0;
    width: 24px;
    background: linear-gradient(90deg, var(--dark-bg), rgba(32, 32, 32, 0));
}

main::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark-bg), rgba(32, 32, 32, 0));
}

/* ---------- INPUT ---------- */
label {
    font-size: 14px;
}

input {
    display: block;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    padding: 13px 8px;
    margin: 8px 0;
    border: 1px solid var(--light-gray);
    background: var(--input-bg);
    color: var(--primary-text);
    border: 1px solid transparent;
}

input:focus {
    border: 1px solid var(--primary);
    outline: none;
}

/* ---------- NAVIGATION BUTTONS ---------- */
#form-navigation button {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--btnColor);
    position: relative;
    z-index: 15;
    margin: 0;
}

button:disabled {
    background: var(--primary);
    cursor: not-allowed;
    color: var(--btnColor) !important;
    opacity: 0.5;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary), var(--primary));
    background-size: 200% 200%;
    background-position: 100% 0;
    border: none;
    transition: background-position 0.3s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.primary-btn i {
    display: flex;
}

.primary-btn:hover {
    background-position: 0 0;
    color: var(--btnColor) !important;
}

.secondary-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary), var(--primary));
    background-size: 200% 200%;
    background-position: 100% 0;
    border: none;
    z-index: 3;
    transition: background-position 0.3s ease-in-out;
}

.secondary-btn:hover,
.secondary-btn:hover::after {
    background-position: 0 0;
}

.secondary-btn::before {
    position: absolute;
    content: "";
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    background: var(--dark-bg);
    z-index: -1;
}

.secondary-btn::after {
    content: "⟵ Voltar";
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary), var(--primary));
    background-size: 200% 200%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease-in-out;
}

#prev,
#save {
    display: none;
}

img.logoProjeto {
    width: 100%;
    max-width: 120px;
}

a#linkCadastro {
    color: #fff;
    font-size: 13px;
    display: flex;
    gap: 6px;
    margin: 15px 0 5px 0;
}

a#linkCadastro b {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

#success-message {
    display: none;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#success-message.show {
    display: block;
    opacity: 1;
}

#success-message h2 {
    font-size: 18px;
    margin: 20px 0 0 0;
    margin-bottom: 10px;
    color: var(--primary);
}

#success-message p>b {
    font-size: 14px;
    color: var(--primary);
}

#success-message p {
    font-size: 15px;
    color: var(--primary-text);
}

#success-message p:not(:last-child) {
    margin-bottom: 5px;
}

#stage-progress .finalizado::before {
    background: var(--primary);
    content: "\e35f";
    font-family: uicons-bold-straight !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    color: var(--btnColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#formularioPesquisaSection {
    transition: all 400ms ease-in-out;
}

.formularioPesquisaSection.active {
    visibility: visible !important;
    height: auto !important;
}

.formularioPesquisaSection.active a#formularioPesquisa {
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    color: #1cff7e;
    text-wrap: balance;
    flex-wrap: nowrap;
    align-items: center;
}

.formularioPesquisaSection.active span.principalPesquisa {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 12px 20px;
    background: var(--primary);
    justify-content: center;
    margin: 15px 0 0 0;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--btnColor);
}

section.offline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.offline h2 {
    text-align: center;
    color: #ff1f1f;
    font-size: 16px;
    font-weight: 500;
    text-wrap: balance;
}

section.offline p {
    font-size: 14px;
    margin: 10px 0 25px 0;
    text-align: center;
    text-wrap: balance;
}

a.botaoApoio {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--primary);
    color: var(--btnColor);
    border-radius: 50px;
}

a.botaoApoio i {
    display: flex;
}

.input-form {
    position: relative;
}

.input-form input {
    padding: 14px 10px 14px 35px;
}

.input-form i {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.kpopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    background-color: #000000d9;
}

@media screen and (min-width: 768px) {

    .kpopup-content {
        max-height: 80vh;
        max-width: 500px;
        margin: auto auto;
    }

    .kpopup-content::-webkit-scrollbar {
        width: 0;
    }
}

.containerIframe {
    height: 100%;
    overflow-y: auto;
}

.containerIframe::-webkit-scrollbar {
    width: 0;
}


.kpopup iframe {
    border: none !important;
}

.kpopup-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    overflow: hidden;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.close-btn-popup {
    display: flex;
    cursor: pointer;
}

.close-btn-popup i {
    display: inline-block;
    transform: scaleX(1.15);
    font-size: 14px;
    color: var(--btnColor);
}

.close-btn-popup:hover,
.close-btn-popup:focus {
    color: var(--background);
    text-decoration: none;
    cursor: pointer;
}

.headerPopup {
    display: flex;
    padding: 20px 15px;
    background: #ffffff14;
    color: var(--primary);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
    position: relative;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}

.close-btn-popup {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: var(--primary);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.titlePopup {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}


.linhaspontilhadas {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    z-index: 1;
    opacity: .2;
}

.linhas {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #5e5e5e, #5e5e5e 5px, transparent 5px, transparent);
    background-size: 100% 15px;
    position: relative;
}

#form-section {
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.form-stage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
    z-index: 1;
    display: block;
}

.form-stage.active {
    opacity: 1;
    transform: translateX(0%);
    pointer-events: auto;
    z-index: 2;
}

.form-stage.exit-left {
    opacity: 0;
    transform: translateX(-100%);
}

.form-stage.exit-right {
    opacity: 0;
    transform: translateX(100%);
}

div#form-section {
    margin: 20px 0 0 0;
}

.e-font-icon-svg {
    fill: #00FFAE;
    transition: fill 0.3s;
}

.circleStatus {
    border-radius: 50% !important;  
    overflow: visible;
}

.e-fas-circle {
    background: #00FFAE;
    animation: luzesux 1.3s linear infinite;
    -webkit-animation: luzesux 1.3s linear infinite;
    -moz-animation: luzesux 1.3s linear infinite;
    -o-animation: luzesux 1.3s linear infinite;
    width: 8px;
    height: 8px;               
    display: inline-block;   
    border-radius: 50% !important;       
}

@-webkit-keyframes luzesux {
    0% {
        box-shadow: 0 0 10px -10px #00FFAE;
    }
    90% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}
@-moz-keyframes luzesux {
    0% {
        box-shadow: 0 0 10px -10px #00FFAE;
    }
    90% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}
@-o-keyframes luzesux {
    0% {
        box-shadow: 0 0 10px -10px #00FFAE;
    }
    90% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}
@keyframes luzesux {
    0% {
        box-shadow: 0 0 10px -10px #00FFAE;
    }
    90% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}


.containerSocioOnline {
    display: flex;
    gap: 9px;
    padding: 10px 15px;
    background: #000000FC;
    border: 2px solid #16191F;
    border-radius: 35px;
    margin: 0 0 20px 0;
}

.containerSocioOnline span.title {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.containerStatus {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.containerStatus span {
    font-size: 13px;
    font-weight: 600;
}

.containerLuzes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.linhas1 {
    content: "";
    top: 0%;
    left: 50%;
    width: 150px;
    height: 800px;
    transform: translatex(-800px) translatey(-200px) rotate(-15deg);
    background: linear-gradient(to top, transparent 5%, #191a19 90%);
    pointer-events: none;
    border-radius: 100px;
    filter: blur(60px);
}

.linhas2 {
    content: "";
    top: 0%;
    left: 50%;
    position: absolute;
    width: 150px;
    height: 800px;
    transform: translatex(200px) translatey(-100px) rotate(-15deg);
    background: linear-gradient(to top, transparent 5%, #191a19 90%);
    pointer-events: none;
    border-radius: 100px;
    filter: blur(60px);
}

.linhas3 {
    content: "";
    top: 0%;
    left: 50%;
    position: absolute;
    width: 150px;
    height: 800px;
    transform: translatex(-400px) translatey(-100px) rotate(-15deg);
    background: linear-gradient(to top, transparent 5%, #191a19 90%);
    pointer-events: none;
    border-radius: 100px;
    filter: blur(60px);
}

.linhas4 {
    content: "";
    top: 0%;
    left: 50%;
    position: absolute;
    width: 160px;
    height: 800px;
    transform: translatex(700px) translatey(-200px) rotate(-15deg);
    background: linear-gradient(to top, transparent 5%, #191a19 90%);
    pointer-events: none;
    border-radius: 100px;
    filter: blur(60px);
}

@media(min-width: 1025px) and (max-width: 1550px) {
    .linhas1 {
        transform: translatex(-600px) translatey(-100px) rotate(25deg);
    }

    .linhas2 {
        transform: translatex(200px) translatey(-300px) rotate(25deg);
    }

    .linhas3 {
        transform: translatex(-250px) translatey(-300px) rotate(25deg);
    }

    .linhas4 {
        transform: translatex(500px) translatey(-100px) rotate(25deg);
    }

}

@media(min-width: 360px) and (max-width: 767px) {
    .linhas1 {
        transform: translatex(-300px) translatey(-200px) rotate(25deg);
        filter: blur(15px);
        width: 100px;
        height: 800px;
    }

    .linhas2 {
        transform: translatex(20px) translatey(-200px) rotate(25deg);
        filter: blur(15px);
        width: 100px;
        height: 800px;
    }

    .linhas3 {
        transform: translatex(-180px) translatey(-200px) rotate(25deg);
        filter: blur(15px);
        width: 100px;
        height: 800px;
    }

    .linhas4 {
        transform: translatex(170px) translatey(-200px) rotate(25deg);
        filter: blur(25px);
        width: 100px;
        height: 800px;
    }

}

input:-webkit-autofill {
    background-color: #151717 !important;
    color: #fff !important;
    box-shadow: 0 0 0px 1000px #151717 inset !important;
    -webkit-text-fill-color: #fff !important;
}

input:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px #151717 inset !important;
}

.reflexo{
    overflow: hidden;
}

.reflexo:before {
  content: "";
  position: absolute;
  left: 0%;
  width: 150px;
  height: 300%;
  top: -100%;
  filter:blur(20px);
  background: linear-gradient(to right, transparent 1%, var(--primary) 40%, var(--primary) 60% , transparent 100%);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: rotate(20deg);
  animation: reflexo 2s linear infinite;
}

@keyframes reflexo{
    from{
        transform: rotate(20deg) translatex(-300%);
    }
    to{
        transform:  rotate(20deg) translatex(300%);
    }
}

#aviso-suporte {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 10px 0 0 0;
}

span#aviso-suporte a {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}

.texto-reflexo {
    font-weight: 900;
    background: -webkit-linear-gradient(20deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 3s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite normal none running textodegradex;
    background-image: linear-gradient(45deg, var(--primary), var(--secondary), var(--tertiary), var(--primary));
    background-size: 400% 200%;
    transition: all .8s;
}

@keyframes textodegradex {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}


.notyf__toast--success .notyf__message {
    color: var(--btnColor);
}

.notyf__toast--success .notyf__icon i {
    color: var(--btnColor)!important;
}