* {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
  font-size: 1em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

body {
  background: rgb(255, 255, 255);
}
body section {
  width: 100vw;
  height: 100vh;
}
body section.intro {
  background: rgb(255, 255, 255);
}
body section.intro header .bgAplicada._top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: url("../img/svg/bgs/bg_s24.svg") center no-repeat;
  background-size: cover;
  background-position-y: -35vw;
  z-index: 0;
}
body section.intro header nav {
  display: flex;
  justify-content: flex-start;
  justify-items: center;
  top: 0;
  width: 100%;
  height: 50px;
  padding: 0 25px;
}
body section.intro header nav ul {
  list-style: none;
}
body section.intro header nav ul li {
  height: 50px;
  line-height: 50px;
  color: white;
  font-weight: 550;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}
body section.intro main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
body section.intro main .env._topContent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  padding: 0 10vh;
}
body section.intro main .env._topContent img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body section.intro main .env._botContent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 10vw;
  width: 100%;
  height: calc(50vh - 50px);
  padding-top: 25vh;
}
body section.intro main .env._botContent button {
  width: 160px;
  height: 50px;
  line-height: 50px;
  font-size: 1.2em;
  border: none;
  border-radius: 25px;
  outline: 3px solid rgba(0, 0, 0, 0.05);
}
body section.intro main .env._botContent button.login {
  color: white;
  background: rgb(123, 85, 223);
}
body section.intro main .env._botContent button.register {
  color: white;
  background: rgb(123, 85, 223);
}
body section.intro main .env._botContent button:hover {
  cursor: pointer;
  background: linear-gradient(0deg, rgb(173, 51, 210) 0%, rgb(123, 85, 223) 100%);
}/*# sourceMappingURL=intro.css.map */