@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;1,400&display=swap");
body, html {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: white;
  background: #ffb500;
  background: -webkit-gradient(linear, left top, right top, from(#ffb500), to(#fc7a00));
  background: linear-gradient(90deg, #ffb500 0%, #fc7a00 100%);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  letter-spacing: .5px;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

h1, h2, h3, p {
  line-height: 1.1;
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.check {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.5em 0;
}

.check p {
  color: black;
  font-size: calc( ( 12 / 12 ) * 1rem);
  letter-spacing: 0;
  line-height: 1.2em;
  margin: 0 0 0 .5rem;
}

.check label {
  position: absolute;
  top: 0em;
  left: 0;
  border: 2px solid #000;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  background: white;
}

.check label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-49%, -49%);
          transform: translate(-49%, -49%);
  width: 70%;
  height: 70%;
  background-color: #000;
  opacity: 0;
}

.check input {
  display: inline !important;
  height: 1px;
  width: 1px !important;
}

.check input[type="checkbox"], .check input[type="radio"] {
  visibility: hidden;
}

.check input[type="checkbox"]:checked + label:after,
.check input[type="radio"]:checked + label:after {
  opacity: 1;
}

main {
  min-height: calc( 100vh - calc( ( 140 / 12 ) * 1rem));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 8rem;
  overflow: hidden;
}

@media (max-width: 992px) {
  main {
    padding-top: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main div.ruleta {
  position: relative;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 42%;
  /* spin */
}

@media (max-width: 992px) {
  main div.ruleta {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 90%;
    margin: 5rem 0 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: calc( ( 450 / 12 ) * 1rem);
  }
}

main div.ruleta img.flecha {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15%;
  -webkit-transform: translate(-50%, -33%);
          transform: translate(-50%, -33%);
  z-index: 10;
}

main div.ruleta img.ruleta {
  width: 100%;
  margin-bottom: 3rem;
}

main div.ruleta img.sombra {
  width: 100%;
  opacity: .33;
}

main div.ruleta.spin img.flecha {
  -webkit-animation: spin-arrow var(--time) ease infinite;
          animation: spin-arrow var(--time) ease infinite;
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

@-webkit-keyframes spin-arrow {
  0%, 100% {
    -webkit-transform: translate(-50%, -33%) rotate(0deg);
            transform: translate(-50%, -33%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-50%, -33%) rotate(var(--degArrow));
            transform: translate(-50%, -33%) rotate(var(--degArrow));
  }
  66% {
    -webkit-transform: translate(-50%, -33%) rotate(calc( var(--degArrow) * -1));
            transform: translate(-50%, -33%) rotate(calc( var(--degArrow) * -1));
  }
}

@keyframes spin-arrow {
  0%, 100% {
    -webkit-transform: translate(-50%, -33%) rotate(0deg);
            transform: translate(-50%, -33%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-50%, -33%) rotate(var(--degArrow));
            transform: translate(-50%, -33%) rotate(var(--degArrow));
  }
  66% {
    -webkit-transform: translate(-50%, -33%) rotate(calc( var(--degArrow) * -1));
            transform: translate(-50%, -33%) rotate(calc( var(--degArrow) * -1));
  }
}

main div.ruleta.spin img.ruleta {
  -webkit-animation: spin 5s forwards;
          animation: spin 5s forwards;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-animation-timing-function: cubic-bezier(0.68, 0.16, 1, 0.83);
            animation-timing-function: cubic-bezier(0.68, 0.16, 1, 0.83);
  }
  20% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: rotate(calc( 360 * 4deg));
            transform: rotate(calc( 360 * 4deg));
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  55% {
    -webkit-transform: rotate(calc( 360 * 5deg));
            transform: rotate(calc( 360 * 5deg));
    -webkit-animation-timing-function: cubic-bezier(0, 1, 0.8, 1.04);
            animation-timing-function: cubic-bezier(0, 1, 0.8, 1.04);
  }
  100% {
    -webkit-transform: rotate(calc( ( 360 * 7deg ) + var(--deg)));
            transform: rotate(calc( ( 360 * 7deg ) + var(--deg)));
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-animation-timing-function: cubic-bezier(0.68, 0.16, 1, 0.83);
            animation-timing-function: cubic-bezier(0.68, 0.16, 1, 0.83);
  }
  20% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: rotate(calc( 360 * 4deg));
            transform: rotate(calc( 360 * 4deg));
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  55% {
    -webkit-transform: rotate(calc( 360 * 5deg));
            transform: rotate(calc( 360 * 5deg));
    -webkit-animation-timing-function: cubic-bezier(0, 1, 0.8, 1.04);
            animation-timing-function: cubic-bezier(0, 1, 0.8, 1.04);
  }
  100% {
    -webkit-transform: rotate(calc( ( 360 * 7deg ) + var(--deg)));
            transform: rotate(calc( ( 360 * 7deg ) + var(--deg)));
  }
}

main div.formulario,
main div.anim_on {
  width: 58%;
  text-align: center;
}

@media (max-width: 992px) {
  main div.formulario,
  main div.anim_on {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

main div.formulario h1,
main div.anim_on h1 {
  font-size: calc( ( 40 / 12 ) * 1rem);
}

@media (max-width: 992px) {
  main div.formulario h1,
  main div.anim_on h1 {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  main div.formulario h1,
  main div.anim_on h1 {
    font-size: calc( ( 35 / 12 ) * 1rem);
  }
}

main div.formulario h2,
main div.anim_on h2 {
  font-size: calc( ( 22 / 12 ) * 1rem);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  main div.formulario h2 br,
  main div.anim_on h2 br {
    display: none;
  }
}

main div.formulario form,
main div.anim_on form {
  text-align: left;
  width: 80%;
  max-width: calc( ( 325 / 12 ) * 1rem);
  margin-left: auto;
  margin-right: auto;
}

main div.formulario form label,
main div.anim_on form label {
  position: relative;
  display: block;
  color: black;
  font-size: calc( ( 13 / 12 ) * 1rem);
}

main div.formulario form input,
main div.anim_on form input {
  position: relative;
  width: 100%;
  border: 0 none;
  outline: 0 none;
  border-radius: 2rem;
  display: block;
  margin: .35rem 0 .8rem;
  padding: .75rem 1rem;
  font-family: 'Montserrat', sans-serif;
}

main div.formulario form a,
main div.anim_on form a {
  position: relative;
  display: block;
  text-align: center;
  padding: .75rem;
  width: 100%;
  background: black;
  border-radius: 2rem;
  margin: 2rem 0 .8rem;
  font-size: calc( ( 16 / 12 ) * 1rem);
  font-weight: 700;
  text-transform: uppercase;
  /**/
  color: transparent;
  overflow: hidden;
  -webkit-transition: background .3s linear;
  transition: background .3s linear;
}

main div.formulario form a::before, main div.formulario form a::after,
main div.anim_on form a::before,
main div.anim_on form a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc( 100% - 2rem);
  line-height: 2.6rem;
  padding: .25rem 1rem;
  content: attr(data-text);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: white;
  background: rgba(255, 255, 255, 0);
}

main div.formulario form a::before,
main div.anim_on form a::before {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}

main div.formulario form a::after,
main div.anim_on form a::after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

main div.formulario form a:hover,
main div.anim_on form a:hover {
  background: crimson;
}

main div.formulario form a:hover::before,
main div.anim_on form a:hover::before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

main div.formulario form a:hover::after,
main div.anim_on form a:hover::after {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

main div.formulario form .wrong,
main div.anim_on form .wrong {
  display: block;
  color: crimson;
  text-align: center;
  font-weight: 600;
}

main div.anim_on {
  position: relative;
}

main div.anim_on > *:not(.gracias) {
  opacity: 0;
}

@media (max-width: 992px) {
  main div.anim_on {
    padding-top: 5rem;
  }
}

main div.anim_on h1 {
  font-size: calc( ( 35 / 12 ) * 1rem);
}

@media (max-width: 992px) {
  main div.anim_on h1 {
    margin-top: 0rem;
  }
}

main div.anim_on h2 {
  font-size: calc( ( 28 / 12 ) * 1rem);
  margin-bottom: .5rem;
}

main div.anim_on h2.gracias {
  position: absolute;
  top: calc( 50% - 2.5rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  main div.anim_on h2.gracias {
    top: calc( 50% + 2.5rem);
  }
}

main div.anim_on p {
  font-size: calc( ( 22 / 12 ) * 1rem);
}

main div.anim_on > span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5rem auto 2rem;
}

main div.anim_on > span::before {
  content: '';
  display: block;
  position: absolute;
  width: 10.5rem;
  height: 10.5rem;
  top: 50%;
  left: 50%;
  background: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
}

main div.anim_on > span img {
  position: relative;
  height: 10.5rem;
}

main div.cierre {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  main div.cierre {
    width: 90%;
  }
}

main div.cierre h1 {
  position: relative;
  font-size: calc( ( 35 / 12 ) * 1rem);
  margin: 0 0 4rem;
}

@media (max-width: 992px) {
  main div.cierre h1 {
    margin: 4rem 0 0;
  }
}

footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 2rem;
}

footer p {
  margin: 0;
}

footer img.logo {
  width: calc( ( 250 / 12 ) * 1rem);
  max-width: 55%;
}
/*# sourceMappingURL=estilos.css.map */