:root {
  --background: #fff;
  --primary-color: #000;
  --secondary-color: #A8A8A8;
  --tertiary-color: #fff;
  --red: #ee3322;
  --yellow: #ffee38;
  --light-yellow: #FFEE3850;
  --blue: #0f65ef;
  --light-gray: #F4F4F4;
  --green: #39B26B;
}

@font-face {
  font-family: SF-Pro;
  src: url("/fonts/SF-Pro-Display-Regular.otf") format("opentype");
}
@font-face {
  font-family: SF-Pro;
  font-weight: 400;
  src: url("/fonts/SF-Pro-Display-Regular.otf") format("opentype");
}
@font-face {
  font-family: SF-Pro;
  font-weight: 500;
  src: url("/fonts/SF-Pro-Display-Semibold.otf") format("opentype");
}
@font-face {
  font-family: SF-Pro;
  font-weight: 700;
  src: url("/fonts/SF-Pro-Display-Bold.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--primary-color);
}

body *,
body *:after,
body *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-top: 0px;
  /*user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; */
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
}

button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  color: var(--primary-color);
  font-family: SF-Pro, Helvetica, Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, p, a, li, p, span, label {
  font-family: SF-Pro, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--primary-color);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button.button, a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 30px;
  background: var(--primary-color);
  border-radius: 8px;
  text-transform: uppercase;
  border: 1px solid var(--tertiary-color);
  cursor: pointer;
  margin-top: 30px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: var(--tertiary-color);
}
.mobile button.button, .mobile a.button {
  margin-top: 16px;
  padding: 10px 16px;
}
button.button.backbutton, a.button.backbutton {
  color: var(--primary-color);
  background: var(--tertiary-color);
  background-image: url("/images/p-left.svg");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: 0px 14px;
  text-decoration: none;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  border: 0px;
  width: auto !important;
  margin-top: 0px;
}

.back-sticky-header {
  border-bottom: 1px solid #eee;
  box-shadow: 0px 5px 8px -9px #000;
  padding-top: 16px;
  margin-bottom: 16px;
  padding-bottom: 11px;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--tertiary-color);
}

header {
  background: var(--background);
  padding: 37px 36px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
header #sns-logo svg {
  width: 299px;
  height: 39px;
}
@media (max-width: 700px) {
  header #sns-logo svg {
    width: 196px;
    height: 25px;
  }
}

.fullheight-outer {
  position: relative;
  padding: 0;
  margin: 0;
  height: calc(100dvh - 117px);
}
@media (max-width: 700px) {
  .fullheight-outer {
    height: calc(100dvh - 103px);
  }
}

.fullheight-rows-with-space-between {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  max-width: 445px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 612px;
  top: 50%;
}
@media (max-width: 500px) {
  .fullheight-rows-with-space-between {
    padding: 36px 36px;
    max-width: 100%;
    max-height: 100%;
  }
}
@media (max-height: 780px) {
  .fullheight-rows-with-space-between {
    padding-top: 36px;
    padding-bottom: 36px;
    max-height: 100%;
  }
}

article {
  width: 100%;
}

form label {
  display: block;
  width: 100%;
  color: #8A8A8E;
  font-size: 15px;
  line-height: 21px;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

section .headings h2 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
  color: var(--primary-color);
}
section .headings p {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  text-align: center;
  color: #B2B2B2;
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=password] {
  display: block;
  font-family: SF-Pro, Helvetica, Arial, sans-serif;
  font-size: 17px;
  border: 0;
  border-bottom: 1px solid #d6d6d6;
  color: #000;
  padding: 8px 0;
  outline: 0px;
  width: 100%;
  background-color: transparent;
  text-align: left;
  background-color: #ffffff;
}

input[disabled=disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

form .button {
  margin: 0 auto;
  min-width: 248px;
}

form .errors {
  color: red;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8em;
}

.invisible {
  display: none !important;
}

.privacity {
  padding: 0 30px 30px;
  text-align: left;
}

.privacity h3 {
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  max-width: 1173px;
  margin: 0 auto;
}

.privacity a {
  word-break: break-all;
}

#termos_de_uso_modal,
#politica_privacidade_modal {
  top: 0;
  position: absolute;
  background: white;
  z-index: 9;
  width: 100%;
}

.warning.rh-radius {
  transition: all 0.5s ease;
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.warning.rh-radius label {
  text-transform: none;
  line-height: 15px;
}
.warning.rh-radius label .show-modal {
  text-decoration: underline;
  cursor: pointer;
}

.checkbox {
  position: relative;
  width: 50px;
  height: 30px;
  background-color: #d6d6d6;
  display: block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transition: all 0.5s ease;
  left: 20px;
  margin-left: -20px;
  margin-right: 20px;
}

.checkbox input {
  opacity: 0;
  height: 30px;
  width: 50px;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.checkbox:after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transition: all 0.5s ease;
}

.checkbox.selected:after {
  left: inherit;
  right: 0px;
  background-color: var(--primary-color);
}

#verifica-codigo .resend {
  margin-top: 30px;
}
#verifica-codigo .resend button {
  padding: 12px 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: #B2B2B2;
}

.legal-heading {
  padding-bottom: 30px;
}
.legal-heading h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 24px;
}

.legal-text {
  max-width: 1173px;
  margin: 0 auto;
}
.legal-text p, .legal-text li {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
.legal-text p.heading, .legal-text li.heading {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 30px;
}
.legal-text p.heading {
  margin-top: 60px;
}
.legal-text p + p, .legal-text li {
  margin-top: 20px;
}
.legal-text ul + p {
  margin-top: 20px;
}
.legal-text a {
  text-decoration: underline;
  color: var(--blue);
}

.login-success-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 16px;
  max-width: 430px;
}

.return-success {
  color: green;
  text-align: center;
  position: absolute;
  top: -54px;
  text-align: center;
  width: 100%;
}

.return-error {
  color: red;
  text-align: center;
  position: absolute;
  top: -73px;
  text-align: center;
  width: 100%;
}

.opacity-hidden {
  opacity: 0 !important;
}

.error-overlay {
  background-color: var(--primary-color);
  position: fixed;
  top: 117px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 700px) {
  .error-overlay {
    top: 103px;
  }
}
.error-overlay .headings h2 {
  color: var(--tertiary-color);
}
.error-overlay section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-height: 300px;
  height: 100%;
}
@media (max-width: 700px) {
  .error-overlay section {
    max-height: 100%;
  }
}

.error-overlay div {
  width: 70%;
  top: 50%;
  left: 50%;
  color: var(--tertiary-color);
  position: absolute;
  text-align: center;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  max-width: 340px;
}

.error-overlay h1 {
  text-align: center;
  font-size: 32px;
  line-height: 34px;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.error-overlay p {
  color: var(--tertiary-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.error-overlay a.button:focus,
#error-overlay-link:focus {
  background-color: var(--primary-color);
  color: var(--tertiary-color) !important;
  outline: 1px solid var(--tertiary-color);
}