@charset "UTF-8";
/* CSS RESET */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap");
a, abbr, acronym, address, applet, article, aside, audio,
b, blockquote, big, body, center, canvas, caption, cite, code, command,
datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, font, footer, form,
h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li,
meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup,
table, tbody, button, tfoot, thead, th, tr, tdvideo, tt, u, ul, var {
  background: transparent;
  border: 0 none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  list-style: none;
  outline: none;
}

a {
  text-decoration: none;
}

*:focus {
  outline: none;
}

strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: lighter;
}

body, input, select, textarea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

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

html, body {
  height: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper .inWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  padding-left: 40px;
  padding-right: 40px;
}

.btn {
  padding: 20px 30px;
  font-size: 20px;
  background: #f26622;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  -webkit-box-shadow: 2px 2px 20px rgba(242, 102, 34, 0.7);
          box-shadow: 2px 2px 20px rgba(242, 102, 34, 0.7);
}

.btn:hover {
  -webkit-box-shadow: 2px 2px 20px rgba(242, 102, 34, 0.9);
          box-shadow: 2px 2px 20px rgba(242, 102, 34, 0.9);
}

.btn:disabled {
  background: #cbcbcb;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btnSmall {
  padding: 14px 20px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  -webkit-box-shadow: 2px 2px 5px rgba(242, 102, 34, 0.4);
          box-shadow: 2px 2px 5px rgba(242, 102, 34, 0.4);
}

.btnSmall:hover {
  -webkit-box-shadow: 2px 2px 5px rgba(242, 102, 34, 0.6);
          box-shadow: 2px 2px 5px rgba(242, 102, 34, 0.6);
}

.btnNeg {
  background: white;
  color: #f26622;
  border: 3px solid white;
  padding: 14px 24px;
}

.btnNeg:hover {
  background: none;
  color: white;
}

h1 {
  font-size: 70px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #035285;
}

h2 {
  font-size: 38px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 40px;
  margin-bottom: 15px;
  color: #035285;
}

h3 {
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 34px;
  margin-bottom: 10px;
  color: #035285;
}

h4 {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 5px;
  color: #f26622;
}

p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #5c5c5c;
}

p a {
  color: #f26622;
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

header {
  position: absolute;
  z-index: 500;
  padding: 50px 0 50px 0;
}

header .inWrap {
  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;
}

header .inWrap .logoPrincipal {
  width: 350px;
  height: 60px;
  background: url(../imagens/logo-moldeterm.svg) no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
}

header .inWrap .menuPrincipal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .inWrap .menuPrincipal li a {
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-left: 60px;
}

header .inWrap .menuPrincipal .special a {
  color: #f26622;
}

header .inWrap .menuPrincipal .special a:hover {
  color: white;
}

header .inWrap .menuMobile {
  display: none;
  position: absolute;
  width: 100%;
  background: #26282b;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#26282b), to(#5c5c5c));
  background: linear-gradient(to right, #26282b 0%, #5c5c5c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$preto', endColorstr='$cinza',GradientType=1 );
  /* IE6-9 */
  top: 85px;
  left: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 999;
  padding: 15px 0;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
}

header .inWrap .menuMobile li {
  width: 100%;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .inWrap .menuMobile li a {
  padding: 15px 15px;
  color: white;
  font-size: 15px;
  width: 100%;
  height: 100%;
}

header .inWrap .trigger {
  margin-top: 10px;
  height: 60px;
  width: 70px;
  background: url(../imagens/menu.svg) no-repeat right center;
  background-size: contain;
  cursor: pointer;
  display: none;
}

.wrapper[data-bloco="mainHero"] {
  background: url(../imagens/banner-hero.jpg) no-repeat top center;
  background-size: cover;
  padding: 190px 0 0 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.wrapper[data-bloco="mainHero"] .mainTitle {
  height: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 180px;
}

.wrapper[data-bloco="mainHero"] .mainTitle h1 {
  width: 80%;
  font-size: 60px;
  color: #fff;
  letter-spacing: -2px;
  line-height: 65px;
  margin-bottom: 30px;
}

.wrapper[data-bloco="mainHero"] .mainTitle p {
  width: 60%;
  line-height: 28px;
  color: #fff;
  font-size: 18px;
}

.wrapper[data-bloco="bannerPaginaInterno"] {
  background: url(../imagens/banner-hero.jpg) no-repeat top center;
  background-size: cover;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 162px;
}

.wrapper[data-bloco="solucoesHome"] {
  background: #f1f1f1;
}

.wrapper[data-bloco="solucoesHome"] .inWrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -140px;
  position: relative;
}

.wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao {
  width: calc(33.3% - 10px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 145, 220, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: center;
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao .overlay h2 {
  color: white;
}

.wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 300px;
}

.wrapper[data-bloco="nossosDestaques"] {
  padding: 60px 0;
  background: #f1f1f1;
}

.wrapper[data-bloco="nossosDestaques"] .inWrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper[data-bloco="nossosDestaques"] .inWrap h3 {
  text-align: center;
  margin-bottom: 30px;
}

.wrapper[data-bloco="nossosDestaques"] .inWrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrapper[data-bloco="nossosDestaques"] .inWrap ul li {
  border: 1px solid #d8d8d8;
  margin: 0 10px 20px 10px;
  padding: 20px 25px;
  border-radius: 35px;
}

.wrapper[data-bloco="blocoQualidade"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.wrapper[data-bloco="blocoQualidade"] .col {
  width: 50%;
}

.wrapper[data-bloco="blocoQualidade"] img {
  min-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 450px;
}

.wrapper[data-bloco="blocoQualidade"] .col-conteudo {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.wrapper[data-bloco="blocoQualidade"] h4 {
  padding-top: 20px;
}

.wrapper[data-bloco="painelClientes"] {
  padding: 80px 0;
  border-top: 1px solid #f1f1f1;
}

.wrapper[data-bloco="painelClientes"] .inWrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper[data-bloco="painelClientes"] .inWrap h3 {
  text-align: center;
  margin-bottom: 30px;
}

.wrapper[data-bloco="painelClientes"] .inWrap .listaClientes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper[data-bloco="painelClientes"] .inWrap .listaClientes li {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper[data-bloco="painelClientes"] .inWrap .listaClientes li img {
  width: 100%;
  max-width: 250px;
}

.wrapper[data-bloco="contatoFooter"] {
  background: #26282b;
  padding: 80px 0;
}

.wrapper[data-bloco="contatoFooter"] .inWrap {
  max-width: 900px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper[data-bloco="contatoFooter"] .inWrap h3 {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.wrapper[data-bloco="contatoFooter"] .inWrap .col {
  width: 50%;
}

.wrapper[data-bloco="contatoFooter"] .inWrap form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper[data-bloco="contatoFooter"] .inWrap form fieldset {
  margin-bottom: 15px;
}

.wrapper[data-bloco="contatoFooter"] .inWrap form fieldset label {
  font-size: 12px;
  color: white;
}

.wrapper[data-bloco="contatoFooter"] .inWrap form fieldset input {
  width: 100%;
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #26282b;
  border-radius: 5px;
  border: none;
  margin-top: 3px;
}

.wrapper[data-bloco="contatoFooter"] .inWrap address {
  font-style: normal;
  padding: 0 40px;
}

.wrapper[data-bloco="contatoFooter"] .inWrap address p {
  color: white;
  margin-bottom: 0;
}

.wrapper[data-bloco="contatoFooter"] .inWrap address p span {
  font-size: 16px;
}

.wrapper[data-bloco="contatoFooter"] .inWrap address a {
  color: #f26622;
  margin-bottom: 0;
  font-size: 16px;
}

footer {
  padding: 30px 0;
  background: #26282b;
}

footer .inWrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .inWrap .menuRodape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .inWrap .menuRodape li {
  margin-right: 50px;
}

footer .inWrap .menuRodape li a {
  color: white;
}

footer .inWrap .menuRodape .whatsapp {
  background: url(../imagens/i-whatsapp.svg) left center no-repeat;
  background-size: contain;
  padding-left: 30px;
}

footer .inWrap .menuRodape .whatsapp a {
  color: #57af01;
}

footer .inWrap .cubi {
  padding-left: 30px;
  background: url(../imagens/i-cubi.svg) no-repeat left center;
  background-size: 22px;
  font-size: 12px;
  color: white;
  opacity: 0.2;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

footer .inWrap .cubi:hover {
  opacity: 0.8;
}

/**** Páginas internas **/
.tituloPagina {
  background: url(../imagens/bg-header.jpg) no-repeat top center;
  padding: 220px 0 30px 0;
  border-bottom: 1px solid #e4e4e4;
}

.tituloPagina .inWrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/**** Blog **/
.blogGeral {
  padding: 60px 0;
}

.blogGeral .inWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blogGeral .inWrap article {
  width: calc(100% / 4 - 20px);
  margin-bottom: 40px;
}

.blogGeral .inWrap article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blogGeral .inWrap article a img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.blogGeral .inWrap article a h2 {
  margin-top: 10px;
  padding-left: 5px;
}

.blogGeral .inWrap article a p {
  padding: 0 10px 0 5px;
  font-size: 12px;
}

.blogGeral .inWrap article:nth-of-type(2) {
  width: calc(100% / 2 - 20px);
}

.blogGeral .inWrap article:nth-of-type(6) {
  width: calc(100% / 2 - 20px);
}

.blogGeral .inWrap article:nth-of-type(8) {
  width: calc(100% / 2 - 20px);
}

.blogGeral .inWrap article:nth-of-type(12) {
  width: calc(100% / 2 - 20px);
}

.blogGeral .inWrap[data-bloco="paginacao"] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 3px;
  border-radius: 50%;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d8d8d8;
  text-align: center;
  color: #035285;
  font-size: 18px;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul li:hover a {
  background: #157fc3;
  color: white;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul li .atual {
  background: #d8d8d8;
  border: 2px solid #035285;
}

.blogGeral .inWrap[data-bloco="paginacao"] ul li .atual:hover {
  background: #d8d8d8;
  color: #035285;
  cursor: default;
}

.blogPost {
  padding: 60px 0;
}

.blogPost .inWrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blogPost .inWrap article {
  width: calc(100% - 380px);
}

.blogPost .inWrap article .capaBlog {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
  border-radius: 10px;
}

.blogPost .inWrap article p {
  font-size: 14px;
  line-height: 32px;
}

.blogPost .inWrap article ul {
  margin-bottom: 20px;
  padding-left: 10px;
}

.blogPost .inWrap article ul li {
  line-height: 24px;
  color: #5c5c5c;
  margin-bottom: 8px;
  list-style: inside disc;
}

.blogPost .inWrap aside {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blogPost .inWrap aside .chamadaOrcamento {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 10px;
  background: #035285;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 25px;
}

.blogPost .inWrap aside .chamadaOrcamento img {
  width: 100px;
  margin-bottom: 15px;
}

.blogPost .inWrap aside .chamadaOrcamento p {
  color: white;
  text-align: center;
}

.blogPost .inWrap aside .chamadaOrcamento .link {
  background: url(../imagens/i-whatsapp.svg) left center no-repeat;
  background-size: contain;
  padding-left: 30px;
  color: #57af01;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
}

.blogPost .inWrap aside .vejaMais {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.blogPost .inWrap aside .vejaMais li {
  width: 100%;
  margin-bottom: 20px;
}

.blogPost .inWrap aside .vejaMais li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blogPost .inWrap aside .vejaMais li a img {
  width: 60px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.blogPost .inWrap aside .vejaMais li a p {
  font-size: 14px;
  margin-bottom: 0;
}

.textoSobre {
  padding: 0 0 80px 0;
  padding-left: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: none !important;
}

.textoSobre .imagemSobre {
  width: 40%;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
}

.textoSobre .conteudoSobre {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  padding: 80px 80px 0 30px;
}

.textoSobre .conteudoSobre p {
  line-height: 34px;
}

.itensSobre {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.itensSobre .itemSobre {
  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;
  text-align: center;
  width: 33.33%;
  height: 300px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 30px;
}

.itensSobre .itemSobre:nth-child(1) {
  background-position: left;
}

.itensSobre .itemSobre:nth-child(3) {
  background-position: right;
}

.itensSobre .itemSobre:nth-child(5) {
  background-position: center;
}

.itensSobre .imgSobre {
  width: 33.33%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.diferenciaisSobre {
  padding: 80px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.diferenciaisSobre .textoDiferenciais {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.diferenciaisSobre .textoDiferenciais h3 {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 20px;
}

.diferenciaisSobre .textoDiferenciais p {
  padding: 0 60px;
  max-width: 900px;
}

.diferenciaisSobre ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.diferenciaisSobre ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 45%;
  height: auto;
  border-radius: 5px;
  padding: 20px;
  text-align: left;
  margin: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.diferenciaisSobre ul li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  height: auto;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #ccc;
  float: left;
  margin: 0 15px 0 0;
}

.diferenciaisSobre ul li i img {
  width: 30px;
  height: 30px;
  -webkit-filter: invert(30%);
          filter: invert(30%);
}

.diferenciaisSobre ul li:nth-child(1), .diferenciaisSobre ul li:nth-child(3), .diferenciaisSobre ul li:nth-child(5), .diferenciaisSobre ul li:nth-child(7) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}

.diferenciaisSobre ul li:nth-child(1) i, .diferenciaisSobre ul li:nth-child(3) i, .diferenciaisSobre ul li:nth-child(5) i, .diferenciaisSobre ul li:nth-child(7) i {
  margin: 0 0 0 15px;
}

.conteudoSolucoes {
  padding: 40px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: url(../imagens/fundotexto.png) no-repeat;
  background-size: contain;
  background-origin: content-box;
}

.conteudoSolucoes .menuSolucoes {
  width: 100%;
  margin-bottom: 40px;
  margin-top: 40px;
}

.conteudoSolucoes .menuSolucoes ul {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.conteudoSolucoes .menuSolucoes ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 30px 20px;
  background-color: white;
  color: white;
  font-size: 24px;
  color: #035285;
  border-right: 1px solid #e4e4e4;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
}

.conteudoSolucoes .menuSolucoes ul a:last-of-type {
  border: none;
}

.conteudoSolucoes .menuSolucoes ul a:hover {
  background-color: #f1f1f1;
}

.conteudoSolucoes .menuSolucoes ul:hover {
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.conteudoSolucoes .infoSolucoes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid gainsboro;
  padding: 60px 0;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes .imagemSolucoes {
  background-size: cover;
  background-repeat: no-repeat;
  width: 30%;
  min-height: 320px;
  border-radius: 20px;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes .textoSolucoes {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 70%;
  padding: 0 40px;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes .textoSolucoes ul {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #5c5c5c;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes .textoSolucoes ul li {
  padding: 0 0 0 20px;
  margin-bottom: 10px;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="ConfeccaoMoldes"] .imagemSolucoes {
  background-image: url(../imagens/solucoes-confeccao-moldes.jpg);
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="ConfeccaoMoldes"] .textoSolucoes p {
  padding: 0;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="ConfeccaoMoldes"] .textoSolucoes p strong {
  padding: 0;
  line-height: 10px;
  text-transform: uppercase;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="revestimento"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="revestimento"] .imagemSolucoes {
  background: url(../imagens/solucoes-revestimentos.jpg) no-repeat center;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="revestimento"] .textoSolucoes ul li {
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 15px;
  background-image: url(../imagens/check.svg);
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="usinagem"] {
  border-bottom: none;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="usinagem"] .imagemSolucoes {
  background: url(../imagens/solucoes-usinagem.jpg) no-repeat center;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="usinagem"] .textoSolucoes ul li {
  padding: 0;
}

.conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="usinagem"] .textoSolucoes ul li strong {
  padding-right: 7px;
  color: #035285;
  font-size: 30px;
}

.nossosBeneficios {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nossosBeneficios p {
  font-size: 16px;
  margin: 0 20px;
  max-width: 250px;
  text-align: center;
}

.nossosBeneficios span {
  background: url(../imagens/arrow.png) no-repeat center;
  background-size: contain;
  width: 45px;
  height: 100px;
}

.avisoValida {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.avisoValida p {
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
}

.avisoValida[data-status="sucesso"] {
  border: 1px solid #08cb8d;
  background: rgba(8, 203, 141, 0.2);
}

.avisoValida[data-status="erro"] {
  border: 1px solid #d03816;
  background: rgba(208, 56, 22, 0.2);
}

@media only screen and (max-width: 768px) {
  .wrapper .inWrap {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 998;
    padding: 10px 0;
    margin: 0;
  }
  header .inWrap .logoPrincipal {
    width: 150px;
    height: 40px;
  }
  header .inWrap .menuPrincipal {
    display: none;
  }
  header .inWrap .trigger {
    display: block;
    padding: 0;
  }
  .wrapper[data-bloco="mainHero"] {
    padding: 80px 0 0 0;
  }
  .wrapper[data-bloco="mainHero"] .mainTitle {
    padding-top: 70px;
    padding-bottom: 180px;
  }
  .wrapper[data-bloco="mainHero"] .mainTitle h1 {
    width: 100%;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    text-align: center;
  }
  .wrapper[data-bloco="mainHero"] .mainTitle p {
    width: 100%;
    text-align: center;
  }
  .wrapper[data-bloco="solucoesHome"] .inWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao {
    width: 100%;
    margin-bottom: 10px;
  }
  .wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao .overlay h2 {
    font-size: 25px;
  }
  .wrapper[data-bloco="solucoesHome"] .inWrap .itemSolucao img {
    height: 200px;
  }
  .wrapper[data-bloco="nossosDestaques"] {
    padding: 30px 0;
  }
  .wrapper[data-bloco="nossosDestaques"] .inWrap ul li {
    text-align: center;
  }
  .wrapper[data-bloco="blocoQualidade"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrapper[data-bloco="blocoQualidade"] .col {
    width: 100%;
  }
  .wrapper[data-bloco="blocoQualidade"] .col-conteudo {
    padding: 40px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrapper[data-bloco="blocoQualidade"] .col-conteudo h3, .wrapper[data-bloco="blocoQualidade"] .col-conteudo p {
    text-align: center;
    width: 100%;
  }
  .wrapper[data-bloco="painelClientes"] {
    padding: 40px 0;
  }
  .wrapper[data-bloco="painelClientes"] .inWrap .listaClientes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper[data-bloco="painelClientes"] .inWrap .listaClientes li {
    width: 100%;
  }
  .wrapper[data-bloco="contatoFooter"] {
    background: #26282b;
    padding: 20px 0;
  }
  .wrapper[data-bloco="contatoFooter"] .inWrap {
    max-width: 100%;
  }
  .wrapper[data-bloco="contatoFooter"] .inWrap .col {
    width: 100%;
  }
  .wrapper[data-bloco="contatoFooter"] .inWrap form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper[data-bloco="contatoFooter"] .inWrap form fieldset {
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .wrapper[data-bloco="contatoFooter"] .inWrap address {
    padding: 20px 30px;
    text-align: center;
  }
  footer .inWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .inWrap .menuRodape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  footer .inWrap .menuRodape li {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .inWrap .menuRodape li a {
    width: 100% !important;
    height: 100% !important;
    padding: 20px 0;
  }
  footer .inWrap .cubi {
    padding-left: 30px;
    background: url(../img/i-cubi.svg) no-repeat left center;
    background-size: 22px;
    font-size: 12px;
    color: white;
    opacity: 0.2;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
  footer .inWrap .cubi:hover {
    opacity: 0.8;
  }
  .wrapper[data-bloco="bannerPaginaInterno"] {
    height: 100px;
  }
  .textoSobre {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .textoSobre .imagemSobre {
    display: none;
  }
  .textoSobre .conteudoSobre {
    width: 100%;
    padding: 20px;
  }
  .textoSobre .conteudoSobre h2 {
    text-align: center;
  }
  .textoSobre .conteudoSobre p {
    line-height: 34px;
    text-align: center;
  }
  .itensSobre {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .itensSobre .itemSobre {
    width: 100%;
    height: 150px;
  }
  .itensSobre .imgSobre {
    display: none;
  }
  .diferenciaisSobre {
    padding: 40px 0;
  }
  .diferenciaisSobre .textoDiferenciais p {
    padding: 0;
    max-width: 100%;
  }
  .diferenciaisSobre ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .diferenciaisSobre ul li {
    width: 100%;
  }
  .diferenciaisSobre ul li:nth-child(1), .diferenciaisSobre ul li:nth-child(3), .diferenciaisSobre ul li:nth-child(5), .diferenciaisSobre ul li:nth-child(7) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
  .diferenciaisSobre ul li:nth-child(1) i, .diferenciaisSobre ul li:nth-child(3) i, .diferenciaisSobre ul li:nth-child(5) i, .diferenciaisSobre ul li:nth-child(7) i {
    margin: 0 15px 0 0;
  }
  .conteudoSolucoes {
    padding: 40px 0;
  }
  .conteudoSolucoes .menuSolucoes {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .conteudoSolucoes .menuSolucoes ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .conteudoSolucoes .menuSolucoes ul a {
    -webkit-transition: none;
    transition: none;
  }
  .conteudoSolucoes .menuSolucoes ul a:last-of-type {
    border: none;
  }
  .conteudoSolucoes .menuSolucoes ul a:hover {
    background-color: none;
  }
  .conteudoSolucoes .menuSolucoes ul:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none;
  }
  .conteudoSolucoes .infoSolucoes .blocoSolucoes {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0;
  }
  .conteudoSolucoes .infoSolucoes .blocoSolucoes .imagemSolucoes {
    width: 100%;
    min-height: 150px;
  }
  .conteudoSolucoes .infoSolucoes .blocoSolucoes .textoSolucoes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 20px;
  }
  .conteudoSolucoes .infoSolucoes .blocoSolucoes[data-bloco="revestimento"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nossosBeneficios {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nossosBeneficios p {
    max-width: 100%;
  }
  .nossosBeneficios span {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
/*# sourceMappingURL=style.css.map */