@charset "UTF-8";
/* CLASSES GLOBAIS */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
.has-error {
  border-color: red !important;
}

html.resize {
  width: 100%;
  height: 100%;
}
html.resize body {
  width: 100%;
  height: 100%;
}
html.resize body main {
  width: 100%;
  height: 100%;
}

@media (min-width: 991px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.container {
  max-width: 1350px;
}
.container.big {
  max-width: 1500px;
}
.container.grandao {
  max-width: 1760px;
}

ul.no-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}
a:hover, a:focus, a:active, a:focus {
  text-decoration: none;
}

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #cacaca;
  margin-right: 10px;
  border: none;
  outline: none;
  transition: 0.3s all;
}
.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #8f8f8f;
}

/*  Validação   */
.ng-invalid-required.ng-touched,
.campo-invalido {
  border-color: #dc3545 !important;
}

/* VARIAVEIS GLOBAIS DO PROJETO */
.card-produto {
  border: 1px solid lightgray;
  overflow: hidden;
  position: relative;
  background-color: white;
  height: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 60px 60px 0 0;
}
.card-produto:after {
  content: url("../image/ondinha.png");
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  pointer-events: none;
}
.card-produto.small .botoes .ver-produtos {
  font-size: 13px;
}
.card-produto.small .botoes .orcamento {
  padding: 10px 18px;
  font-size: 15px;
}
.card-produto .botoes {
  display: flex;
  text-align: center;
}
.card-produto .botoes .ver-produtos {
  background-color: #0036bd;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  display: block;
  transition: 0.3s all;
  position: relative;
}
.card-produto .botoes .ver-produtos::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 7px;
  height: 100%;
  pointer-events: none;
  background-color: #0036bd;
  transition: 0.3s all;
}
.card-produto .botoes .ver-produtos:hover {
  background-color: #5e5b57;
}
.card-produto .botoes .ver-produtos:hover::after {
  background-color: #5e5b57;
}
.card-produto .botoes .orcamento {
  background-color: #ff5d00;
  font-size: 16px;
  flex: 1;
  color: white;
  display: block;
  padding: 10px 20px;
  transition: 0.3s all;
}
.card-produto .botoes .orcamento:hover {
  background-color: #eb1e0e;
}
.card-produto .imagem {
  height: 350px;
  padding: 0 10px 20px 10px;
  margin-top: 15px;
  background-size: 100% 100%;
}
.card-produto .imagem img {
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-produto .botao-zap {
  background: #4baa2b;
  color: white;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: 500;
  padding: 10px;
  transition: 0.3s all;
}
.card-produto .botao-zap:hover {
  background-color: #318116;
}
.card-produto .botao-zap i {
  margin-right: 5px;
}
.card-produto .btn-carrinho {
  background: #f7c800;
  color: #622824;
  text-align: center;
  display: block;
  padding: 10px 30px;
  transition: 0.3s all;
}
.card-produto .btn-carrinho:hover {
  background-color: #ffdb41;
}
.card-produto .btn-carrinho .fa-spin {
  display: none;
}
.card-produto .btn-carrinho.loading .fa-shopping-cart {
  display: none;
}
.card-produto .btn-carrinho.loading .fa-spin {
  display: inline-block;
}
.card-produto .conteudo {
  padding: 0 5px;
  text-align: center;
  flex: 1;
}
.card-produto .conteudo h3 {
  font-size: 18px;
  text-transform: uppercase;
}
.card-produto .conteudo .preco {
  color: #0036bd;
  font-size: 22px;
  margin-top: 20px;
}
.card-produto .conteudo h2 {
  color: #0036bd;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 991px) {
  .card-produto .conteudo {
    margin-top: 0;
    padding: 20px;
  }
  .card-produto .conteudo h2 {
    font-size: 20px;
    margin-bottom: 0;
  }
  .card-produto .conteudo h3 {
    font-size: 16px;
  }
  .card-produto .conteudo .preco {
    font-size: 18px;
    margin-top: 15px;
  }
  .card-produto .botoes .orcamento {
    font-size: 14px;
    flex-grow: 1;
  }
  .card-produto .botoes .ver-produtos {
    padding: 10px 20px;
  }
  .card-produto .imagem {
    height: 250px;
  }
  .card-produto .imagem img {
    -o-object-position: center;
       object-position: center;
  }
}

.card-destaque {
  background-color: #f7f7f7;
  border: 1px solid lightgray;
  margin-top: 70px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  height: calc(100% - 70px);
}
.card-destaque .botoes {
  display: flex;
  align-items: center;
}
.card-destaque .botoes .btn-orcamento {
  background-color: #ff5d00;
  font-weight: 400;
  color: white;
  font-size: 16px;
  padding: 10px 25px;
  transition: 0.3s all;
}
.card-destaque .botoes .btn-orcamento:hover {
  background-color: #d94f00;
}
.card-destaque .botoes .btn-zap {
  text-align: center;
  background-color: #4baa2b;
  font-weight: 500;
  color: white;
  font-size: 16px;
  padding: 10px 25px;
  flex: 1;
  transition: 0.3s all;
}
.card-destaque .botoes .btn-zap:hover {
  background-color: #398121;
}
.card-destaque .botoes .btn-produtos {
  background-color: #0036bd;
  font-weight: 300;
  color: white;
  font-size: 16px;
  padding: 10px 25px;
  transition: 0.3s all;
}
.card-destaque .botoes .btn-produtos:hover {
  background-color: #042a89;
}
.card-destaque .btn-carrinho {
  color: #ff5d00;
  border: 2px solid #ff5d00;
  display: inline-block;
  padding: 8px 15px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s all;
}
.card-destaque .btn-carrinho:hover {
  color: white;
  background-color: #ff5d00;
}
.card-destaque .btn-carrinho .fa-spin {
  display: none;
}
.card-destaque .btn-carrinho.loading .fa-shopping-cart {
  display: none;
}
.card-destaque .btn-carrinho.loading .fa-spin {
  display: inline-block;
}
.card-destaque .texto {
  padding: 40px 10px;
}
.card-destaque .texto ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 110px;
}
.card-destaque .texto ul li {
  padding: 0;
  margin: 0;
}
.card-destaque .texto ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #339ecd;
  margin-right: 5px;
}
.card-destaque .texto h1 {
  font-weight: 700;
  color: #0036bd;
  font-size: 36px;
  margin-bottom: 0;
}
.card-destaque .texto h3 {
  font-size: 24px;
  font-weight: 600;
}
.card-destaque .foto {
  width: 100%;
  background-image: url("../image/bg-destaque.png");
  background-size: 100% 100%;
  height: 393px;
  padding: 10px 60px 10px 10px;
  border-top-left-radius: 30px;
}
.card-destaque .foto img {
  width: 100%;
  height: calc(100% + 50px);
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -50px;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  .card-destaque {
    border-radius: 0;
    margin-top: 30px;
    height: auto;
  }
  .card-destaque .texto {
    padding: 20px 10px;
  }
  .card-destaque .texto h1 {
    font-size: 20px;
  }
  .card-destaque .texto h3 {
    font-size: 16px;
  }
  .card-destaque .botoes {
    flex-wrap: wrap;
  }
  .card-destaque .botoes .btn-orcamento,
  .card-destaque .botoes .btn-zap,
  .card-destaque .botoes .btn-produtos {
    width: 100%;
    flex: 1;
    text-align: center;
    font-size: 15px;
  }
  .card-destaque .botoes .btn-zap {
    flex: 0 1 100%;
  }
  .card-destaque .foto {
    background: white;
    border-bottom: 1px solid lightgray;
    padding: 20px;
    border-radius: 0;
    margin: 0;
    height: 250px;
  }
  .card-destaque .foto img {
    margin-top: 0;
    height: 100%;
  }
}

.row-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-cta {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  font-weight: 500;
  font-size: 18px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgb(246, 158, 0) 0%, rgb(255, 93, 0) 100%);
  border-bottom: 5px solid #f69e00;
  transition: 0.3s all;
}
.main-cta.zap {
  background: linear-gradient(90deg, rgb(75, 170, 43) 0%, rgb(15, 106, 3) 100%);
  border-color: #4baa2b;
}
.main-cta:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.3);
}
.main-cta.primary {
  background: linear-gradient(90deg, rgb(51, 158, 205) 0%, rgb(36, 48, 120) 100%);
  border-color: #339ecd;
}
@media (max-width: 991px) {
  .main-cta {
    font-size: 16px;
    padding: 7px 20px;
  }
}

.main-phone {
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
}
.main-phone:hover {
  transform: translateY(-2px);
}
.main-phone .icon {
  flex: 0 0 45px;
  color: #339ecd;
  border: 2px solid lightgray;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
}
.main-phone span {
  text-align: left;
  font-size: 17px;
  color: black;
  line-height: 1.3;
  font-weight: 300;
}
.main-phone span strong {
  font-weight: 500;
  display: block;
  font-size: 18px;
  color: #339ecd;
}
.main-phone.zap .icon {
  color: #4baa2b;
}
@media (max-width: 991px) {
  .main-phone .icon {
    font-size: 13px;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }
  .main-phone span {
    font-size: 15px;
    font-weight: 400;
  }
  .main-phone span strong {
    font-size: 15px;
    display: block;
    margin-left: 0;
  }
}

body {
  font-size: 1em;
  font-family: "Rubik", sans-serif;
  text-rendering: optimizeLegibility;
  /* MODAL */
}
body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body section.header .categorias-mobile {
  display: none;
}
body section.header .categorias-mobile .btn-open {
  display: block;
  color: white;
  font-weight: 500;
  background: #0036bd;
  font-size: 15px;
  text-align: center;
  padding: 12px 20px;
}
body section.header .categorias-mobile .in-categorias {
  background-color: #00247e;
  padding: 10px;
}
body section.header .categorias-mobile .in-categorias a {
  color: white;
  padding: 5px 20px;
  display: block;
  text-align: center;
  font-weight: 400;
  transition: 0.3s all;
  font-size: 15px;
}
body section.header .categorias-mobile .in-categorias a i {
  color: #ff5d00;
}
body section.header .topo {
  background-image: url("../image/bg-topo.png");
  background-size: cover;
  padding: 7px 0;
}
body section.header .topo .social {
  display: inline-block;
  margin-right: 20px;
}
body section.header .topo .social a {
  color: white;
  margin-right: 20px;
}
body section.header .topo .menu a {
  margin-right: 25px;
  color: white;
  text-transform: uppercase;
  position: relative;
}
body section.header .topo .menu a:hover::before {
  width: 100%;
  opacity: 1;
}
body section.header .topo .menu a:before {
  width: 0;
  opacity: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background-color: white;
  content: "";
  transition: 0.5s all;
}
body section.header .topo .menu a:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  body section.header #menu-topo.fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid #339ecd;
  }
  body section.header #menu-topo.fixo .categorias a {
    padding: 9px 0;
    font-size: 16px;
  }
  body section.header #menu-topo.fixo .categorias a img {
    height: 20px;
  }
  body section.header #menu-topo.fixo .categorias .item .menu-dropdown {
    width: 200px;
  }
  body section.header #menu-topo.fixo .categorias .item .menu-dropdown .item-in {
    font-size: 13px;
    padding: 10px;
  }
}
body section.header .principal {
  background-image: url("../image/bg-header.png");
  background-size: cover;
  padding: 20px 0;
}
body section.header .principal .btn-revendedor {
  display: inline-block;
  padding: 8px 26px;
  font-weight: 500;
  font-size: 17px;
  border-radius: 5px;
  border: 2px solid #f69e00;
  transition: 0.3s all;
  background-color: #f69e00;
  color: white;
}
body section.header .principal .btn-revendedor:hover {
  background-color: transparent;
  color: #f69e00;
}
@media (max-width: 991px) {
  body section.header .principal .btn-revendedor {
    font-size: 15px;
    margin-top: 10px;
  }
}
body section.header .principal .btn-carrinho {
  color: #ff5d00;
  font-weight: 500;
  position: relative;
}
body section.header .principal .btn-carrinho .qtd {
  position: absolute;
  left: 37px;
  top: 2px;
  color: white;
  font-size: 12px;
  width: 16px;
  text-align: center;
}
body section.header .principal .btn-carrinho img {
  vertical-align: middle;
  margin-right: 8px;
}
body section.header .principal .btn-carrinho i {
  color: #339ecd;
  margin-left: 5px;
}
body section.header .principal .btn-orcamento {
  display: block;
  color: #ff5d00;
  border: 2px solid #ff5d00;
  border-radius: 5px;
  text-align: center;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s all;
}
body section.header .principal .btn-orcamento.big {
  padding: 10px 35px;
}
body section.header .principal .btn-orcamento:hover {
  transform: translateY(-2px);
  background-color: #ff5d00;
  color: white;
}
body section.header .principal .btn-orcamento:hover .icon {
  background-color: white;
  color: #ff5d00;
}
body section.header .principal .btn-orcamento .icon {
  transition: 0.3s all;
  color: white;
  background-color: #ff5d00;
  border-radius: 100%;
  font-size: 13px;
  padding: 5px 9px;
  margin-right: 5px;
}
body section.header .principal .btn-orcamento .seta {
  margin-left: 7px;
  font-size: 20px;
  vertical-align: middle;
}
body section.header .principal .phones {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body section.header .principal .logo {
  width: 100%;
}
body section.header .principal form {
  position: relative;
}
body section.header .principal form input {
  width: 100%;
  padding: 10px 30px;
  outline: none;
  font-weight: 500;
  border-radius: 20px;
  font-size: 16px;
  border: 1px solid lightgray;
}
body section.header .principal form button {
  position: absolute;
  right: 0;
  top: 0;
  color: white;
  background-color: #243078;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  border: none;
  border-radius: 20px;
}
body section.header .categorias {
  background: linear-gradient(90deg, rgb(51, 158, 205) 0%, rgb(3, 78, 191) 100%);
}
body section.header .categorias .in-menu {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
body section.header .categorias .in-menu .item {
  position: relative;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
body section.header .categorias .in-menu .item:hover .menu-dropdown {
  display: block;
}
body section.header .categorias .in-menu .item a {
  text-transform: uppercase;
  padding: 15px 10px;
  font-size: 17px;
  color: white;
  display: block;
  font-weight: 500;
  transition: 0.3s all;
  transition: all 0.3s;
}
body section.header .categorias .in-menu .item a img {
  margin-right: 7px;
  margin-bottom: 3px;
  transition: 0.3s all;
  max-width: 39px;
  max-height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  transition: all 1s;
}
body section.header .categorias .in-menu .item:hover {
  background-color: #0036bd;
}
body section.header .categorias .in-menu .item:hover a {
  color: #4c4c4c;
}
body section.header .categorias .in-menu .item:hover a.link-principal {
  color: white;
}
body section.header .categorias .in-menu .item:hover a img {
  filter: grayscale(1) brightness(100);
  transform: rotateY(360deg);
}
body section.header .categorias .in-menu .item .menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: whitesmoke;
  border: 1px solid #c9c9c9;
}
body section.header .categorias .in-menu .item .menu-dropdown .item-in {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: 0.2s all;
  padding: 13px 15px;
  color: #383838;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
}
body section.header .categorias .in-menu .item .menu-dropdown .item-in:hover {
  color: white;
  background-color: #0036bd;
}
body section.header .categorias .sep {
  width: 2px;
  background-color: gainsboro;
}
@media (max-width: 991px) {
  body section.header .categorias-mobile {
    display: block;
  }
  body section.header .principal .logo {
    display: block;
    max-width: 150px;
    margin: auto;
    margin-bottom: 15px;
  }
  body section.header .principal .btn-orcamento {
    font-size: 15px;
    padding: 5px 15px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  body section.header .principal .btn-orcamento .seta {
    font-size: 18px;
  }
  body section.header .principal .btn-carrinho {
    display: none;
  }
  body section.header .principal form {
    display: none;
  }
  body section.header .principal .phones {
    flex-wrap: wrap;
    justify-content: center;
  }
  body section.header .principal .phones .main-phone {
    margin: 5px;
  }
}
body section.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: white;
}
body section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #0036bd;
  animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
body .modal-backdrop.show {
  opacity: 0.8;
  width: 100% !important;
  height: 100% !important;
}
body .modal-lg {
  max-width: 600px;
}
body .modal .close-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
body .modal-content {
  border-radius: 10px !important;
  background-color: white;
}
body .modal-content .closebtn {
  outline: none;
  color: white;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -40px;
  border: none;
  cursor: pointer;
  z-index: 2;
  text-shadow: none;
  font-weight: 500;
  opacity: 1;
  font-size: 15px;
}
body .modal-content .closebtn:hover {
  color: white !important;
}
@media (max-width: 991px) {
  body .modal-content .closebtn {
    position: static;
    font-size: 14px;
    margin-top: 20px;
    padding-right: 20px;
    text-align: right;
    color: #23494a !important;
  }
}
body .modal-body {
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
body .modal-body .enviar {
  color: #0036bd;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #0036bd;
}
body .modal-body .enviar i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body .modal-body .conteudo-modal {
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: dimgray;
}
body .modal-body .conteudo-modal h1 {
  color: #0036bd;
  font-size: 32px;
  font-weight: 500;
}
body .modal-body.video {
  border-radius: 0;
  min-height: 650px;
  padding: 0;
}
@media (max-width: 991px) {
  body .modal-body.video {
    min-height: 360px;
  }
}
body .modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
body .modal-body form label {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
body .modal-body form button {
  margin-top: 15px !important;
}
body .modal-body form input,
body .modal-body form select,
body .modal-body form textarea {
  width: 100%;
  border: 1px solid gainsboro;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
}
body .modal-body form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body .modal-body form textarea {
  min-height: 100px;
  resize: vertical;
}
body .modal-body form .box-file .text {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: black;
}
body .modal-body form .box-file .flex-box {
  display: flex;
  margin-top: 5px;
  cursor: pointer;
}
body .modal-body form .box-file .flex-box .name-file {
  border: 1px solid #dfdfdf;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 500;
  color: #565656;
  outline: none;
  min-height: 49px;
  background-color: #f7f7f7;
  width: 100%;
}
body .modal-body form .box-file .flex-box .selecionar {
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #008af2;
  border-radius: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  body .modal-body {
    padding: 15px 0px;
    background-image: none;
  }
  body .modal-body h4 {
    font-size: 18px;
    text-align: center;
  }
  body .modal-body .conteudo-modal {
    font-size: 14px;
  }
  body .modal-body .conteudo-modal h1 {
    font-size: 22px;
  }
  body .modal-body form label {
    font-size: 16px;
  }
  body .modal-body form input,
  body .modal-body form select,
  body .modal-body form textarea {
    font-size: 15px;
    padding: 10px;
  }
  body .modal-body form .box-file .text {
    font-size: 12px;
  }
  body .modal-body form .box-file .flex-box .name-file {
    padding: 10px;
    font-size: 12px;
  }
  body .modal-body form .box-file .flex-box .selecionar {
    font-size: 13px;
  }
}
body section.formulario-enviado {
  padding: 60px 0;
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body section.formulario-enviado .box-in h5 {
  font-size: 17px;
  font-weight: 400;
  max-width: 400px;
  margin-top: 20px;
  color: gray;
}
body section.formulario-enviado .box-in a {
  color: #0036bd;
  font-weight: 500;
}
body section.formulario-enviado .box-in .btn-voltar {
  color: #0036bd;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #0036bd;
  transition: 0.3s all;
}
body section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #0036bd;
  color: white;
}
body section.formulario-enviado .box-in .btn-voltar i {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 15px;
}
body section.formulario-enviado .box-in h3 {
  font-size: 20px;
  font-weight: 300;
  color: gray;
}
body section.formulario-enviado .box-in .logo {
  width: 70px;
  margin-bottom: 25px;
}
body section.formulario-enviado .box-in h1 {
  font-size: 75px;
  font-weight: 400;
  line-height: 1;
  color: #0036bd;
}
body section.formulario-enviado .box-in h1 strong {
  display: block;
  font-weight: 400;
  color: #ff5d00;
}
body section.formulario-enviado img {
  width: 100%;
}
@media (max-width: 991px) {
  body section.formulario-enviado {
    padding: 30px 0;
    text-align: center;
  }
  body section.formulario-enviado .container {
    position: relative;
    z-index: 2;
  }
  body section.formulario-enviado img {
    margin: auto;
    display: block;
    margin-top: 15px;
    max-width: 200px;
  }
  body section.formulario-enviado .box-in .logo {
    width: 50px;
    margin-top: 0;
  }
  body section.formulario-enviado .box-in .btn-voltar {
    font-size: 13px;
    margin: 10px 0;
  }
  body section.formulario-enviado .box-in h3 {
    font-size: 16px;
  }
  body section.formulario-enviado .box-in h5 {
    font-size: 15px;
  }
  body section.formulario-enviado .box-in h1 {
    font-size: 28px;
  }
  body section.formulario-enviado .box-in h1 strong {
    display: inline;
  }
}
body .politica-termos {
  padding: 120px 0 60px 0px;
  margin-top: -90px;
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body .politica-termos h1,
body .politica-termos h2,
body .politica-termos h3,
body .politica-termos h4,
body .politica-termos h5,
body .politica-termos h6 {
  color: #0036bd;
}
body .politica-termos strong,
body .politica-termos b {
  color: #0036bd;
}
@media (max-width: 991px) {
  body .politica-termos {
    padding: 20px 0px;
    font-size: 15px;
    margin-top: 0;
  }
  body .politica-termos h1 {
    font-size: 22px;
  }
}
body header section.barra-lgpd {
  padding: 0 15px;
  background-color: #eeeeee;
  border-bottom: 1px solid gainsboro;
  font-size: 12px;
  width: 100%;
  z-index: 502;
  color: gray;
  display: none;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  body header section.barra-lgpd {
    border: none;
    padding: 10px;
    bottom: 57px;
    position: fixed;
    top: auto;
  }
  body header section.barra-lgpd .container {
    padding: 0;
  }
}
body header section.barra-lgpd.exibir {
  display: block;
}
body header section.barra-lgpd .row,
body header section.barra-lgpd .container {
  max-width: 1420px !important;
  margin: auto;
  justify-content: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in,
body header section.barra-lgpd .container .conteudo-lgpd-in {
  display: flex;
  align-items: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in {
  width: 100%;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in a,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in a {
  color: gray;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted gray;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  padding: 5px 10px;
  margin: 5px 0 5px 15px;
  color: gray;
  border: 1px solid gray;
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
  transition: all 0.3s;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button:hover,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  body header section.barra-lgpd .row .conteudo-lgpd-in,
  body header section.barra-lgpd .container .conteudo-lgpd-in {
    flex-direction: column;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in,
  body header section.barra-lgpd .container .conteudo-lgpd-in .button-in {
    text-align: center;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
  body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
    margin-top: 10px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  body main.compensar {
    margin-top: 60px;
  }
}
body main section.header-conteudo {
  background-size: cover;
  background-position: bottom;
  padding: 40px 0 120px 0;
  color: white;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.2;
  background-repeat: no-repeat;
  position: relative;
}
body main section.header-conteudo.small {
  background-image: url("../image/header-small.png");
  padding-bottom: 100px;
}
body main section.header-conteudo h1 {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.header-conteudo {
    background-color: #000549;
    border-bottom: 5px solid #0036bd;
    background-image: none !important;
    padding: 30px 10px;
    font-size: 15px;
  }
  body main section.header-conteudo.small {
    padding-bottom: 10px;
  }
  body main section.header-conteudo h1 {
    font-size: 22px;
  }
}
body main section.breadcrumb {
  margin-bottom: 20px;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  position: relative;
}
body main section.breadcrumb a {
  color: white;
  text-decoration: underline;
  margin: 0 5px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 15px;
}
body main section.breadcrumb a:first-child {
  margin-left: 0;
}
body main section.breadcrumb a:last-child {
  margin-right: 0;
}
body main section.breadcrumb a.active {
  color: white;
  text-decoration: none;
}
@media (max-width: 991px) {
  body main section.breadcrumb {
    font-size: 12px;
  }
  body main section.breadcrumb a {
    font-size: 12px;
  }
}
body main ul.paginacao {
  display: flex;
  margin: 0 5px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
}
body main ul.paginacao li {
  list-style: none;
}
body main ul.paginacao li a {
  background-color: white;
  border: 1px solid lightgray;
  width: 45px;
  height: 40px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: gray;
  font-size: 18px;
  transition: all 0.3s;
}
body main ul.paginacao li a.active, body main ul.paginacao li a:hover {
  color: white;
  border-color: #0036bd;
  background-color: #0036bd;
}
body main section.index-banner {
  position: relative;
}
body main section.index-banner .owl-carousel .owl-prev,
body main section.index-banner .owl-carousel .owl-next {
  position: absolute;
  bottom: 50%;
  outline: none;
  color: gray;
  font-size: 42px;
  padding: 2px 5px !important;
}
@media (max-width: 991px) {
  body main section.index-banner .owl-carousel .owl-prev,
  body main section.index-banner .owl-carousel .owl-next {
    color: white;
    background-color: rgba(128, 128, 128, 0.65);
    font-size: 30px;
    padding: 2px 5px !important;
  }
}
body main section.index-banner .owl-carousel .owl-prev:hover,
body main section.index-banner .owl-carousel .owl-next:hover {
  opacity: 0.8;
}
body main section.index-banner .owl-carousel .owl-prev {
  border-radius: 0 5px 5px 0;
  left: 25px;
}
@media (max-width: 991px) {
  body main section.index-banner .owl-carousel .owl-prev {
    left: 0px;
  }
}
body main section.index-banner .owl-carousel .owl-next {
  border-radius: 5px 0 0 5px;
  right: 25px;
}
@media (max-width: 991px) {
  body main section.index-banner .owl-carousel .owl-next {
    right: 0px;
  }
}
body main section.index-banner .owl-carousel .bann {
  position: relative;
}
body main section.index-banner .owl-carousel .bann:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 5;
  background-color: rgba(104, 94, 94, 0.1);
}
@media (max-width: 991px) {
  body main section.index-banner::after {
    display: none;
  }
}
body main section.index-descontos {
  background: url("../image/bg-descontos.png");
  background-size: cover;
  margin-top: -90px;
  padding: 100px 0 50px 0;
  color: white;
}
body main section.index-descontos .box {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
body main section.index-descontos .box .bottom {
  background: linear-gradient(180deg, rgb(230, 183, 109) 0%, rgb(236, 133, 19) 100%);
  padding: 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
body main section.index-descontos .box .bottom a {
  color: white;
  text-decoration: underline;
  font-size: 18px;
}
body main section.index-descontos .box .topo {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: linear-gradient(90deg, rgb(246, 158, 0) 0%, rgb(255, 93, 0) 100%);
  padding: 30px 70px;
}
body main section.index-descontos .box .topo .sep {
  width: 3px;
  background-color: gainsboro;
  opacity: 0.5;
}
body main section.index-descontos .box .topo a {
  color: white;
  font-size: 24px;
  font-weight: 400;
}
body main section.index-descontos .box .topo a img {
  margin-right: 10px;
}
body main section.index-descontos .texto {
  display: flex;
  align-items: center;
}
body main section.index-descontos .texto h1 {
  font-size: 22px;
  margin: 20px 0;
  color: #a8d1f0;
  font-weight: 500;
}
body main section.index-descontos .texto h1 strong {
  font-weight: 500;
  color: #ffaa00;
}
body main section.index-descontos .texto .img {
  width: 120px;
  margin-right: 18px;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body main section.index-descontos .texto .wind {
  max-width: 400px;
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.1;
}
body main section.index-descontos .texto .wind img {
  margin-right: 20px;
  filter: grayscale(1) brightness(100);
}
@media (max-width: 991px) {
  body main section.index-descontos {
    margin-top: 0;
    background: #0062bd;
    padding: 20px 0;
    text-align: center;
  }
  body main section.index-descontos .box {
    margin-top: 30px;
  }
  body main section.index-descontos .box .bottom {
    padding: 10px;
  }
  body main section.index-descontos .box .bottom a {
    font-size: 16px;
  }
  body main section.index-descontos .box .topo {
    padding: 10px;
    flex-flow: column;
  }
  body main section.index-descontos .box .topo .sep {
    display: none;
  }
  body main section.index-descontos .box .topo a {
    font-size: 18px;
    margin: 5px 0;
  }
  body main section.index-descontos .box .topo a img {
    width: 25px;
    margin-right: 5px;
  }
  body main section.index-descontos .texto h1 {
    font-size: 18px;
  }
  body main section.index-descontos .texto .wind {
    text-align: left;
    font-size: 17px;
  }
  body main section.index-descontos .texto .wind img {
    width: 40px;
  }
  body main section.index-descontos .texto .img {
    display: none;
  }
}
body main section.index-destaques {
  background-image: url("../image/bg-branco.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
body main section.index-destaques.paineis {
  background-image: url("../image/bg-paineis.png");
  background-size: 100% 100%;
  background-position: bottom;
  padding: 100px 0;
  padding-top: 50px;
  z-index: 1;
}
body main section.index-destaques.inflaveis {
  background-image: url("../image/bg-inflaveis.png");
  background-size: 100% 100%;
  padding: 100px 0;
}
body main section.index-destaques .titulo {
  text-align: center;
}
body main section.index-destaques .titulo img {
  margin-bottom: 10px;
}
body main section.index-destaques .titulo h1 {
  font-size: 36px;
  color: #0036bd;
}
body main section.index-destaques .titulo h3 {
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 0;
}
body main section.index-destaques .titulo h3 strong {
  display: block;
  color: #0036bd;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.index-destaques {
    background: white;
    padding: 30px 0 !important;
    margin-top: 0 !important;
  }
  body main section.index-destaques .titulo img {
    width: 40px;
  }
  body main section.index-destaques .titulo h3 {
    font-size: 17px;
  }
  body main section.index-destaques .titulo h3 strong {
    display: inline;
  }
  body main section.index-destaques .titulo h1 {
    font-size: 24px;
  }
  body main section.index-destaques.paineis, body main section.index-destaques.inflaveis {
    background: #ebebeb;
  }
}
body main section.index-duvidas {
  background-image: url("../image/bg-duvidas.png");
  background-size: cover;
  background-position: top;
  color: white;
  padding-top: 150px;
  margin-top: -85px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
body main section.index-duvidas .main-phone .icon {
  color: white;
}
body main section.index-duvidas .main-phone span {
  color: #f69e00;
}
body main section.index-duvidas .main-phone span strong {
  color: #f69e00;
}
body main section.index-duvidas .box {
  position: absolute;
  bottom: -2px;
  background-image: url("../image/bg-box.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  left: 440px;
  padding: 40px 70px 30px 70px;
}
body main section.index-duvidas .box h4 {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
body main section.index-duvidas .texto {
  padding-bottom: 30px;
}
body main section.index-duvidas .texto .item {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 30px;
}
body main section.index-duvidas .texto .item .in-texto strong {
  color: #f69e00;
  font-weight: 700;
}
body main section.index-duvidas .texto .item .num {
  color: #f69e00;
  font-weight: 500;
  font-size: 24px;
  border-radius: 100%;
  border: 2px solid #f69e00;
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
body main section.index-duvidas h3 {
  font-weight: 300;
  font-size: 20px;
  max-width: 400px;
  color: #f69e00;
  margin-bottom: 40px;
}
body main section.index-duvidas h1 {
  font-size: 25px;
  font-weight: 500;
}
body main section.index-duvidas h1 strong {
  font-weight: 500;
  color: #f69e00;
}
@media (max-width: 991px) {
  body main section.index-duvidas {
    background: #00276c;
    margin-top: 0;
    padding: 30px 10px;
  }
  body main section.index-duvidas .texto {
    padding-bottom: 0;
  }
  body main section.index-duvidas .texto .item {
    font-size: 16px;
    margin-bottom: 20px;
  }
  body main section.index-duvidas .texto .item .num {
    width: 40px;
    margin-right: 10px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 18px;
  }
  body main section.index-duvidas h1 {
    font-size: 18px;
  }
  body main section.index-duvidas h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
body main section.index-diferenciais {
  background-image: url("../image/bg-diferenciais.png");
  background-size: cover;
  padding-top: 120px;
  color: white;
  margin-top: -80px;
}
body main section.index-diferenciais.interna {
  margin-top: 0;
  padding-top: 50px;
}
body main section.index-diferenciais .contato {
  background-color: #00418c;
  padding: 30px;
  border-radius: 100px 100px 0 0;
  color: white;
  margin: auto;
  max-width: 850px;
  margin-top: 50px;
  text-align: center;
}
body main section.index-diferenciais .contato .main-phone span {
  color: #f69e00;
}
body main section.index-diferenciais .contato .main-phone span strong {
  color: #f69e00;
}
body main section.index-diferenciais .contato .main-phone .icon {
  color: white;
}
body main section.index-diferenciais .contato h4 {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}
body main section.index-diferenciais .box {
  border: 1px dotted #339ecd;
  padding: 30px 50px;
  margin-top: 40px;
  border-radius: 20px;
}
body main section.index-diferenciais .box .item {
  text-align: center;
  color: #f69e00;
  font-weight: 300;
  font-size: 17px;
  padding: 0 30px;
  line-height: 1.1;
}
body main section.index-diferenciais .box .item strong {
  font-size: 18px;
  display: block;
  color: white;
  font-weight: 500;
}
body main section.index-diferenciais .box .item img {
  margin-bottom: 15px;
}
body main section.index-diferenciais .titulo {
  text-align: center;
}
body main section.index-diferenciais .titulo h3 {
  font-weight: 300;
  font-size: 20px;
  color: #f69e00;
}
body main section.index-diferenciais .titulo h2 {
  color: #f69e00;
  font-size: 24px;
  max-width: 550px;
  margin: auto;
  margin-bottom: 10px;
}
body main section.index-diferenciais .titulo h1 {
  font-size: 32px;
}
body main section.index-diferenciais .titulo .icone {
  margin-bottom: 15px;
  filter: grayscale(1) brightness(100);
}
@media (max-width: 991px) {
  body main section.index-diferenciais {
    margin-top: 0;
    padding: 30px 10px 0 10px !important;
  }
  body main section.index-diferenciais .contato {
    max-width: none;
    margin-top: 30px;
    border-radius: 30px 30px 0 0;
    padding: 20px;
  }
  body main section.index-diferenciais .contato .main-phone {
    margin: 5px;
  }
  body main section.index-diferenciais .contato h4 {
    font-size: 16px;
  }
  body main section.index-diferenciais .box {
    margin-top: 30px;
    padding: 20px;
  }
  body main section.index-diferenciais .box .item {
    font-size: 16px;
    padding: 0;
    margin-bottom: 20px;
  }
  body main section.index-diferenciais .box .item strong {
    font-size: 16px;
  }
  body main section.index-diferenciais .box .item img {
    width: 70px;
  }
  body main section.index-diferenciais .titulo img {
    width: 40px;
  }
  body main section.index-diferenciais .titulo h3 {
    font-size: 17px;
  }
  body main section.index-diferenciais .titulo h2 {
    font-size: 18px;
  }
  body main section.index-diferenciais .titulo h1 {
    font-size: 22px;
  }
}
body main section.index-fabricante {
  background-image: url("../image/bg-paineis.png");
  background-size: 100% 100%;
  background-position: bottom;
  padding: 40px 0 120px 0;
  position: relative;
}
body main section.index-fabricante .foto {
  width: 100%;
}
body main section.index-fabricante .box {
  background-color: rgba(225, 225, 225, 0.8);
  border-radius: 15px;
  padding: 50px;
}
body main section.index-fabricante .box h2 {
  color: #339ecd;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}
body main section.index-fabricante .box button {
  border: 2px solid #f69e00;
  color: #f69e00;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 35px;
}
body main section.index-fabricante .box input,
body main section.index-fabricante .box textarea {
  width: 100%;
  margin-bottom: 10px;
  outline: none;
  border: 1px solid lightgray;
  padding: 10px 20px;
  border-radius: 7px;
}
body main section.index-fabricante .phones {
  margin-top: 30px;
}
body main section.index-fabricante .contato {
  border: 2px solid #339ecd;
  color: #339ecd;
  font-weight: 500;
  font-size: 17px;
  border-radius: 20px;
  text-align: center;
  padding: 15px 100px;
  line-height: 1.1;
  margin-top: 20px;
}
body main section.index-fabricante h3 {
  font-weight: 400;
  font-size: 18px;
  color: #243078;
}
body main section.index-fabricante h1 {
  color: #243078;
  font-size: 24px;
  font-weight: 600;
}
body main section.index-fabricante h1 strong {
  font-weight: 600;
  color: #339ecd;
}
@media (max-width: 991px) {
  body main section.index-fabricante {
    padding: 30px 0;
    background: #eeeeee;
    text-align: center;
  }
  body main section.index-fabricante .box {
    margin-top: 20px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  body main section.index-fabricante .box h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  body main section.index-fabricante .box button {
    font-size: 16px;
  }
  body main section.index-fabricante h1 {
    font-size: 20px;
  }
  body main section.index-fabricante .contato {
    padding: 20px 30px;
  }
  body main section.index-fabricante .phones {
    margin-top: 15px;
  }
  body main section.index-fabricante .phones a {
    margin: 5px;
  }
  body main section.index-fabricante h3 {
    font-size: 16px;
  }
  body main section.index-fabricante .foto {
    display: none;
  }
}
body main section.index-revendedores {
  background-image: url("../image/bg-revendedores.png");
  background-size: cover;
  padding: 170px 0 80px 0;
  margin-top: -80px;
  color: white;
}
body main section.index-revendedores.interna {
  margin-top: 0;
  padding: 60px 0;
}
body main section.index-revendedores.interna form input {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 12px;
  outline: none;
  font-size: 17px;
  font-weight: 500;
  border: none;
  width: 100%;
}
body main section.index-revendedores .main-phone .icon {
  color: white;
}
body main section.index-revendedores .main-phone span {
  color: #f69e00;
}
body main section.index-revendedores .main-phone span strong {
  color: #f69e00;
}
body main section.index-revendedores h5 {
  color: #339ecd;
}
body main section.index-revendedores h1 {
  font-size: 38px;
  font-weight: 500;
}
body main section.index-revendedores h1 strong {
  font-weight: 500;
  color: #339ecd;
}
body main section.index-revendedores h3 {
  font-weight: 300;
  font-size: 21px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  body main section.index-revendedores {
    margin-top: 0 !important;
    padding: 30px 0 !important;
    text-align: center;
    background: #003b87;
  }
  body main section.index-revendedores h5 {
    font-size: 18px;
  }
  body main section.index-revendedores h1 {
    font-size: 22px;
  }
  body main section.index-revendedores h3 {
    font-size: 18px;
  }
}
body main section.index-catalogo {
  background-image: url("../image/bg-catalogo.png");
  background-size: cover;
  color: white;
  padding: 50px 0;
}
body main section.index-catalogo h3 {
  color: #f69e00;
  font-size: 20px;
}
body main section.index-catalogo .foto {
  width: 100%;
}
body main section.index-catalogo h1 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 300;
}
body main section.index-catalogo h1 strong {
  color: #f69e00;
  font-weight: 500;
}
body main section.index-catalogo h5 {
  color: white;
}
body main section.index-catalogo form input {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 12px;
  outline: none;
  font-size: 17px;
  font-weight: 500;
  border: none;
  width: 100%;
}
body main section.index-catalogo form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f69e00;
  border: 2px solid #f69e00;
  outline: none;
  background-color: transparent;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px;
  transition: 0.3s all;
}
body main section.index-catalogo form button:hover {
  background-color: #f69e00;
  color: white;
}
@media (max-width: 991px) {
  body main section.index-catalogo {
    padding: 30px 10px;
    text-align: center;
  }
  body main section.index-catalogo form button {
    font-size: 16px;
    padding: 10px 20px;
  }
  body main section.index-catalogo h3 {
    font-size: 16px;
  }
  body main section.index-catalogo h1 {
    font-size: 18px;
    margin-top: 15px;
  }
  body main section.index-catalogo h5 {
    margin-top: 20px;
    font-size: 16px;
  }
  body main section.index-catalogo .foto {
    display: none;
  }
}
body main section.index-sobre {
  background-image: url("../image/bg-sobre.png");
  background-size: cover;
  color: white;
  padding: 70px 0;
  font-size: 18px;
  font-weight: 300;
}
body main section.index-sobre .video {
  align-items: center;
  justify-content: center;
  color: #339ecd;
  font-size: 40px;
  display: flex;
  width: 100%;
  height: 350px;
  border: 2px solid #339ecd;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
body main section.index-sobre .video:hover:after {
  background: rgba(0, 0, 0, 0.3);
}
body main section.index-sobre .video i {
  position: relative;
  z-index: 3;
}
body main section.index-sobre .video:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}
body main section.index-sobre .video img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.index-sobre .logo {
  margin-bottom: 20px;
}
body main section.index-sobre h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 10px;
}
body main section.index-sobre h1 strong {
  color: #339ecd;
  font-weight: 600;
}
@media (max-width: 991px) {
  body main section.index-sobre {
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
  }
  body main section.index-sobre .video {
    margin-top: 20px;
    height: 250px;
  }
  body main section.index-sobre .logo {
    max-width: 100px;
  }
  body main section.index-sobre h1 {
    font-size: 20px;
  }
}
body main section.index-clientes {
  background-image: url("../image/bg-paineis.png");
  background-size: 100% 100%;
  background-position: bottom;
  padding: 50px 0 120px 0;
}
body main section.index-clientes .container {
  max-width: 1100px;
}
body main section.index-clientes .title {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #0036bd;
  margin-bottom: 35px;
}
body main section.index-clientes .title h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.index-clientes .owl-carousel img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: white;
  border: 1px solid gainsboro;
  padding: 30px;
}
body main section.index-clientes .owl-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}
body main section.index-clientes .owl-carousel .owl-nav .owl-prev,
body main section.index-clientes .owl-carousel .owl-nav .owl-next {
  color: #339ecd;
  border-radius: 100%;
  border: 2px solid #339ecd;
  font-size: 18px;
  padding: 5px 13px !important;
  display: inline-block;
  margin: 0 15px;
}
@media (max-width: 991px) {
  body main section.index-clientes {
    background: #fafafa;
    padding: 30px 0;
  }
  body main section.index-clientes .owl-carousel img {
    margin: auto;
    display: block;
    height: 150px;
    width: 200px;
  }
  body main section.index-clientes .title {
    text-align: center;
  }
  body main section.index-clientes .title img {
    width: 40px;
  }
  body main section.index-clientes .title h1 {
    font-size: 20px;
    color: #0036bd;
  }
}
body main section.index-depoimentos {
  padding: 50px 0;
}
body main section.index-depoimentos.interna {
  background-image: url("../image/bg-blog.png");
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 100px;
}
body main section.index-depoimentos .title {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #0036bd;
  margin-bottom: 35px;
}
body main section.index-depoimentos .title h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.index-depoimentos .owl-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}
body main section.index-depoimentos .owl-carousel .owl-nav .owl-prev,
body main section.index-depoimentos .owl-carousel .owl-nav .owl-next {
  color: #339ecd;
  border-radius: 100%;
  border: 2px solid #339ecd;
  font-size: 18px;
  padding: 5px 13px !important;
  display: inline-block;
  margin: 0 15px;
}
body main section.index-depoimentos .depoimento {
  border: 2px solid gainsboro;
  padding: 40px 50px;
  background-color: white;
  font-size: 17px;
  font-weight: 300;
  border-radius: 0 30px;
  border-top: 8px solid #339ecd;
}
body main section.index-depoimentos .depoimento .texto.limitado {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 105px;
}
body main section.index-depoimentos .depoimento strong {
  display: block;
  text-transform: uppercase;
  color: #0036bd;
  font-weight: 600;
  margin-bottom: 10px;
}
body main section.index-depoimentos .depoimento a {
  display: inline-block;
  color: #0036bd;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 5px;
}
@media (max-width: 991px) {
  body main section.index-depoimentos {
    padding: 30px 0 !important;
  }
  body main section.index-depoimentos.interna {
    background: #f0f0f0;
  }
  body main section.index-depoimentos .owl-carousel .depoimento {
    padding: 30px 20px;
  }
  body main section.index-depoimentos .title {
    text-align: center;
  }
  body main section.index-depoimentos .title img {
    width: 40px;
  }
  body main section.index-depoimentos .title h1 {
    font-size: 20px;
    color: #0036bd;
  }
}
body main section.index-blog {
  padding: 70px 0 50px 0;
  background-image: url("../image/bg-blog.png");
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
}
body main section.index-blog .title {
  text-align: center;
  max-width: 650px;
  margin: auto;
  color: #0036bd;
  margin-bottom: 35px;
}
body main section.index-blog .title h3 {
  font-weight: 300;
  font-size: 22px;
}
body main section.index-blog .title h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.index-blog .card-blog {
  display: block;
  border: 1px solid gainsboro;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  height: 100%;
}
body main section.index-blog .card-blog .content {
  background-color: white;
  padding: 30px 50px;
  height: 100%;
}
body main section.index-blog .card-blog .content h3 {
  color: black;
  font-size: 20px;
}
body main section.index-blog .card-blog img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  body main section.index-blog {
    padding: 30px 0;
    background: #fafafa;
  }
  body main section.index-blog .card-blog {
    border-radius: 0;
    margin-top: 30px;
    height: auto;
  }
  body main section.index-blog .card-blog .content {
    height: auto;
    padding: 20px 30px;
  }
  body main section.index-blog .card-blog .content h3 {
    font-size: 18px;
  }
  body main section.index-blog .card-blog img {
    height: 150px;
  }
  body main section.index-blog .title {
    text-align: center;
    margin-bottom: -10px;
  }
  body main section.index-blog .title img {
    width: 40px;
  }
  body main section.index-blog .title h3 {
    font-size: 18px;
  }
  body main section.index-blog .title h1 {
    font-size: 20px;
    color: #0036bd;
  }
}
body main section.produtos-listagem {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 120px 0 100px 0;
  margin-top: -90px;
}
body main section.produtos-listagem h2 {
  color: #339ecd;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
body main section.produtos-listagem .card-produto {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
body main section.produtos-listagem .total {
  background-color: rgb(235, 235, 235);
  color: #339ecd;
  padding: 7px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
}
body main section.produtos-listagem .total select {
  background-color: #e9e9e9;
  color: gray;
  outline: none;
  border: 1px solid gainsboro;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 5px;
  margin-left: 5px;
}
@media (max-width: 991px) {
  body main section.produtos-listagem {
    padding: 30px 0;
    margin-top: 0;
  }
  body main section.produtos-listagem .total {
    font-size: 14px;
    padding: 11px 20px;
  }
  body main section.produtos-listagem .total select {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }
}
body main section.produtos-categorias h5 {
  font-size: 17px;
}
body main section.produtos-categorias h4 {
  font-size: 18px;
  color: #339ecd;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid lightgray;
  margin-bottom: 10px;
  text-transform: uppercase;
}
body main section.produtos-categorias form {
  position: relative;
  margin-bottom: 20px;
}
body main section.produtos-categorias form input {
  background-color: #f7f7f7;
  color: gray;
  outline: none;
  border: 1px solid gainsboro;
  font-size: 16px;
  padding: 7px 8px;
  width: 100%;
}
body main section.produtos-categorias form button {
  position: absolute;
  color: #339ecd;
  right: 10px;
  top: 6px;
  background-color: transparent;
  border: none;
  outline: none;
}
body main section.produtos-categorias a.categoria {
  display: block;
  color: black;
  margin: 5px 0;
  text-transform: uppercase;
}
body main section.produtos-categorias a.categoria:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: lightgray;
}
body main section.produtos-categorias a.categoria.active {
  color: #339ecd;
}
@media (max-width: 991px) {
  body main section.produtos-categorias h4,
  body main section.produtos-categorias h5 {
    font-size: 16px;
  }
  body main section.produtos-categorias a.categoria {
    font-size: 14px;
  }
}
body main section.produtos-interna {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 150px 0 0 0;
  margin-top: -90px;
}
body main section.produtos-interna .pgto {
  margin: 30px auto;
  text-align: center;
  font-size: 18px;
}
body main section.produtos-interna .pgto img {
  display: block;
  margin: auto;
  margin-top: 5px;
  width: 100%;
  max-width: 200px;
}
body main section.produtos-interna .caracteristicas .item {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
body main section.produtos-interna .caracteristicas .item:first-child {
  margin-top: 0;
}
body main section.produtos-interna .caracteristicas .item span {
  color: #444;
  font-size: 18px;
  line-height: 1.1;
}
body main section.produtos-interna .caracteristicas .item span strong {
  display: block;
  font-weight: 600;
}
body main section.produtos-interna .caracteristicas .item i {
  color: #f69e00;
  margin-right: 10px;
  font-size: 42px;
}
body main section.produtos-interna .detalhe-tecnico {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}
body main section.produtos-interna .detalhe-tecnico img {
  width: 150px;
  height: 250px;
  margin-right: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.produtos-interna .detalhe-tecnico .texto {
  font-size: 18px;
}
body main section.produtos-interna .detalhe-tecnico .texto h3 {
  font-size: 24px;
}
body main section.produtos-interna .detalhe-tecnico .texto ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body main section.produtos-interna .detalhe-tecnico .texto ul li:before {
  font-family: "Font Awesome 5 Free";
  display: inline;
  font-weight: 500;
  content: "\f058";
  color: #339ecd;
  margin-right: 5px;
}
@media (min-width: 992px) {
  body main section.produtos-interna .detalhe-tecnico.small img {
    height: 150px;
  }
  body main section.produtos-interna .detalhe-tecnico.small .texto {
    font-size: 16px;
  }
  body main section.produtos-interna .detalhe-tecnico.small .texto h3 {
    font-size: 24px;
  }
}
body main section.produtos-interna .veja-mais {
  margin-top: 30px;
  background-image: url("../image/bg-missao.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 120px 0 130px 0;
}
body main section.produtos-interna .veja-mais .title {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #0036bd;
  margin-bottom: 35px;
}
body main section.produtos-interna .veja-mais .title h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.produtos-interna .veja-mais .card-produto {
  min-height: 530px;
}
body main section.produtos-interna .owl-galeria-produtos .owl-nav {
  color: #0036bd;
}
body main section.produtos-interna .owl-galeria-produtos .owl-nav .owl-prev {
  position: absolute;
  left: 25px;
  top: calc(50% - 21px);
  font-size: 42px;
}
body main section.produtos-interna .owl-galeria-produtos .owl-nav .owl-next {
  position: absolute;
  right: 25px;
  top: calc(50% - 21px);
  font-size: 42px;
}
body main section.produtos-interna .owl-galeria-produtos .video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  border: 1px solid gainsboro;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 991px) {
  body main section.produtos-interna .owl-galeria-produtos .video {
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  body main section.produtos-interna .owl-galeria-produtos .video {
    margin-bottom: 25px;
  }
}
body main section.produtos-interna .owl-galeria-produtos .video i {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 75px;
}
body main section.produtos-interna .owl-galeria-produtos .video:after {
  background-color: black;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
body main section.produtos-interna .owl-galeria-produtos img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
  -o-object-position: center;
     object-position: center;
  border: 1px solid gainsboro;
}
@media screen and (max-width: 991px) {
  body main section.produtos-interna .owl-galeria-produtos img {
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  body main section.produtos-interna .owl-galeria-produtos img {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  body main section.produtos-interna .owl-galeria-produtos img {
    margin-bottom: 25px;
  }
}
body main section.produtos-interna h1 {
  color: #0036bd;
  font-size: 32px;
}
body main section.produtos-interna .resumo {
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  body main section.produtos-interna .resumo .resumo-in {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: "";
  }
}
body main section.produtos-interna .titulozin {
  color: #0036bd;
  font-size: 24px;
  font-weight: 600;
}
body main section.produtos-interna .phones {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
body main section.produtos-interna .phones .main-phone span strong {
  font-weight: 400;
  color: #ff5d00;
}
body main section.produtos-interna .phones a:first-child {
  margin-right: 20px;
}
body main section.produtos-interna .detalhes {
  margin-top: 30px;
}
body main section.produtos-interna hr.sep {
  margin: 8px 0 20px 0;
  height: 2px;
}
body main section.produtos-interna .box {
  margin-top: 20px;
}
body main section.produtos-interna .box select {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 25px;
  font-size: 18px;
  background-color: #fafafa;
  border-radius: 10px;
  border: 1px solid gainsboro;
  box-shadow: 1px 5px 5px rgba(238, 238, 238, 0.5);
}
body main section.produtos-interna .box .btn-orcamento {
  background-color: #ff5d00;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main section.produtos-interna .box .btn-orcamento .icon {
  color: #ff5d00;
  background-color: white;
  border-radius: 100%;
  font-size: 13px;
  padding: 4px 4px;
  margin-right: 10px;
  flex: 0 0 29px;
}
body main section.produtos-interna .box .btn-zap {
  display: block;
  margin-top: 10px;
  background-color: #4baa2b;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: white;
}
body main section.produtos-interna .box .btn-zap i {
  margin-right: 10px;
  font-size: 22px;
  vertical-align: middle;
}
body main section.produtos-interna .box .btn-carrinho {
  display: block;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #ff5d00;
  color: #ff5d00;
}
body main section.produtos-interna .box .btn-carrinho i {
  margin-right: 10px;
  font-size: 22px;
  vertical-align: middle;
}
body main section.produtos-interna .box .btn-carrinho .fa-spin {
  display: none;
}
body main section.produtos-interna .box .btn-carrinho.loading .fa-shopping-cart {
  display: none;
}
body main section.produtos-interna .box .btn-carrinho.loading .fa-spin {
  display: inline-block;
}
@media (max-width: 991px) {
  body main section.produtos-interna {
    padding-top: 30px;
    text-align: center;
    margin-top: 0;
  }
  body main section.produtos-interna .caracteristicas .item {
    display: inline-flex;
    margin: 10px 5px;
  }
  body main section.produtos-interna .caracteristicas .item i {
    font-size: 32px;
  }
  body main section.produtos-interna .caracteristicas .item span {
    text-align: left;
    font-size: 15px;
  }
  body main section.produtos-interna .veja-mais {
    margin-top: 20px;
    min-height: auto;
    padding: 30px 0;
    background: #f7f7f7;
  }
  body main section.produtos-interna .veja-mais .card-produto {
    min-height: auto;
  }
  body main section.produtos-interna .veja-mais .title {
    text-align: center;
  }
  body main section.produtos-interna .veja-mais .title img {
    width: 40px;
  }
  body main section.produtos-interna .veja-mais .title h1 {
    font-size: 20px;
    color: #0036bd;
  }
  body main section.produtos-interna .detalhe-tecnico {
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  body main section.produtos-interna .detalhe-tecnico img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
    width: 120px;
    height: 120px;
  }
  body main section.produtos-interna .detalhe-tecnico .texto {
    font-size: 15px;
  }
  body main section.produtos-interna .detalhe-tecnico .texto h3 {
    font-size: 18px;
  }
  body main section.produtos-interna .foto {
    height: 300px;
    margin-bottom: 30px;
  }
  body main section.produtos-interna .detalhes {
    font-size: 15px;
    margin-top: -20px;
  }
  body main section.produtos-interna .titulozin {
    font-size: 20px;
    margin-top: 20px;
  }
  body main section.produtos-interna .observacoes {
    padding: 30px;
    font-size: 15px;
  }
  body main section.produtos-interna .observacoes strong {
    font-size: 16px;
  }
  body main section.produtos-interna .observacoes img {
    display: none;
  }
  body main section.produtos-interna .phones {
    flex-flow: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  body main section.produtos-interna .phones a {
    margin: 5px !important;
  }
  body main section.produtos-interna .pgto {
    margin-top: 5px;
  }
  body main section.produtos-interna .box {
    margin-top: 0;
    padding: 20px;
    font-size: 16px;
  }
  body main section.produtos-interna .box select {
    font-size: 16px;
    padding: 10px 15px;
  }
  body main section.produtos-interna .box .btn-orcamento {
    font-size: 13px;
  }
  body main section.produtos-interna .box .btn-orcamento .icon {
    font-size: 12px;
    padding: 4px 3px;
    flex: 0 0 28px;
  }
  body main section.produtos-interna .box .btn-zap {
    font-size: 13px;
  }
  body main section.produtos-interna .box .btn-carrinho {
    font-size: 13px;
  }
  body main section.produtos-interna .resumo {
    font-size: 15px;
    margin-bottom: 20px;
  }
  body main section.produtos-interna h1 {
    font-size: 20px;
  }
}
body main section.sobre-principal {
  padding: 120px 0 150px 0;
  background-image: url("../image/bg-branco.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  margin-top: -90px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
body main section.sobre-principal.revendedor {
  padding: 130px 0 50px 0;
}
body main section.sobre-principal strong {
  color: #0036bd;
  font-size: 19px;
  font-weight: 700;
}
body main section.sobre-principal h2 {
  font-size: 24px;
  font-weight: 300;
}
body main section.sobre-principal h2 strong {
  font-weight: 500;
  font-size: 24px;
  color: #339ecd;
}
body main section.sobre-principal .foto {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  border-bottom: 10px solid #339ecd;
}
body main section.sobre-principal .foto.revendedor {
  height: 300px;
}
body main section.sobre-principal .posicao {
  background-image: url("../image/bg-parede.png");
  background-size: cover;
  padding: 50px 130px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
body main section.sobre-principal .posicao h3 {
  color: #339ecd;
  font-weight: 600;
  font-size: 26px;
}
@media (max-width: 991px) {
  body main section.sobre-principal {
    margin-top: 0;
    padding: 30px 10px !important;
    text-align: center;
    font-size: 16px;
  }
  body main section.sobre-principal .posicao {
    padding: 20px 10px;
    border-radius: 10px;
    font-size: 16px;
  }
  body main section.sobre-principal .posicao img {
    display: none;
  }
  body main section.sobre-principal .posicao h3 {
    font-size: 16px;
  }
  body main section.sobre-principal .foto {
    height: 250px !important;
    margin-top: 10px;
  }
  body main section.sobre-principal strong {
    font-size: 17px;
  }
  body main section.sobre-principal .icon {
    width: 40px;
  }
  body main section.sobre-principal h2 {
    font-size: 18px;
  }
  body main section.sobre-principal h2 strong {
    font-size: 18px;
  }
}
body main section.sobre-missao {
  background-image: url("../image/bg-missao.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -270px;
  padding: 120px 0;
  font-size: 17px;
  text-align: center;
  position: relative;
}
body main section.sobre-missao img {
  margin-top: 50px;
  margin-bottom: 20px;
}
body main section.sobre-missao h1 {
  color: #0036bd;
  font-size: 36px;
}
@media (max-width: 991px) {
  body main section.sobre-missao {
    background: #fafafa;
    margin-top: 0;
    padding: 30px 0;
    padding-top: 0;
    font-size: 16px;
  }
  body main section.sobre-missao h1 {
    font-size: 20px;
  }
  body main section.sobre-missao img {
    width: 50px;
    margin-top: 30px;
  }
}
body main section.sobre-porque-fazemos {
  background-image: url("../image/bg-porque-fazemos.png");
  background-size: cover;
  background-position: left;
  color: white;
  padding: 150px 0 90px 0;
  font-size: 19px;
  font-weight: 300;
  margin-top: -80px;
}
body main section.sobre-porque-fazemos h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
body main section.sobre-porque-fazemos .video {
  align-items: center;
  justify-content: center;
  color: #339ecd;
  font-size: 40px;
  display: flex;
  width: 100%;
  height: 450px;
  border: 2px solid #339ecd;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
body main section.sobre-porque-fazemos .video:hover:after {
  background: rgba(0, 0, 0, 0.3);
}
body main section.sobre-porque-fazemos .video i {
  position: relative;
  z-index: 3;
}
body main section.sobre-porque-fazemos .video:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}
body main section.sobre-porque-fazemos .video img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  body main section.sobre-porque-fazemos {
    margin-top: 0;
    padding: 30px 0;
    background-position: right;
    font-size: 16px;
    text-align: center;
  }
  body main section.sobre-porque-fazemos h1 {
    font-size: 24px;
  }
  body main section.sobre-porque-fazemos .video {
    height: 250px;
    margin-bottom: 30px;
  }
}
body main section.sobre-galeria {
  padding: 50px 0;
}
body main section.sobre-galeria .title {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #0036bd;
  margin-bottom: 35px;
}
body main section.sobre-galeria .title h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.sobre-galeria .foto {
  height: 400px;
  overflow: hidden;
  border: 1px solid lightgray;
  font-size: 17px;
  font-weight: 300;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top: 7px solid #339ecd;
}
body main section.sobre-galeria .foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main section.sobre-galeria .owl-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}
body main section.sobre-galeria .owl-carousel .owl-nav .owl-prev,
body main section.sobre-galeria .owl-carousel .owl-nav .owl-next {
  color: #339ecd;
  border-radius: 100%;
  border: 2px solid #339ecd;
  font-size: 18px;
  padding: 5px 13px !important;
  display: inline-block;
  margin: 0 15px;
}
@media (max-width: 991px) {
  body main section.sobre-galeria {
    padding: 30px 0;
  }
  body main section.sobre-galeria .title {
    text-align: center;
    margin-bottom: 20px;
  }
  body main section.sobre-galeria .title img {
    width: 40px;
  }
  body main section.sobre-galeria .title h1 {
    font-size: 20px;
    color: #0036bd;
  }
  body main section.sobre-galeria .foto {
    height: 400px;
  }
}
body main section.clientes {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 120px 0 80px 0;
  margin-top: -90px;
}
body main section.clientes .cliente {
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 0 30px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin-top: 30px;
}
body main section.clientes .cliente img {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  body main section.clientes {
    margin-top: 0;
    padding: 0;
    padding-bottom: 30px;
  }
  body main section.clientes .cliente {
    height: 130px;
  }
  body main section.clientes .cliente img {
    max-width: 100px;
    max-height: 100px;
  }
}
body main section.contato {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -90px;
  padding: 120px 0 80px 0;
}
body main section.contato .endereco {
  border-radius: 20px;
  background-color: #f5f5f5;
  padding: 30px 50px;
  margin-top: 50px;
}
body main section.contato .endereco h3 {
  color: #0036bd;
  font-weight: 500;
  font-size: 22px;
}
body main section.contato .endereco hr {
  background-color: gray;
}
body main section.contato .titulo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
body main section.contato .titulo p {
  margin: 0;
}
body main section.contato .titulo img {
  margin-right: 30px;
}
body main section.contato .titulo h1 {
  margin-bottom: 0;
  font-size: 28px;
  color: #0036bd;
  font-weight: 600;
  line-height: 1.1;
}
body main section.contato .titulo h1 strong {
  font-weight: 600;
  color: #339ecd;
}
body main section.contato form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
  color: #0036bd;
}
body main section.contato form button {
  margin-right: 0 !important;
  margin-top: 20px !important;
}
body main section.contato form input,
body main section.contato form select,
body main section.contato form textarea {
  width: 100%;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
  background-color: #fafafa;
  border-radius: 5px;
  border: 1px solid gainsboro;
  box-shadow: 1px 5px 5px rgba(238, 238, 238, 0.5);
}
body main section.contato form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body main section.contato form textarea {
  min-height: 100px;
  resize: vertical;
}
@media (max-width: 991px) {
  body main section.contato {
    padding: 30px 10px;
    margin-top: 0;
  }
  body main section.contato .endereco {
    margin-top: 30px;
    padding: 20px 30px;
  }
  body main section.contato .endereco h3 {
    font-size: 18px;
  }
  body main section.contato .titulo {
    margin-bottom: 0;
  }
  body main section.contato .titulo h1 {
    font-size: 19px;
  }
  body main section.contato .titulo img {
    margin-right: 25px;
    width: 50px;
  }
  body main section.contato form label {
    font-size: 16px;
  }
  body main section.contato form input,
  body main section.contato form select,
  body main section.contato form textarea {
    font-size: 15px;
    padding: 10px;
  }
  body main section.contato form button {
    margin-bottom: 30px !important;
  }
}
body main section.duvidas {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 150px 0 80px 0;
  margin-top: -90px;
}
body main section.duvidas h2 {
  color: #0036bd;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
body main section.duvidas .categorias {
  background-color: #fdfdfd;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 50px;
}
body main section.duvidas .categorias a {
  display: block;
  color: black;
  font-size: 18px;
  margin: 10px 0;
}
body main section.duvidas .categorias a i {
  color: lightgray;
}
body main section.duvidas .categorias a.active {
  color: #0036bd;
}
body main section.duvidas .categorias h3 {
  color: #0036bd;
  font-weight: 400;
  font-size: 22px;
}
body main section.duvidas .categorias hr {
  background-color: gray;
}
body main section.duvidas .listagem .duvida {
  border: 1px solid lightgray;
  margin-bottom: 30px;
}
body main section.duvidas .listagem .duvida .titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid lightgray;
  color: #339ecd;
  font-size: 22px;
}
body main section.duvidas .listagem .duvida .titulo a {
  background-color: #339ecd;
  font-size: 15px;
  display: inline-block;
  flex: 0 0 146px;
  margin-left: 20px;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
}
body main section.duvidas .listagem .duvida .resposta .in-resposta {
  font-size: 18px;
  padding: 30px 40px;
}
body main section.duvidas .duvidas-box {
  padding: 30px 50px;
  text-align: center;
  border-radius: 20px;
  background-color: #f5f5f5;
  font-weight: 400;
  font-size: 18px;
  top: 70px;
}
body main section.duvidas .duvidas-box form {
  margin-top: 20px;
}
body main section.duvidas .duvidas-box form input,
body main section.duvidas .duvidas-box form textarea {
  font-size: 18px;
  padding: 10px 20px;
  border: 1px solid lightgray;
  border-radius: 6px;
  box-shadow: 0px 4px 0px #d1d8d4;
  width: 100%;
  margin: 10px 0;
  outline: none;
}
body main section.duvidas .duvidas-box form textarea {
  resize: none;
  height: 100px;
  outline: none;
}
body main section.duvidas .duvidas-box form button {
  width: 100%;
  margin-top: 10px;
  outline: none;
}
body main section.duvidas .duvidas-box h2 {
  font-weight: 500;
  font-size: 28px;
  margin: auto;
  margin-bottom: 15px;
}
body main section.duvidas .duvidas-box h2 i {
  display: block;
  font-size: 45px;
  color: #0036bd;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body main section.duvidas {
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.duvidas h2 {
    text-align: center;
    font-size: 23px;
  }
  body main section.duvidas .listagem .duvida .titulo {
    flex-flow: column;
    padding: 20px 30px;
    font-size: 17px;
  }
  body main section.duvidas .listagem .duvida .titulo a {
    font-size: 14px;
    width: 100%;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    flex: auto;
    border-radius: 0;
  }
  body main section.duvidas .listagem .duvida .resposta .in-resposta {
    font-size: 15px;
  }
  body main section.duvidas .categorias {
    padding: 30px;
    border-radius: 10px;
  }
  body main section.duvidas .categorias a {
    font-size: 16px;
  }
  body main section.duvidas .categorias h3 {
    font-size: 18px;
  }
  body main section.duvidas .duvidas-box {
    padding: 30px;
    font-size: 16px;
  }
  body main section.duvidas .duvidas-box form input,
  body main section.duvidas .duvidas-box form textarea {
    font-size: 14px;
  }
  body main section.duvidas .duvidas-box form button {
    font-size: 15px;
    padding: 10px;
  }
  body main section.duvidas .duvidas-box h2 {
    font-size: 22px;
  }
  body main section.duvidas .duvidas-box h2 i {
    font-size: 32px;
  }
}
body main section.carrinho {
  padding: 130px 0 50px 0;
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -90px;
}
@media screen and (max-width: 991px) {
  body main section.carrinho {
    padding: 20px 0;
  }
}
@media screen and (max-width: 991px) {
  body main section.carrinho {
    margin-top: 0;
  }
}
body main section.carrinho .container {
  max-width: 1300px;
}
body main section.carrinho .remover .loader {
  display: none;
}
body main section.carrinho .remover.loading i {
  display: none;
}
body main section.carrinho .remover.loading .loader {
  color: gray;
  display: inline-block;
}
body main section.carrinho .passos {
  max-width: 1500px;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 15px;
}
body main section.carrinho .passos a {
  background-color: white;
  display: flex;
  padding: 10px 20px;
  width: 33%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: #afafaf;
  position: relative;
}
body main section.carrinho .passos a:hover {
  color: #afafaf;
}
body main section.carrinho .passos a:last-child:after {
  display: none;
}
body main section.carrinho .passos a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../image/chevron.png");
}
body main section.carrinho .passos a strong {
  font-weight: 300;
  border: 2px solid #afafaf;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.carrinho .passos a.ativo {
  color: #0036bd;
}
body main section.carrinho .passos a.ativo:hover {
  color: #0036bd;
}
body main section.carrinho .passos a.ativo strong {
  color: #4baa2b;
  border-color: #4baa2b;
}
@media (max-width: 991px) {
  body main section.carrinho .passos a {
    width: 50px;
    text-align: center;
    font-size: 16px;
  }
  body main section.carrinho .passos a:after {
    display: none;
  }
}
body main section.carrinho .carrinho-mobile {
  margin-top: 20px;
  border-top: 1px solid rgba(220, 220, 220, 0.3019607843);
}
body main section.carrinho .carrinho-mobile .produto {
  border-bottom: 1px solid rgba(220, 220, 220, 0.3019607843);
  display: flex;
  margin: 0;
  padding: 20px 0;
  align-items: center;
}
body main section.carrinho .carrinho-mobile .produto img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.carrinho .carrinho-mobile .removerMobile {
  color: #0036bd;
  font-size: 14px;
  display: block;
  text-align: center;
}
body main section.carrinho .carrinho-mobile .removerMobile .loader {
  display: none;
}
body main section.carrinho .carrinho-mobile .removerMobile.loading span {
  display: none;
}
body main section.carrinho .carrinho-mobile .removerMobile.loading .loader {
  color: gray;
  display: inline-block;
}
body main section.carrinho .carrinho-mobile .titulo {
  color: #0036bd;
}
body main section.carrinho .carrinho-mobile .quantidade {
  font-size: 14px;
  color: dimgray;
  display: inline-block;
  min-width: 80px;
  padding: 5px 10px;
  margin-left: 5px;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: #ececec;
  position: relative;
}
body main section.carrinho .carrinho-mobile .quantidade.loading .opcoes {
  display: none;
}
body main section.carrinho .carrinho-mobile .quantidade.loading .qtd-loading {
  display: block;
}
body main section.carrinho .carrinho-mobile .quantidade .qtd-loading {
  display: none;
  position: absolute;
  top: calc(50% - 11px);
  right: 8px;
}
body main section.carrinho .carrinho-mobile .quantidade .qtd-loading i {
  color: dimgray;
  font-size: 16px;
  cursor: default;
}
body main section.carrinho .carrinho-mobile .quantidade .aumentar {
  position: absolute;
  top: 7px;
  right: 30px;
  cursor: pointer;
}
body main section.carrinho .carrinho-mobile .quantidade .aumentar i {
  color: dimgray;
  font-size: 16px;
}
body main section.carrinho .carrinho-mobile .quantidade .diminuir {
  position: absolute;
  bottom: 3px;
  right: 10px;
  cursor: pointer;
}
body main section.carrinho .carrinho-mobile .quantidade .diminuir i {
  color: dimgray;
  font-size: 16px;
}
body main section.carrinho .empty {
  margin-top: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  color: dimgray;
  font-style: italic;
}
@media (max-width: 991px) {
  body main section.carrinho .empty {
    margin-top: 20px;
    font-size: 18px;
  }
}
body main section.carrinho .tabela-carrinho {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto 0 auto;
}
body main section.carrinho .tabela-carrinho thead tr {
  overflow: hidden;
  border-radius: 30px;
}
body main section.carrinho .tabela-carrinho thead td {
  background-color: #339ecd;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgba(58, 58, 58, 0.3019607843);
}
body main section.carrinho .tabela-carrinho thead td:first-child {
  border-left: none;
}
body main section.carrinho .tabela-carrinho thead td:last-child {
  border-right: none;
}
body main section.carrinho .tabela-carrinho tbody td {
  padding: 30px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 220, 220, 0.3019607843);
}
body main section.carrinho .tabela-carrinho tbody td:first-child {
  border-left: none;
}
body main section.carrinho .tabela-carrinho tbody td:last-child {
  border-right: none;
}
body main section.carrinho .tabela-carrinho .quantidade {
  font-size: 22px;
  max-width: 180px;
  color: gray;
  padding: 15px 25px;
  outline: none;
  border: none;
  border-radius: 10px;
  background-color: #ececec;
  position: relative;
  min-width: 150px;
}
body main section.carrinho .tabela-carrinho .quantidade.loading .opcoes {
  display: none;
}
body main section.carrinho .tabela-carrinho .quantidade.loading .qtd-loading {
  display: block;
}
body main section.carrinho .tabela-carrinho .quantidade .qtd-loading {
  display: none;
  position: absolute;
  top: calc(50% - 18px);
  right: 20px;
}
body main section.carrinho .tabela-carrinho .quantidade .qtd-loading i {
  color: dimgray;
  cursor: default;
  font-size: 16px;
}
body main section.carrinho .tabela-carrinho .quantidade .aumentar {
  position: absolute;
  top: 3px;
  right: 20px;
  cursor: pointer;
}
body main section.carrinho .tabela-carrinho .quantidade .aumentar i {
  color: gray;
  font-size: 16px;
}
body main section.carrinho .tabela-carrinho .quantidade .diminuir {
  position: absolute;
  bottom: 3px;
  right: 20px;
  cursor: pointer;
}
body main section.carrinho .tabela-carrinho .quantidade .diminuir i {
  color: gray;
  font-size: 16px;
}
body main section.carrinho .tabela-carrinho td strong {
  font-weight: 400;
  color: #0036bd;
  font-size: 24px;
}
body main section.carrinho .tabela-carrinho td i {
  color: red;
  font-size: 22px;
  cursor: pointer;
}
body main section.carrinho .tabela-carrinho td .produto {
  width: 100%;
  display: flex;
  align-items: center;
}
body main section.carrinho .tabela-carrinho td .produto h5 {
  font-weight: 600;
  text-transform: uppercase;
  color: dimgray;
  font-size: 19px;
  margin-left: 20px;
}
body main section.carrinho .tabela-carrinho td .produto img {
  width: 100px;
}
body main section.carrinho .box {
  margin: 70px auto 0 auto;
}
body main section.carrinho .box .endereco {
  font-size: 18px;
  color: #0036bd;
  line-height: 20px;
}
body main section.carrinho .box .endereco strong {
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
body main section.carrinho .box .main-cta {
  background-color: #0036bd;
  color: white;
  display: inline-block;
  padding: 13px 23px;
  font-size: 17px;
  border-radius: 5px;
}
body main section.carrinho .box .main-cta img {
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  body main section.carrinho .box {
    margin-top: 20px;
    padding: 0;
  }
  body main section.carrinho .box .main-cta {
    margin-top: 15px;
  }
  body main section.carrinho .box .endereco {
    text-align: center;
    font-weight: 300;
    font-size: 15px;
  }
  body main section.carrinho .box .endereco strong {
    font-size: 18px;
  }
}
body main section.carrinho .enviado {
  max-width: 800px;
  margin: 60px auto 0 auto;
  color: #0036bd;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}
body main section.carrinho .enviado .texto {
  color: white;
  text-align: left;
  line-height: 1.4;
  background-color: #3aa700;
  padding: 30px 70px;
  border-radius: 7px;
  font-weight: 300;
  margin-top: 30px;
}
body main section.carrinho .enviado h1 {
  color: #3aa700;
  font-size: 39px;
  font-weight: 500;
  margin: auto;
  text-align: center;
}
body main section.carrinho .enviado h5 {
  text-align: center;
  color: gray;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  body main section.carrinho .enviado {
    font-size: 16px;
    margin-top: 20px;
    padding-bottom: 30px;
  }
  body main section.carrinho .enviado .texto {
    padding: 20px;
  }
  body main section.carrinho .enviado h5 {
    font-size: 18px;
  }
  body main section.carrinho .enviado h1 {
    font-size: 20px;
  }
}
body main section.carrinho .form {
  max-width: 750px;
  margin: 20px auto 0 auto;
  padding: 50px 60px;
  padding-bottom: 0;
}
body main section.carrinho .form .main-cta {
  margin-top: 20px;
}
body main section.carrinho .form h1 {
  font-size: 30px;
  color: #339ecd;
  font-weight: 600;
  text-align: center;
}
body main section.carrinho .form h5 {
  text-align: center;
  color: gray;
  margin-bottom: 5px;
}
body main section.carrinho .form h6 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 18px;
}
body main section.carrinho .form label {
  color: #0036bd;
  display: block;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
body main section.carrinho .form input,
body main section.carrinho .form select,
body main section.carrinho .form textarea {
  width: 100%;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
  background-color: #fafafa;
  border-radius: 5px;
  border: 1px solid gainsboro;
  box-shadow: 1px 5px 5px rgba(238, 238, 238, 0.5);
}
body main section.carrinho .form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body main section.carrinho .form textarea {
  min-height: 100px;
  resize: vertical;
}
@media (max-width: 991px) {
  body main section.carrinho .form {
    padding: 20px;
    margin-top: 0;
  }
  body main section.carrinho .form h1 {
    font-size: 20px;
  }
  body main section.carrinho .form h5 {
    font-size: 16px;
  }
  body main section.carrinho .form h6 {
    font-size: 15px;
  }
  body main section.carrinho .form label {
    font-size: 16px;
  }
  body main section.carrinho .form input,
  body main section.carrinho .form select,
  body main section.carrinho .form textarea {
    font-size: 15px;
    padding: 10px;
  }
}
body main section.revendedor-principal {
  padding: 70px 0 0 0;
  background-image: url("../image/bg-branco.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
body main section.revendedor-principal .box {
  border-radius: 20px;
  border: 2px solid gainsboro;
  padding: 50px 70px;
  font-size: 19px;
  font-weight: 500;
  color: #339ecd;
  margin-top: 50px;
}
body main section.revendedor-principal .box h1 {
  font-size: 32px;
  color: #0036bd;
  font-weight: 500;
}
body main section.revendedor-principal strong {
  color: #339ecd;
  font-size: 19px;
  font-weight: 600;
}
body main section.revendedor-principal h2 {
  font-size: 32px;
  font-weight: 500;
  color: #0036bd;
  margin-bottom: 20px;
}
body main section.revendedor-principal .foto {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  border-bottom: 10px solid #339ecd;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  body main section.revendedor-principal {
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
  }
  body main section.revendedor-principal .foto {
    height: 250px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body main section.revendedor-principal .box {
    margin-top: 30px;
    padding: 20px 30px;
    font-size: 16px;
  }
  body main section.revendedor-principal .box h1 {
    font-size: 18px;
  }
  body main section.revendedor-principal strong {
    font-size: 16px;
  }
  body main section.revendedor-principal h2 {
    font-size: 22px;
  }
}
body main section.revendedor-produtos {
  padding: 40px 0;
  background-image: url("../image/bg-diferenciais.png");
  background-size: cover;
}
@media (min-width: 992px) {
  body main section.revendedor-produtos .owl-carousel .owl-stage {
    display: flex;
  }
  body main section.revendedor-produtos .owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
  }
}
body main section.revendedor-produtos .owl-carousel .owl-nav {
  color: #0036bd;
}
body main section.revendedor-produtos .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -70px;
  top: calc(50% - 50px);
  font-size: 42px;
  color: white;
}
body main section.revendedor-produtos .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -70px;
  top: calc(50% - 50px);
  font-size: 42px;
  color: white;
}
body main section.revendedor-produtos .titulo {
  text-align: center;
}
body main section.revendedor-produtos .titulo h1 {
  color: white;
  font-size: 36px;
}
body main section.revendedor-produtos .titulo h3 {
  font-size: 20px;
  font-weight: 400;
  max-width: 800px;
  margin: auto;
  color: white;
}
@media (max-width: 991px) {
  body main section.revendedor-produtos {
    padding: 30px 0;
  }
  body main section.revendedor-produtos .titulo h1 {
    font-size: 20px;
  }
  body main section.revendedor-produtos .titulo h3 {
    font-size: 16px;
  }
}
body main section.revendedor-vantagens {
  padding: 50px 0;
  background-color: #fafafa;
  background-image: url("../image/bg-parede.png");
  background-size: cover;
}
body main section.revendedor-vantagens h1 {
  text-align: center;
  font-size: 36px;
  color: #339ecd;
  margin-bottom: 40px;
}
body main section.revendedor-vantagens .info {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: auto;
  margin-top: 50px;
  border-radius: 30px;
  border: 1px solid #339ecd;
  padding: 30px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
body main section.revendedor-vantagens .info p {
  margin: 0;
}
body main section.revendedor-vantagens .info:after {
  content: url("../image/ondinha.png");
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  pointer-events: none;
}
body main section.revendedor-vantagens .info h4 {
  font-size: 20px;
  color: dimgray;
  margin-bottom: 10px;
}
body main section.revendedor-vantagens .info .img {
  width: 100%;
}
body main section.revendedor-vantagens .itens {
  display: flex;
  align-items: start;
  justify-content: center;
}
body main section.revendedor-vantagens .itens .item {
  margin: 0 30px;
  font-size: 20px;
  text-align: center;
}
body main section.revendedor-vantagens .itens .item i {
  vertical-align: middle;
  font-size: 30px;
  color: #339ecd;
  margin-right: 7px;
}
@media (max-width: 991px) {
  body main section.revendedor-vantagens {
    padding: 30px 0;
  }
  body main section.revendedor-vantagens .info {
    max-width: none;
    margin-top: 20px;
    text-align: center;
  }
  body main section.revendedor-vantagens .info:after {
    display: none;
  }
  body main section.revendedor-vantagens .info h4 {
    font-size: 18px;
  }
  body main section.revendedor-vantagens .info .img {
    display: none;
  }
  body main section.revendedor-vantagens .itens {
    flex-flow: column;
    align-items: flex-start;
    justify-content: start;
  }
  body main section.revendedor-vantagens .itens .item {
    text-align: left;
    font-size: 16px;
    margin: 10px 0;
  }
  body main section.revendedor-vantagens .itens .item i {
    font-size: 18px;
  }
  body main section.revendedor-vantagens h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
body main section.revendedor-videos {
  background-image: url("../image/bg-branco.png");
  background-size: cover;
  padding: 70px 0 30px 0;
}
body main section.revendedor-videos .list {
  height: 450px;
  overflow-y: scroll;
  background-color: #fafafa;
  border: 1px solid lightgray;
}
body main section.revendedor-videos .list .item {
  display: flex;
  align-items: start;
  padding: 20px;
  border-bottom: 1px solid lightgray;
  color: black;
  font-size: 15px;
}
body main section.revendedor-videos .list .item.active {
  background-color: #e2e2e2 !important;
}
body main section.revendedor-videos .list .item:hover {
  background-color: #f1f1f1;
}
body main section.revendedor-videos .list .item:last-child {
  border: none;
}
body main section.revendedor-videos .list .item h5 {
  margin-bottom: 0;
  font-size: 18px;
}
body main section.revendedor-videos .list .item .vid {
  height: 100px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  justify-content: center;
  width: 150px;
  flex: 0 0 150px;
  margin-right: 20px;
  position: relative;
  color: white;
  font-size: 30px;
}
body main section.revendedor-videos .list .item .vid:after {
  content: "";
  position: absolute;
  background-color: black;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body main section.revendedor-videos .list .item .vid i {
  position: relative;
  z-index: 1;
}
body main section.revendedor-videos .video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  background-size: cover;
  background-position: center;
  color: white;
  font-size: 70px;
  position: relative;
  border: 1px solid lightgray;
}
body main section.revendedor-videos .video:after {
  content: "";
  position: absolute;
  background-color: black;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body main section.revendedor-videos .video i {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  body main section.revendedor-videos {
    padding: 30px 0;
  }
  body main section.revendedor-videos .video {
    height: 300px;
  }
  body main section.revendedor-videos .list {
    height: 300px;
  }
  body main section.revendedor-videos .list .item {
    font-size: 13px;
    padding: 10px;
  }
  body main section.revendedor-videos .list .item h5 {
    font-size: 14px;
  }
}
body main section.trabalhe-conosco {
  padding: 100px 0;
  background-image: url("../image/bg-branco.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  margin-top: -90px;
}
body main section.trabalhe-conosco .chamada {
  padding: 30px 0;
  text-align: center;
}
body main section.trabalhe-conosco .chamada .txt-in {
  max-width: 800px;
  margin: auto;
  font-size: 19px;
  font-weight: 300;
  color: black;
}
body main section.trabalhe-conosco .chamada .txt-in h1 {
  font-size: 36px;
  font-weight: 400;
  color: #339ecd;
  margin-bottom: 20px;
}
body main section.trabalhe-conosco .chamada .txt-in h1 strong {
  color: rgb(54, 54, 54);
  display: block;
  font-weight: 500;
}
body main section.trabalhe-conosco .chamada .txt-in h3 {
  font-weight: 400;
  max-width: none;
}
body main section.trabalhe-conosco .chamada .txt-in h3 strong {
  font-weight: 600;
}
body main section.trabalhe-conosco .vagas {
  background-color: white;
  margin: auto;
  border: 1px solid gainsboro;
  margin-top: 0px;
  border-radius: 30px;
  padding: 40px 70px;
  text-align: center;
  margin-bottom: 40px;
}
body main section.trabalhe-conosco .vagas .btn-selecione {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  background-color: white;
  color: #339ecd;
  border: 2px solid #339ecd;
  transition: 0.3s all;
}
body main section.trabalhe-conosco .vagas .btn-selecione:hover {
  background-color: #339ecd;
  color: white;
}
body main section.trabalhe-conosco .vagas .chamada-principal {
  font-size: 24px;
  color: #339ecd;
  font-weight: 600;
  line-height: 1.1;
}
body main section.trabalhe-conosco .vagas .lista-vagas {
  text-align: left;
  color: #666666;
  font-size: 19px;
  overflow-y: scroll;
  height: 350px;
}
body main section.trabalhe-conosco .vagas .lista-vagas::-webkit-scrollbar {
  width: 10px;
  background-color: #ececec;
}
body main section.trabalhe-conosco .vagas .lista-vagas::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #339ecd;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
body main section.trabalhe-conosco .vagas .lista-vagas::-webkit-scrollbar-thumb:hover {
  background: gray;
}
body main section.trabalhe-conosco .vagas .lista-vagas hr {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 20px auto;
}
body main section.trabalhe-conosco .vagas .lista-vagas hr:last-child {
  display: none;
}
body main section.trabalhe-conosco .vagas .lista-vagas h4 {
  color: #339ecd;
  margin-bottom: 0;
  font-weight: 600;
}
body main section.trabalhe-conosco .vagas .lista-vagas .itens {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
body main section.trabalhe-conosco .vagas .lista-vagas .itens i {
  color: #339ecd;
  margin-right: 5px;
  font-weight: 500;
}
body main section.trabalhe-conosco .vagas .lista-vagas .itens i:last-child {
  margin-left: 10px;
}
body main section.trabalhe-conosco h1 {
  font-weight: 400;
  font-size: 32px;
  color: #0036bd;
}
body main section.trabalhe-conosco h3 {
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
}
body main section.trabalhe-conosco form .box-file .text {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: black;
}
body main section.trabalhe-conosco form .box-file .flex-box {
  display: flex;
  margin-top: 5px;
  cursor: pointer;
}
body main section.trabalhe-conosco form .box-file .flex-box .name-file {
  border: 1px solid #dfdfdf;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 500;
  color: #565656;
  outline: none;
  min-height: 49px;
  background-color: #f7f7f7;
  width: 100%;
}
body main section.trabalhe-conosco form .box-file .flex-box .selecionar {
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #0036bd;
  border-radius: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.trabalhe-conosco form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
body main section.trabalhe-conosco form button {
  margin-right: 0 !important;
  margin-top: 20px !important;
}
body main section.trabalhe-conosco form input,
body main section.trabalhe-conosco form select,
body main section.trabalhe-conosco form textarea {
  width: 100%;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
  background-color: #fafafa;
  border-radius: 5px;
  border: 1px solid gainsboro;
  box-shadow: 1px 5px 5px rgba(238, 238, 238, 0.5);
}
body main section.trabalhe-conosco form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body main section.trabalhe-conosco form textarea {
  min-height: 100px;
  resize: vertical;
}
@media (max-width: 991px) {
  body main section.trabalhe-conosco {
    padding: 20px 10px;
    margin-top: 0;
  }
  body main section.trabalhe-conosco h1 {
    font-size: 22px;
  }
  body main section.trabalhe-conosco h3 {
    font-size: 16px;
  }
  body main section.trabalhe-conosco .chamada {
    padding-bottom: 20px;
    padding-top: 0;
  }
  body main section.trabalhe-conosco .chamada .txt-in {
    font-size: 16px;
  }
  body main section.trabalhe-conosco .chamada .txt-in h1 {
    font-size: 20px;
  }
  body main section.trabalhe-conosco .chamada .txt-in h3 {
    font-size: 16px;
  }
  body main section.trabalhe-conosco form .box-file .text {
    font-size: 12px;
  }
  body main section.trabalhe-conosco form .box-file .flex-box .name-file {
    padding: 10px;
    font-size: 12px;
  }
  body main section.trabalhe-conosco form .box-file .flex-box .selecionar {
    font-size: 13px;
  }
  body main section.trabalhe-conosco form label {
    font-size: 16px;
  }
  body main section.trabalhe-conosco form input,
  body main section.trabalhe-conosco form select,
  body main section.trabalhe-conosco form textarea {
    font-size: 15px;
    padding: 10px;
  }
  body main section.trabalhe-conosco form button {
    margin-bottom: 30px !important;
  }
  body main section.trabalhe-conosco .vagas {
    padding: 20px;
    margin-bottom: 20px;
  }
  body main section.trabalhe-conosco .vagas .btn-selecione {
    font-size: 12px;
    margin-top: 20px;
  }
  body main section.trabalhe-conosco .vagas .chamada-principal {
    font-size: 16px;
    margin-bottom: 20px;
  }
  body main section.trabalhe-conosco .vagas .lista-vagas {
    font-size: 14px;
    height: 180px;
  }
  body main section.trabalhe-conosco .vagas .lista-vagas .itens {
    font-size: 14px;
  }
  body main section.trabalhe-conosco .vagas .lista-vagas h4 {
    font-size: 17px;
  }
}
body main section.contato-lateral .box {
  background-color: white;
  border: 2px solid #339ecd;
  padding: 0 80px 50px 80px;
  margin-top: 50px;
  border-radius: 50px 0;
  box-shadow: 5px 10px 10px rgba(238, 238, 238, 0.7);
}
body main section.contato-lateral .box .img {
  width: 300px;
  max-width: 100%;
  display: block;
  margin: auto;
  margin-top: -50px;
  margin-bottom: 30px;
}
body main section.contato-lateral .box h4 {
  color: #0036bd;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
body main section.contato-lateral .box .main-phone {
  margin-top: 20px;
}
@media (max-width: 991px) {
  body main section.contato-lateral .box {
    padding: 30px;
    padding-top: 0;
  }
  body main section.contato-lateral .box .img {
    width: 150px;
    margin-bottom: 25px;
  }
  body main section.contato-lateral .box h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
body main section.blog-listagem {
  padding: 100px 0 70px 0;
  margin-top: -90px;
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body main section.blog-listagem .titulo-cat {
  color: #0036bd;
  font-size: 28px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: -15px;
}
body main section.blog-listagem .notfound {
  color: dimgray;
  text-align: center;
  font-style: italic;
}
body main section.blog-listagem .categorias {
  border-radius: 20px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
  padding: 30px 50px;
}
body main section.blog-listagem .categorias:first-child {
  margin-top: 50px;
}
body main section.blog-listagem .categorias a {
  display: block;
  color: black;
  font-size: 18px;
  margin: 10px 0;
}
body main section.blog-listagem .categorias a.active {
  color: #0036bd;
}
body main section.blog-listagem .categorias a.primary i {
  color: #0036bd;
}
body main section.blog-listagem .categorias a i {
  color: lightgray;
}
body main section.blog-listagem .categorias h3 {
  color: #0036bd;
  font-weight: 400;
  font-size: 22px;
}
body main section.blog-listagem .categorias hr {
  background-color: gray;
}
body main section.blog-listagem .listagem .post {
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  border: 1px solid lightgray;
  display: block;
  margin-top: 50px;
  height: calc(100% - 50px);
}
body main section.blog-listagem .listagem .post .content {
  padding: 30px 50px;
}
body main section.blog-listagem .listagem .post img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.blog-listagem .listagem .post h2 {
  color: black;
  margin: 0;
  font-size: 21px;
}
@media (max-width: 991px) {
  body main section.blog-listagem {
    padding: 0;
    margin-top: 0;
  }
  body main section.blog-listagem h2 {
    margin-top: 20px;
    margin-bottom: -10px;
  }
  body main section.blog-listagem .categorias {
    padding: 30px;
    border-radius: 10px;
  }
  body main section.blog-listagem .categorias:first-child {
    margin-top: 30px;
  }
  body main section.blog-listagem .categorias a {
    font-size: 16px;
  }
  body main section.blog-listagem .categorias h3 {
    font-size: 18px;
  }
  body main section.blog-listagem .listagem .post {
    margin-top: 30px;
    border-radius: 0;
    height: auto;
  }
  body main section.blog-listagem .listagem .post .content {
    padding: 20px 30px;
  }
  body main section.blog-listagem .listagem .post h2 {
    font-size: 17px;
  }
}
body main section.blog-interna {
  padding: 40px 0 0 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}
body main section.blog-interna h1,
body main section.blog-interna h2,
body main section.blog-interna h3,
body main section.blog-interna h4 {
  font-weight: 600;
}
body main section.blog-interna h1.titulo-blog,
body main section.blog-interna h2.titulo-blog,
body main section.blog-interna h3.titulo-blog,
body main section.blog-interna h4.titulo-blog {
  font-weight: 600;
}
body main section.blog-interna .texto a {
  color: gray;
  text-decoration: underline;
}
body main section.blog-interna img {
  width: 100%;
  margin: 20px 0;
}
body main section.blog-interna .compartilhe {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 10px;
  color: dimgray;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  body main section.blog-interna {
    font-size: 16px;
    padding: 30px 0;
  }
}
body footer section.barra-fixa {
  position: fixed;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #0036bd;
  width: 100%;
  padding: 10px 80px;
  z-index: 600;
  transition: all 0.5s;
}
body footer section.barra-fixa .btn-orcamento {
  background-color: #ff5d00;
  padding: 12px 10px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  color: white;
  width: 275px;
  margin-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}
body footer section.barra-fixa .btn-orcamento:hover {
  background-color: #eb1e0e;
}
body footer section.barra-fixa .btn-orcamento .icon {
  color: #ff5d00;
  background-color: white;
  border-radius: 100%;
  font-size: 13px;
  padding: 4px 4px;
  margin-right: 10px;
  flex: 0 0 29px;
}
body footer section.barra-fixa .btn-zap {
  display: inline-block;
  background-color: #4baa2b;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: white;
  transition: 0.3s all;
}
body footer section.barra-fixa .btn-zap:hover {
  background-color: #318116;
}
body footer section.barra-fixa .btn-zap i {
  margin-right: 10px;
  font-size: 22px;
  vertical-align: middle;
}
body footer section.barra-fixa .main-phone strong {
  display: block;
  margin-left: 0;
}
body footer section.barra-fixa .row-flex {
  display: inline-flex;
}
body footer section.barra-fixa .row-flex a:first-child {
  margin-right: 30px;
}
@media (max-width: 991px) {
  body footer section.barra-fixa {
    display: none;
  }
}
body footer section.barra-fixa.oculta {
  bottom: -100px;
}
body footer section.barra-fixa-mobile {
  background-color: #0036bd;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  padding: 5px 0;
  border-top: 2px solid white;
  transition: 0.3s all;
}
body footer section.barra-fixa-mobile .list-itens {
  display: flex;
  justify-content: space-around;
  font-size: 30px;
}
body footer section.barra-fixa-mobile .list-itens a {
  color: white;
}
body footer section.barra-fixa-mobile .list-itens a i {
  color: white;
}
@media screen and (min-width: 992px) {
  body footer section.barra-fixa-mobile {
    display: none;
  }
}
body footer section.footer-mapa {
  height: 500px;
  position: relative;
  z-index: 5;
}
body footer section.footer-mapa iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  body footer section.footer-mapa {
    height: 250px;
  }
  body footer section.footer-mapa.home {
    margin-top: 0;
  }
}
body footer section.footer {
  background-color: #e7e7e7;
  color: gray;
  padding: 15px 0;
  margin-bottom: 74px;
}
@media (max-width: 991px) {
  body footer section.footer {
    text-align: center;
    font-size: 15px;
    margin-bottom: 57px;
  }
  body footer section.footer img {
    margin-top: 15px;
  }
}
body footer section.botao_whatsapp {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 610;
  bottom: 30px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  right: 30px;
  border-radius: 75px;
  transition: all 0.5s;
}
body footer section.botao_whatsapp i.fab.fa-whatsapp {
  color: white;
  font-size: 46px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  body footer section.botao_whatsapp.scroll {
    bottom: 100px;
  }
}
body footer section.botao_whatsapp:hover {
  background-color: #1f9249;
}
@media screen and (max-width: 991px) {
  body footer section.botao_whatsapp {
    bottom: 75px;
    right: 10px;
  }
}
body footer .lente-whatsapp {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
body footer .lente-whatsapp.exibir {
  opacity: 1;
  pointer-events: all;
}
body footer section.modal-whatsapp {
  font-family: "Open Sans";
  position: fixed;
  right: 17px;
  bottom: 30px;
  background-image: url("../../default/image/bg-whatsapp-min.jpg");
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 7px 0px #373737;
  max-width: 320px;
  max-height: 570px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 9999;
  transform-origin: 100% 100%;
  transform: scale(0);
  transition: all 0.3s;
}
body footer section.modal-whatsapp.exibir {
  transform: scale(1);
}
body footer section.modal-whatsapp.scroll {
  bottom: 100px;
}
@media screen and (max-width: 991px) {
  body footer section.modal-whatsapp {
    right: 0px;
    top: 0px;
    bottom: unset !important;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    border-radius: 0px;
  }
}
body footer section.modal-whatsapp .cabecario-zap {
  background-color: #2e8c7d;
  font-size: 17px;
  color: #97c5be;
  padding: 12px 20px 4px 20px;
}
body footer section.modal-whatsapp .cabecario-zap span.zaptitulo {
  transform: translateY(-4px);
  display: inline-block;
}
body footer section.modal-whatsapp .cabecario-zap i.fab.fa-whatsapp {
  font-size: 25px;
  margin-right: 10px;
}
body footer section.modal-whatsapp .cabecario-zap i.far.fa-times-circle {
  font-size: 25px;
  float: right;
  margin-right: 0px;
  cursor: pointer;
}
body footer section.modal-whatsapp .msg-bot {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  margin: 15px;
  padding: 15px;
  border-radius: 20px;
  font-size: 13.4px;
  position: relative;
}
body footer section.modal-whatsapp .msg-bot::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 15px solid transparent;
  border-top: 21px solid white;
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: -1;
}
body footer section.modal-whatsapp .msg-bot :first-child {
  margin-top: 7px;
}
body footer section.modal-whatsapp .msg-bot label {
  font-weight: 700;
  font-size: 12px;
  color: black;
  display: block;
}
body footer section.modal-whatsapp .msg-bot input,
body footer section.modal-whatsapp .msg-bot select {
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid #cacaca;
  outline: none;
  width: 100%;
  background-color: transparent;
  padding: 4px 0px;
  box-sizing: border-box;
}
body footer section.modal-whatsapp .msg-bot select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 20px;
  padding-right: 25px;
}
body footer section.modal-whatsapp .msg-bot select:focus {
  border-bottom-color: #2e8c7d;
}
body footer section.modal-whatsapp .campo-acao {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  padding: 0px 10px;
  height: 44px;
}
@media (max-width: 991px) {
  body footer section.modal-whatsapp .campo-acao {
    position: static;
  }
}
body footer section.modal-whatsapp .campo-acao .texto {
  width: 100%;
  padding-right: 10px;
  font-family: "Open Sans", sans-serif;
}
body footer section.modal-whatsapp .campo-acao .texto input {
  border: none;
  border-radius: 32px;
  padding: 9px 18px;
  display: flex;
  outline-color: transparent;
  width: 100%;
  outline: none !important;
  font-size: 14px;
}
body footer section.modal-whatsapp .campo-acao .button-zap {
  background-color: transparent;
}
body footer section.modal-whatsapp .campo-acao .button-zap button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #2e8c7d;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body footer section.modal-whatsapp .campo-acao .button-zap button:disabled {
  background-color: #a7a7a7;
  cursor: not-allowed;
}
body footer section.modal-whatsapp .campo-acao .button-zap button i.fas.fa-paper-plane {
  font-size: 19px;
  transform: rotate(49deg) translate(-2px, 0px);
  position: relative;
  transform-origin: center;
}
body footer section.modal-whatsapp .hide-desktop {
  display: none;
}
@media (max-width: 991px) {
  body footer section.modal-whatsapp .campo-acao {
    display: none;
  }
  body footer section.modal-whatsapp .acao-mobile {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #2e8c7d;
    color: white;
    border-radius: 9px;
    text-align: center;
    width: calc(100% - 40px);
    display: block;
    padding: 7px 15px;
    margin: 0 20px;
  }
  body footer section.modal-whatsapp .acao-mobile:disabled {
    background-color: #a7a7a7;
    cursor: not-allowed;
  }
  body footer section.modal-whatsapp .acao-mobile i {
    margin-right: 5px;
  }
  body footer section.modal-whatsapp .hide-desktop {
    display: block;
  }
}
body footer .menu-mobile {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../image/bg-branco.png");
  background-position: center;
  background-color: white;
  position: fixed;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 998;
  padding-bottom: 65px;
  transition: all 0.5s;
}
body footer .menu-mobile.aberto {
  left: 0px;
}
body footer .menu-mobile .fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #0036bd;
}
body footer .menu-mobile .logo {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}
body footer .menu-mobile .logo img {
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 20px;
}
body footer .menu-mobile ul {
  padding: 0px;
}
body footer .menu-mobile ul li {
  list-style: none;
  margin: 5px;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
body footer .menu-mobile ul li:last-child {
  border-bottom: none;
}
body footer .menu-mobile ul li a {
  color: #0036bd;
  font-size: 16px;
  padding: 0 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}/*# sourceMappingURL=custom.css.map */