:root{
    --background-primary: #FBF4F4;
    --background-transparent-primary: rgb(0 0 0 / 39%);
    --background-transparent-secondary: rgb(128 0 255 / 16%);
    
    --color-secondary: #cccc;

    --text-color-primary: #000;
    --text-color-secondary: #505153;
    --text-color-terciary: #878384;

    --text-color-btn-primary: #fff;

    /* NOVOS PADROES DE ESTILOS */
    --color-primary: #8000ff;
    --color-hover: #7004db;
    --color-secondary: #ff7700;

    --color-err: #cf2f2f;
    --color-warning: #dd8500;
    --color-success: #027d02;

    --orange-base: #F24D0D;
    --orange-dark: #C43C08;

    --blue-light: #D7EFF9;
    --blue-base: #5EC5FD;
    --blue-dark: #009CF0;

    --white: #FFFFFF;
    --background: #FBF4F4;
    --shape: #F5EAEA;

    --black: #242527;
    --light-gray: #F8F8F8;

    --gray-100: #ADADAD;
    --gray-200: #949494;
    --gray-300: #666666;
    --gray-400: #3D3D3D;
    --gray-500: #1D1D1D;

    --danger: #DC3545;
    --success: #28A745;

    /* MODE DARK */ 

    --color-primary-dark: #bd7bff;
}

*{
    font-family: "Space Grotesk", serif;
    scroll-behavior: smooth;
    cursor: url(../img/cursor.png), auto; 
}

body {
    padding: 0;
    margin: 0;
    background: #f3f0e9;
}

button, a{
    cursor: url(../img/pointer.png), pointer;
}

button.loading{
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid #fff;
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1{
    0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
    12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
    25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
    50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
    100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}

@keyframes l20-2{ 
0%    {transform:scaleY(1)  rotate(0deg)}
49.99%{transform:scaleY(1)  rotate(135deg)}
50%   {transform:scaleY(-1) rotate(0deg)}
100%  {transform:scaleY(-1) rotate(-135deg)}
}

::selection {
    background-color: var(--color-primary);
    color: #d9d9d9;
}

::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    padding: 0 0.2rem;
  }
  
  ::-webkit-scrollbar-track{
    background-color: #000;
  }
  
  ::-webkit-scrollbar-thumb{
    background-color: var(--color-primary);
    border-radius: 0.3rem;
  }

#particles-js {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

.alert{
  display: none;
}

.alert.active {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-width: 15rem;
  max-width: 22rem;
  z-index: 6;
  padding: 0.6rem;
  background-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: var(--text-color-btn-primary);
  font-weight: bold;
  backdrop-filter: blur(10px);
  border-radius: 0.3rem;
  transition: 1s;
  display: flex;
  align-items: center;
}

.alert.err {
  /*background-color: rgb(255 0 0 / 50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-weight: bold;*/
}

.alert.success {
  /*background-color: rgb(27 255 0 / 58%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-weight: bold;*/
}

.alert .icon {
  font-size: 1.6rem;
}

.alert span {
  margin-left: 0.3rem;
  font-size: 1.4rem;
}

@keyframes alert-down{
  0% {
      top: -10rem;
  }

  100%{
      top: 1rem;
  }
}

@media only screen and (max-width: 400px){
  .alert.active {
      position: fixed;
      top: 1rem;
      right: 3%;
      width: 90%;
      animation-duration: 0.5s;
      animation-name: alert-down;
  }
}

.navHeader {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    transition: 1s;
    z-index: 4;
}

.navHeader.change {
    margin: 0.4rem 5%;
    width: 90%;
    height: 4rem;
    background-color: rgb(0 0 0 / 76%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 0.3rem;
    transition: 1s;
}

.navHeader img {
    width: 4rem;
}

.navHeader .boxActions button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--white);
}

.navHeader .boxActions button:hover {
    color: var(--color-hover);
}

.navHeader button.btnStart, .boxModelsWebSite button.btnStart {
    padding: 0.3rem;
    width: 8rem;
    height: 2.2rem;
    font-size: 1.2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0.3rem;
    border: none;
}

.navHeader button.btnStart:hover {
    background: var(--color-hover);
}

/*.navHeader button.btnLogin {
    padding: 0.3rem;
    width: 8rem;
    height: 2.2rem;
    font-size: 1.2rem;
    background: var(--color-terciary);
    color: #000;
    border-radius: 0.3rem;
    border: 1px solid var(--color-terciary);
}*/

.navHeader button.btnLogin {
    padding: 0.3rem;
    font-size: 2rem;
    background: transparent;
    color: var(--white);
    border: none;
    border-radius: 0.3rem;
}

.navHeader button.btnLogin:hover {
    color: var(--color-hover);
}

.screen {
    background: #f3f0e9;
    padding: 2rem 1%;
    display: flex;
    align-items: center;
}

div#screen1 {
    background: linear-gradient(0, #120c56f5, #000000);
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    justify-content: center;
}

#screen1 .box {
    /*background: linear-gradient(0, #120c5626, #000000c7);*/
    width: 90%;
    height: 88dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#screen1 .boxImage {
    border-bottom: 2px solid var(--color-primary);
    padding: 1rem 0;
    margin: 2rem 0;
}

#screen1 .boxImage img {
    width: 16rem;
}

#screen1 h1.title {
    text-align: center;
    font-family: "Orbitron", serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: -3px;
    color: var(--white);
    margin: 0;
}

#screen1 h1.title span {
    color: var(--color-primary);
    font-family: "Orbitron", serif;
}

#screen1 h2.subtitle {
    font-size: 1.4rem;
    line-height: 26px;
    margin-top: 22px;
    text-align: center;
    color: var(--white);
}

#screen1 h2.subtitle span {
    color: var(--color-primary);
}

#screen1 .boxHome {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#screen1 button.btnStart {
    padding: 0.3rem;
    width: 18rem;
    height: 2.8rem;
    font-size: 1.2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 1.2rem;
    border: none;
    transition: 1s;
}

#screen1 button.btnStarHub {
    animation: pulse 1s infinite alternate;
}

#screen1 button.btnStarHub > a {
    color: #fff;
    text-decoration: none;
}

#screen1 button.btnHowIt {
    padding: 0.3rem;
    width: 18rem;
    height: 2.8rem;
    font-size: 1.2rem;
    background: #fff;
    box-shadow: 0 1px 2px #2a3b511f;
    color: #344054;
    border-radius: 1.2rem;
    border: none;
    transition: 1s;
    /*animation: pulse 1s infinite alternate;*/
}

#screen1 button.btnStart:hover, .screen#screen2 button.btnStart {
    background: var(--color-hover);
}

#screen1 button.btnStart:hover, #screen1 button.btnHowIt:hover, .screen#screen2 button.btnStart {
    transform: scale(1.06);
    transition: 1s;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.screen img.ilustHome {
    position: absolute;
    width: 80dvw;
    bottom: -12rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px 1px #000;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.screen .boxModelsWebSite {
    max-width: 50rem;
    margin: 1rem 0;
    padding: 0.3rem 0;
}

.screen .boxModelsWebSite .boxModelsWebSite-header p.title {
    font-size: 1.2rem;
    font-weight: bold;
}

.screen .boxModelsWebSite .boxModelsWebSite-content button.btnSelectModels {
    background: transparent;
    border: 1px solid #cccc;
    padding: 0.6rem;
    border-radius: 0.3rem;
    font-size: 1.2rem;
}

.screen .boxModelsWebSite .boxModelsWebSite-bottom{
    margin: 1rem 0;
}

.screen .boxModelsWebSite .boxModelsWebSite-bottom button.btnStart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 9rem;
    height: 2.4rem;
}

.screen .boxModelsWebSite .boxModelsWebSite-bottom button.btnStart.disabled{
    background: #0066ff94;
    cursor: default;
    pointer-events: none;
}

.boxEmailLanding1 .boxEmail {
    display: none;
}

.boxEmailLanding1 button.btnClickEmailLanding1 {
    background: #fff;
    border: 1px solid #cccc;
    padding: 0.4rem;
    width: 18rem;
    height: 4rem;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 0.3rem;
    cursor: pointer;
}

.screen .screen-bottom {
    position: absolute;
    bottom: 0;
    width: 18rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.screen .screen-bottom button.btnNextScreen2 {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.boxEmailLanding1{
    position: relative;
}

.boxEmailLanding1 .boxEmail.active {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #cccc;
    border-radius: 0.3rem;
    padding: 0.4rem;
    width: 18rem;
    height: 3rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.boxEmailLanding1 .boxEmail input {
    width: 80%;
    height: 100%;
    border: none;
    margin-right: 0.3rem;
    font-size: 1.2rem;
}

.boxEmailLanding1 .boxEmail button.btnSendEmailLanding1 {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    border-radius: 50%;
    border: none;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
}

.screen#screen2 {
    background: linear-gradient(0, #3a4061, #120c56f5);
    flex-direction: column;
    height: auto;
    padding: 6rem 5.2% 4rem;
}

#screen2 .box {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#screen2 .subhead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.screen#screen2 h2.title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin: 0.3rem;
  color: #fff;
  line-height: 3.2rem;
  text-transform: uppercase;
}

.screen#screen2 span.info {
  font-size: 1.15rem;
  color: #fff;
  text-align: center;
  max-width: 600px;
  line-height: 1.7rem;
}

.screen#screen2 span.info a.highlight {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.screen#screen2 span.info a.highlight:hover {
  text-decoration: underline;
}

.screen#screen2 button.btnStart {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.3rem;
    width: 12rem;
    height: 2.5rem;
    font-size: 1.4rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0.3rem;
    border: none;
    cursor: pointer;
}

.screen#screen2 .mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen#screen2 .mockup img {
    width: 100%;
    max-height: 27rem;
}

.screen#screen2 .partners {
    text-align: center;
    width: 100%;
}

.screen#screen2 .partners .title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.boxListPartners {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.slider .boxListPartners img {
    width: 4rem;
    height: auto;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    margin: 0 20px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.33%);
    }
}

@media (min-width: 1024px) {
    .boxListPartners {
        animation: scroll 20s linear infinite;
    }
    .boxListPartners img {
        width: 180px;
        margin: 0 30px;
    }
}

.modalLogin, .modalCad, .modalResetPassword, .modal2fa {
    display: none;
}

.modalLogin.active, .modalCad.active, .modalResetPassword.active, .modal2fa.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    z-index: 4;
}

.modalLogin .modalLogin-content, .modalCad .modalCad-content, .modalResetPassword .modalResetPassword-content, .modal2fa .modal2fa-content {
    background: linear-gradient(0, #120c56, #000000);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    transition: 1s;
    width: 100dvw;
    height: 100dvh;
}

.modalLogin-content span.title, .modalCad-content span.title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
}

.modalLogin .modalLogin-content.desactive, .modalCad .modalCad-content.desactive, .modalResetPassword .modalResetPassword-content.desactive {
    width: 60%;
    height: 70dvh;
    transition: 1s;

    /*animation-duration: 2s;
    animation-name: close;*/
}

.modalLogin .modalLogin-content.active, .modalCad .modalCad-content.active, .modalResetPassword .modalResetPassword-content.active {
    width: 70%;
    height: 80dvh;
    transition: 1s;

    /*animation-duration: 2s;
    animation-name: open;*/
}

.modalLogin .modalLogin-content .boxImage img, .modalCad .modalCad-content .boxImage img, .modalResetPassword .modalResetPassword-content .boxImage img {
    width: 16rem;
    object-fit: cover;
    margin: 0.3rem 0;
}

@keyframes open {
    from {
      width: 60%;
      height: 70dvh;
    }
  
    to {
      width: 70%;
      height: 80dvh;
    }
  }

  @keyframes close {
    from {
      width: 70%;
      height: 80dvh;
    }
  
    to {
        width: 60%;
        height: 70dvh;
    }
  }

.modalLogin .modalLogin-content .modalLogin-left, .modalCad .modalCad-content .modalCad-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}

.modalLogin .modalLogin-content .modalLogin-left button.btnCloseModalLogin, .modalCad .modalCad-content .modalCad-left button.btnCloseModalCad {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 2rem;
}

.modalLogin .modalLogin-content .modalLogin-right, .modalCad .modalCad-content .modalCad-right {
    padding: 0 3rem;
    width: 35%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(255 255 255 / 22%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
}

.modalLogin .modalLogin-content .modalLogin-right .modalLogin-right-header, .modalCad .modalCad-content .modalCad-right .modalCad-right-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.modalLogin .modalLogin-content .modalLogin-right span.text-title, .modalCad .modalCad-content .modalCad-right span.text-title {
    text-align: left;
    font-size: 2rem;
    font-family: "Orbitron", serif;
    color: var(--color-primary);
    font-weight: bold;
}

.modalLogin .modalLogin-content .modalLogin-right span.text-subtitle, .modalCad .modalCad-content .modalCad-right span.text-subtitle {
    margin: 0.3rem 0;
    font-size: 1.4rem;
    color: var(--white);
}

.modalLogin .modalLogin-content .modalLogin-right a.btnChangeCad, .modalCad .modalCad-content .modalCad-right a.btnChangeCad {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

.modalLogin-content .box, .modalCad-content .box, .modalResetPassword-content .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.3rem 0;
}

.modalLogin-content .box.boxImage, .modalCad-content .box.boxImage {
    margin-bottom: 3rem;
}

.modalLogin-content .box.boxPass, .modalCad-content .box.boxPass, .modalResetPassword-content .box.boxPass {
    position: relative;
}

.modalLogin-content .boxPass button.btnShowPassword, .modalLogin-content .boxPass button.btnHidePassword, .modalCad-content .boxPass button.btnShowPassword, .modalCad-content .boxPass button.btnHidePassword {
    position: absolute;
    bottom: 0.6rem;
    right: 0.4rem;
    font-size: 1.2rem;
    background: transparent;
    border: none;
}

.modalLogin-content .box input, .modalCad-content .box input, .modalResetPassword-content .box input {
    width: 100%;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--color-primary);
    padding: 0.3rem;
    font-size: 1.1rem;
    padding-block: 0;
    padding-inline: 0;
}

.modalLogin-content .box label, .modalCad-content .box label, .modalResetPassword-content .box label {
    width: 100%;
    margin: 0.3rem 0;
    color: #fff;
}

.modalLogin .modalLogin-content .modalLogin-right .box.boxChangeResetPass {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0.6rem 0;
}

.modalLogin .modalLogin-content .modalLogin-right input#inputRemember {
    width: 1rem;
    height: 1rem;
}

.modalLogin .modalLogin-content .modalLogin-right label.labelForInputRemember {
    width: initial !important;
}

.modalLogin .modalLogin-content .modalLogin-right a.btnChangeResetPassword {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

.modalLogin-content .box button.btnLogar, .modalCad-content .box button.btnCad {
    width: 100%;
    height: 4rem;
    font-size: 1.8rem;
    padding: 0.3rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 1rem;
}

.modalLogin-content .box button.btnLogar:hover, .modalCad-content .box button.btnCad:hover{
    background: var(--color-hover);
}

.modalLogin-content .boxChangeResetPassword button.btnChangeResetPassword{
    margin: 0.3rem 0;
    background: transparent;
    border: 1px solid var(--color-primary);
    width: 16rem;
    height: 2.2rem;
    font-size: 1.2rem;
    border-radius: 0.3rem;
}

.modalLogin-content .boxChangeCad button.btnChangeCad, .modalCad-content .boxChangeCad button.btnChangeCad {
    margin: 0.6rem 0;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    width: 8rem;
    height: 2.2rem;
    font-size: 1.2rem;
    border-radius: 0.3rem;
}

.modalLogin-content .boxChangeCad button.btnChangeCad:hover, .modalCad-content .boxChangeCad button.btnChangeCad:hover{
    color: #fff;
}

.boxChangeCad span {
    color: #fff;
    font-weight: bold;
}

.screen#screen3 {
    background: linear-gradient(0, #161626, #3b4163);
    padding: 6rem 5.2% 4rem;
    height: auto;
    color: #f1f1f1;
    justify-content: center;
}

.screen#screen3 .appPreview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.screen#screen3 .appText {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.screen#screen3 h2.title,
.screen#screen3 .appText .title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.screen#screen3 .appText .rating {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 1.2rem;
}

.screen#screen3 .appText .info {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e2e2;
    margin-bottom: 1.5rem;
}

.screen#screen3 .comingSoonBox {
    background: #ffffff;
    color: #000;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    max-width: 400px;
}

.screen#screen3 .qrSimulado img {
    width: 60px;
    height: 60px;
}

.screen#screen3 .appImage {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    display: block;
}

.screen#screen3 .appImage.placeholder {
    visibility: visible;
    opacity: 0;
    pointer-events: none;
}

.screen#screen3 .appImage img {
    max-width: 100%;
    border-radius: 1rem;
}

/* Developer Section Styles */
#screen4 {
    background: linear-gradient(0, #26004d, #161626);
    color: #fff;
    padding: 6rem 5.2% 4rem;
}

#screen4 > .box {
    width: 100%;
}

#screen4 .boxHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#screen4 .boxHeader > .box {
    max-width: 40rem;
}

#screen4 .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

#screen4 .info {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #b4b4c7;
    line-height: 1.6;
}

.dev-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    color: #b4b4c7;
    line-height: 1.5;
}

.dev-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.dev-cta button {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dev-cta button:hover {
    background: #5a52d5;
}

.dev-cta button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #screen4 {
        padding: 3rem 1rem;
    }

    #screen4 .title {
        font-size: 2rem;
    }

    .dev-features {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

.footer {
    background: linear-gradient(0, #210241, #26004d);
    color: #fff;
    padding: 4rem 5.2% 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.newsletter p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #2a2a4a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--color-primary);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3sease;
}

.newsletter-form button:hover {
    background: #357abd;
}

.social-media {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-media a {
    color: #b8b8b8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #4a90e2;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff4d4d;
}

/* --- MODAL 2FA --- */

.modal2fa .box2fa {
  background: #1b1b2f;
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 12px #0006;
}

.modal2fa .code-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.modal2fa .code-input input {
  width: 40px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #7f3df0;
  background: #121212;
  color: #fff;
  border-radius: 8px;
}

.modal2fa .btnConfirmar {
    background: #7f3df0;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
    width: 10rem;
}

.modal2fa button.btnResendCode2fa {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media only screen and (max-width: 1300px){
    .screen#screen2 h2.title {
        font-size: 2.3rem;
    }

    .screen#screen2 span.info {
        text-align: center;
        font-size: 1.2rem;
    }

    .screen#screen3 .feature {
        width: 240px;
    }
}

@media only screen and (max-width: 1000px){
    #screen1 h1.title {
        font-size: 46px;
    }

    .screen img.ilustHome {
        width: 80%;
    }

    .screen#screen2 h2.title {
        font-size: 2rem;
    }

    .screen#screen2 .mockup img {
        width: 100%;
    }

    .screen#screen4 .dev-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }

    .screen#screen4 .feature-card {
        padding: 1rem;
    }

    .screen#screen4 .feature-card i {
        font-size: 2rem;
    }

    .screen#screen4 .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .screen#screen4 .feature-card p {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 900px){
    .screen#screen2 h2.title {
        font-size: 2rem;
        text-align: center;
    }

    .screen#screen2 span.info {
        font-size: 1.4rem;
    }

    .screen#screen3 h2.title {
        font-size: 2.6rem;
    }

    .screen#screen3 span.info {
        font-size: 1.4rem;
    }

    .modalLogin .modalLogin-content .modalLogin-left, .modalCad .modalCad-content .modalCad-left {
        display: none;
    }

    .modalLogin .modalLogin-content .modalLogin-right, .modalCad .modalCad-content .modalCad-right {
        width: 80%;
    }

    .screen#screen4 .dev-cta {
        gap: 0.5rem;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 800px){
    .navHeader .boxActions {
        display: none;
    }

    div#screen1 {
        justify-content: center;
    }

    .screen img.ilustHome {
        display: none;
    }

    #screen2 .box {
        width: 96%;
    }

    .screen#screen4 .dev-cta button {
        padding: 0.8rem 1rem;
    }
}

@media only screen and (max-width: 700px){
    .navHeader .boxActions button {
        font-size: 1rem;
    }

    .screen#screen4 .dev-features {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.6rem;
    }
}

@media only screen and (max-width: 600px){
    #screen1 h1.title {
        font-size: 32px;
    }

    #screen1 h1.title {
        font-size: 32px;
    }

    .boxEmailLanding1 button.btnClickEmailLanding1 {
        width: 16rem;
        height: 3rem;
        font-size: 1.1rem;
    }

    .boxEmailLanding1 .boxEmail.active {
        width: 16rem;
        height: 2rem;
        font-size: 1.1rem;
    }

    .boxEmailLanding1 .boxEmail input {
        font-size: 1rem;
    }

    .boxEmailLanding1 .boxEmail button.btnSendEmailLanding1 {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .navHeader.change {
        margin: 0;
        width: 100%;
        height: 4rem;
        box-shadow: none;
        border-radius: 0;
    }

    .modalLogin .modalLogin-content, .modalCad .modalCad-content, .modalResetPassword .modalResetPassword-content {
        width: 100%;
        height: 100dvh;
        margin-top: 0;
        border-radius: 0;
    }

    .modal2fa .box2fa {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100dvw;
        height: 100dvh;
        padding: 6px;
    }

    @keyframes open {
        from {
          width: 60%;
          height: 70dvh;
        }
      
        to {
          width: 100%;
          height: 100dvh;
        }
      }
    
      @keyframes close {
        from {
          width: 70%;
          height: 80dvh;
        }
      
        to {
            width: 100%;
            height: 100dvh;
        }
      }

      .screen#screen2 h2.title {
        font-size: 2rem;
        text-align: center;
    }

    .screen#screen2 span.info {
        text-align: center;
    }

    .modalLogin .modalLogin-content .modalLogin-right, .modalCad .modalCad-content .modalCad-right {
        width: 90dvw;
        height: 96dvh;
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0 5dvw;
    }

    .modalLogin-content .box, .modalCad-content .box, .modalResetPassword-content .box {
        width: 100%;
    }

    .modalLogin .modalLogin-content .modalLogin-right span.text-subtitle, .modalCad .modalCad-content .modalCad-right span.text-subtitle {
        font-size: 1.2rem;
    }

    .modalLogin .modalLogin-content .modalLogin-right a.btnChangeCad, .modalCad .modalCad-content .modalCad-right a.btnChangeCad {
        font-size: 1.2rem;
    }

    .modalLogin .modalLogin-content .modalLogin-right a.btnChangeResetPassword {
        font-size: 1.2rem;
    }

    .modalLogin-content .box button.btnLogar, .modalCad-content .box button.btnCad {
        height: 3rem;
        font-size: 1.6rem;
    }

    @media screen and (max-width: 600px) {
        .dev-features {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
            gap: 20px;
            padding: 20px 0;
        }

        .dev-features::-webkit-scrollbar {
            display: none;
        }

        .feature-card {
            flex: 0 0 auto;
            width: 280px;
            scroll-snap-align: start;
        }
    }
}

@media only screen and (max-width: 560px){
    .screen#screen3 {
        padding: 0rem 5.2%;
        justify-content: initial;
    }

    .screen#screen3 span.info span.info-part2 {
        display: none;
    }
}

@media only screen and (max-width: 500px){
    .navHeader img {
        width: 3rem;
    }

    .navHeader .boxActions button {
        font-size: 0.8rem;
    }

    div#screen1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        height: 100dvh;
    }

    .screen#screen3 h2.title {
        font-size: 1.8rem;
    }

    .screen#screen3 span.info {
        font-size: 1.2rem;
    }

    #screen1 .box {
        width: 90%;
        height: 28rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #screen1 h1.title {
        font-size: 26px;
        text-align: center;
        letter-spacing: 0px;
    }

    .screen .boxModelsWebSite .boxModelsWebSite-header p.title {
        text-align: center;
    }

    .screen#screen1 .boxModelsWebSite .boxModelsWebSite-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .screen#screen1 .boxModelsWebSite .boxModelsWebSite-content button.btnSelectModels {
        width: 80%;
        margin: 0.3rem 0;
    }

    .screen#screen1 .boxModelsWebSite .boxModelsWebSite-bottom {
        margin: 0.4rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .screen#screen1 .boxModelsWebSite .boxModelsWebSite-bottom button.btnStart {
        width: 80%;
        height: 2.4rem;
    }

    .boxEmailLanding1 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .boxEmailLanding1 .boxEmail.active {
        width: 16rem;
        height: 2rem;
        font-size: 1.1rem;
        top: initial;
        left: initial;
    }

    .alert.active {
        top: initial;
        left: initial;
        right: initial;
        bottom: 0.6rem;
        width: 90%;
        margin: 0 2.5%;
    }

    .screen#screen2 h2.title {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 430px){
    .modalLogin-content .box, .modalCad-content .box, .modalResetPassword-content .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0.3rem 0;
        width: 90dvw;
    }

    .modalLogin .modalLogin-content .boxImage img, .modalCad .modalCad-content .boxImage img, .modalResetPassword .modalResetPassword-content .boxImage img {
        width: 7rem;
    }

    .modalLogin-content .box input, .modalCad-content .box input, .modalResetPassword-content .box input, .modalLogin-content .boxChangeResetPassword button.btnChangeResetPassword {
        width: 100%;
    }

    .modalLogin-content .box label, .modalCad-content .box label, .modalResetPassword-content .box label {
        width: 102%;
    }

    .modalLogin-content .boxPass button.btnShowPassword, .modalLogin-content .boxPass button.btnHidePassword, .modalCad-content .boxPass button.btnShowPassword, .modalCad-content .boxPass button.btnHidePassword {
        right: 0.5rem;
    }

    .modalLogin-content .box button.btnLogar, .modalCad-content .box button.btnCad {
        width: 100%;
    }
}

@media only screen and (max-width: 400px){
    .screen#screen4 .dev-cta button {
        padding: 0.6rem 0.6rem;
    }

    .screen#screen4 .dev-cta button i {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 340px){
    .navHeader .boxActions {
        display: none;
    }

    .modalLogin-content .box, .modalCad-content .box, .modalResetPassword-content .box {
        width: 90%;
    }

    .modalLogin-content .box label, .modalCad-content .box label, .modalResetPassword-content .box label {
        width: 82%;
    }

    .modalLogin-content .box input, .modalCad-content .box input, .modalResetPassword-content .box input {
        width: 80%;
    }

    .modalLogin-content .boxPass button.btnShowPassword, .modalLogin-content .boxPass button.btnHidePassword, .modalCad-content .boxPass button.btnShowPassword, .modalCad-content .boxPass button.btnHidePassword {
        right: 2.5rem;
    }

    .modalLogin-content .box button.btnLogar, .modalCad-content .box button.btnCad {
        width: 84%;
    }
}

@media only screen and (max-height: 680px){
    #screen4 .info {
        display: none;
    }
}

@media only screen and (max-height: 640px){
    .screen#screen2 .mockup {
        display: none;
    }

    .screen#screen2 .partners {
        margin-top: 4rem;
    }
}

@media only screen and (max-height: 600px){
   
}

@media only screen and (max-height: 540px){
    .screen#screen4 .feature-card p {
        display: none;
    }
}

@media only screen and (max-height: 740px) and (max-width: 380px){
    #screen4 .info {
        display: none;
    }
}


@media only screen and (max-height: 740px) and (max-width: 400px){
    .screen#screen2 .mockup {
        display: none;
    }

    .screen#screen2 .partners {
        margin-top: 4rem;
    }
}