/* FONTS */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ROOT VARIABLES */
:root {
  --color-primary:#FD267A;
  --bg-primary:linear-gradient(45deg, #FD267A, #FF5B3D);
  --color-primary-hover:#FF5B3D;
  --block-background: #1a1818;
  --block-background-light:#f3f3f3;
  --color-text-light:#555;
  --font: "Nunito", serif;
}
/* GLOBAL CSS */
html, body {
  touch-action: manipulation;
  overflow-x: hidden;
  margin: 0;
}
section {
    padding-top: 130px;
    padding-bottom: 130px;
}
.section-mid {
    padding-top: 80px;
    padding-bottom: 80px;
}
p {
    font-weight: 100;
}
section h3 {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 45px;
}
p {
    font-size: 20px;
}
/* GLOBALS */
body {
  font-family: var(--font) !important;
  background: #191919 !important;
  color: #fff !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}
img {
  pointer-events: none;
}
input {
  outline: none;
}
input, button, a, textarea {
  transition: all ease .5s;
  -webkit-transition: all ease .5s;
  -moz-transition: all ease .5s;
  -ms-transition: all ease .5s;
  -o-transition: all ease .5s;
}
a, button {
  text-decoration: none !important;
  outline: none;
}
a:hover, button:hover {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
button {
  cursor: pointer;
  font-family: var(--font) !important;
}

/* HEADER */
#header {
    padding-top: 100px;
    padding-bottom: 260px;
    background: var(--bg-primary);
}
nav {
    margin-top: 50px;
    margin-bottom: 50px;
}
.input {
  background: transparent;
  height: 45px;
  width: 100%;
  border-radius: 7px;
  color: #ccc;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  font-family: var(--font);
  margin-bottom: 50px !important;
  position: relative;
}
.input label {
    display: block;
    color: #ADADAD;
    margin-bottom: 8px;
    font-size:10px;
}
.input input, .input select {
    background: #333333;
    border:solid 2px #3A3A3A;
    height: 46px;
    border-radius: 10px;
    width: 100%;
    display: block;
    font-size:10px;
    padding-left: 50px;
    box-sizing: border-box;
    color: #fff;
}
.input input:focus {
    border-color: var(--color-primary);
}
.input, .button {
    display: block;
    margin-bottom:10px;
    position: relative;
}
.pre-loader {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  background: #000;
  display: inline-grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%;
  width: 100%;
  text-align: -webkit-center;
}

.pre-loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}
.pre-loader i {
  color: #aaaaaa;
  display: block;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  font-size: 30px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fadeOut {
  100% {
      opacity: 0;
      visibility: hidden;
  }
}
.boxLogin {
    background: #323232;
    width: 78%;
    padding: 30px;
    margin: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
}
.boxLogin .or {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}
.boxLogin h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}
.boxLogin form {
    width: 86%;
    margin: auto;
}
.boxLogin .button button {
    background: var(--bg-primary);
    width: 100%;
    height: 46px;
    border-radius: 10px;
    margin-top:15px;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
.botao {
    background: var(--bg-primary);
    padding: 20px 50px;
    border-radius: 100px;
    margin-top:15px;
    border: 0;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}
.botao:hover {
    transform: scale(1.1);
}
.boxLogin button:hover {
    transform: scale(1.1);
}
.boxLogin i {
    position: absolute;
    top: 38px;
    font-size: 16px;
    left: 30px;
    color: var(--color-primary);
}
.button i {
    color: #fff;
    top: 30px;
}
#togglePassword {
  cursor: pointer;
  position: absolute;
  z-index: 999;
  background: transparent;
  border: 0;
}
#togglePassword {
    top: 0px;
    right: 70px;
    left: initial;
}
#togglePassword i {
  color: var(--color-primary);
}
.passwordRecovery {
    color: var(--color-primary);
    text-align: right;
    width: 100%;
    display: inline-block;
    font-size: 10px;
    right: 10px;
    top: 5px;
    position: relative;
}
.signin {
    width: 78%;
    margin: auto;
    color: #000;
    background-color: #fff;
    text-align: center;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    line-height: 60px;
    font-weight: bold;
    box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
}
.signin:hover {
    transform: scale(1.1);
}
#header h2 {
    font-weight: 100;
}
#languages {
    text-align: center;
    width: 100%;
    padding: 15px;
    display: block;
    border-radius: 10px;
    margin-top: 145px;
}
#languages img {
    width: 30px;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 5px;
    border:solid 1px #fff;
}
#languages span {
    color: #fff;
    font-size: 10px;
    display: block;
    margin-bottom: 6px;
    margin-top: 0;
}
.beneficits .item {
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: -10px;
    display: ruby-text;
}
.beneficits {
    margin-top: 50px;
    font-weight: 100;
}
.beneficits .item {
    background: var(--bg-primary);
    font-size: 16px;
}
.beneficits .item i {
    margin-right: 6px;
}
/* FOOTER */
footer {
    padding-top: 20px;
    text-align: center;
    border-top: solid 1px #3A3A3A;
}
footer p {
    font-size: 14px;
}
.boxInfo {
    width: 100%;
    height: 320px;
    padding: 50px;
    border-radius: 10px;
    background: #333;
    text-align: center;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -mos-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 67px -19px rgba(0,0,0,0.75);
position: relative;
}
.boxInfo span {
    font-weight: bold;
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}
.boxInfo p {
    font-size: 15px;
}
.boxInfo i {
    background-color: #444;
    font-size: 40px;
    margin-bottom: 20px;
    width: 100px;
    line-height: 100px;
    height: 100px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -mos-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
}
.boxInfo:hover {
    margin-top: -20px;
}
.boxInfo:hover i {
    background-color: var(--color-primary);
    color: #fff;
}
.box-sup {
    margin-top: -210px !important;
}
.share {
    text-align: center;
}
.share a {
    background-color: var(--color-primary);
    width: 40px;
    line-height: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    margin: 0 5px;
}
.share a:hover {
    background-color: #fff;
    color: var(--color-primary);
}

#footer {
    padding-top: 50px;
    padding-bottom: 50px;
}
#footer ul {
    list-style: none;
}
#footer ul li a {
    font-size: 13px;
    color: #fff;
    line-height: 30px;
}
#footer ul li a:hover {
    color: var(--color-primary);
}
