@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Roboto:wght@100;300;400;500;700;900&display=swap");
body {
  font-family: 'Roboto', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend Deca', sans-serif; }

/*
<!-- HTML -->
<div class="outer-box">
   <div class="inner-box"></div>
</div>

.outer-box {
   @include aspect-ratio(4, 3);
}
*/
/*
input,  
textarea {  
    @include input-placeholder {
        color: $grey;
    }
}
*/
/*
.site-header {
    z-index: z('site-header');
}
*/
/*
.gradient {
  @include gradient(#07c, #06f, vertical);
}
*/
/*
.header-title {  
   font-size: 2rem;  
 
   @include for-size(phone-only) {    
      font-size: 1rem; 
   }
}
*/
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box; }

body {
  background-color: white;
  color: black;
  font-family: 'Lexend Deca', sans-serif; }
  body::-webkit-scrollbar {
    width: 5px; }
  body::-webkit-scrollbar-track {
    background-color: transparent; }
  body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-clip: padding-box;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #EC03FD;
    background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
    background: linear-gradient(to bottom, #EC03FD, #0A3EFE); }
    body::-webkit-scrollbar-thumb:hover {
      background: #0A3EFE;
      background: -webkit-linear-gradient(top, #0A3EFE, #EC03FD);
      background: linear-gradient(to bottom, #0A3EFE, #EC03FD); }

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); }
  .header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 15px; }
    .header .logo:hover {
      text-decoration: none; }
    .header .logo img {
      display: block; }
    .header .logo h1 {
      display: block;
      font-weight: 900;
      text-transform: lowercase;
      font-size: 18px;
      font-size: 1.2857142857rem;
      background: #EC03FD;
      background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
      background: linear-gradient(to bottom, #EC03FD, #0A3EFE);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .header .menu {
    display: flex;
    align-self: stretch;
    justify-self: stretch; }
    .header .menu .btn-bars {
      width: 50px;
      border: none;
      color: white;
      outline: none;
      margin: 10px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      background-clip: padding-box;
      background: #EC03FD;
      background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
      background: linear-gradient(to bottom, #EC03FD, #0A3EFE); }
    @media (min-width: 900px) {
      .header .menu .btn-bars {
        display: none; }
      .header .menu_list {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0; }
        .header .menu_list li {
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          .header .menu_list li:hover {
            background-color: #e6e6e6;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            background-clip: padding-box; }
          .header .menu_list li a {
            display: block;
            padding: 10px 15px;
            font-weight: bold;
            text-transform: lowercase;
            color: #0A3EFE;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
            .header .menu_list li a.register {
              border: 1px solid #0A3EFE;
              -webkit-border-radius: 3px;
              border-radius: 3px;
              background-clip: padding-box; }
            .header .menu_list li a:hover {
              background: #EC03FD;
              background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
              background: linear-gradient(to bottom, #EC03FD, #0A3EFE);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent; } }
    @media (max-width: 599px) {
      .header .menu_list {
        display: none;
        flex-direction: column;
        position: absolute;
        left: 10px;
        top: 60px;
        z-index: 100;
        background-color: white;
        width: calc(100% - 20px);
        -webkit-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
        background-clip: padding-box;
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); }
        .header .menu_list_active {
          display: flex !important; }
        .header .menu_list li {
          display: block;
          border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
          .header .menu_list li:last-child {
            border: none; }
          .header .menu_list li a {
            display: block;
            padding: 15px;
            font-weight: bold;
            color: white;
            text-transform: lowercase;
            background: #EC03FD;
            background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
            background: linear-gradient(to bottom, #EC03FD, #0A3EFE);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; } }

.Clouds {
  color: #FFF;
  background-color: #EC03FD;
  background-image: radial-gradient(circle, #f79bfe 0%, #f468fe 70%, #f036fd 100%);
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  margin-top: 5%; }
  .Clouds .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); }
    .Clouds .hero h2 {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 64px;
      font-size: 4.5714285714rem;
      color: white; }
      @media (max-width: 599px) {
        .Clouds .hero h2 {
          font-size: 45px;
          font-size: 3.2142857143rem; } }
    .Clouds .hero p {
      display: block;
      width: 100%;
      text-align: center; }

.btn-big {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 400px;
  height: auto;
  padding: 20px 0;
  color: white;
  margin: 0 auto;
  font-size: 20px;
  font-size: 1.4285714286rem;
  background: #708efe;
  background: -webkit-linear-gradient(top, #708efe, #3d66fe);
  background: linear-gradient(to bottom, #708efe, #3d66fe);
  -webkit-border-radius: 200px;
  border-radius: 200px;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn-big:hover {
    color: white;
    text-decoration: none;
    background: #3d66fe;
    background: -webkit-linear-gradient(top, #3d66fe, #0A3EFE);
    background: linear-gradient(to bottom, #3d66fe, #0A3EFE); }

.video-home {
  display: block;
  width: 90%;
  max-width: 640px;
  max-height: 480px;
  margin: 0 auto;
  overflow: hidden;
  transform: translateY(-50px);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); }

.footer {
  display: block;
  border-top: 1px solid #EC03FD;
  background: whitesmoke; }
  .footer-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto; }
    .footer-bar a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      margin: 5px;
      color: #a6a6a6;
      font-size: 18px;
      font-size: 1.2857142857rem;
      -webkit-border-radius: 40px;
      border-radius: 40px;
      background-clip: padding-box;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .footer-bar a:hover {
        text-decoration: none;
        color: white;
        background-color: #EC03FD; }

.title {
  display: block;
  font-weight: 900;
  background: #EC03FD;
  background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
  background: linear-gradient(to bottom, #EC03FD, #0A3EFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
  .title-big {
    font-size: 64px;
    font-size: 4.5714285714rem;
    background: #EC03FD;
    background: -webkit-linear-gradient(top, #EC03FD, #0A3EFE);
    background: linear-gradient(to bottom, #EC03FD, #0A3EFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }

.front-form {
  position: relative; }
  .front-form input.error,
  .front-form textarea.error {
    border-bottom-color: #ca0002;
    outline-color: #EC03FD !important; }
    .front-form input.error.placeholder,
    .front-form textarea.error.placeholder {
      color: #ca0002; }
    .front-form input.error:-moz-placeholder,
    .front-form textarea.error:-moz-placeholder {
      color: #ca0002; }
    .front-form input.error::-moz-placeholder,
    .front-form textarea.error::-moz-placeholder {
      color: #ca0002; }
    .front-form input.error:-ms-input-placeholder,
    .front-form textarea.error:-ms-input-placeholder {
      color: #ca0002; }
    .front-form input.error::-webkit-input-placeholder,
    .front-form textarea.error::-webkit-input-placeholder {
      color: #ca0002; }
  .front-form label.error {
    display: block;
    width: 90%;
    position: absolute;
    bottom: -22px;
    right: 5%;
    left: 5%;
    background-color: rgba(255, 0, 0, 0.25);
    color: #ca0002;
    padding: 2px 5px;
    text-transform: uppercase;
    font-size: 6px;
    font-size: 0.4285714286rem;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    background-clip: padding-box; }

/* Shared */
.loginSocial {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto; }
  .loginSocial .loginBtn {
    box-sizing: border-box;
    position: relative;
    margin: 0.2em;
    padding: 0 15px 0 46px;
    border: none;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF; }
    .loginSocial .loginBtn:before {
      content: "";
      box-sizing: border-box;
      position: absolute;
      top: 0;
      left: 0;
      width: 34px;
      height: 100%; }
    .loginSocial .loginBtn:focus {
      outline: none; }
    .loginSocial .loginBtn:active {
      box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1); }
    .loginSocial .loginBtn--facebook {
      background-color: #4C69BA;
      background-image: linear-gradient(#4C69BA, #3B55A0);
      font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;
      text-shadow: 0 -1px 0 #354C8C; }
      .loginSocial .loginBtn--facebook:before {
        border-right: #364e92 1px solid;
        background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png") 6px 6px no-repeat; }
      .loginSocial .loginBtn--facebook:hover, .loginSocial .loginBtn--facebook:focus {
        background-color: #5B7BD5;
        background-image: linear-gradient(#5B7BD5, #4864B1);
        text-decoration: none; }
    .loginSocial .loginBtn--google {
      font-family: "Roboto", Roboto, arial, sans-serif;
      background: #DD4B39; }
      .loginSocial .loginBtn--google:before {
        border-right: #BB3F30 1px solid;
        background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png") 6px 6px no-repeat; }
      .loginSocial .loginBtn--google:hover, .loginSocial .loginBtn--google:focus {
        background: #E74B37;
        text-decoration: none; }

/*# sourceMappingURL=alessandrodesign.css.map */


/** CUSTOM */
.bg-home {
  background-image: url('../img/home-descubra.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: -118px;
    margin-bottom: 0px;
    padding: 0px 0px 50px 0px;
}

.bg-descubra2 {
  background-image: url('../img/bg-testes.jpg');
  margin-top: -118px!important;
}

#topicos {
  background-image: url('../img/home-descubra-3.jpeg');
}
