* {
  scrollbar-width: thin;
  scrollbar-color: #000 #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}


*::-webkit-scrollbar {
  width: 13px
}

*::-webkit-scrollbar-track {
  background: #fff
}

*::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #fff
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: "avenir-lt-pro", sans-serif;
  background-color: #fff;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}


hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}


button,
input {
  overflow: visible;
}


button,
select {
  text-transform: none;
}


button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}


/* Form Styles */
.container__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 10px;
}

.wrapper__form {
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  margin-top: 0;
}

.contain__image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contain__image img {
  max-width: 100%;
  height: auto;

  display: block;
}

@media(max-width: 768px) {
  .container__form {
    padding: 0 16px 30px
  }

  .info__description br {
    display: none;
  }
}

.form__wrapper {
  width: 100%;
  margin: 0px auto 50px;
  border: 0;
  padding: 24px 0px 40px;
  position: relative;
}

.form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 6px;
  gap: 6px
}

@media(max-width: 768px) {
  .form {
    grid-template-columns: 1fr;
    gap: 3px
  }
}

.contain__answer {
  grid-column: 1 / 3;
  text-align: center;
  margin: 20px 0px;

}

@media(max-width: 768px) {
  .contain__answer {
    grid-column: 1
  }
}

.title__answer {
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1rem, 0.5455rem + 2.2727vw, 2.25rem);
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
}

.options__answers {
  font-weight: 300;
  font-size: clamp(1rem, 0.7955rem + 1.0227vw, 1.5625rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
  margin: 0 auto 20px;
}

@media(max-width: 768px) {
  .options__answers {
    grid-auto-flow: unset;
    grid-template-columns: 35% 35%;
    place-content: center;
  }
}

input[type="radio"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

label {
  display: flex;
  cursor: pointer;
  align-items: center;
  width: auto;
  white-space: nowrap;

}

label::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  border-radius: 3px;
  margin-right: 10px;
  background-color: #fff;
  flex-shrink: 0;
  transition: all 0.2s ease;
}


input[type="radio"]:checked+label::before {
  background-color: #000;
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px #fff;

}



@media(max-width: 768px) {
  .options__answers {
    grid-auto-flow: unset;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    justify-content: center;
  }

  label {
    white-space: normal;
  }
}

.divider {
  border: 1px solid #9a9a9a;
}

.field,
input {
  width: 100%;
  max-width: 291px;
}

.field input {
  height: 44px;
  background: #fff;
  border: none;
  border-bottom: 2px solid #000;
  padding: 0 10px;
  outline: none;
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  text-align: left;
}

.field input::-moz-placeholder {
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.field input::-webkit-input-placeholder {
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.field input:-ms-input-placeholder {
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.field input::-ms-input-placeholder {
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.field input::placeholder {
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

@media(max-width: 768px) {
  .field input::-moz-placeholder {
    font-size: 14px
  }

  .field input::-webkit-input-placeholder {
    font-size: 14px
  }

  .field input:-ms-input-placeholder {
    font-size: 14px
  }

  .field input::-ms-input-placeholder {
    font-size: 14px
  }

  .field input::placeholder {
    font-size: 14px
  }
}

@media(max-width: 768px) {
  .field input {
    font-size: 14px
  }
}

@media(min-width: 769px) {
  #codigo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px
  }
}

.field__full {
  grid-column: 1/3
}



.error {
  font-size: 12px;
  color: #e73040;
  min-height: 14px;
  display: block
}

.form__wrapper__checks {
  grid-column: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media(max-width: 768px) {
  .form__wrapper__checks {
    grid-column: 1
  }
}

.social-media-note {
  font-size: 11px;
  margin-top: -10px
}



.form__submit {
  width: 309px;
  height: 47px;
  background: linear-gradient(98.53deg, #B8B8B8 0.49%, rgba(127, 127, 127, 0.16) 52.08%, rgba(221, 221, 221, 0.25) 95.14%);
  color: #000;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 3px;
  font-weight: 700;
  text-align: center;
  border: 0;
  position: absolute;
  left: 50%;
  bottom: -23.5px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer
}


@media(max-width: 768px) {

  .form__submit {
    width: 265px;
    font-size: 18px
  }

}

.form__submit:hover {
  background: #000;
  color: #fff;
}