* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  -webkit-transition: .5s;
  transition: .5s;
}

span {
  -webkit-transition: .5s;
  transition: .5s;
}

a {
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

button {
  border: none;
  outline: none;
  -webkit-transition: .5s;
  transition: .5s;
}

input {
  outline: none;
  border: none;
  -webkit-transition: .5s;
  transition: .5s;
}
.right-panel {
    position: relative;   /* MUITO IMPORTANTE */
    height: 100vh;        /* ocupa a altura da tela */
}
/* container do rodapé */
.social-footer{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* título */
.social-title{
    color: #c9b38a;
    letter-spacing: 4px;
    font-size: 18px;
    margin-bottom: 18px;
}

/* linha dos ícones */
.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

/* ícones */
.social-icons img{
    height: 28px;     /* controla tamanho mantendo proporção */
    width: auto;
    opacity: 0.85;
    transition: 0.3s;
    cursor: pointer;
}

.social-icons img:hover{
    opacity: 1;
    transform: scale(1.1);
}

/* divisores verticais */
.divider{
    width: 1px;
    height: 22px;
    background: rgba(201,179,138,0.35);
}
/* seletor de idioma */
.language-switcher{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

/* texto dos idiomas */
.lang{
    color: rgba(201,179,138,0.55);
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

/* hover */
.lang:hover{
    color: #c9b38a;
}

/* idioma ativo */
.lang.active{
    color: #c9b38a;
    font-weight: 600;
}
:root {
  --start: rgba(0, 0, 0, 0.8);
  --body: black;
  --white: white;
  --white-3: rgba(255, 255, 255, 0.3);
  --white-05: rgba(255, 255, 255, 0.05);
  --button: rgb(121, 103, 69);
  --button-hover: rgb(243, 228, 200);
  --item: rgba(68, 59, 46, 0.8);
}

body {
  background-color: var(--body);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.tabs {
  text-align: center;
}

.tabs .tab-nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs .tab-nav li span {
  cursor: pointer;
}

.tabs .tab {
  display: none;
  -webkit-animation: opacity 1s;
          animation: opacity 1s;
}

.tabs .tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100vh;
  color: white;
}

.video {
  position: fixed;
  top: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.5;
  width: 100%;
}

.video video {
  width: 100%;
}

.welcome {
  width: 65%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.welcome .copyright {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 12px;
  color: var(--white-3);
}

.welcome .continue {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.5;
  -webkit-transition: .5s;
  transition: .5s;
}

.welcome .continue:hover {
  opacity: 1;
}

.welcome .continue a {
  color: white;
  padding: 8px 20px 8px 20px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid var(--white-3);
}

.welcome .continue a i {
  margin-right: 10px;
}

/* ----- */
.welcome .continue1{
  margin-top: 60px;
  text-align: center;
}

.welcome .continue1 a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 6px;

  background: rgba(20, 35, 70, 0);
  border: 1px solid #c9b38a;
  text-decoration: none;
  transition: 0.25s ease;
  z-index: 1;
}

/* camada do PULSE (fica atrás do botão) */
.welcome .continue1 a::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  z-index: -1;

  box-shadow: 0 0 0 rgba(201,179,138,0);
  animation: pulseGold 2.5s infinite;
}

/* animação respirando */
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 rgba(201,179,138,0); }
  50%  { box-shadow: 0 0 40px rgba(201,179,138,1); }
  100% { box-shadow: 0 0 0 rgba(201,179,138,0); }
}

/* HOVER AZUL */
.welcome .continue1 a:hover{
  border-color: #50A0FF;
  box-shadow:
    0 0 12px rgba(80,160,255,0.45),
    0 0 22px rgba(80,160,255,0.25),
    inset 0 0 8px rgba(80,160,255,0.25);
  transform: translateY(-1px);
}
/* ----- */

.welcome .welcome-logo {
  margin-bottom: 50px;
}

.welcome .welcome-logo img {
  width: 280px;
}

.welcome .welcome-text {
  display: block;
  text-align: center;
}

.welcome .welcome-text h1 {
  margin-bottom: 20px;
  font-size: 35px;
}

.welcome .welcome-text p {
  color: rgba(255, 255, 255, 0.4);
}

.welcome .welcome-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  margin-top: 50px;
}

.welcome .welcome-items div {
  width: 25%;
  margin: 0 auto;
}

.welcome .welcome-items div .item-name {
  font-size: 13px;
  width: 60%;
  text-align: center;
}

.welcome .welcome-items div .item {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  background-color: var(--item);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.521);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.521);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  border-radius: 100%;
}

.welcome .welcome-items div .item .item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.welcome .welcome-items div .item .item-img img {
  width: 50px;
}

.start {
  width: 35%;
  height: 100%;
  background-color: var(--start);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.507);
          box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.507);
}

.start .content {
  width: 70%;
  margin: 0 auto;
  position: relative;
}

.start .content .tab-nav {
  border-bottom: 1px solid var(--white-05);
}

.start .content .tab-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.start .content .tab-nav li {
  padding: 25px 30px 25px 30px;
  font-weight: bold;
  color: var(--white-3);
  position: relative;
  width: 50%;
}

.start .content .tab-nav li:hover {
  color: var(--white);
}

.start .content .tab-nav li::before {
  content: '';
  -webkit-transition: .5s;
  transition: .5s;
  width: 0%;
  height: 2px;
  background-color: var(--white);
  bottom: 0;
  left: 0;
  position: absolute;
}

.start .content .tab-nav li.active {
  color: var(--white);
}

.start .content .tab-nav li.active::before {
  width: 100%;
}

.start .content .register {
  padding: 40px 0px 0px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.start .content .register input:not(:last-child) {
  margin-bottom: 15px;
}

.start .content .register div {
  position: relative;
}

.start .content .register div label {
  position: absolute;
  left: 0;
}

.start .content .register button {
  background-color: var(--button);
  color: var(--white);
  border-radius: 4px;
  height: 45px;
  -webkit-box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.start .content .register button:hover {
  color: black;
  background-color: var(--button-hover);
}

.start .content .register .terms {
  font-size: 13px;
  color: var(--white-3);
  margin-bottom: 30px;
}

.start .content .register .terms a {
  color: #7e633a;
}

.start .content .register .terms a:hover {
  color: var(--white);
}



.start .content .download {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0px 0px 0px;
}

.start .content .download h1 {
  font-size: 18px;
  margin-bottom: 15px;
}

.start .content .download p {
  color: #836d44;
}

.start .content .download .link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

.start .content .download .link-group a:not(:last-child) {
  margin-bottom: 15px;
}

.start .content .download .link-group a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--button);
  color: var(--white);
  border-radius: 4px;
  height: 45px;
  -webkit-box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.start .content .download .link-group a:hover {
  color: black;
  background-color: var(--button-hover);
}

.input-group {
  position: relative;
}

.label {
  color: #a09783;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  top: 15px;
  padding: 0 20px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.input {
  font-size: 12px;
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 20px 0px 20px;
  color: white;
  border-radius: 4px;
  border: 1px solid rgba(172, 142, 86, 0.315);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.678);
  -webkit-transition: .5s;
  transition: .5s;
}

.input:focus {
  outline: none;
  border: 1px solid var(--white-3);
  -webkit-box-shadow: 0px 0px 10px var(--white-05);
          box-shadow: 0px 0px 10px var(--white-05);
}

.input:focus ~ .label {
  top: 6px;
  font-size: 10px;
}

.input:not(:placeholder-shown) ~ .label {
  top: 6px;
  font-size: 10px;
}

@media (max-width: 768px) {
  section {
    height: auto;
  }
  .start {
    width: 100%;
    height: 100%;
    padding: 50px 0px 50px 0px;
  }
  .welcome {
    width: 100%;
    padding: 120px 50px 80px 50px;
  }
  .welcome .welcome-logo img {
    width: 200px;
  }
  .welcome .welcome-text h1 {
    font-size: 25px;
  }
  .welcome .welcome-items {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .welcome .welcome-items div {
    width: 50%;
  }
  .welcome .welcome-items div .item-name {
    margin-bottom: 15px;
  }
  .video video {
    width: auto;
  }
}

@media (min-width: 1620px) {
  .start {
    width: 30%;
  }
  .welcome {
    width: 70%;
  }
  .welcome .welcome-items {
    width: 50%;
  }
}

@media (min-width: 1920px) {
  .start {
    width: 25%;
  }
  .welcome {
    width: 75%;
  }
  .welcome .welcome-items {
    width: 45%;
  }
}
.login-banner{
    width: 100%;
    padding: 40px 40px 10px 40px; /* mesma margem interna do painel */
    box-sizing: border-box;
}

.login-banner{
    width: 100%;
    padding: 5px 40px 0px 40px;   /* ↓ diminui o espaço de cima */
    margin-top: -255px;            /* ↑ sobe a logo */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.login-banner img{
    width: 260px;       /* tamanho da logo */
    height: auto;       /* mantém proporção */
    display: block;

    /* glow mágico azul */
    filter: drop-shadow(0 0 18px rgba(80,160,255,0.45));
}
/*# sourceMappingURL=main.css.map */