/* Reset */
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url(micromodal.css);
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  background: url(../images/bg-site.jpg) no-repeat top center;
  background-size: cover;
}

a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  display: inline-flex;
}

::-moz-selection {
  color: #FFF;
  background: #887ee6;
}

::selection {
  color: #FFF;
  background: #887ee6;
}

/* Customs Mixins */
/* Fonts */
/* Variables */
/* Classes */
.black {
  color: black;
}

.white {
  color: white;
}

.gray {
  color: #333333;
}

.yellow {
  color: #ffdd00;
}

.orange {
  color: #f65209;
}

.purple {
  color: #9b238c;
}

.lightBlue {
  color: #a2faff;
}

.txtDefault {
  font: normal 400 20px/24px "Montserrat", sans-serif;
  letter-spacing: -1px;
}

.titles {
  font: normal 700 60px/56px "Amatic SC", sans-serif;
  letter-spacing: -1px;
}

.titleHeader {
  font: normal 900 64px/56px "Montserrat", sans-serif;
  letter-spacing: -1px;
}

.inputDefault {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  border: 1px solid white;
  border-radius: 10px;
  padding: 0 15px;
  margin-bottom: 10px;
  font: normal 400 15px/16px "Montserrat", sans-serif;
  letter-spacing: -1px;
  color: white;
  background: none;
}

.inputDefault::-webkit-input-placeholder {
  font: normal 400 15px/16px "Montserrat", sans-serif;
  letter-spacing: -1px;
  color: white;
}

.textarea {
  padding: 10px 15px;
  height: 80px;
  resize: none;
}

.sendButton {
  font: normal 700 15px/16px "Montserrat", sans-serif;
  letter-spacing: -1px;
  color: #f65209;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 15px 10px 40px;
  margin-left: auto;
  background: url(../images/_assets/ico-send.svg) no-repeat left 15px center #ffdd00;
  cursor: pointer;
}

.btnDefault {
  font: normal 400 15px/16px "Montserrat", sans-serif;
  letter-spacing: -1px;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px 20px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.btnDefault:hover {
  color: #3d80a0;
  background-color: white;
}

/* General style */
.btnFlutuante {
  position: fixed;
  left: 10rem;
  bottom: 0;
  padding: 10px 20px;
  border-radius: 25px 25px 0 0;
  background: #0fcf57;
  z-index: 15;
}
.btnFlutuante .txtDefault {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.btnFlutuante .txtDefault strong {
  text-transform: none;
  font-size: 30px;
  font-weight: 800;
  color: black;
}
.btnFlutuante img {
  margin-right: 10px;
}

.wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1210px;
  padding: 0 50px;
  margin: auto;
}

.topo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  background: url(../images/bg-topo.png) no-repeat bottom center;
  background-size: cover;
}
.topo .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  width: 100%;
  padding-top: 45px;
}
.topo .menu .btnMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: none;
  display: none;
}
.topo .menu .itensMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin-left: auto;
}
.topo .menu .itensMenu li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin-left: 65px;
}
.topo .menu .itensMenu li a {
  font-size: 18px;
  padding: 3px 7px;
}
.topo .menu .itensMenu li:last-child {
  margin-left: 40px;
}
.topo .menu .itensMenu .active {
  background-color: white;
  border-radius: 5px;
}
.topo .contentTopo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 400px;
  margin-bottom: 120px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 400px;
}
.topo .contentTopo img {
  margin: 20px 80px 0 auto;
}
.topo .contentTopo h1 {
  margin-bottom: 20px;
}

.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding: 50px 0 100px;
  background-color: white;
}
.footer .itensFooter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}
.footer .itensFooter li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin: 0 30px;
}
.footer .itensFooter li a {
  font-size: 18px;
}
.footer .itensFooter li:last-child {
  margin: 0;
}
.footer address {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  justify-content: center;
  width: 100%;
  border-top: 1px solid #cccccc;
  font-weight: 300;
  margin: 120px 0 auto;
  padding: 25px 0;
}
.footer address img {
  margin-right: 10px;
}

.formulario {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  max-width: 555px;
}

/* Home */
.bannerHome {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 0 170px;
  height: 500px;
  margin: auto;
}
.bannerHome .titleBanner {
  font: normal 800 68px/64px "Montserrat", sans-serif;
  letter-spacing: -1px;
  color: #dc0707;
}
.bannerHome .txtDefault {
  margin: 10px 0 50px;
}
.bannerHome .slides {
  width: 100%;
  height: 500px;
  display: block;
}
.bannerHome .slides li {
  display: flex !important;
  height: 500px;
  position: relative;
}
.bannerHome .slides li .contentBannerHome {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  max-width: 1210px;
  height: 100%;
  padding: 0 50px;
  margin: auto;
  background: url(../images/bg-banner-home.png) no-repeat right center;
  background-size: 600px;
}
.bannerHome .slides li .contentBannerHome img {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translate(0, -50%);
}
.bannerHome .flex-direction-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  justify-content: center;
  width: 100%;
  height: 35px;
}
.bannerHome .flex-direction-nav .flex-prev {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: url(../images/_assets/seta-voltar.svg) no-repeat center center white;
}
.bannerHome .flex-direction-nav .flex-next {
  width: 32px;
  height: 32px;
  margin-left: 5px;
  border-radius: 100%;
  background: url(../images/_assets/seta-avancar.svg) no-repeat center center white;
}

.contentHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding-bottom: 70px;
}
.contentHome .resumoSobreHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  justify-content: space-around;
}
.contentHome .resumoSobreHome .contentResumoSobreHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 675px;
  text-align: center;
}
.contentHome .resumoSobreHome .contentResumoSobreHome h4 {
  margin: 5px 0 15px;
}
.contentHome .resumoSobreHome .contentResumoSobreHome a {
  margin-top: 30px;
}
.contentHome .balasHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
  background: url(../images/_assets/divider-home.png) no-repeat top center;
  background-size: 355px;
}
.contentHome .balasHome h5 {
  margin: 5px 0 15px;
}
.contentHome .balasHome p {
  width: 100%;
  max-width: 830px;
  margin-bottom: 20px;
}

.contatoHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding: 100px 0;
  background: url(../images/bg-form-home.jpg) no-repeat center center;
  background-size: cover;
}
.contatoHome .leftContatoHome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  max-width: 380px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.contatoHome .leftContatoHome h6 {
  margin: 5px 0 10px;
}

/* Sobre */
.sobre {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}

.contentSobre {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  text-align: center;
  flex-direction: column;
  margin: 60px auto 0;
}
.contentSobre .titles {
  margin: 5px 0 15px;
}
.contentSobre p {
  max-width: 935px;
}

.columnSobre {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin-top: 50px;
  padding: 50px 0 100px;
  background-color: rgba(59, 98, 138, 0.6);
  background-blend-mode: multiply;
}
.columnSobre .contentSobre {
  max-width: 45%;
}

.responsabilidadeSocial {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding: 90px 0;
  background: url(../images/bg-responsabilidade-social.png) no-repeat center center;
  background-size: cover;
}
.responsabilidadeSocial .txtResponsabilidadeSocial {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: row;
  margin-left: auto;
  max-width: 655px;
}
.responsabilidadeSocial .txtResponsabilidadeSocial p {
  margin-top: 15px;
}
.responsabilidadeSocial .txtResponsabilidadeSocial p a {
  color: white;
}

/* Produtos */
.produtos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}
.produtos .listaProdutos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}
.produtos .listaProdutos li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin: 60px 0;
  width: 100%;
}
.produtos .listaProdutos .descriptionProdutos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  max-width: 585px;
  margin: 0 100px 0 auto;
}
.produtos .listaProdutos .descriptionProdutos p {
  margin: 20px 0 10px;
}
.produtos .listaProdutos .descriptionProdutos .buttonsProdutos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin-top: 10px;
}
.produtos .listaProdutos .descriptionProdutos .buttonsProdutos .btnProdutos {
  padding: 10px;
  margin-right: 15px;
  cursor: pointer;
}
.produtos .listaProdutos .descriptionProdutos .buttonsProdutos .btnProdutos:after {
  content: "+";
  margin-left: 20px;
}

.tabelasNutricionais {
  max-width: 500px;
  border: 1px solid white;
  border-collapse: collapse;
  padding: 5px 10px;
  color: white;
  z-index: 10;
}
.tabelasNutricionais th {
  border: 1px solid white;
  padding: 5px 10px;
  font: normal 400 20px/24px "Montserrat", sans-serif;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.tabelasNutricionais td {
  border: 1px solid white;
  padding: 10px 10px;
  font: normal 400 16px/16px "Montserrat", sans-serif;
  letter-spacing: -1px;
}

.formMaisInfo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 550px;
}
.formMaisInfo .titles {
  margin: 10px 0 15px;
}
.formMaisInfo .txtDefault {
  max-width: 400px;
  margin-bottom: 20px;
}
.formMaisInfo .sendDistribuidor {
  color: #f65209;
  background: url(../images/_assets/ico-send.svg) no-repeat left 15px center #d7df23;
}

/* Contato */
.contato {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding: 80px 0 160px;
}
.contato .textoContato {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 380px;
  text-align: center;
  justify-content: center;
}
.contato .textoContato h3 {
  margin: 5px 0 10px;
}

.enderecoContato {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  padding: 25px 0;
  text-align: center;
  background-color: rgba(59, 98, 138, 0.6);
  background-blend-mode: multiply;
}
.enderecoContato .wrapper {
  justify-content: center;
}

.mapaContato {
  width: 100%;
  filter: grayscale(1);
}

/* Seja um distribuidor */
.formDistribuidor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  max-width: 550px;
}
.formDistribuidor .titles {
  margin: 10px 0 15px;
}
.formDistribuidor .txtDefault {
  max-width: 400px;
  margin-bottom: 20px;
}
.formDistribuidor .sendDistribuidor {
  color: #5f1ccc;
  background: url(../images/_assets/ico-send-purple.svg) no-repeat left 15px center #d7df23;
}

@media screen and (max-width: 1080px) {
  .btnFlutuante {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    justify-content: center;
    position: fixed;
    right: 10px;
    left: inherit;
    bottom: 10px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    padding: 0;
  }
  .btnFlutuante img {
    margin: 0;
  }
  .btnFlutuante p {
    display: none;
  }
  .wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
  .topo .contentTopo {
    flex-direction: row;
    height: auto;
    text-align: center;
    background-image: none !important;
  }
  .topo .contentTopo h1 {
    font-size: 36px;
    line-height: 40px;
    margin: 0 auto 10px;
  }
  .topo .contentTopo img {
    width: 60px;
  }
  .topo .menu {
    padding-top: 20px;
  }
  .topo .menu img {
    max-width: 100px;
  }
  .topo .menu .btnMenu {
    display: flex;
    z-index: 25;
  }
  .topo .menu .itensMenu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    padding: 40px 0 0 32px;
    z-index: 20;
    background-color: rgba(246, 80, 9, 0.95);
  }
  .topo .menu .itensMenu li {
    margin: 0 0 32px;
  }
  .topo .menu .itensMenu li a {
    font-size: 24px;
    line-height: 24px;
    padding: 0;
    color: white;
  }
  .topo .menu .itensMenu li a img {
    filter: invert(1);
    width: 30px;
  }
  .topo .menu .itensMenu li .active {
    background-color: inherit;
  }
  .topo .menu .itensMenu li:last-child {
    margin: 0;
  }
  address {
    font-size: 16px;
  }
  .footer {
    padding-bottom: 100px;
  }
  .footer .wrapper {
    justify-content: center;
  }
  .footer .wrapper .itensFooter {
    display: none;
  }
  .footer .wrapper address {
    margin: 50px 0;
    text-align: center;
  }
  .footer .wrapper address img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .formulario {
    max-width: 100%;
    margin: auto;
  }
  .bannerHome {
    margin-top: 30px;
    padding: 0 0 10rem;
  }
  .bannerHome .slides li {
    height: auto;
    justify-content: center;
  }
  .bannerHome .slides li .contentBannerHome {
    flex-direction: column;
    align-content: center;
    text-align: center;
    background: none;
  }
  .bannerHome .slides li .contentBannerHome .titleBanner {
    font-size: 50px;
    line-height: 50px;
    margin: auto;
  }
  .bannerHome .slides li .contentBannerHome .txtDefault {
    font-size: 18px;
    margin: 10px 0;
  }
  .bannerHome .slides li .contentBannerHome .titles {
    font-size: 36px;
    line-height: 36px;
    margin: auto;
  }
  .bannerHome .slides li .contentBannerHome img {
    position: inherit;
    margin: 0 auto;
    max-width: 80%;
    right: inherit;
    top: inherit;
    transform: inherit;
  }
  .contentHome .resumoSobreHome .contentResumoSobreHome {
    margin-top: 30px;
  }
  .contatoHome .leftContatoHome {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .columnSobre {
    flex-direction: column;
  }
  .columnSobre .contentSobre {
    max-width: 100%;
  }
  .responsabilidadeSocial img {
    margin: auto;
  }
  .responsabilidadeSocial .txtResponsabilidadeSocial {
    text-align: center;
  }
  .produtos .listaProdutos li {
    flex-direction: column;
  }
  .produtos .listaProdutos li .descriptionProdutos {
    max-width: 100%;
    text-align: center;
    margin: 0;
  }
  .produtos .listaProdutos li .descriptionProdutos h3 {
    margin: 10px auto 0;
  }
  .produtos .listaProdutos li .descriptionProdutos .buttonsProdutos {
    flex-direction: column;
    margin: 10px auto 0;
  }
  .produtos .listaProdutos li .descriptionProdutos .buttonsProdutos a {
    margin: 5px 0;
  }
  .tabelasNutricionais {
    width: 90%;
  }
  .maisInfo {
    z-index: 35;
  }
  .maisInfo .formMaisInfo {
    width: 90%;
  }
  .bgModalMaisInfo {
    z-index: 30;
  }
  .contato {
    padding: 50px 0;
  }
  .contato .textoContato {
    max-width: 100%;
    margin: 0 auto 50px;
  }
}/*# sourceMappingURL=master.css.map */