@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;400;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); */

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  outline: none;
  margin: 0px;
}

:root {
  --green: #008736;
  --green-hover: #49AC0F;
  --gray: #404040;
  --white: #ffffff;
  --gray-light: #7c7c7c;
  --green-shadow: #00bc7782;
  --gray-shadow: #00000011;
  --desktop: 960px;
  --mobile: 100%;
  --font-primary: 'Montserrat', arial, sans-serif;
  --font-secondary: 'Montserrat',arial, sans-serif;
  --fs12: 12px;
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs36: 36px;
  --fs30: 30px;
  --fs32: 32px;
  --fs34: 34px;
  --fs38: 38px;
  --fs40: 40px;
}

body,
html {
  margin: 0px;
  box-sizing: border-box;
  font-family: var(--font-secondary);
  letter-spacing: -0.5px;
  background-repeat: no-repeat;
  background-position-y: 40px;
  background-position-x: center;
  background-size:cover;
  width: 100%;
  background-color:var(--white);
  font-weight: 500;
}

a{
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}



.box-texto{
  width: 40%;
  height: auto;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
  margin: 0px;
  padding: 0px;
  letter-spacing: -1px;
  font-weight: 800;  
}

.font1{
  font-family: var(--font-primary);
}

.font2{
  font-family: var(--font-secondary);
}

.comment::after{
  content: '"';
  font-size: 100px;
  font-family: var(--font-secondary);
  color: var(--green);
}

.text-center{
  text-align: center;
}

.passos-img{
  width: 425px;
  height: auto;
}

.img-avatar{
  width: 52px;
  height: auto;
}

.img-hero{
  background-image: url('../images/hero.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 490px !important;
}

.card-steps {
  width: 100%;
  height: auto;  
}

.card-duvidas {
  width: 60% !important;
  height: auto !important;
}

.flex50 {
  width: 50%;
  min-height: 25vh;
  height: auto;
}

.flex40 {
  width: 45%;
  min-height: 25vh;
  height: auto;
}

.points {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  font-size: var(--fs20);
  color: var(--white);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-weight: 800;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}

.gradient-text {
  background-image: linear-gradient(90deg, var(--green), var(--green-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-gradient {
  background: linear-gradient(0deg, var(--green), var(--green-hover));
}

.fc-green {
  color: var(--green);
}

.fc-gray {
  color: var(--gray);
}

.fc-gray-light {
  color: var(--gray-light);
}

.fc-white {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}

.bg-green {
  background-color: var(--green);
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row-depoimentos {
  flex-direction: row;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-space-between {
  align-items: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-space-between {
  justify-content: space-between;
}

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p15 {
  padding: 15px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.p40 {
  padding: 40px;
}

.py5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px5 {
  padding-left: 5px;
  padding-right: 5px;
}

.px10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px40 {
  padding-left: 40px;
  padding-right: 40px;
}

.m5 {
  margin: 5px;
}

.m10 {
  margin: 10px;
}

.m15 {
  margin: 15px;
}

.m20 {
  margin: 20px;
}

.m30 {
  margin: 30px;
}

.m40 {
  margin: 40px;
}

.my5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mx5 {
  margin-left: 5px;
  margin-right: 5px;
}

.mx10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mx20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx40 {
  margin-left: 40px;
  margin-right: 40px;
}

.ml5 {
  margin-left: 5px;
}

.ml20 {
  padding-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mt5{
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt60 {
  margin-top: 60px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt80 {
  margin-top: 80px;
}

.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic;
}

.lh20{
  line-height: 20px;
}
.fs12 {
  font-size: var(--fs12);
}

.fs14 {
  font-size: var(--fs14);
}

.fs16 {
  font-size: var(--fs16);
  line-height: 1.5;
  font-weight: 500;
}

.fs18 {
  font-size: var(--fs18);
}

.fs20 {
  font-size: var(--fs20);
}

.fs22 {
  font-size: var(--fs22);
}

.fs24 {
  font-size: var(--fs24);
}

.fs30 {
  font-size: var(--fs30);
}

.fs32 {
  font-size: var(--fs32);
}

.fs34 {
  font-size: var(--fs34);
}

.fs36 {
  font-size: var(--fs36);
}

.fs38 {
  font-size: var(--fs38);
}

.fs40 {
  font-size: var(--fs40);
}

.bdr20{
  border-radius: 20px;
}

.bdr30{
  border-radius: 30px;
}

.bdr50{
  border-radius:50px;
}

.bdr14{
  border-radius:14px;
}

.bds-gray{
  box-shadow: 0px 0px 10px var(--gray-shadow);
}

.bds-green{
  box-shadow: 0px 8px 10px var(--green-shadow);
}

.bd-green{
  border:2px solid var(--green);
}

.planos-ul ul{  
  padding: 20px;
}

.planos-ul ul li{
  list-style-image: url('../images/check-plano.png'); 
  line-height: 24px; 
  align-items: center;
}

.wrapper {
  width: 100%;
  height: auto;
}

.container {
  width: var(--desktop);
  height: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container-planos{
  width: 100%;
  height: auto;
  margin: 0px 30%;
}

.container-duvidas{
  width: 70%;
  height: auto;
  margin: 0px 10%;
}

.top {
  height: auto;
  width: 100%;
  display: flex;
  margin: 0px;
  position: fixed;
  z-index: 30;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 0 4px #ccc;
}

.top-alinha {
  max-width: var(--desktop);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  height: auto;
  margin: 0px auto;
  padding: 15px;
}

.espaco-top {
  display: block;
  width: 100%;
  height: 90px;
}

.menu-top {
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}

.menu-top ul {
  list-style-type: none;
  display: inline-block;
  padding: 0px;
  margin: 0px;
}

.menu-top ul li {
  float: left;
}

.menu-top ul li a {
  font-family: var(--font-secondary);
  font-size: var(--fs14);
  color: var(--gray);
  text-decoration: none;
  display: block;
  float: left;
  width: auto;
  transition: ease-out 0.3s ease-out;
  height: 100%;
  padding: 20px 0px;
  margin: 0px 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.menu-top ul li a:hover {
  background-position: bottom;
  color: var(--green);
}


input,
textarea,
select {
  padding: 12px;
  font-size: 16px;
  color: #fff;
  width: 100%;
  margin: 0px auto 10px auto;
  font-family: 'proximanova-nolmal', sans-serif;
  transition: all 0.3s linear;
  background: var(--cor2);
  border: 2px solid var(--cor2);
  border-radius: 25px;
  box-sizing: border-box;
}

::placeholder {
  color: #c0c0c0;
}

input[name=estado] {
  width: 14%;
}

input[name=cidade] {
  width: 84%;

}

input[name=palavra] {
  width: 180px;
  margin: 0px 0px 10px 0px;
  display: block;
}

input[name=email] {
  width: 49%;
  margin-right: 1%;
  float: left;
}

input[name=telefone] {
  width: 100%;
}

select[name=assunto] {
  width: 100%;
}

input[type=submit] {
  font-family: 'proximanova-semibold', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--cor1);
  height: auto;
  width: auto;
  display: block;
  transition: all 0.3s ease-out;
  letter-spacing: 3.0px;
  padding: 15px 25px;
  margin: 0px;
  cursor: pointer;
  border: solid 1px var(--cor1);
  border-radius: 40px;
}

input[type=submit]:focus {
  background: var(--cor1);
  display: block;
  color: #ffffff;
}


input:focus,
textarea:focus {}

#bt-enviar {
  font-family: 'proximanova-semibold', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--cor1);
  height: auto;
  width: auto;
  display: block;
  transition: all 0.3s ease-out;
  padding: 15px 25px;
  margin: 0px;
  cursor: pointer;
  border: solid 1px var(--cor1);
  border-radius: 40px;
  letter-spacing: 1px;
}

.btn-enviar:focus {
  background: var(--cor1);
  display: block;
  color: #ffffff;
}

.error {
  font-family: 'proximanova-regular', sans-serif;
  color: #EF6F66;
  display: block;
  text-align: left;
}

.aviso {
  font-family: 'proximanova-regular', sans-serif;
  font-size: 16px;
  color: #ffffff;
  background-color: var(--cor1);
  display: none;
  padding: 15px;
  margin: 10px 1%;
  width: 98%;
  text-align: left;
  border-radius: 25px;
  box-sizing: border-box;
}

/* modal */
.modal-offset {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 31;
  backdrop-filter: blur(3px);
  display: none;
  overflow-y: auto;
}

.modal {
  display: none;
  width: 90%;
  height: auto;
  top: 10px;
  margin: 30px 5%;
  padding: 20px;
  position: fixed;
  z-index: 32;
  overflow: auto;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 6px;
}

.modal-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

a.fechar {
  width: auto;
  height: auto;
  padding: 10px;
  float: right;
  background: #fff;
}

.load {
  width: 60px;
  height: 60px;
  z-index: 40;
  position: absolute;
  top: 270px;
  margin-left: 46%;
  display: none;
  background-color: #fff;
  border-radius: 50px;
  border: none;
  background-image: url(../images/ajax-loader.gif);
  background-position: center;
  background-repeat: no-repeat;
}

.conteudo-modal {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--cor2);
  font-family: 'montserrat', sans-serif;
  font-size: 16px;
}

.conteudo-modal img {
  width: 100%;
  height: auto;
}

.conteudo-modal section h2 {
  color: var(--cor2);
  letter-spacing: 1px;
  font-size: 30px !important;
}

.conteudo-modal section p {
  color: var(--cor2);
  font-family: 'montserrat', sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.pulse-button {
  width: fit-content;
  box-shadow: 0 0 0 0 var(--green);
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  /* animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); */
  animation: pulsing 1.75s infinite cubic-bezier(0.06, 0, 0, 0.1);
  
  
  transition: all 300ms ease-in-out;
}

.pulse-button-white {
  width: fit-content;
  box-shadow: 0 0 0 0 var(--white);
  -webkit-animation: pulsing 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transition: all 1000ms ease-in-out;
}


/* Comment-out to have the button continue to pulse on mouseover */

a.pulse-button:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
  color: #ffffff;
}

/* Animation */

@-webkit-keyframes pulsing {
  to {
    box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
  }
}

@-moz-keyframes pulsing {
  to {
    box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
  }
}

@-ms-keyframes pulsing {
  to {
    box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
  }
}

@media only screen and (max-width: 780px) {

  #criar-loja{
    display: none;
  }
  
  h1 {
    font-size: var(--fs20);
  }

  h2 {
    font-size: var(--fs18);
  }

  h3 {
    font-size: var(--fs16);
  }

  .fs32,.fs34,.fs36,.fs38{
    font-size: var(--fs24) !important;
  }

  .container {
    width: var(--mobile);
  }

  .flex-row {
    flex-direction: column;
  }

  .flex50{
    margin-top: 330px;
    width: 100%;
    text-align: center;
  }

  .img-hero{
    background-image: url('../images/hero-mobile.webp');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    width: 100%;
    height:520px !important;
  }

  .passos-img{
    width: 490px;
    height: auto;
  }

  .container-planos{
    width: 90%;
    height: auto;
    margin: 0px auto;
  }
  
  .container-duvidas{
    width: 100%;
    height: auto;
    margin: 0px auto;
  }

  .card-steps {
    width: 90%;
  }

  .wrapper {
  width: 100%;
  padding: 0 0px;
}

.ml20 {
  padding-left: 45px;
}

.ml30 {
  margin-left: 0px;
}

.mt40 {
  margin-top: 0px;
}

.mt60 {
  margin-top: 0px;
}

}

@media only screen and (max-width: 460px) {

  .fs18 {
    font-size: 16px !important;
  }

  .fs30 {
    font-size: 24px !important;
    line-height: 28px !important;
  }

    .flex50{
      margin-top: 200px;
      width: 100%;
      text-align: center;
    }
      
    .img-hero{
      background-image: url('../images/hero-mobile.webp');
      background-repeat: no-repeat;
      background-position: top;
      background-size: contain;
      width: 100%;
      height:520px !important;
    }

    .passos-img{
      width: 280px;
      height: auto;
    }
      
}

@media only screen and (max-width: 360px) {

    .flex50{
      margin-top: 200px;
      width: 100%;
      text-align: center;
    }

}

.texto-direita {
  max-width: 300px !important;
}