@charset "UTF-8";
/* CLASSES GLOBAIS */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.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: 1520px;
}
.container.grandao {
  max-width: 1750px;
}

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;
  background-image: url("../image/fundo-produto.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.card-produto.small .botoes .ver-produtos {
  font-size: 13px;
}
.card-produto.small .botoes .orcamento {
  padding: 10px 18px;
  font-size: 15px;
}
.card-produto {
  /* o selo "APROVEITE!" já vem embutido no fundo-produto.png (verde) */
}
.card-produto .tag {
  display: none;
}
.card-produto .botoes {
  display: flex;
  background: linear-gradient(90deg, rgb(75, 170, 43) 0%, rgb(40, 39, 38) 100%);
  text-align: center;
}
.card-produto .botoes .ver-produtos {
  background-color: #2f80ed;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  display: block;
  transform: skew(-10deg);
  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: #2f80ed;
  transform: skew(10deg);
  transition: 0.3s all;
}
.card-produto .botoes .ver-produtos:hover {
  background-color: #2368c4;
}
.card-produto .botoes .ver-produtos:hover::after {
  background-color: #2368c4;
}
.card-produto .botoes span {
  display: block;
  transform: skew(10deg);
}
.card-produto .botoes .orcamento {
  background-color: #e11d1d;
  font-size: 16px;
  color: white;
  display: block;
  padding: 10px 20px;
  transform: skew(-10deg);
  transition: 0.3s all;
}
.card-produto .botoes .orcamento:hover {
  background-color: #c11616;
}
.card-produto .imagem {
  height: 350px;
  padding: 0 10px 30px 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: #4baa2b;
  font-size: 22px;
  margin-top: 20px;
}
.card-produto .conteudo h2 {
  color: #4baa2b;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  padding: 0 13px 0 0px;
}
@media (max-width: 991px) {
  .card-produto .conteudo {
    margin-top: 0;
    padding: 20px;
  }
  .card-produto .conteudo h2 {
    font-size: 20px;
    margin-top: 15px;
  }
  .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;
    margin-top: 50px;
  }
  .card-produto .imagem img {
    -o-object-position: center;
       object-position: center;
  }
}

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

.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: #2E3092;
  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;
  display: flex;
  gap: 5px;
}
.main-phone span strong {
  font-weight: 500;
  color: #2E3092;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .main-phone span {
    display: block;
  }
}
.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: 14px;
  }
  .main-phone span strong {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 374px) {
  .main-phone .icon {
    margin-right: 5px;
  }
  .main-phone span {
    font-size: 12px;
  }
}

body {
  font-size: 1em;
  font-family: "Manrope", sans-serif;
  color: #2E3092;
  text-rendering: optimizeLegibility;
}
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 header {
  position: sticky;
  top: 0;
  z-index: 100;
}
body section.header {
  position: relative;
  z-index: 20;
  background-color: #fff;
  box-shadow: 0 6px 26px rgba(46, 48, 146, 0.07);
}
body section.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px 0;
}
body section.header .brand {
  display: inline-flex;
  flex: 0 0 auto;
}
body section.header .brand .logo {
  width: auto;
  max-height: 56px;
  transition: 0.3s all;
}
body section.header .brand:hover .logo {
  transform: translateY(-2px);
}
body section.header .menu-desktop {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
body section.header .menu-desktop ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body section.header .menu-desktop .menu-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2E3092;
  padding: 6px 0;
  transition: 0.25s all;
}
body section.header .menu-desktop .menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background-color: #FFC300;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s all;
}
body section.header .menu-desktop .menu-link:hover::after {
  transform: scaleX(1);
}
body section.header .header-acoes {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
body section.header .btn-lojista {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFC300;
  color: #2E3092;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 40px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s all;
}
body section.header .btn-lojista i {
  font-size: 12px;
  transition: 0.25s all;
}
body section.header .btn-lojista:hover {
  background-color: rgb(219.3, 167.7, 0);
  transform: translateY(-2px);
}
body section.header .btn-lojista:hover i {
  transform: translateX(3px);
}
body section.header .hamburguer {
  display: none;
  background: none;
  border: 0;
  padding: 4px 6px;
  font-size: 26px;
  line-height: 1;
  color: #2E3092;
  cursor: pointer;
}
@media (max-width: 991px) {
  body section.header .menu-desktop {
    display: none;
  }
  body section.header .hamburguer {
    display: inline-flex;
  }
  body section.header .header-inner {
    padding: 12px 0;
  }
  body section.header .brand .logo {
    max-height: 44px;
  }
}
@media (max-width: 575px) {
  body section.header .header-inner {
    gap: 12px;
  }
  body section.header .btn-lojista {
    padding: 11px 16px;
    font-size: 12px;
  }
  body section.header .brand .logo {
    max-height: 38px;
  }
}
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: #2E3092;
  animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
body {
  /* MODAL */
}
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: #2E3092;
  padding: 13px 34px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  background-color: #FFC300;
  outline: none;
  border: none;
  transition: 0.25s all;
}
body .modal-body .enviar i {
  vertical-align: middle;
  font-size: 16px;
  margin-left: 12px;
}
body .modal-body .enviar:hover {
  background-color: rgb(219.3, 167.7, 0);
  transform: translateY(-2px);
}
body .modal-body .conteudo-modal {
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: dimgray;
}
body .modal-body .conteudo-modal h1 {
  color: #2E3092;
  font-size: 32px;
  font-weight: 500;
}
body .modal-body.video {
  border-radius: 0;
  min-height: 650px;
}
@media (max-width: 991px) {
  body .modal-body.video {
    min-height: 360px;
  }
}
body .modal-body.video {
  padding: 0;
}
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: #2E3092;
  font-weight: 500;
}
body section.formulario-enviado .box-in .btn-voltar {
  color: #2E3092;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #2E3092;
  transition: 0.3s all;
}
body section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #2E3092;
  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: #2E3092;
}
body section.formulario-enviado .box-in h1 strong {
  display: block;
  font-weight: 400;
  color: #FFC300;
}
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: 60px 0px;
  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: #2E3092;
}
body .politica-termos strong,
body .politica-termos b {
  color: #2E3092;
}
@media (max-width: 991px) {
  body .politica-termos {
    padding: 20px 0px;
    font-size: 15px;
  }
  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: 0;
    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: 1410px !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: 248px;
  }
}
body main section.header-conteudo {
  background-size: cover;
  background-position: bottom;
  padding: 30px 0 30px 0;
  color: white;
  font-size: 19px;
  font-weight: 300;
}
body main section.header-conteudo.small {
  background-image: url("../image/header-small.png");
  padding-bottom: 30px;
}
body main section.header-conteudo h1 {
  font-size: 48px;
  font-weight: 400;
}
@media (max-width: 991px) {
  body main section.header-conteudo {
    background-color: #540000;
    border-bottom: 5px solid #2E3092;
    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: lowercase;
  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: #2E3092;
  background-color: #2E3092;
}
body main section.contato-lateral h3 {
  max-width: 300px;
}
body main section.contato-lateral .box {
  background-color: #f7f7f7;
  border: 1px solid gainsboro;
  padding: 30px 50px;
  font-size: 18px;
  font-weight: 300;
  margin-top: 30px;
}
body main section.contato-lateral .box:last-child {
  font-size: 18px;
}
body main section.contato-lateral .box h2 {
  color: #2E3092;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 400;
}
body main section.contato-lateral .box .row-flex {
  justify-content: flex-start;
  margin: 20px 0;
}
body main section.contato-lateral .box .row-flex .main-phone:first-child {
  margin-right: 20px;
}
@media (max-width: 991px) {
  body main section.contato-lateral .box {
    font-size: 15px;
    padding: 20px 30px;
  }
  body main section.contato-lateral .box .row-flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  body main section.contato-lateral .box .row-flex .main-phone {
    width: 100%;
  }
  body main section.contato-lateral .box .row-flex .main-phone:first-child {
    margin-bottom: 10px;
    margin-right: 0;
  }
  body main section.contato-lateral .box:last-child {
    font-size: 15px;
  }
  body main section.contato-lateral .box h2 {
    font-size: 20px;
  }
}
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 .sec-qualidades {
  background-color: #090A31;
  padding: 60px 0;
}
body main .sec-qualidades .row {
  align-items: stretch;
}
body main .sec-qualidades .qualidade {
  height: 100%;
  text-align: center;
  padding: 20px 26px;
}
@media (min-width: 992px) {
  body main .sec-qualidades [class*=col-]:not(:last-child) .qualidade {
    border-right: 1px solid rgba(255, 195, 0, 0.28);
  }
}
body main .sec-qualidades .icone {
  margin-bottom: 20px;
}
body main .sec-qualidades .icone img {
  width: 86px;
  height: 86px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .sec-qualidades .texto h1 {
  color: #FFC300;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
body main .sec-qualidades .texto p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 991px) {
  body main .sec-qualidades {
    padding: 44px 0;
  }
  body main .sec-qualidades .qualidade {
    padding: 22px 16px;
  }
  body main .sec-qualidades .icone img {
    width: 72px;
    height: 72px;
  }
}
body main .sec-parceria {
  background-color: #fff;
  padding: 70px 0;
}
body main .sec-parceria .badge-lojista {
  display: inline-block;
  background: rgba(255, 195, 0, 0.3);
  border: 1px solid #FFC300;
  color: #2E3092;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
body main .sec-parceria .titulo-parceria {
  max-width: 560px;
  margin-bottom: 34px;
}
body main .sec-parceria .titulo-parceria h1 {
  color: #2E3092;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body main .sec-parceria .titulo-parceria p {
  color: rgba(46, 48, 146, 0.75);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
body main .sec-parceria .itens-parceria {
  max-width: 580px;
}
body main .sec-parceria .item-parceria {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
body main .sec-parceria .item-parceria .icone {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .sec-parceria .item-parceria .icone img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .sec-parceria .item-parceria .conteudo h1 {
  color: #2E3092;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
body main .sec-parceria .item-parceria .conteudo p {
  color: rgba(46, 48, 146, 0.7);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
body main .sec-parceria .card-form {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(46, 48, 146, 0.12);
}
body main .sec-parceria .card-form h2 {
  color: #2E3092;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}
body main .sec-parceria .card-form .sub {
  color: rgba(46, 48, 146, 0.65);
  font-size: 15px;
  margin-bottom: 22px;
}
body main .sec-parceria .card-form label {
  display: block;
  color: #2E3092;
  font-weight: 700;
  font-size: 14px;
  margin: 14px 0 6px;
}
body main .sec-parceria .card-form label span {
  font-weight: 500;
  opacity: 0.55;
}
body main .sec-parceria .card-form input[type=text] {
  width: 100%;
  border: 1px solid #e7e3f2;
  background-color: #f7f6fb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #2E3092;
  outline: none;
  transition: 0.2s all;
}
body main .sec-parceria .card-form input[type=text]::-moz-placeholder {
  color: #b8b4cc;
}
body main .sec-parceria .card-form input[type=text]::placeholder {
  color: #b8b4cc;
}
body main .sec-parceria .card-form input[type=text]:focus {
  border-color: #2E3092;
  background-color: #fff;
}
body main .sec-parceria .card-form .radios {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
body main .sec-parceria .card-form .radios .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}
body main .sec-parceria .card-form .radios .radio input {
  width: auto;
  accent-color: #2E3092;
}
body main .sec-parceria .card-form .enviar {
  width: 100%;
  background-color: #FFC300;
  color: #2E3092;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  margin-top: 26px;
  cursor: pointer;
  transition: 0.2s all;
}
body main .sec-parceria .card-form .enviar:hover {
  background-color: rgb(219.3, 167.7, 0);
}
body main .sec-parceria .card-form .aviso-form {
  text-align: center;
  color: rgba(46, 48, 146, 0.55);
  font-size: 12px;
  line-height: 1.4;
  margin: 16px 0 0;
}
@media (max-width: 991px) {
  body main .sec-parceria {
    padding: 44px 0;
  }
  body main .sec-parceria .titulo-parceria h1 {
    font-size: 24px;
  }
  body main .sec-parceria .card-form {
    padding: 28px;
  }
}
body main .sec-catalogo {
  background: #2b1d4a url("../../uploads/fundo-catalogo.png") center/cover no-repeat;
  padding: 60px 0;
  color: #fff;
}
body main .sec-catalogo .logo-catalogo {
  margin-bottom: 30px;
}
body main .sec-catalogo .logo-catalogo img {
  height: 74px;
  width: auto;
}
body main .sec-catalogo .texto-catalogo {
  max-width: 540px;
}
body main .sec-catalogo .texto-catalogo h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 18px;
}
body main .sec-catalogo .texto-catalogo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}
body main .sec-catalogo .texto-catalogo p strong {
  color: #fff;
}
body main .sec-catalogo .btn-catalogo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 26px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s all;
}
body main .sec-catalogo .btn-catalogo .ico {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 15px;
}
body main .sec-catalogo .btn-catalogo:hover {
  background-color: #FFC300;
  border-color: #FFC300;
  color: #2E3092;
}
body main .sec-catalogo .btn-catalogo:hover .ico {
  background-color: rgba(46, 48, 146, 0.15);
}
body main .sec-catalogo .imagem-catalogo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  body main .sec-catalogo {
    padding: 44px 0;
  }
  body main .sec-catalogo .logo-catalogo img {
    height: 58px;
  }
  body main .sec-catalogo .texto-catalogo h1 {
    font-size: 24px;
  }
  body main .sec-catalogo .imagem-catalogo {
    margin-top: 26px;
  }
}
body main .sec-galeria {
  background-color: #fbe7e7;
  background: #F3F3F3;
  padding: 70px 0;
  overflow: hidden;
}
body main .sec-galeria .badge-galeria {
  display: inline-block;
  background: rgba(255, 195, 0, 0.3);
  border: 1px solid #EBB632;
  color: #2E3092;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
body main .sec-galeria .texto-galeria {
  max-width: 440px;
}
body main .sec-galeria .texto-galeria h1 {
  color: #2E3092;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body main .sec-galeria .texto-galeria p {
  color: rgba(46, 48, 146, 0.75);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
body main .sec-galeria .btn-galeria {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  background-color: #FFC300;
  color: #2E3092;
  font-weight: 800;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.25s all;
}
body main .sec-galeria .btn-galeria i {
  font-size: 12px;
  transition: 0.25s all;
}
body main .sec-galeria .btn-galeria:hover {
  background-color: rgb(219.3, 167.7, 0);
  transform: translateY(-2px);
}
body main .sec-galeria .btn-galeria:hover i {
  transform: translateX(3px);
}
body main .sec-galeria .owl-galeria .owl-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.82);
  opacity: 0.55;
}
body main .sec-galeria .owl-galeria .owl-item.center {
  transform: scale(1);
  opacity: 1;
}
body main .sec-galeria .owl-galeria .slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
body main .sec-galeria .galeria-rodape {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 26px;
}
body main .sec-galeria .galeria-legenda {
  color: #2E3092;
  font-weight: 700;
  font-size: 15px;
}
body main .sec-galeria .galeria-nav {
  display: flex;
  gap: 12px;
}
body main .sec-galeria .galeria-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(46, 48, 146, 0.4);
  background: transparent;
  color: #2E3092;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s all;
}
body main .sec-galeria .galeria-nav button:hover {
  background-color: #FFC300;
  border-color: #FFC300;
}
@media (max-width: 991px) {
  body main .sec-galeria {
    padding: 44px 0;
  }
  body main .sec-galeria .texto-galeria h1 {
    font-size: 24px;
  }
}
body main .sec-video {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  max-height: 600px;
  overflow: hidden;
  background-color: #000;
}
body main .sec-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  body main .sec-video {
    height: 46vh;
    min-height: 240px;
  }
}
body main .sec-etapas {
  background-color: #FFF;
  padding: 70px 0;
}
body main .sec-etapas .etapas-topo {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}
body main .sec-etapas .etapas-topo h1 {
  color: #2E3092;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body main .sec-etapas .etapas-topo p {
  color: rgba(46, 48, 146, 0.75);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
body main .sec-etapas .etapas-linha {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 0;
}
body main .sec-etapas .etapas-linha::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background-color: rgba(255, 195, 0, 0.6);
}
body main .sec-etapas .etapa {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
body main .sec-etapas .etapa:last-child {
  margin-bottom: 0;
}
body main .sec-etapas .etapa--texto-dir {
  flex-direction: row-reverse;
}
body main .sec-etapas .etapa-col {
  flex: 1 1 0;
  min-width: 0;
}
body main .sec-etapas .etapa-texto {
  padding: 0 56px;
}
body main .sec-etapas .etapa-texto .num {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 195, 0, 0.55);
  margin-bottom: 8px;
}
body main .sec-etapas .etapa-texto .conteudo h1 {
  color: #2E3092;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
body main .sec-etapas .etapa-texto .conteudo p {
  color: rgba(46, 48, 146, 0.7);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
body main .sec-etapas .etapa-imagem {
  padding: 0 34px;
}
body main .sec-etapas .etapa-imagem img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
body main .sec-etapas .ponto {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FFC300;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px rgba(255, 195, 0, 0.35);
  z-index: 2;
}
@media (max-width: 991px) {
  body main .sec-etapas {
    padding: 44px 0;
  }
  body main .sec-etapas .etapas-topo h1 {
    font-size: 24px;
  }
  body main .sec-etapas .etapas-linha {
    padding: 0;
  }
  body main .sec-etapas .etapas-linha::before {
    left: 9px;
  }
  body main .sec-etapas .etapa,
  body main .sec-etapas .etapa--texto-dir {
    flex-direction: column;
    align-items: stretch;
    padding-left: 34px;
    margin-bottom: 34px;
  }
  body main .sec-etapas .etapa-texto,
  body main .sec-etapas .etapa-imagem {
    padding: 0;
  }
  body main .sec-etapas .etapa-texto {
    order: 1;
    margin-bottom: 16px;
  }
  body main .sec-etapas .etapa-texto .num {
    font-size: 44px;
  }
  body main .sec-etapas .etapa-imagem {
    order: 2;
  }
  body main .sec-etapas .ponto {
    top: 6px;
    left: 9px;
    transform: translateX(-50%);
  }
}
body main .sec-cases {
  background-color: #090A31;
  padding: 60px 0;
}
body main .sec-cases .cases-topo {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
body main .sec-cases .cases-topo h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
body main .sec-cases .cases-topo p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
body main .sec-cases .case-card {
  background: #FFF;
  border-radius: 14px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
}
body main .sec-cases .case-card img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  body main .sec-cases {
    padding: 44px 0;
  }
  body main .sec-cases .cases-topo h1 {
    font-size: 22px;
  }
  body main .sec-cases .case-card {
    height: 84px;
  }
}
body main .sec-duvidas {
  background-color: #fff;
  padding: 70px 0;
}
body main .sec-duvidas .badge-duvidas {
  display: inline-block;
  background: rgba(255, 195, 0, 0.12);
  color: #2E3092;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #EBB632;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
body main .sec-duvidas .titulo-duvidas {
  max-width: 380px;
}
body main .sec-duvidas .titulo-duvidas h1 {
  color: #2E3092;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
body main .sec-duvidas .titulo-duvidas p {
  color: rgba(46, 48, 146, 0.7);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
body main .sec-duvidas .duvida {
  border-bottom: 1px solid #ececf3;
}
body main .sec-duvidas .duvida:first-child {
  border-top: 1px solid #ececf3;
}
body main .sec-duvidas .duvida-pergunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
body main .sec-duvidas .duvida-pergunta span {
  color: #2E3092;
  font-size: 16px;
  font-weight: 700;
}
body main .sec-duvidas .duvida-pergunta i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2E3092;
  font-size: 12px;
  transition: 0.3s all;
}
body main .sec-duvidas .duvida-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
body main .sec-duvidas .duvida-resposta .in {
  padding: 0 4px 24px;
  color: rgba(46, 48, 146, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
body main .sec-duvidas .duvida.aberto .duvida-pergunta i {
  background-color: #FFC300;
  transform: rotate(180deg);
}
body main .sec-duvidas .duvida.aberto .duvida-resposta {
  max-height: 500px;
}
@media (max-width: 991px) {
  body main .sec-duvidas {
    padding: 44px 0;
  }
  body main .sec-duvidas .titulo-duvidas h1 {
    font-size: 24px;
  }
}
body main .sec-loja {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 40px 0;
}
body main .sec-loja .loja-conteudo {
  max-width: 470px;
}
body main .sec-loja .texto-loja h1 {
  color: #2E3092;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
body main .sec-loja .texto-loja p {
  color: rgba(46, 48, 146, 0.75);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
body main .sec-loja .btn-loja {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  background-color: #FFC300;
  color: #2E3092;
  font-weight: 800;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 40px;
  transition: 0.25s all;
}
body main .sec-loja .btn-loja i {
  font-size: 12px;
  transition: 0.25s all;
}
body main .sec-loja .btn-loja:hover {
  background-color: rgb(219.3, 167.7, 0);
  transform: translateY(-2px);
}
body main .sec-loja .btn-loja:hover i {
  transform: translateX(3px);
}
@media (max-width: 991px) {
  body main .sec-loja {
    min-height: 340px;
    padding: 40px 0;
  }
  body main .sec-loja .texto-loja h1 {
    font-size: 26px;
  }
}
body footer section.barra-fixa {
  position: fixed;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #2E3092;
  width: 100%;
  padding: 10px 80px;
  z-index: 600;
  transition: all 0.5s;
}
body footer section.barra-fixa .btn-orcamento {
  background-color: #2E3092;
  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: #2E3092;
  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 {
  margin-right: 30px;
}
body footer section.barra-fixa .row-flex a:last-child {
  margin-right: 0;
}
@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: #2E3092;
  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 .rodape {
  background-color: #090A31;
  color: #fff;
  padding: 60px 0 26px;
}
body footer .rodape .rodape-top {
  padding-bottom: 40px;
}
body footer .rodape .rodape-logo {
  display: inline-block;
}
body footer .rodape .rodape-logo img {
  height: 70px;
  width: auto;
}
body footer .rodape .rodape-desc {
  margin-top: 22px;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}
body footer .rodape .rodape-desde {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
body footer .rodape .rodape-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
body footer .rodape .rodape-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 15px;
  transition: 0.25s all;
}
body footer .rodape .rodape-social a:hover {
  background-color: #FFC300;
  border-color: #FFC300;
  color: #2E3092;
}
@media (min-width: 992px) {
  body footer .rodape .rodape-col {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 195, 0, 0.22);
  }
}
body footer .rodape .rodape-titulo {
  color: rgba(255, 195, 0, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
body footer .rodape .rodape-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer .rodape .rodape-col ul li {
  margin-bottom: 12px;
}
body footer .rodape .rodape-col ul a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: 0.2s all;
}
body footer .rodape .rodape-col ul a:hover {
  color: #fff;
}
body footer .rodape .rodape-col ul a.destaque {
  color: #FFC300;
  font-weight: 700;
  cursor: pointer;
}
body footer .rodape .rodape-col ul a.destaque:hover {
  color: rgb(214.2, 163.8, 0);
}
body footer .rodape .rodape-atendimento ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
body footer .rodape .rodape-atendimento ul li .ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
}
body footer .rodape .rodape-atendimento ul li .txt {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
body footer .rodape .rodape-atendimento ul li .txt strong {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}
body footer .rodape .rodape-atendimento ul li .txt a {
  color: rgba(255, 255, 255, 0.72);
}
body footer .rodape .rodape-atendimento ul li .txt a:hover {
  color: #fff;
}
body footer .rodape .rodape-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}
body footer .rodape .rodape-base p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
body footer .rodape .rodape-base .rodape-legais {
  display: flex;
  align-items: center;
  gap: 14px;
}
body footer .rodape .rodape-base .rodape-legais a {
  color: rgba(255, 255, 255, 0.65);
}
body footer .rodape .rodape-base .rodape-legais a:hover {
  color: #fff;
}
body footer .rodape .rodape-base .rodape-legais span {
  opacity: 0.4;
}
@media (max-width: 991px) {
  body footer .rodape {
    padding: 44px 0 24px;
  }
  body footer .rodape .rodape-base {
    flex-direction: column;
    align-items: flex-start;
  }
}
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: 360px;
  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 {
  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%;
}
body footer section.modal-whatsapp .campo-acao {
  position: absolute;
}
@media (max-width: 991px) {
  body footer section.modal-whatsapp .campo-acao {
    position: static;
  }
}
body footer section.modal-whatsapp .campo-acao {
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  padding: 0px 10px;
  height: 44px;
}
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;
}
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 {
  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 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: #2E3092;
}
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: #2E3092;
  font-size: 16px;
  padding: 0 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
body footer .menu-mobile .btn-lojista-mobile {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin: 24px auto 0;
  background-color: #FFC300;
  color: #2E3092;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 40px;
}
body footer .menu-mobile .btn-lojista-mobile i {
  font-size: 12px;
}/*# sourceMappingURL=custom.css.map */