/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

a {
  text-decoration: none; }

html, body {
  position: relative;
  height: 100%; }

/* Break Points */
body {
  font-family: 'Azo Sans'; }

section {
  padding: 0 2%;
  width: 100%; }

.wrapper {
  margin: 0 auto;
  height: 100%; }

.flex-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; }

.btn {
  font-size: 20px;
  background-color: #FF538F;
  color: #ffffff;
  border-radius: 15px;
  padding: 20px 60px;
  font-weight: 700;
  transition: all 0.2s; }
  .btn:hover {
    background-color: #FF1B6A; }
  @media (min-width: 0) and (max-width: 512px) {
    .btn {
      font-size: 18px;
      padding: 20px 30px;
      border-radius: 10px; } }

.hero {
  background-image: linear-gradient(rgba(29, 28, 81, 0.7), rgba(29, 28, 81, 0.7)), url("https://github.com/sofiarnunes/Halls-360Project/blob/main/img/Background_update.png?raw=true");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh; }
  @media (min-width: 0) and (max-width: 512px) {
    .hero {
      background-image: url("https://raw.githubusercontent.com/sofiarnunes/Halls-360Project/main/img/Imagem_Background_Mobile.png");
      width: 100%;
      overflow: hidden; } }
  .hero .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%; }
    @media (min-width: 0) and (max-width: 512px) {
      .hero .wrapper {
        max-width: 340px !important; } }
    .hero .wrapper div.rules {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      margin-top: 20%; }
      @media (min-width: 0) and (max-width: 512px) {
        .hero .wrapper div.rules {
          flex-direction: column;
          margin-top: 30%; } }
      .hero .wrapper div.rules .rules-01 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 30px;
        flex: 1;
        flex-wrap: wrap;
        height: 100px; }
        @media (min-width: 0) and (max-width: 512px) {
          .hero .wrapper div.rules .rules-01 {
            margin: 0; } }
        .hero .wrapper div.rules .rules-01 .square {
          height: 45px;
          width: 45px;
          background-color: #4AACE4;
          transform: rotate(45deg);
          border-radius: 10px; }
          .hero .wrapper div.rules .rules-01 .square .number {
            position: absolute;
            height: 45px;
            width: 45px;
            transform: translate(-50%, -50%);
            transform: rotate(-45deg); }
            .hero .wrapper div.rules .rules-01 .square .number h1 {
              font-size: 26px;
              font-weight: 700;
              text-align: center;
              line-height: 45px;
              margin: 0; }
              @media (min-width: 0) and (max-width: 512px) {
                .hero .wrapper div.rules .rules-01 .square .number h1 {
                  font-size: 36px;
                  font-weight: 700; } }
        .hero .wrapper div.rules .rules-01 p {
          font-size: 16px;
          font-weight: 700;
          margin: 30px;
          text-align: center;
          height: 32px; }
          @media (min-width: 0) and (max-width: 512px) {
            .hero .wrapper div.rules .rules-01 p {
              font-size: 14px;
              margin: 20px;
              font-weight: 700;
              height: 14px; } }
  .hero form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .hero form label {
      font-size: 25px;
      font-weight: 400;
      color: white;
      margin: 27px; }
      @media (min-width: 0) and (max-width: 512px) {
        .hero form label {
          font-size: 14px;
          margin: 5px;
          margin-top: 10px; } }
    .hero form input {
      height: 54px;
      width: 174px;
      border-radius: 15px;
      margin: 10px; }
      @media (min-width: 0) and (max-width: 512px) {
        .hero form input {
          height: 49px;
          width: 200px;
          margin: 5px; } }
    .hero form input#code {
      text-align: center;
      font-size: 25px;
      font-weight: 400; }
      @media (min-width: 0) and (max-width: 512px) {
        .hero form input#code {
          font-size: 14px; } }
    .hero form input.btn {
      color: white;
      background-color: #FF538F;
      font-size: 16px;
      cursor: pointer;
      -webkit-appearance: none;
      padding: 5px 10px; }
      .hero form input.btn:hover {
        background-color: #FF1B6A; }
      @media (min-width: 0) and (max-width: 512px) {
        .hero form input.btn {
          font-size: 14px;
          margin-bottom: 5px; } }

.announcement {
  background-image: linear-gradient(rgba(29, 28, 81, 0.7), rgba(29, 28, 81, 0.7)), url("https://github.com/sofiarnunes/Halls-360Project/blob/main/img/Background_update.png?raw=true");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  display: none; }
  @media (min-width: 0) and (max-width: 512px) {
    .announcement {
      background-image: url("https://raw.githubusercontent.com/sofiarnunes/Halls-360Project/main/img/Imagem_Background_Mobile.png");
      width: 100%;
      overflow: hidden; } }
  .announcement .wrapper {
    position: relative;
    top: 50%;
    margin: 0 auto;
    max-width: 100%; }
    @media (min-width: 0) and (max-width: 512px) {
      .announcement .wrapper {
        top: 40%; } }
    .announcement .wrapper .win h3 {
      font-size: 50px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px; }
      @media (min-width: 0) and (max-width: 512px) {
        .announcement .wrapper .win h3 {
          font-size: 40px;
          margin-bottom: 10px; } }
    .announcement .wrapper .win h4 {
      font-size: 39px;
      font-weight: 400;
      color: #ffffff;
      letter-spacing: 2px; }
    .announcement .wrapper .cravas img {
      width: 300px;
      margin-top: 30px; }
      @media (min-width: 0) and (max-width: 512px) {
        .announcement .wrapper .cravas img {
          width: 300px;
          margin-top: 10%; } }
    .announcement .wrapper .arrow i {
      cursor: pointer;
      color: #ffffff;
      font-size: 30px;
      transition: all 0.2s; }
      @media (min-width: 0) and (max-width: 512px) {
        .announcement .wrapper .arrow i {
          font-size: 35px; } }
    @media (min-width: 0) and (max-width: 512px) {
      .announcement .wrapper .arrow {
        position: relative;
        top: 5%; } }

.prize {
  background: linear-gradient(180deg, #151448 25%, #3b8ccc 99%);
  height: 100vh;
  display: none;
  display: none; }
  @media (min-width: 0) and (max-width: 512px) {
    .prize {
      background: linear-gradient(180deg, #010f45 25%, #3b8ccc 99%);
      width: 100%;
      overflow: hidden;
      height: 100vh; } }
  .prize .wrapper {
    max-width: 1100px;
    height: 100vh; }
    @media (min-width: 0) and (max-width: 512px) {
      .prize .wrapper {
        max-width: 340px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center; } }
    .prize .wrapper .text-mobile {
      text-align: center;
      display: none; }
      @media (min-width: 0) and (max-width: 512px) {
        .prize .wrapper .text-mobile {
          display: block; } }
      @media (min-width: 0) and (max-width: 512px) {
        .prize .wrapper .text-mobile p {
          font-size: 14px;
          font-weight: 400;
          color: #ffffff;
          text-align: center; } }
    .prize .wrapper .flex-container {
      padding-top: 70px;
      width: 100%; }
      @media (min-width: 0) and (max-width: 512px) {
        .prize .wrapper .flex-container {
          flex-direction: column;
          padding-top: 0; } }
      .prize .wrapper .flex-container .prizes {
        width: 420px;
        height: 420px;
        position: relative;
        bottom: 15px; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container .prizes {
            width: 330px;
            height: 330px; } }
        .prize .wrapper .flex-container .prizes img {
          width: 170px;
          position: absolute;
          transition: all 0.2s; }
          .prize .wrapper .flex-container .prizes img:hover {
            cursor: pointer;
            width: 185px; }
            @media (min-width: 0) and (max-width: 512px) {
              .prize .wrapper .flex-container .prizes img:hover {
                width: 150px; } }
          @media (min-width: 0) and (max-width: 512px) {
            .prize .wrapper .flex-container .prizes img {
              width: 140px; } }
          .prize .wrapper .flex-container .prizes img.top {
            top: 0;
            left: 50%;
            transform: translateX(-50%); }
          .prize .wrapper .flex-container .prizes img.right {
            right: 0;
            top: 50%;
            transform: translateY(-50%); }
          .prize .wrapper .flex-container .prizes img.bottom {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%); }
          .prize .wrapper .flex-container .prizes img.left {
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
      .prize .wrapper .flex-container div h3 {
        font-size: 80px;
        font-weight: 700;
        color: #ffffff;
        padding: 0 50px; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container div h3 {
            font-size: 40px;
            font-weight: 400;
            height: 100%;
            padding: 0; } }
      .prize .wrapper .flex-container .professional img {
        width: 430px;
        transition: all 0.2s; }
        .prize .wrapper .flex-container .professional img:hover {
          opacity: 0.8;
          cursor: pointer; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container .professional img {
            display: none; } }
    .prize .wrapper .flex-container {
      max-width: 100%;
      text-align: center;
      justify-content: center; }
      @media (min-width: 0) and (max-width: 512px) {
        .prize .wrapper .flex-container {
          flex-direction: column; } }
      .prize .wrapper .flex-container .text-1, .prize .wrapper .flex-container .text-2 {
        max-width: 420px;
        margin-top: -70px; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container .text-1, .prize .wrapper .flex-container .text-2 {
            width: 300px; } }
        .prize .wrapper .flex-container .text-1 p, .prize .wrapper .flex-container .text-2 p {
          font-size: 20px;
          font-weight: 700;
          color: #ffffff; }
          @media (min-width: 0) and (max-width: 512px) {
            .prize .wrapper .flex-container .text-1 p, .prize .wrapper .flex-container .text-2 p {
              font-size: 14px;
              font-weight: 400; } }
      .prize .wrapper .flex-container .text-1 {
        margin-right: 180px; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container .text-1 {
            display: none; } }
      .prize .wrapper .flex-container .text-2 {
        margin-top: -50px;
        margin-left: 70px; }
        .prize .wrapper .flex-container .text-2 span {
          font-weight: 600; }
        @media (min-width: 0) and (max-width: 512px) {
          .prize .wrapper .flex-container .text-2 p {
            font-size: 14px;
            font-weight: 400;
            margin-right: 50px;
            margin-left: -50px; } }
    .prize .wrapper .btn-cravas .btn {
      display: none;
      text-align: center;
      width: 200px; }
      @media (min-width: 0) and (max-width: 512px) {
        .prize .wrapper .btn-cravas .btn {
          display: block;
          font-size: 14px;
          font-weight: 700;
          line-height: 17px; } }
    .prize .wrapper #login {
      position: absolute;
      display: none;
      width: 100vw;
      height: 100vh;
      z-index: 3; }
      .prize .wrapper #login i {
        font-size: 30px;
        color: #ffffff;
        z-index: 4;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10%; }
      .prize .wrapper #login img {
        width: 300px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 15%; }

.about {
  width: 100%;
  background-image: url("https://raw.githubusercontent.com/sofiarnunes/Halls-360Project/main/img/bg-home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 2350px; }
  @media (min-width: 0) and (max-width: 512px) {
    .about {
      width: 100%;
      overflow: hidden;
      height: 1900px;
      background-image: url("https://raw.githubusercontent.com/sofiarnunes/Halls-360Project/main/img/bg-home-mobile.jpg");
      text-align: center;
      position: relative;
      top: -2px;
      z-index: -1; } }
  .about .wrapper {
    max-width: 1280px; }
    @media (min-width: 0) and (max-width: 512px) {
      .about .wrapper {
        max-width: 340px !important; } }
    .about .wrapper h2 {
      text-align: center;
      font-size: 80px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 18px;
      line-height: 110px;
      padding-top: 50px; }
      @media (min-width: 0) and (max-width: 512px) {
        .about .wrapper h2 {
          font-size: 45px;
          margin-bottom: 30px;
          padding-top: 20px;
          line-height: 55px;
          width: 300px;
          position: relative;
          left: 50%;
          transform: translateX(-50%); } }
    .about .wrapper .sub {
      text-align: center;
      font-size: 25px;
      color: #ffffff;
      margin-bottom: 70px;
      width: 973px;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      line-height: 23.24px; }
      @media (min-width: 0) and (max-width: 512px) {
        .about .wrapper .sub {
          display: none; } }
    .about .wrapper .flex-container {
      margin-top: 150px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap; }
      @media (min-width: 0) and (max-width: 512px) {
        .about .wrapper .flex-container {
          margin-top: 60px; } }
      .about .wrapper .flex-container .shape {
        margin-left: 80px;
        height: 400px;
        width: 400px;
        min-width: 400px;
        overflow: hidden;
        transform: rotate(45deg);
        position: relative;
        border-radius: 30px; }
        @media (min-width: 0) and (max-width: 512px) {
          .about .wrapper .flex-container .shape {
            border-radius: 20px;
            height: 200px;
            width: 200px;
            min-width: 200px;
            margin-bottom: 80px;
            margin-left: 0px; } }
        .about .wrapper .flex-container .shape img {
          transform: rotate(-45deg);
          height: 700px;
          position: absolute;
          bottom: -100px;
          right: -180px; }
          @media (min-width: 0) and (max-width: 512px) {
            .about .wrapper .flex-container .shape img {
              height: 350px;
              bottom: -80px;
              right: -120px; } }
      .about .wrapper .flex-container .info {
        max-width: 430px; }
        .about .wrapper .flex-container .info.right {
          text-align: right; }
          @media (min-width: 0) and (max-width: 512px) {
            .about .wrapper .flex-container .info.right {
              text-align: center; } }
        .about .wrapper .flex-container .info h3 {
          font-size: 60px;
          margin-bottom: 18px;
          color: #ffffff;
          line-height: 80px; }
          @media (min-width: 0) and (max-width: 512px) {
            .about .wrapper .flex-container .info h3 {
              font-size: 40px;
              margin-bottom: 25px;
              line-height: 0px; } }
        .about .wrapper .flex-container .info p {
          width: 426px;
          font-size: 20px;
          line-height: 30px;
          color: #ffffff; }
          @media (min-width: 0) and (max-width: 512px) {
            .about .wrapper .flex-container .info p {
              font-size: 14px;
              margin-bottom: 50px;
              line-height: 20px;
              width: 250px;
              display: block; } }
      .about .wrapper .flex-container.frst {
        margin-top: 150px; }
        @media (min-width: 0) and (max-width: 512px) {
          .about .wrapper .flex-container.frst {
            margin-top: 90px; } }
      .about .wrapper .flex-container.rev {
        flex-direction: row-reverse;
        margin-right: 70px;
        margin-left: 0; }
        @media (min-width: 0) and (max-width: 512px) {
          .about .wrapper .flex-container.rev {
            margin-right: 0px; } }
    .about .wrapper .mundo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%); }
      .about .wrapper .mundo p {
        color: #ffffff;
        font-size: 30px;
        max-width: 100%;
        margin-top: 160px; }
        @media (min-width: 0) and (max-width: 512px) {
          .about .wrapper .mundo p {
            font-size: 20px;
            width: 250px;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 40px;
            line-height: 25px;
            margin-top: 20px; } }
      .about .wrapper .mundo .btn {
        position: relative;
        left: 60px;
        top: 40px;
        cursor: pointer; }
        @media (min-width: 0) and (max-width: 512px) {
          .about .wrapper .mundo .btn {
            padding: 15px 50px;
            border-radius: 15px;
            left: 0;
            top: 0px; } }

footer {
  height: 105px;
  background-color: #4AACE4;
  color: #ffffff;
  position: relative;
  bottom: 100px;
  text-align: left; }
  @media (min-width: 0) and (max-width: 512px) {
    footer {
      height: 200px;
      width: 100%;
      overflow: hidden; } }
  footer .logo-mobile img {
    display: none;
    cursor: pointer; }
    @media (min-width: 0) and (max-width: 512px) {
      footer .logo-mobile img {
        display: block;
        height: 100px;
        position: absolute;
        top: 10%;
        right: 50%;
        transform: translateX(-50%); } }
  footer .flex-container {
    margin-top: 2px; }
    @media (min-width: 0) and (max-width: 512px) {
      footer .flex-container {
        max-width: 340px !important;
        align-items: flex-start;
        flex-direction: column; } }
    @media (min-width: 0) and (max-width: 512px) {
      footer .flex-container div ul {
        position: relative;
        left: 95%; } }
    @media (min-width: 0) and (max-width: 512px) {
      footer .flex-container div ul .logo {
        display: none; } }
    footer .flex-container div ul li {
      cursor: pointer;
      font-size: 13px;
      margin: 0 15px;
      text-transform: uppercase;
      color: #ffffff;
      font-weight: 600; }
      footer .flex-container div ul li img {
        height: 100px; }
      @media (min-width: 0) and (max-width: 512px) {
        footer .flex-container div ul li {
          margin: 10px 0; } }
    footer .flex-container .icons {
      vertical-align: middle; }
      @media (min-width: 0) and (max-width: 512px) {
        footer .flex-container .icons {
          position: absolute;
          right: 57%;
          top: 70%; } }
      footer .flex-container .icons i {
        cursor: pointer;
        font-size: 35px;
        margin: 0 15px;
        color: #ffffff; }
        footer .flex-container .icons i[class="fab fa-instagram"] {
          font-size: 30px;
          color: #4AACE4;
          background-color: #ffffff;
          padding: 3px 5px;
          border-radius: 100%; }
