@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: 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;
}
.card-produto.small .botoes .ver-produtos {
  font-size: 13px;
}
.card-produto.small .botoes .orcamento {
  padding: 10px 18px;
  font-size: 15px;
}
.card-produto .tag {
  position: absolute;
  right: 0;
  top: 20px;
  height: auto !important;
  width: auto !important;
}
.card-produto .botoes {
  display: flex;
  background: linear-gradient(90deg, rgb(205, 53, 41) 0%, rgb(40, 39, 38) 100%);
  text-align: center;
}
.card-produto .botoes .ver-produtos {
  background-color: #282726;
  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: #282726;
  transform: skew(10deg);
  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 span {
  display: block;
  transform: skew(10deg);
}
.card-produto .botoes .orcamento {
  background-color: #cd3529;
  font-size: 16px;
  color: white;
  display: block;
  padding: 10px 20px;
  transform: skew(-10deg);
  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: #cd3529;
  font-size: 22px;
  margin-top: 20px;
}
.card-produto .conteudo h2 {
  color: #cd3529;
  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;
  }
  .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;
  }
}

.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: #cd3529;
  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;
}
.main-phone span strong {
  font-weight: 500;
  color: #cd3529;
  margin-left: 5px;
}
.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: "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 {
  position: relative;
  z-index: 10;
}
body section.header .link-bg {
  background-color: black;
  padding: 1px 10px;
  display: block;
  border-radius: 15px;
}
body section.header .main-phone strong {
  display: block;
}
body section.header .pe-lg-6 {
  padding-right: 70px;
}
body section.header .btn-carrinho {
  color: #cd3529;
  font-size: 17px;
  border: 2px solid #cd3529;
  padding: 7px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s all;
}
body section.header .btn-carrinho.only-fixo {
  display: none;
}
body section.header .btn-carrinho:hover {
  transform: translateY(-2px);
  background-color: #cd3529;
  color: white;
}
body section.header .btn-carrinho .qtd {
  display: inline-block;
  margin-left: 3px;
  font-weight: 500;
}
body section.header .topo {
  background-color: #cd3529;
  height: 46px;
  overflow: hidden;
}
body section.header .topo .btn-revendedor {
  display: inline-flex;
  background-color: #fed836;
  align-items: center;
  color: #622824;
  transform: skew(-10deg);
  transition: 0.3s all;
}
body section.header .topo .btn-revendedor:hover {
  background-color: #272727;
  color: #fed836;
}
body section.header .topo .btn-revendedor:hover .icon {
  background-color: #565656;
  color: #fed836;
}
body section.header .topo .btn-revendedor .icon {
  display: inline-block;
  background-color: #fcdf76;
  padding: 10px 15px;
  font-size: 18px;
  transition: 0.3s all;
}
body section.header .topo .btn-revendedor .txt {
  padding: 10px 22px;
  font-size: 17px;
  font-weight: 500;
}
body section.header .topo .btn-revendedor span,
body section.header .topo .btn-revendedor i {
  display: inline-block;
  transform: skew(10deg);
}
body section.header .topo .links,
body section.header .topo .social {
  padding: 12px 0;
  display: flex;
  align-items: center;
}
body section.header .topo .links a,
body section.header .topo .social a {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  margin-right: 22px;
  position: relative;
}
body section.header .topo .links a:hover::before,
body section.header .topo .social a:hover::before {
  width: 100%;
  opacity: 1;
}
body section.header .topo .links a:before,
body section.header .topo .social a:before {
  width: 0;
  opacity: 0;
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: white;
  content: "";
  transition: 0.5s all;
}
body section.header .topo .links a:last-child,
body section.header .topo .social a:last-child {
  margin-right: 0;
}
body section.header .topo .social {
  justify-content: flex-end;
  padding: 8px 0;
}
body section.header .topo .social a {
  font-size: 20px;
}
body section.header .principal {
  padding: 30px 0 20px 0;
  background-color: white;
}
body section.header .principal .enviamos {
  color: #cd3529;
  font-size: 18px;
  transition: 0.3s all;
  cursor: pointer;
}
body section.header .principal .enviamos:hover {
  transform: translateY(-2px);
}
body section.header .principal .enviamos img {
  margin-right: 5px;
  height: 35px;
}
body section.header .principal .btn-orcamento {
  display: block;
  color: #cd3529;
  border: 2px solid #cd3529;
  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:hover {
  transform: translateY(-2px);
  background-color: #cd3529;
  color: white;
}
body section.header .principal .btn-orcamento:hover .icon {
  background-color: white;
  color: #cd3529;
}
body section.header .principal .btn-orcamento .icon {
  transition: 0.3s all;
  color: white;
  background-color: #cd3529;
  border-radius: 100%;
  font-size: 13px;
  padding: 5px 8px;
  margin-right: 10px;
}
body section.header .principal .btn-orcamento .seta {
  margin-left: 15px;
  font-size: 22px;
  vertical-align: middle;
}
body section.header .principal form {
  position: relative;
}
body section.header .principal form input {
  width: 100%;
  padding: 10px 40px;
  outline: none;
  font-size: 16px;
  border: 1px solid lightgray;
}
body section.header .principal form button {
  position: absolute;
  color: #cd3529;
  right: 30px;
  top: 8px;
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 18px;
  transition: 0.3s all;
}
body section.header .principal form button:hover {
  transform: translateY(-2px);
}
body section.header .principal .logo {
  width: 100%;
  transition: 0.3s all;
}
body section.header .principal .logo:hover {
  transform: translateY(-2px);
}
body section.header .menu {
  background: linear-gradient(180deg, rgb(243, 243, 244) 0%, rgb(255, 255, 255) 100%);
}
body section.header .menu .in-menu {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
body section.header .menu .in-menu .item {
  position: relative;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
body section.header .menu .in-menu .item:hover .menu-dropdown {
  display: block;
}
body section.header .menu .in-menu .item a {
  padding: 15px 10px;
  font-size: 17px;
  color: #cd3529;
  display: block;
  font-weight: 500;
  transition: 0.3s all;
  transition: all 0.3s;
}
body section.header .menu .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 .menu .in-menu .item:hover {
  background-color: #cd3529;
}
body section.header .menu .in-menu .item:hover a {
  color: #4c4c4c;
}
body section.header .menu .in-menu .item:hover a.link-principal {
  color: white;
}
body section.header .menu .in-menu .item:hover a img {
  filter: grayscale(1) brightness(100);
  transform: rotateY(360deg);
}
body section.header .menu .in-menu .item .menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  z-index: 2;
  background-color: whitesmoke;
  border: 1px solid #c9c9c9;
}
body section.header .menu .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 .menu .in-menu .item .menu-dropdown .item-in:hover {
  color: white;
  background-color: #cd3529;
}
body section.header .menu .sep {
  width: 2px;
  background-color: gainsboro;
}
@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 #cd3529;
  }
  body section.header #menu-topo.fixo .hide-fixo {
    display: none;
  }
  body section.header #menu-topo.fixo .pe-lg-6 {
    padding-right: 10px;
  }
  body section.header #menu-topo.fixo .menu a {
    padding: 9px 0;
    font-size: 16px;
  }
  body section.header #menu-topo.fixo .menu a img {
    margin-right: 10px;
    height: 21px;
  }
  body section.header #menu-topo.fixo .menu .item .menu-dropdown {
    width: 200px;
  }
  body section.header #menu-topo.fixo .menu .item .menu-dropdown .item-in {
    font-size: 13px;
    padding: 10px;
  }
  body section.header #menu-topo.fixo .principal {
    padding: 15px 0;
    display: none;
  }
  body section.header #menu-topo.fixo .principal .mt-3 {
    margin-top: 8px !important;
  }
  body section.header #menu-topo.fixo .principal .btn-carrinho {
    font-size: 14px;
  }
  body section.header #menu-topo.fixo .principal .btn-carrinho.only-fixo {
    display: inline-block;
    margin-left: 50px;
  }
  body section.header #menu-topo.fixo .principal .main-phone {
    font-size: 11px;
  }
  body section.header #menu-topo.fixo .principal .main-phone span {
    font-size: 15px;
  }
  body section.header #menu-topo.fixo .principal .main-phone .icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  body section.header #menu-topo.fixo .principal .enviamos {
    font-size: 14px;
  }
  body section.header #menu-topo.fixo .principal .enviamos img {
    height: 30px;
  }
  body section.header #menu-topo.fixo .principal .logo {
    max-width: 150px;
  }
  body section.header #menu-topo.fixo .principal .btn-orcamento {
    padding: 6px 10px;
    font-size: 14px;
  }
  body section.header #menu-topo.fixo .principal .btn-orcamento .icon {
    font-size: 11px;
    margin-right: 5px;
  }
  body section.header #menu-topo.fixo .principal .btn-orcamento .seta {
    margin-left: 8px;
    font-size: 17px;
  }
  body section.header #menu-topo.fixo .principal form input {
    font-size: 13px;
    padding: 8px 20px;
  }
  body section.header #menu-topo.fixo .principal form button {
    font-size: 14px;
    right: 16px;
    top: 6px;
  }
}
body section.header .categorias-mobile {
  display: none;
  margin-top: 5px;
}
body section.header .categorias-mobile .btn-open {
  display: block;
  color: white;
  font-weight: 500;
  background: #cd3529;
  font-size: 15px;
  text-align: center;
  padding: 12px 20px;
}
body section.header .categorias-mobile .in-categorias {
  background-color: #b7342a;
  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: #fed836;
}
@media (max-width: 991px) {
  body section.header {
    background-image: url("../image/bg-branco.png");
    background-size: cover;
  }
  body section.header .social-mobile {
    margin-top: 15px;
  }
  body section.header .social-mobile a {
    font-size: 20px;
    color: #cd3529;
    margin: 0 10px;
  }
  body section.header .pe-lg-6 {
    padding-right: 0;
  }
  body section.header .categorias-mobile {
    display: block;
  }
  body section.header .btn-carrinho {
    display: none;
  }
  body section.header .menu {
    display: none;
  }
  body section.header form {
    display: none;
  }
  body section.header .principal {
    padding: 10px 0;
  }
  body section.header .principal .logo {
    max-width: 180px;
    margin: 10px auto;
    display: block;
  }
  body section.header .principal .enviamos {
    font-size: 15px;
    text-align: center;
  }
  body section.header .principal .enviamos img {
    height: 30px;
    margin-right: 5px;
  }
  body section.header .principal .btn-orcamento {
    font-size: 14px;
    max-width: 270px;
    margin: auto;
    margin-top: 10px;
    padding: 7px 10px;
  }
  body section.header .principal .btn-orcamento .seta {
    font-size: 16px;
    margin-left: 5px;
  }
  body section.header .principal .btn-orcamento .icon {
    margin-right: 5px;
    font-size: 12px;
  }
}
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: #cd3529;
  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: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #cd3529;
}
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: #cd3529;
  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: #cd3529;
  font-weight: 500;
}
body section.formulario-enviado .box-in .btn-voltar {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #cd3529;
  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: #cd3529;
}
body section.formulario-enviado .box-in h1 strong {
  display: block;
  font-weight: 400;
  color: #fed836;
}
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: #cd3529;
}
body .politica-termos strong,
body .politica-termos b {
  color: #cd3529;
}
@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: 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: 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 #cd3529;
    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: #cd3529;
  background-color: #cd3529;
}
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-apareca {
  background-image: url("../image/bg-apareca.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 165px;
  margin-top: -40px;
  padding-top: 56px;
  position: relative;
}
body main section.index-apareca .texto {
  margin-left: 80px;
  font-weight: 400;
  font-size: 17px;
}
body main section.index-apareca .texto p {
  margin: 0;
}
body main section.index-apareca .texto strong {
  color: #cd3529;
  font-weight: 400;
}
body main section.index-apareca .phones {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.index-apareca .phones .main-phone .icon {
  color: white;
}
body main section.index-apareca .phones .main-phone span strong {
  color: #fed836;
}
body main section.index-apareca h6 {
  margin: 0;
  max-width: 200px;
  color: white;
  font-weight: 500;
}
body main section.index-apareca h6 strong {
  color: #fed836;
}
body main section.index-apareca .img {
  width: 87px;
  height: 130px;
  position: absolute;
  top: 29px;
  left: 290px;
  z-index: 3;
}
body main section.index-apareca h3 {
  color: #cd3529;
  font-size: 25px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  body main section.index-apareca {
    background-image: none;
    min-height: auto;
    margin-top: 0;
    padding: 15px 0;
    background-color: #bd1e2c;
    text-align: center;
  }
  body main section.index-apareca .phones {
    flex-wrap: wrap;
    justify-content: center;
  }
  body main section.index-apareca .phones h6 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  body main section.index-apareca .phones h6 strong {
    display: block;
  }
  body main section.index-apareca .texto {
    margin-left: 0;
  }
  body main section.index-apareca h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
  }
  body main section.index-apareca p {
    line-height: 1.1;
    color: white;
    font-size: 17px;
    margin-bottom: 20px !important;
  }
  body main section.index-apareca p strong {
    display: block !important;
    color: #fed836 !important;
  }
  body main section.index-apareca .img {
    display: none;
  }
}
body main section.index-melhores-solucoes {
  background-image: url("../image/bg-melhores.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -45px;
  padding: 80px 0 110px 0;
  text-align: center;
}
body main section.index-melhores-solucoes h4 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
body main section.index-melhores-solucoes .categorias {
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.index-melhores-solucoes .categorias a {
  color: #cd3529;
  font-size: 20px;
  font-weight: 600;
  padding: 0 15px;
  margin: 0 10px;
  text-transform: uppercase;
  transition: 0.3s all;
}
body main section.index-melhores-solucoes .categorias a:hover {
  transform: translateY(-3px);
}
body main section.index-melhores-solucoes .categorias a:hover img {
  transform: rotateY(360deg);
}
body main section.index-melhores-solucoes .categorias a img {
  transition: 1s all;
  display: block;
  margin: auto;
  height: 36px;
  width: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
body main section.index-melhores-solucoes .ver-todos {
  display: inline-block;
  margin-top: 45px;
  color: #cd3529;
  font-size: 18px;
}
body main section.index-melhores-solucoes .ver-todos i {
  margin-left: 30px;
  vertical-align: middle;
  font-size: 24px;
}
body main section.index-melhores-solucoes .ver-todos span {
  text-decoration: underline;
}
body main section.index-melhores-solucoes h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
body main section.index-melhores-solucoes h1 strong {
  font-weight: 600;
  color: #cd3529;
  display: block;
}
@media (max-width: 991px) {
  body main section.index-melhores-solucoes {
    background-color: #f6f6f6;
    background-image: none;
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.index-melhores-solucoes .ver-todos {
    margin-top: 20px;
    font-size: 16px;
  }
  body main section.index-melhores-solucoes .ver-todos i {
    margin-left: 10px;
    font-size: 20px;
  }
  body main section.index-melhores-solucoes .categorias {
    flex-wrap: wrap;
  }
  body main section.index-melhores-solucoes .categorias a {
    margin: 10px 0;
    font-size: 16px;
  }
  body main section.index-melhores-solucoes .categorias a img {
    height: 30px;
    margin-bottom: 10px;
  }
  body main section.index-melhores-solucoes h1 {
    font-size: 22px;
  }
  body main section.index-melhores-solucoes h1 strong {
    display: inline;
  }
  body main section.index-melhores-solucoes h4 {
    font-size: 18px;
    max-width: 250px;
    margin: auto;
    margin-bottom: 20px;
  }
}
body main section.index-promocoes {
  padding: 40px 0 60px 0;
}
body main section.index-promocoes h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}
body main section.index-promocoes .separador {
  display: block;
  margin: auto;
  margin-top: 20px;
}
body main section.index-promocoes .card-produto {
  min-height: 630px;
}
body main section.index-promocoes .owl-carousel {
  margin-top: 40px;
}
body main section.index-promocoes .owl-carousel .owl-nav .owl-prev,
body main section.index-promocoes .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 30px);
  left: -80px;
  background-color: #dbdbdb;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  font-size: 26px;
  height: 60px;
  color: gray;
}
body main section.index-promocoes .owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -80px;
}
@media (max-width: 991px) {
  body main section.index-promocoes {
    padding: 30px 0;
  }
  body main section.index-promocoes .card-produto {
    min-height: auto;
  }
  body main section.index-promocoes h1 {
    font-size: 26px;
  }
}
body main section.index-fabricante {
  padding: 100px 0;
  background-color: #f8f7f7;
  position: relative;
}
body main section.index-fabricante.inflaveis {
  background: white;
  padding-top: 60px;
}
body main section.index-fabricante .card-produto {
  margin-top: 30px;
  height: calc(100% - 30px);
}
body main section.index-fabricante .ver-todos {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  margin-top: 60px;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.index-fabricante .ver-todos:hover {
  background-color: #cd3529;
  color: white;
}
body main section.index-fabricante .ver-todos i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.index-fabricante .titulo h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #cd3529;
}
body main section.index-fabricante .titulo h1 strong {
  color: black;
  font-weight: 600;
}
body main section.index-fabricante .titulo h3 {
  color: #cd3529;
  text-align: center;
  font-weight: 300;
  max-width: 600px;
  margin: auto;
  font-size: 24px;
}
body main section.index-fabricante .titulo h5 {
  font-weight: 400;
  text-align: center;
}
body main section.index-fabricante .separador {
  display: block;
  margin: auto;
  margin-top: 20px;
}
body main section.index-fabricante .custom-shape-divider-top-1633632952 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
body main section.index-fabricante .custom-shape-divider-top-1633632952 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 30px;
  transform: rotateY(180deg);
}
body main section.index-fabricante .custom-shape-divider-top-1633632952 .shape-fill {
  fill: #fff;
}
@media (max-width: 991px) {
  body main section.index-fabricante {
    padding: 30px 0 !important;
  }
  body main section.index-fabricante .ver-todos {
    margin-top: 30px;
  }
  body main section.index-fabricante .titulo h1 {
    font-size: 22px;
  }
  body main section.index-fabricante .titulo h3 {
    font-size: 18px;
  }
  body main section.index-fabricante .titulo h5 {
    font-size: 16px;
  }
  body main section.index-fabricante.inflaveis {
    margin-top: 0;
  }
  body main section.index-fabricante .custom-shape-divider-top-1633632952 {
    display: none;
  }
}
body main section.index-catalogo {
  background-image: url("../image/bg-catalogo.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 570px;
  color: white;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  padding: 150px 0;
}
body main section.index-catalogo.interna {
  margin-bottom: -110px;
}
body main section.index-catalogo .separador {
  margin: 10px 0 20px 0;
}
body main section.index-catalogo .img {
  width: 100%;
}
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: #cd3529;
  border: 2px solid #cd3529;
  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: #cd3529;
  color: white;
}
body main section.index-catalogo h4 {
  color: #cd3529;
  font-size: 20px;
}
body main section.index-catalogo h3 {
  color: #cd3529;
  font-size: 20px;
}
body main section.index-catalogo h3 img {
  margin-left: 15px;
  height: 57px;
  width: 57px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body main section.index-catalogo h1 {
  color: white;
  font-weight: 300;
  font-size: 32px;
}
body main section.index-catalogo h1 strong {
  color: #cd3529;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.index-catalogo {
    margin: 0 !important;
    min-height: auto;
    background-image: url("../image/parede2.png");
    background-size: cover;
    padding: 30px 0;
    text-align: center;
  }
  body main section.index-catalogo h5 {
    margin: 10px auto;
    font-size: 16px;
    max-width: 300px;
  }
  body main section.index-catalogo form input {
    font-size: 15px;
  }
  body main section.index-catalogo form button {
    font-size: 15px;
    justify-content: center;
  }
  body main section.index-catalogo form button i {
    vertical-align: middle;
    margin-left: 20px;
  }
  body main section.index-catalogo h3 {
    font-size: 16px;
  }
  body main section.index-catalogo h3 img {
    margin: auto;
    display: block;
    margin-top: 10px;
    height: 40px;
  }
  body main section.index-catalogo h1 {
    font-size: 20px;
  }
  body main section.index-catalogo h4 {
    font-size: 18px;
  }
  body main section.index-catalogo .img {
    display: none;
  }
}
body main section.index-se-interessou {
  background-image: url("../image/bg-melhores.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 580px;
  padding: 100px 0;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}
body main section.index-se-interessou.interna {
  background-image: none;
  background-color: #f2f2f2;
  margin-top: -110px;
  z-index: 1;
  padding-bottom: 0;
}
body main section.index-se-interessou .img {
  width: 100%;
}
body main section.index-se-interessou .box {
  padding: 50px;
  border-radius: 20px;
  background-color: rgba(212, 212, 212, 0.5);
}
body main section.index-se-interessou .box span {
  display: block;
  text-align: center;
  color: #cd3529;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.1;
}
body main section.index-se-interessou form .campo-in {
  position: relative;
  /* Alteração aqui: Adicionado ", select" */
  /* Alteração aqui: Lógica para o label flutuar no select também */
}
body main section.index-se-interessou form .campo-in input, body main section.index-se-interessou form .campo-in select {
  padding: 15px 20px 9px 20px;
  border-radius: 5px;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 500;
  border: none;
  width: 100%;
  outline: none;
  background-color: white; /* Garante fundo branco para o select */
  height: 48px; /* Altura fixa ajuda a alinhar select e input */
}
body main section.index-se-interessou form .campo-in label {
  position: absolute;
  top: 22px;
  left: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #545050;
  pointer-events: none; /* Importante para conseguir clicar no select através do label */
  transition: all 0.3s;
}
body main section.index-se-interessou form .campo-in input:focus + label,
body main section.index-se-interessou form .campo-in input.ng-not-empty + label,
body main section.index-se-interessou form .campo-in select:focus + label,
body main section.index-se-interessou form .campo-in select.ng-not-empty + label {
  position: absolute;
  top: 11px;
  left: 10px;
  font-size: 12px;
  color: black;
}
body main section.index-se-interessou form button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #cd3529;
  border: 2px solid #cd3529;
  outline: none;
  background-color: transparent;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  margin-top: 20px;
  transition: 0.3s all;
  /* Estilo para desabilitado */
}
body main section.index-se-interessou form button:disabled {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
}
body main section.index-se-interessou form button:disabled:hover {
  background-color: transparent;
  color: #999;
}
body main section.index-se-interessou form button:hover {
  background-color: #cd3529;
  color: white;
}
body main section.index-se-interessou form button i {
  margin-left: 20px;
}
body main section.index-se-interessou .main-phone {
  display: flex;
  margin-top: 15px;
}
body main section.index-se-interessou .main-phone strong {
  margin-left: 0;
  display: block;
}
body main section.index-se-interessou h1 {
  margin-top: 20px;
  color: #cd3529;
  font-size: 32px;
  margin-bottom: 30px;
}
body main section.index-se-interessou h1 strong {
  background-color: #cd3529;
  color: white;
  display: inline-block;
  padding: 0 10px;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.index-se-interessou {
    background-image: none;
    background-color: #f6f6f7;
    min-height: auto;
    padding: 30px 0;
    margin-top: 0 !important;
    text-align: center;
  }
  body main section.index-se-interessou.interna {
    padding-bottom: 30px;
  }
  body main section.index-se-interessou .box {
    border-radius: 10px;
    padding: 30px 20px;
  }
  body main section.index-se-interessou .img {
    display: none;
  }
  body main section.index-se-interessou form input, body main section.index-se-interessou form select {
    font-size: 15px;
  }
  body main section.index-se-interessou form button {
    font-size: 15px;
    padding: 10px 30px;
  }
  body main section.index-se-interessou .phones {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body main section.index-se-interessou .icon-principal {
    height: 50px;
  }
  body main section.index-se-interessou h1 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
body main section.index-porque-utilizar {
  background-image: url("../image/bg-porque-utilizar.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 600px;
  color: white;
  margin-top: -65px;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
body main section.index-porque-utilizar.interna {
  margin-bottom: -70px;
}
body main section.index-porque-utilizar img {
  margin: 10px 0 20px 0;
}
body main section.index-porque-utilizar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body main section.index-porque-utilizar ul li {
  padding: 0;
  font-size: 24px;
  font-weight: 300;
  margin: 10px 0;
}
body main section.index-porque-utilizar ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #cd3529;
}
body main section.index-porque-utilizar h1 {
  color: #cd3529;
  font-size: 36px;
}
body main section.index-porque-utilizar h1 strong {
  color: white;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.index-porque-utilizar {
    background-color: #55242f;
    background-image: none;
    min-height: auto;
    margin-top: 0;
    padding: 30px 0;
    text-align: center;
  }
  body main section.index-porque-utilizar.interna {
    margin-bottom: 0;
  }
  body main section.index-porque-utilizar ul li {
    margin: 5px 0;
    font-size: 17px;
  }
  body main section.index-porque-utilizar h1 {
    font-size: 20px;
  }
}
body main section.index-video {
  min-height: 680px;
  color: white;
  padding: 120px 0;
  display: flex;
  align-items: center;
  margin-top: -75px;
  position: relative;
  z-index: -1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
body main section.index-video .container {
  position: relative;
  z-index: 2;
}
body main section.index-video:before {
  z-index: 2;
  content: "";
  background-color: black;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body main section.index-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.index-video .items {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 30px;
}
body main section.index-video .items .item {
  max-width: 250px;
}
body main section.index-video .items .item img {
  display: block;
  margin: auto;
  margin-bottom: 10px;
}
body main section.index-video .titulo {
  text-align: center;
  max-width: 400px;
  margin: auto;
  font-size: 18px;
}
body main section.index-video .titulo h5 {
  font-size: 22px;
  color: #cd3529;
}
@media (max-width: 991px) {
  body main section.index-video {
    min-height: auto;
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.index-video .items {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  body main section.index-video .items .item {
    margin: 5px 0;
    max-width: none;
  }
  body main section.index-video .items .item img {
    margin-right: 5px;
    height: 30px;
    vertical-align: middle;
    display: inline;
    margin-bottom: 0;
  }
  body main section.index-video .titulo {
    font-size: 16px;
  }
  body main section.index-video .titulo h5 {
    font-size: 20px;
  }
}
body main section.index-evento {
  background-image: url(../image/bg-apareca.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 200px;
  margin-top: -50px;
  padding-top: 40px;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  z-index: 2;
}
body main section.index-evento .img {
  width: 100%;
  position: relative;
  top: 11px;
}
body main section.index-evento p {
  margin-bottom: 0;
}
body main section.index-evento .texto {
  margin-left: 10px;
}
body main section.index-evento .phones {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.index-evento .phones .main-phone .icon {
  color: white;
}
body main section.index-evento .phones .main-phone span strong {
  color: #fed836;
}
body main section.index-evento .row-flex {
  max-width: 395px;
}
body main section.index-evento .orcamento {
  display: inline-block;
  color: #fed836;
  border: 2px solid #fed836;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s all;
}
body main section.index-evento .orcamento:hover {
  background-color: #fed836;
  color: #cd3529;
}
body main section.index-evento .orcamento i {
  margin-left: 20px;
}
body main section.index-evento h6 {
  margin: 0;
  margin-top: 4px;
  max-width: 200px;
  color: white;
  font-weight: 500;
  margin-bottom: 15px;
}
body main section.index-evento h6 strong {
  color: #fed836;
}
body main section.index-evento h3 {
  color: #cd3529;
  font-size: 25px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 991px) {
  body main section.index-evento {
    background-image: none;
    min-height: auto;
    margin-top: 0;
    padding: 20px 0;
    background-color: #bd1e2c;
    text-align: center;
  }
  body main section.index-evento .img {
    display: none;
  }
  body main section.index-evento .phones {
    flex-wrap: wrap;
    justify-content: center;
  }
  body main section.index-evento .phones h6 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
  }
  body main section.index-evento .phones h6 strong {
    display: block;
  }
  body main section.index-evento .orcamento {
    font-size: 14px;
  }
  body main section.index-evento .orcamento i {
    margin-left: 7px;
  }
  body main section.index-evento .row-flex {
    margin-bottom: 20px !important;
    flex-flow: column;
    max-width: none;
    align-items: center !important;
    justify-content: center;
  }
  body main section.index-evento .texto {
    margin-left: 0;
  }
  body main section.index-evento h3 {
    font-size: 20px;
    color: white;
    margin-top: 0;
    margin-bottom: 10px;
  }
  body main section.index-evento p {
    margin-bottom: 20px;
    color: white;
  }
}
body main section.index-revendedor {
  background-image: url("../image/bg-revendedor.png");
  background-size: 100% 100%;
  min-height: 650px;
  margin-top: -55px;
  background-repeat: no-repeat;
  padding: 140px 0;
}
body main section.index-revendedor h2 {
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 30px;
}
body main section.index-revendedor h2 strong {
  display: block;
  font-weight: 600;
}
body main section.index-revendedor .orcamento {
  color: #cd3529;
  display: inline-block;
  padding: 10px 35px;
  font-size: 18px;
  margin-top: 15px;
  font-weight: 500;
  border-radius: 30px;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.index-revendedor .orcamento:hover {
  background-color: #cd3529;
  color: white;
}
body main section.index-revendedor .orcamento i {
  margin-left: 30px;
}
body main section.index-revendedor h3 {
  color: #cd3529;
  font-size: 22px;
  font-weight: 300;
  max-width: 350px;
}
body main section.index-revendedor h4 {
  font-weight: 700;
  margin-top: 20px;
  font-size: 20px;
}
body main section.index-revendedor h4 strong {
  color: #cd3529;
  font-weight: 700;
  display: block;
}
body main section.index-revendedor h1 {
  color: #cd3529;
  font-weight: 500;
  font-size: 48px;
}
body main section.index-revendedor h1 img {
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  body main section.index-revendedor {
    background-image: none;
    min-height: auto;
    background-color: #f8f8f9;
    padding: 30px 0;
    margin-top: 0;
    text-align: center;
  }
  body main section.index-revendedor .orcamento {
    font-size: 15px;
  }
  body main section.index-revendedor .orcamento i {
    margin-left: 10px;
  }
  body main section.index-revendedor h4 {
    font-size: 17px;
  }
  body main section.index-revendedor h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  body main section.index-revendedor h2 strong {
    display: inline;
  }
  body main section.index-revendedor h3 {
    font-size: 19px;
  }
  body main section.index-revendedor h1 {
    font-size: 22px;
  }
  body main section.index-revendedor h1 img {
    margin-right: 5px;
    height: 35px;
  }
}
body main section.index-conheca {
  background-image: url("../image/bg-conheca-azul.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  min-height: 790px;
  margin-top: -45px;
  color: white;
  padding: 120px 0;
  font-weight: 300;
  font-size: 20px;
  display: flex;
  align-items: center;
}
body main section.index-conheca .logo {
  filter: grayscale(1) brightness(100);
}
body main section.index-conheca strong {
  font-weight: 600;
}
body main section.index-conheca h1 {
  font-weight: 300;
  font-size: 34px;
  margin: 20px 0 10px 0;
}
body main section.index-conheca .video {
  width: 100%;
  display: block;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
body main section.index-conheca .video:hover:before {
  background-color: rgba(0, 0, 0, 0.3);
}
body main section.index-conheca .video:before {
  transition: 0.3s all;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
body main section.index-conheca .video:after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  color: #fed836;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
}
body main section.index-conheca .video img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  body main section.index-conheca {
    min-height: auto;
    margin-top: 0;
    padding: 30px 0;
    clip-path: none;
    text-align: center;
    font-size: 16px;
  }
  body main section.index-conheca .video {
    height: 200px;
    margin-top: 30px;
  }
  body main section.index-conheca .logo {
    max-width: 200px;
  }
  body main section.index-conheca h1 {
    font-size: 22px;
  }
}
body main section.index-depoimentos {
  padding: 30px 0 70px 0;
}
body main section.index-depoimentos.interna {
  background-image: url("../image/bg-branco.png");
  background-size: cover;
  padding: 50px 0 150px 0;
}
body main section.index-depoimentos .ver-todos {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  margin-top: 20px;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.index-depoimentos .ver-todos:hover {
  background-color: #cd3529;
  color: white;
}
body main section.index-depoimentos .ver-todos i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.index-depoimentos .titulo h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #cd3529;
}
body main section.index-depoimentos .titulo h1 strong {
  color: black;
  font-weight: 600;
}
body main section.index-depoimentos .titulo h3 {
  color: #cd3529;
  text-align: center;
  font-weight: 300;
  max-width: 400px;
  margin: auto;
  font-size: 24px;
}
body main section.index-depoimentos .owl-depoimentos {
  margin-top: 40px;
}
body main section.index-depoimentos .separador {
  display: block;
  margin: auto;
  margin-top: 20px;
}
body main section.index-depoimentos .depoimento {
  border: 1px solid lightgray;
  padding: 50px 15px;
  font-size: 17px;
  font-weight: 300;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top: 7px solid #cd3529;
  display: flex;
  justify-content: center;
}
body main section.index-depoimentos .depoimento .img {
  flex: 180px 1 1;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.index-depoimentos .depoimento .img img {
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.index-depoimentos .depoimento .txt {
  max-width: calc(100% - 190px);
}
body main section.index-depoimentos .depoimento .txt h4 {
  color: #cd3529;
  font-size: 18px;
}
@media (max-width: 991px) {
  body main section.index-depoimentos .depoimento {
    flex-direction: column;
  }
  body main section.index-depoimentos .depoimento .img {
    flex: 150px 1 1;
  }
  body main section.index-depoimentos .depoimento .img img {
    max-height: 150px;
  }
  body main section.index-depoimentos .depoimento .txt {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  body main section.index-depoimentos {
    padding: 30px 0;
  }
  body main section.index-depoimentos.interna {
    padding: 30px 0;
  }
  body main section.index-depoimentos .depoimento {
    padding: 30px;
    font-size: 15px;
  }
  body main section.index-depoimentos .titulo h1 {
    font-size: 22px;
  }
  body main section.index-depoimentos .titulo h3 {
    font-size: 18px;
  }
}
body main section.index-clientes {
  background-image: url("../image/bg-clientes.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 470px;
  padding: 100px 0;
}
body main section.index-clientes .owl-clientes {
  margin: auto;
  margin-top: 30px;
  max-width: 1100px;
}
body main section.index-clientes .owl-clientes .owl-nav .owl-prev,
body main section.index-clientes .owl-clientes .owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 30px);
  left: -65px;
  font-size: 40px;
  color: gray;
}
body main section.index-clientes .owl-clientes .owl-nav .owl-next {
  left: auto;
  right: -65px;
}
body main section.index-clientes .cliente {
  background-color: white;
  border: 1px solid lightgray;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
body main section.index-clientes .cliente img {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.index-clientes h1 {
  color: #cd3529;
  text-align: center;
  font-weight: 600;
}
body main section.index-clientes h3 {
  text-align: center;
  font-weight: 300;
  max-width: 400px;
  margin: auto;
  font-size: 20px;
}
@media (max-width: 991px) {
  body main section.index-clientes {
    background: #f7f7f8;
    min-height: auto;
    padding: 30px 0;
  }
  body main section.index-clientes h1 {
    font-size: 22px;
  }
  body main section.index-clientes h3 {
    font-size: 17px;
  }
}
body main section.index-blog {
  padding: 30px 0 50px 0;
}
body main section.index-blog .titulo h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #cd3529;
}
body main section.index-blog .titulo h1 strong {
  color: black;
  font-weight: 600;
}
body main section.index-blog .titulo h3 {
  color: #cd3529;
  text-align: center;
  font-weight: 300;
  max-width: 400px;
  margin: auto;
  font-size: 20px;
}
body main section.index-blog .post {
  border: 1px solid lightgray;
  display: block;
  height: 100%;
}
body main section.index-blog .post .content {
  padding: 30px 50px;
}
body main section.index-blog .post img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.index-blog .post h2 {
  color: black;
  margin: 0;
  font-size: 21px;
}
body main section.index-blog .ver-todos {
  color: gray;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  margin-top: 30px;
  border: 2px solid gray;
  transition: 0.3s all;
}
body main section.index-blog .ver-todos:hover {
  background-color: gray;
  color: white;
}
body main section.index-blog .ver-todos i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  body main section.index-blog {
    padding: 30px 0;
  }
  body main section.index-blog .post {
    margin-top: 30px;
    height: auto;
  }
  body main section.index-blog .post .content {
    padding: 20px 30px;
  }
  body main section.index-blog .post h2 {
    font-size: 17px;
  }
  body main section.index-blog .titulo h1 {
    font-size: 28px;
  }
  body main section.index-blog .titulo h3 {
    font-size: 18px;
  }
}
body main section.produtos-listagem {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 30px 0;
  padding-bottom: 100px;
}
body main section.produtos-listagem h2 {
  color: #cd3529;
  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: #f7f7f7;
  color: #cd3529;
  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-bottom: 30px;
  }
  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: #cd3529;
  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%;
  border-radius: 7px;
}
body main section.produtos-categorias form button {
  position: absolute;
  color: #cd3529;
  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: #cd3529;
}
@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: 50px 0 0 0;
}
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: 200px;
  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 .veja-mais {
  margin-top: 70px;
  background-image: url("../image/bg-vejamais.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 795px;
}
body main section.produtos-interna .veja-mais h1 {
  font-size: 38px;
  text-align: center;
}
body main section.produtos-interna .veja-mais h1 strong {
  color: black;
}
body main section.produtos-interna .veja-mais .card-produto {
  min-height: 530px;
}
body main section.produtos-interna .veja-mais .separador {
  display: block;
  margin: 20px auto;
}
body main section.produtos-interna .owl-galeria-produtos .owl-nav {
  color: #cd3529;
}
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: #cd3529;
  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 .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: #cd3529;
  margin-right: 10px;
  font-size: 42px;
}
body main section.produtos-interna .phones {
  display: flex;
  align-items: center;
  flex-flow: column;
  margin-top: 20px;
}
body main section.produtos-interna .phones a {
  margin-bottom: 10px;
}
body main section.produtos-interna .phones a:last-child {
  margin-bottom: 0;
}
body main section.produtos-interna .observacoes {
  background-color: #f7f7f7;
  padding: 30px 70px;
  border-radius: 15px;
  margin-top: 40px;
  font-size: 17px;
  line-height: 1.3;
}
body main section.produtos-interna .observacoes strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
}
body main section.produtos-interna .observacoes img {
  width: 100%;
}
body main section.produtos-interna .detalhes {
  margin-top: 30px;
}
body main section.produtos-interna .detalhes hr {
  margin: 8px 0 20px 0;
  height: 2px;
}
body main section.produtos-interna .detalhes .titulo {
  color: #cd3529;
  font-size: 24px;
  font-weight: 600;
}
body main section.produtos-interna .box {
  margin-top: 20px;
}
body main section.produtos-interna .box .btn-orcamento {
  background-color: #cd3529;
  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: #cd3529;
  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;
  background: #f7c800;
  color: #622824;
}
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;
}
body main section.produtos-interna .box .in-box {
  padding-bottom: 20px;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 25px;
}
body main section.produtos-interna .box .in-box p:last-child {
  margin-bottom: 0;
}
body main section.produtos-interna .box .in-box strong {
  font-weight: 400;
  color: #cd3529;
}
@media (max-width: 991px) {
  body main section.produtos-interna {
    padding-top: 30px;
    text-align: center;
  }
  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 h1 {
    font-size: 24px;
  }
  body main section.produtos-interna .veja-mais .separador {
    margin-bottom: 30px;
  }
  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;
  }
  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;
  }
  body main section.produtos-interna .detalhes .titulo {
    font-size: 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:first-child {
    margin-right: 7px;
    margin-bottom: 0px;
  }
  body main section.produtos-interna .box {
    margin-top: 20px;
    padding: 20px;
    font-size: 16px;
  }
  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 .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 .resumo {
    font-size: 15px;
    margin-bottom: 20px;
  }
  body main section.produtos-interna h1 {
    font-size: 20px;
  }
}
body main section.sobre-principal {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 70px 0;
  font-size: 19px;
}
body main section.sobre-principal hr {
  background-color: transparent;
  background-image: url("../image/separador2.png");
  background-size: contain;
  height: 8px;
  opacity: 1;
  width: 176px;
  max-width: 100%;
  margin: 20px 0 25px 0;
}
body main section.sobre-principal .foto {
  width: 100%;
  border-right: 10px solid #e1cec9;
}
body main section.sobre-principal h1 {
  color: #cd3529;
  font-size: 32px;
}
@media (max-width: 991px) {
  body main section.sobre-principal {
    background-size: cover;
    text-align: center;
    padding: 30px 0;
    font-size: 16px;
  }
  body main section.sobre-principal hr {
    margin-left: auto;
    margin-right: auto;
  }
  body main section.sobre-principal h1 {
    font-size: 17px;
  }
  body main section.sobre-principal .foto {
    margin-bottom: 30px;
  }
}
body main section.sobre-posicao {
  background-image: url("../image/bg-posicao.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 400px;
  color: white;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  font-weight: 300;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main section.sobre-posicao h1 {
  font-size: 28px;
}
@media (max-width: 991px) {
  body main section.sobre-posicao {
    background-color: #55242f;
    background-image: none;
    min-height: auto;
    margin-top: 0;
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
  }
  body main section.sobre-posicao h1 {
    font-size: 20px;
  }
}
body main section.sobre-especialistas {
  background-image: url("../image/bg-clientes.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -45px;
  min-height: 400px;
  padding: 110px 0;
  text-align: center;
  display: flex;
  align-items: center;
}
body main section.sobre-especialistas h1 {
  font-weight: 300;
  color: #cd3529;
  font-size: 36px;
  max-width: 800px;
  margin: auto;
}
body main section.sobre-especialistas h1 strong {
  font-weight: 500;
}
body main section.sobre-especialistas h3 {
  font-size: 20px;
  font-weight: 400;
}
body main section.sobre-especialistas hr {
  background-color: transparent;
  background-image: url("../image/separador2.png");
  background-size: contain;
  height: 8px;
  opacity: 1;
  width: 176px;
  max-width: 100%;
  margin: 20px auto 25px auto;
}
@media (max-width: 991px) {
  body main section.sobre-especialistas {
    background: #f4f4f5;
    margin-top: 0;
    min-height: auto;
    padding: 30px 0;
  }
  body main section.sobre-especialistas h3 {
    font-size: 16px;
  }
  body main section.sobre-especialistas h1 {
    font-size: 22px;
  }
  body main section.sobre-especialistas .icon {
    height: 30px;
  }
}
body main section.sobre-missao {
  min-height: 590px;
  background-image: url("../image/bg-missao.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -45px;
  color: white;
  padding: 120px 0;
}
body main section.sobre-missao .texto {
  margin-left: 110px;
  font-size: 18px;
  font-weight: 300;
}
body main section.sobre-missao .titulo {
  display: flex;
  align-items: flex-start;
}
body main section.sobre-missao .titulo h1 {
  font-size: 36px;
  margin-bottom: 0;
}
body main section.sobre-missao .titulo .icon {
  margin-right: 20px;
}
@media (max-width: 991px) {
  body main section.sobre-missao {
    margin-top: 0;
    min-height: auto;
    background: #712203;
    padding: 30px 0;
    text-align: center;
  }
  body main section.sobre-missao .texto {
    font-size: 16px;
    margin-bottom: 30px;
  }
  body main section.sobre-missao .titulo {
    justify-content: center;
    margin-bottom: 10px;
  }
  body main section.sobre-missao .titulo h1 {
    text-align: left;
    font-size: 22px;
  }
  body main section.sobre-missao .titulo .icon {
    height: 40px;
  }
  body main section.sobre-missao .texto {
    margin-left: 0;
  }
}
body main section.sobre-o-que-fazemos {
  background-image: url("../image/bg-clientes.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 70px 0;
  margin-top: -50px;
  text-align: center;
  position: relative;
}
body main section.sobre-o-que-fazemos .separador {
  margin: 5px 0 20px 0;
}
body main section.sobre-o-que-fazemos h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}
body main section.sobre-o-que-fazemos h1 strong {
  color: #cd3529;
  font-weight: 600;
}
body main section.sobre-o-que-fazemos h3 {
  text-align: center;
  font-weight: 400;
  max-width: 600px;
  margin: auto;
  font-size: 24px;
}
@media (max-width: 991px) {
  body main section.sobre-o-que-fazemos {
    background: #f4f4f5;
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.sobre-o-que-fazemos h3 {
    font-size: 18px;
  }
  body main section.sobre-o-que-fazemos h1 {
    font-size: 22px;
  }
}
body main section.sobre-porque-fazemos {
  padding: 120px 0;
  font-size: 18px;
  background-color: #f2f2f2;
  margin-top: -50px;
}
body main section.sobre-porque-fazemos h1 {
  font-size: 32px;
}
body main section.sobre-porque-fazemos h1 strong {
  color: #cd3529;
}
body main section.sobre-porque-fazemos .video {
  width: 100%;
  display: block;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
body main section.sobre-porque-fazemos .video:hover:before {
  background-color: rgba(0, 0, 0, 0.5);
}
body main section.sobre-porque-fazemos .video:before {
  transition: 0.3s all;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
body main section.sobre-porque-fazemos .video:after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  color: #fed836;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
}
body main section.sobre-porque-fazemos .video img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body main section.sobre-porque-fazemos h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
body main section.sobre-porque-fazemos hr {
  background-color: transparent;
  background-image: url("../image/separador2.png");
  background-size: contain;
  height: 8px;
  opacity: 1;
  width: 176px;
  max-width: 100%;
  margin: 20px 0 25px 0;
}
@media (max-width: 991px) {
  body main section.sobre-porque-fazemos {
    margin-top: 0;
    padding: 30px 0;
    background-color: #e9e9e9;
    text-align: center;
    font-size: 16px;
  }
  body main section.sobre-porque-fazemos .video {
    height: 200px;
    margin-top: 10px;
  }
  body main section.sobre-porque-fazemos h3 {
    font-size: 18px;
  }
  body main section.sobre-porque-fazemos h1 {
    font-size: 22px;
  }
  body main section.sobre-porque-fazemos hr {
    margin-left: auto;
    margin-right: auto;
  }
}
body main section.sobre-equipe {
  background-color: #f2f2f2;
  padding: 80px 0 120px 0;
  margin-top: -50px;
  position: relative;
}
body main section.sobre-equipe h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #cd3529;
}
body main section.sobre-equipe h1 strong {
  display: block;
  color: black;
  font-weight: 600;
}
body main section.sobre-equipe .galeria {
  background-color: white;
  margin: 20px 10px;
}
body main section.sobre-equipe .galeria img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.sobre-equipe .galeria .titulo {
  padding: 20px;
}
body main section.sobre-equipe .galeria .titulo h5 {
  font-size: 22px;
  text-align: center;
  margin: 0;
}
body main section.sobre-equipe .separador {
  margin: 30px auto;
  display: block;
}
body main section.sobre-equipe h3 {
  color: #cd3529;
  text-align: center;
  font-weight: 300;
  max-width: 650px;
  margin: auto;
  font-size: 21px;
}
body main section.sobre-equipe .custom-shape-divider-bottom-1633961867 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
body main section.sobre-equipe .custom-shape-divider-bottom-1633961867 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
  transform: rotateY(180deg);
}
body main section.sobre-equipe .custom-shape-divider-bottom-1633961867 .shape-fill {
  fill: #ffffff;
}
@media (max-width: 991px) {
  body main section.sobre-equipe {
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.sobre-equipe .galeria {
    margin: 15px 0;
  }
  body main section.sobre-equipe .galeria img {
    height: 150px;
  }
  body main section.sobre-equipe .galeria .titulo {
    padding: 15px;
  }
  body main section.sobre-equipe .galeria .titulo h5 {
    font-size: 18px;
  }
  body main section.sobre-equipe h1 {
    font-size: 26px;
  }
  body main section.sobre-equipe h3 {
    font-size: 18px;
  }
  body main section.sobre-equipe .custom-shape-divider-bottom-1633961867 {
    display: none;
  }
}
body main section.sobre-galeria {
  padding: 30px 0 70px 0;
}
body main section.sobre-galeria .titulo h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #cd3529;
}
body main section.sobre-galeria .titulo h1 strong {
  color: black;
  font-weight: 600;
}
body main section.sobre-galeria .titulo h3 {
  color: #cd3529;
  text-align: center;
  font-weight: 300;
  max-width: 400px;
  margin: auto;
  font-size: 24px;
}
body main section.sobre-galeria .owl-galeria {
  margin-top: 40px;
}
body main section.sobre-galeria .separador {
  display: block;
  margin: auto;
  margin-top: 20px;
}
body main section.sobre-galeria .foto {
  height: 220px;
  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 #cd3529;
}
body main section.sobre-galeria .foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  body main section.sobre-galeria {
    padding: 30px 0;
  }
  body main section.sobre-galeria .foto {
    height: 250px;
  }
  body main section.sobre-galeria .titulo h1 {
    font-size: 26px;
  }
  body main section.sobre-galeria .titulo h3 {
    font-size: 18px;
  }
}
body main section.clientes {
  padding: 20px 0 70px 0;
}
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 {
    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;
  padding: 50px 0 80px 0;
}
body main section.contato .enviar {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: block;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  float: right;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.contato .enviar:hover {
  background-color: #cd3529;
  color: white;
}
body main section.contato .enviar i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.contato h1 {
  font-weight: 400;
  font-size: 32px;
  color: #cd3529;
}
body main section.contato h3 {
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
}
body main section.contato form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
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%;
  border: 1px solid gainsboro;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
}
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: 20px 10px;
  }
  body main section.contato h1 {
    font-size: 22px;
  }
  body main section.contato h3 {
    font-size: 16px;
  }
  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: 50px 0 80px 0;
}
body main section.duvidas h2 {
  color: #cd3529;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
body main section.duvidas .categorias {
  background-color: #f1f1f1;
  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: #cd3529;
}
body main section.duvidas .categorias h3 {
  color: #cd3529;
  font-weight: 400;
  font-size: 22px;
}
body main section.duvidas .categorias hr {
  background-color: gray;
}
body main section.duvidas .listagem .duvida {
  border-radius: 5px;
  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: #cd3529;
  font-size: 22px;
}
body main section.duvidas .listagem .duvida .titulo a {
  background-color: #cd3529;
  font-size: 15px;
  display: inline-block;
  flex: 0 0 146px;
  margin-left: 20px;
  color: white;
  border-radius: 5px;
  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;
  background-color: #f5f5f5;
  font-weight: 400;
  font-size: 18px;
  top: 70px;
  border: 1px solid gainsboro;
}
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;
  background-color: #cd3529;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  padding: 15px 20px;
  border: 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: #cd3529;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body main section.duvidas {
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.duvidas .listagem .duvida .titulo {
    padding: 20px 30px;
    font-size: 17px;
  }
  body main section.duvidas .listagem .duvida .titulo a {
    font-size: 14px;
    flex: 0 0 110px;
    text-align: center;
  }
  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: 50px 0;
}
@media screen and (max-width: 991px) {
  body main section.carrinho {
    padding: 20px 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: 5px;
}
body main section.carrinho .passos a {
  background-color: #edeeed;
  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: #cd3529;
}
body main section.carrinho .passos a.ativo:hover {
  color: #cd3529;
}
body main section.carrinho .passos a.ativo strong {
  color: #cd3529;
  border-color: #cd3529;
}
@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: #cd3529;
  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: #cd3529;
}
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 td {
  background-color: #8c1810;
  color: white;
  padding: 20px 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: #cd3529;
  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;
  width: 100%;
  max-width: 1000px;
  background-color: #e9e9e9;
  padding: 30px 50px;
  border-radius: 7px;
}
body main section.carrinho .box .endereco {
  font-size: 18px;
  color: #cd3529;
  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: #cd3529;
  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: 20px;
  }
  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: #cd3529;
  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: 25px;
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #cd3529;
}
body main section.carrinho .form .main-cta i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.carrinho .form h1 {
  font-size: 30px;
  color: #cd3529;
  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 {
  font-weight: 500;
  display: block;
  font-size: 18px;
  margin: 0;
  margin-bottom: 5px;
}
body main section.carrinho .form label {
  display: block;
  font-weight: 600;
  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%;
  border: 1px solid gainsboro;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
}
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.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: #cd3529;
  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.guias-listagem {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0 120px 0;
}
body main section.guias-listagem h1 {
  color: #cd3529;
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 50px;
}
body main section.guias-listagem h1:first-child {
  margin-top: 0;
}
body main section.guias-listagem .item {
  background-color: white;
  border-radius: 5px;
  border: 1px solid gainsboro;
  padding: 50px 80px;
  text-align: center;
  margin: 10px;
  box-shadow: 2px 2px 10px 10px rgba(0, 0, 0, 0.03);
  height: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.guias-listagem .item .link {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  margin-top: 10px;
  border: 2px solid #cd3529;
}
body main section.guias-listagem .item .link i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.guias-listagem .item img {
  margin-bottom: 20px;
}
body main section.guias-listagem .item h2 {
  color: #cd3529;
  font-size: 24px;
}
@media (max-width: 991px) {
  body main section.guias-listagem {
    padding: 30px 0;
  }
  body main section.guias-listagem h1 {
    text-align: center;
    font-size: 26px;
    margin-top: 30px;
  }
  body main section.guias-listagem .item {
    padding: 40px 30px;
  }
  body main section.guias-listagem .item h2 {
    font-size: 20px;
  }
}
body main section.guias-interna {
  font-size: 18px;
  padding: 50px 0 130px 0;
}
body main section.guias-interna .manual {
  background-color: #cd3529;
  color: white;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 18px;
  margin: auto;
}
body main section.guias-interna .video {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
}
body main section.guias-interna .video:hover:before {
  background-color: rgba(0, 0, 0, 0.5);
}
body main section.guias-interna .video:before {
  transition: 0.3s all;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
body main section.guias-interna .video:after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  color: #fed836;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
}
body main section.guias-interna .video img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body main section.guias-interna h1,
body main section.guias-interna h2,
body main section.guias-interna h3,
body main section.guias-interna h4,
body main section.guias-interna h5 {
  color: #cd3529;
}
body main section.guias-interna .titulo {
  align-items: center;
  display: flex;
}
body main section.guias-interna .titulo h1 {
  font-size: 36px;
}
body main section.guias-interna .titulo img {
  margin-right: 25px;
}
@media (max-width: 991px) {
  body main section.guias-interna {
    text-align: center;
    padding: 20px 10px;
    font-size: 16px;
  }
  body main section.guias-interna .manual {
    font-size: 16px;
  }
  body main section.guias-interna .video {
    height: 200px;
    margin-top: 20px;
  }
  body main section.guias-interna .titulo {
    justify-content: center;
    text-align: left;
  }
  body main section.guias-interna .titulo img {
    height: 40px;
  }
  body main section.guias-interna .titulo h1 {
    font-size: 24px;
  }
}
body main section.revendedor-principal {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0 80px 0;
  font-size: 18px;
}
body main section.revendedor-principal .pgto h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #cd3529;
}
body main section.revendedor-principal .pgto img {
  max-width: 100%;
  margin: 0 10px;
}
body main section.revendedor-principal .ver-todos {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  margin-top: 20px;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.revendedor-principal .ver-todos:hover {
  background-color: #cd3529;
  color: white;
}
body main section.revendedor-principal .ver-todos i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.revendedor-principal .titulo {
  align-items: center;
  display: flex;
  margin-top: 30px;
  margin-bottom: 20px;
}
body main section.revendedor-principal .titulo:first-child {
  margin-top: 0;
}
body main section.revendedor-principal .titulo h1 {
  font-size: 36px;
  color: #cd3529;
  font-weight: 400;
}
body main section.revendedor-principal .titulo img {
  margin-right: 25px;
}
body main section.revendedor-principal .plano {
  border: 1px solid lightgray;
  padding: 30px 60px;
  border-radius: 0 40px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  margin: 10px;
}
body main section.revendedor-principal .plano .icon {
  width: 70px;
  margin: 0 auto 5px auto;
}
body main section.revendedor-principal .plano .icon img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.revendedor-principal .plano p:last-child {
  margin-bottom: 0;
}
body main section.revendedor-principal .plano h2 {
  color: #cd3529;
  font-size: 24px;
  margin-bottom: 15px;
}
body main section.revendedor-principal .plano h2 i {
  font-size: 42px;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 991px) {
  body main section.revendedor-principal {
    padding: 30px 0;
    font-size: 16px;
  }
  body main section.revendedor-principal .pgto h4 {
    font-size: 18px;
  }
  body main section.revendedor-principal .pgto img {
    max-width: 250px;
  }
  body main section.revendedor-principal .plano {
    padding: 30px;
  }
  body main section.revendedor-principal .plano h2 {
    font-size: 20px;
  }
  body main section.revendedor-principal .plano h2 i {
    font-size: 28px;
  }
  body main section.revendedor-principal .titulo {
    justify-content: center;
  }
  body main section.revendedor-principal .titulo h1 {
    font-size: 26px;
  }
  body main section.revendedor-principal .titulo img {
    margin-right: 20px;
    height: 35px;
  }
}
body main section.revendedor-lista {
  background-image: url("../image/bg-clientes.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: -30px;
}
body main section.revendedor-lista .separador {
  display: block;
  margin: 20px auto;
}
body main section.revendedor-lista h1 {
  color: #cd3529;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
body main section.revendedor-lista .owl-clientes {
  margin: auto;
  margin-top: 30px;
  max-width: 1100px;
}
body main section.revendedor-lista .cliente {
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 20px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
body main section.revendedor-lista .cliente img {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  body main section.revendedor-lista {
    margin-top: 0;
    padding: 30px 0;
    background: #f4f4f5;
  }
  body main section.revendedor-lista h1 {
    font-size: 22px;
  }
}
body main section.revendedor-depoimentos {
  padding-top: 40px;
}
body main section.revendedor-depoimentos .titulo h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}
body main section.revendedor-depoimentos .titulo h1 strong {
  display: block;
  color: #cd3529;
  font-weight: 600;
}
body main section.revendedor-depoimentos .owl-depoimentos {
  margin-top: 40px;
}
body main section.revendedor-depoimentos .separador {
  display: block;
  margin: auto;
  margin-top: 20px;
}
body main section.revendedor-depoimentos .depoimento {
  border: 1px solid lightgray;
  background-color: white;
  padding: 50px;
  font-size: 17px;
  font-weight: 300;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top: 7px solid #cd3529;
}
body main section.revendedor-depoimentos .depoimento h4 {
  color: #cd3529;
  text-transform: uppercase;
  font-size: 18px;
}
@media (max-width: 991px) {
  body main section.revendedor-depoimentos {
    padding: 30px 0;
  }
  body main section.revendedor-depoimentos .depoimento {
    padding: 30px;
    font-size: 15px;
  }
  body main section.revendedor-depoimentos .titulo h1 {
    font-size: 24px;
  }
}
body main section.revendedor-formulario {
  background-image: url("../image/bg-parede.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  color: white;
  padding: 230px 0 70px 0;
  margin-top: -150px;
}
body main section.revendedor-formulario hr {
  background-color: transparent;
  background-image: url("../image/separador2.png");
  background-size: contain;
  height: 8px;
  opacity: 1;
  width: 176px;
  max-width: 100%;
  margin: 30px auto;
}
body main section.revendedor-formulario .box {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 50px 100px;
  margin: auto;
  margin-top: 40px;
  max-width: 800px;
}
body main section.revendedor-formulario form {
  /* Alterado: input, select */
}
body main section.revendedor-formulario form input, body main section.revendedor-formulario form select {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  border: none;
  width: 100%;
  background-color: white; /* Garante fundo branco */
  outline: none;
  height: 47px; /* Altura fixa para alinhar inputs e selects */
}
body main section.revendedor-formulario form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cd3529;
  border: 2px solid #cd3529;
  outline: none;
  background-color: transparent;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px;
  /* Estilo para disabled */
}
body main section.revendedor-formulario form button:disabled {
  border-color: #999;
  color: #999;
  cursor: not-allowed;
}
body main section.revendedor-formulario .titulo {
  text-align: center;
}
body main section.revendedor-formulario .titulo h3 {
  font-size: 18px;
  font-weight: 400;
  max-width: 500px;
  margin: auto;
}
body main section.revendedor-formulario .titulo h3 strong {
  font-weight: 400;
  color: #cd3529;
}
body main section.revendedor-formulario .titulo h1 {
  font-weight: 300;
  font-size: 36px;
}
body main section.revendedor-formulario .titulo h1 strong {
  font-weight: 500;
  color: #cd3529;
  display: block;
}
body main section.revendedor-formulario .titulo h5 {
  color: #cd3529;
  font-weight: 400;
}
@media (max-width: 991px) {
  body main section.revendedor-formulario {
    background-image: url("../image/parede2.png");
    background-size: cover;
    margin-top: 0;
    padding: 30px 0;
  }
  body main section.revendedor-formulario .separador {
    margin: 10px 0 30px 0;
  }
  body main section.revendedor-formulario .box {
    padding: 30px;
    margin-top: 20px;
  }
  body main section.revendedor-formulario form {
    /* Alterado: input, select */
  }
  body main section.revendedor-formulario form input, body main section.revendedor-formulario form select {
    font-size: 15px;
  }
  body main section.revendedor-formulario form button {
    text-align: left;
    font-size: 15px;
    justify-content: center;
  }
  body main section.revendedor-formulario form button i {
    vertical-align: middle;
    margin-left: 20px;
  }
  body main section.revendedor-formulario .titulo h3 {
    font-size: 16px;
  }
  body main section.revendedor-formulario .titulo h1 {
    font-size: 24px;
  }
  body main section.revendedor-formulario .titulo h1 strong {
    display: inline;
  }
}
body main section.blog-listagem {
  padding: 20px 0 70px 0;
}
body main section.blog-listagem .titulo-cat {
  color: #cd3529;
  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 {
  background-color: #f1f1f1;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 50px;
}
body main section.blog-listagem .categorias:first-child {
  margin-top: 50px;
}
body main section.blog-listagem .categorias .main-phone {
  display: flex;
}
body main section.blog-listagem .categorias .main-phone i {
  color: #cd3529;
}
body main section.blog-listagem .categorias .main-phone span strong {
  font-weight: 400;
}
body main section.blog-listagem .categorias .main-phone.zap i {
  color: #4baa2b;
}
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: #cd3529;
}
body main section.blog-listagem .categorias a.primary i {
  color: #cd3529;
}
body main section.blog-listagem .categorias a i {
  color: lightgray;
}
body main section.blog-listagem .categorias h3 {
  color: #cd3529;
  font-weight: 400;
  font-size: 22px;
}
body main section.blog-listagem .categorias hr {
  background-color: gray;
}
body main section.blog-listagem .listagem .post {
  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;
  }
  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;
    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 main section.trabalhe-principal {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 20px 0 50px 0;
}
body main section.trabalhe-principal .separador {
  margin: 20px 0;
}
body main section.trabalhe-principal .chamada {
  padding: 30px 0;
  text-align: center;
}
body main section.trabalhe-principal .chamada .txt-in {
  max-width: 800px;
  margin: auto;
  font-size: 19px;
  font-weight: 300;
  color: black;
}
body main section.trabalhe-principal .chamada .txt-in h1 {
  font-size: 36px;
  font-weight: 400;
  color: #cd3529;
  margin-bottom: 20px;
}
body main section.trabalhe-principal .chamada .txt-in h1 strong {
  color: black;
  display: block;
  font-weight: 500;
}
body main section.trabalhe-principal .chamada .txt-in h3 {
  font-weight: 400;
  max-width: none;
}
body main section.trabalhe-principal .chamada .txt-in h3 strong {
  font-weight: 600;
}
body main section.trabalhe-principal .vagas {
  background-color: white;
  margin: auto;
  border: 1px solid gainsboro;
  margin-top: 0px;
  border-radius: 7px;
  padding: 40px 70px;
  text-align: center;
  margin-bottom: 40px;
}
body main section.trabalhe-principal .vagas .btn-selecione {
  background-color: #cd3529;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
}
body main section.trabalhe-principal .vagas .chamada-principal {
  font-size: 24px;
  color: #cd3529;
  font-weight: 600;
  line-height: 1.1;
}
body main section.trabalhe-principal .vagas .lista-vagas {
  text-align: left;
  color: #666666;
  font-size: 19px;
  overflow-y: scroll;
  height: 350px;
}
body main section.trabalhe-principal .vagas .lista-vagas::-webkit-scrollbar {
  width: 10px;
  background-color: #ececec;
}
body main section.trabalhe-principal .vagas .lista-vagas::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #cd3529;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
body main section.trabalhe-principal .vagas .lista-vagas::-webkit-scrollbar-thumb:hover {
  background: gray;
}
body main section.trabalhe-principal .vagas .lista-vagas hr {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 20px auto;
}
body main section.trabalhe-principal .vagas .lista-vagas hr:last-child {
  display: none;
}
body main section.trabalhe-principal .vagas .lista-vagas h4 {
  color: #cd3529;
  margin-bottom: 0;
  font-weight: 600;
}
body main section.trabalhe-principal .vagas .lista-vagas .itens {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
body main section.trabalhe-principal .vagas .lista-vagas .itens i {
  color: #cd3529;
  margin-right: 5px;
  font-weight: 500;
}
body main section.trabalhe-principal .vagas .lista-vagas .itens i:last-child {
  margin-left: 10px;
}
body main section.trabalhe-principal .enviar {
  color: #cd3529;
  padding: 10px 30px;
  border-radius: 5px;
  display: block;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  float: right;
  border: 2px solid #cd3529;
  transition: 0.3s all;
}
body main section.trabalhe-principal .enviar:hover {
  background-color: #cd3529;
  color: white;
}
body main section.trabalhe-principal .enviar i {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
body main section.trabalhe-principal h1 {
  font-weight: 400;
  font-size: 32px;
  color: #cd3529;
}
body main section.trabalhe-principal h3 {
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
}
body main section.trabalhe-principal form .box-file .text {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: black;
}
body main section.trabalhe-principal form .box-file .flex-box {
  display: flex;
  margin-top: 5px;
  cursor: pointer;
}
body main section.trabalhe-principal 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-principal form .box-file .flex-box .selecionar {
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #e01821;
  border-radius: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.trabalhe-principal form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
body main section.trabalhe-principal form button {
  margin-right: 0 !important;
  margin-top: 20px !important;
}
body main section.trabalhe-principal form input,
body main section.trabalhe-principal form select,
body main section.trabalhe-principal form textarea {
  width: 100%;
  border: 1px solid gainsboro;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
}
body main section.trabalhe-principal form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body main section.trabalhe-principal form textarea {
  min-height: 100px;
  resize: vertical;
}
@media (max-width: 991px) {
  body main section.trabalhe-principal {
    padding: 20px;
  }
  body main section.trabalhe-principal h1 {
    font-size: 22px;
  }
  body main section.trabalhe-principal h3 {
    font-size: 16px;
  }
  body main section.trabalhe-principal .chamada {
    padding-bottom: 20px;
    padding-top: 0;
  }
  body main section.trabalhe-principal .chamada .txt-in {
    font-size: 16px;
  }
  body main section.trabalhe-principal .chamada .txt-in h1 {
    font-size: 20px;
  }
  body main section.trabalhe-principal .chamada .txt-in h3 {
    font-size: 17px;
  }
  body main section.trabalhe-principal form .box-file .text {
    font-size: 12px;
  }
  body main section.trabalhe-principal form .box-file .flex-box .name-file {
    padding: 10px;
    font-size: 12px;
  }
  body main section.trabalhe-principal form .box-file .flex-box .selecionar {
    font-size: 13px;
  }
  body main section.trabalhe-principal form label {
    font-size: 16px;
  }
  body main section.trabalhe-principal form input,
  body main section.trabalhe-principal form select,
  body main section.trabalhe-principal form textarea {
    font-size: 15px;
    padding: 10px;
  }
  body main section.trabalhe-principal form button {
    margin-bottom: 30px !important;
  }
  body main section.trabalhe-principal .vagas {
    padding: 20px;
    margin-bottom: 20px;
  }
  body main section.trabalhe-principal .vagas .btn-selecione {
    font-size: 12px;
    margin-top: 20px;
  }
  body main section.trabalhe-principal .vagas .chamada-principal {
    font-size: 16px;
    margin-bottom: 20px;
  }
  body main section.trabalhe-principal .vagas .lista-vagas {
    font-size: 14px;
    height: 180px;
  }
  body main section.trabalhe-principal .vagas .lista-vagas .itens {
    font-size: 14px;
  }
  body main section.trabalhe-principal .vagas .lista-vagas h4 {
    font-size: 17px;
  }
}
body main section.trabalhe-diferenciais {
  background-color: #f2f2f2;
  padding: 80px 0;
  position: relative;
}
body main section.trabalhe-diferenciais .custom-shape-divider-top-1634222360 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
body main section.trabalhe-diferenciais .custom-shape-divider-top-1634222360 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
  transform: rotateY(180deg);
}
body main section.trabalhe-diferenciais .custom-shape-divider-top-1634222360 .shape-fill {
  fill: #ffffff;
}
body main section.trabalhe-diferenciais .separador {
  margin: 20px 0 0 0;
}
body main section.trabalhe-diferenciais .box {
  background-color: white;
  overflow: hidden;
  margin-top: 50px;
  border-radius: 0 40px;
}
body main section.trabalhe-diferenciais .box .in-box {
  padding: 40px 60px;
  text-align: center;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 300;
}
body main section.trabalhe-diferenciais .box .in-box h2 {
  color: #cd3529;
  font-size: 24px;
}
body main section.trabalhe-diferenciais .box img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.trabalhe-diferenciais h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}
body main section.trabalhe-diferenciais h1 strong {
  color: #cd3529;
  font-weight: 700;
  display: block;
}
@media (max-width: 991px) {
  body main section.trabalhe-diferenciais {
    padding: 30px 0;
    margin-top: 30px;
  }
  body main section.trabalhe-diferenciais h1 {
    font-size: 24px;
  }
  body main section.trabalhe-diferenciais .box {
    margin-top: 30px;
  }
  body main section.trabalhe-diferenciais .box .in-box {
    padding: 20px 30px;
    font-size: 16px;
  }
  body main section.trabalhe-diferenciais .box .in-box h2 {
    font-size: 18px;
  }
  body main section.trabalhe-diferenciais .custom-shape-divider-top-1634222360 {
    display: none;
  }
}
body footer section.barra-fixa {
  position: fixed;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #cd3529;
  width: 100%;
  padding: 10px 80px;
  z-index: 600;
  transition: all 0.5s;
}
body footer section.barra-fixa .btn-orcamento {
  background-color: #cd3529;
  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: #cd3529;
  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: #cd3529;
  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-news {
  background-color: #e4e4e5;
  padding: 30px 0;
  position: relative;
  z-index: 3;
}
body footer section.footer-news form {
  display: flex;
}
body footer section.footer-news form input {
  flex-grow: 1;
  border: none;
  font-size: 18px;
  outline: none;
  font-weight: 300;
  padding: 12px 30px;
}
body footer section.footer-news form button {
  color: white;
  border: none;
  background-color: #cd3529;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 20px 0;
  margin-left: 20px;
}
body footer section.footer-news .titulo {
  align-items: center;
  display: flex;
  font-size: 18px;
  color: dimgray;
}
body footer section.footer-news .titulo i {
  color: #cd3529;
  font-size: 72px;
  margin-right: 20px;
}
body footer section.footer-news .titulo h1 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  color: #cd3529;
}
@media (max-width: 991px) {
  body footer section.footer-news form input {
    font-size: 15px;
    padding: 10px;
  }
  body footer section.footer-news form button {
    font-size: 12px;
    padding: 12px 17px;
    margin-left: 10px;
  }
  body footer section.footer-news .titulo {
    margin-bottom: 20px;
    justify-content: center;
    font-size: 15px;
  }
  body footer section.footer-news .titulo i {
    margin-right: 15px;
    font-size: 36px;
  }
  body footer section.footer-news .titulo h1 {
    font-size: 20px;
  }
}
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: 560px;
  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: 5px 0;
  border-radius: 0;
}
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: #cd3529;
}
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: #cd3529;
  font-size: 16px;
  padding: 0 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}/*# sourceMappingURL=custom.css.map */