@charset "UTF-8";
/* CLASSES GLOBAIS */
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.container {
  max-width: 1596px;
}
.container.padrao {
  max-width: 1140px;
}

.has-error {
  border-color: red !important;
}

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

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

/* VARIAVEIS GLOBAIS DO PROJETO */
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;
}
section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #e40021;
  -webkit-animation: loader-rotate 1s infinite;
          animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@-webkit-keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}

body {
  font-size: .9em;
  font-family: "Prompt", sans-serif;
  text-rendering: optimizeLegibility;
  /* MODAL */
}
body::-webkit-scrollbar {
  width: 12px;
  background-color: #f0f0f0;
}
body::-webkit-scrollbar-thumb {
  background: #2a297c;
  height: 150px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #363636;
}
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 .modal-backdrop.show {
  opacity: 0.8;
}
body .modal-content {
  border-radius: 10px !important;
  background-color: white;
}
body .modal-content .closebtn {
  outline: none;
  color: white;
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 2;
  text-shadow: none;
  font-weight: 400;
  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-lg {
  max-width: 670px !important;
}
body .modal-body {
  font-size: 18px;
  color: black;
}
body .modal-body input, body .modal-body select, body .modal-body textarea {
  width: 100%;
  font-family: inherit;
  font-size: 18px;
  border: 1px solid gainsboro;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 4px;
  color: black;
  margin-bottom: 20px;
  font-size: 17px;
}
body .modal-body textarea {
  resize: none;
  height: 80px;
}
body .modal-body hr {
  width: 100px;
  margin: 20px auto;
  border: none;
  background: gainsboro;
  height: 3px;
}
body .modal-body form {
  margin: auto;
  max-width: 450px;
  margin-top: 35px;
}
body .modal-body span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 17px;
}
body .modal-body img {
  display: block;
  margin: auto;
}
body .modal-body h1 {
  color: #2a297c;
  margin-top: 20px;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}
body .modal-body h1 strong {
  font-weight: 800;
}
body .modal-body h4 {
  font-size: 20px;
  font-weight: 300;
  margin: auto;
  text-align: center;
}
body .modal-body .button {
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  border-radius: 0 30px 0 30px;
  margin-top: 0;
  padding: 15px;
  border: none;
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  color: white;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body .modal-body .button::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body .modal-body .button:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body .modal-body .button:hover::before {
  top: 0px;
}
@media (max-width: 991px) {
  body .modal-body {
    padding: 20px;
    font-size: 15px;
  }
  body .modal-body h1 {
    font-size: 25px;
  }
  body .modal-body input, body .modal-body select, body .modal-body textarea {
    font-size: 15px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  body .modal-body h4 {
    font-size: 16px;
  }
  body .modal-body .button {
    font-size: 14px;
  }
}
body section.error-404 {
  padding: 50px 0;
}
body section.error-404 .animated {
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
  width: 100%;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}
body section.error-404 .animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
body section.error-404 h1 {
  color: #003060;
  font-size: 2em;
  line-height: 60px;
}
body section.error-404 h1 span {
  font-size: 3em;
  display: block;
  font-weight: 600;
}
body section.error-404 h2 {
  font-size: 1.5em;
  margin-bottom: 50px;
}
body section.error-404 .box {
  margin-top: 126px;
  text-align: center;
}
body section.error-404 .box img {
  width: 100%;
  display: block;
  margin-bottom: 26px;
}
body section.error-404 .btn {
  background-color: #003060 !important;
  border-color: #003060 !important;
}
body section.error-404 .btn:hover {
  color: #003060 !important;
}
body section.formulario-enviado {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #565656;
}
body section.formulario-enviado h1 {
  font-weight: 600;
  font-size: 2.8em;
}
body section.formulario-enviado p {
  font-weight: 500;
}
body section.formulario-enviado .btn {
  display: inline-block;
  font-weight: 700;
  background: #0f5bd7 !important;
  border-color: #0f5bd7 !important;
  color: #fff;
  padding: 11px 20px;
  border-radius: 7px;
  text-transform: none;
}
body section.formulario-enviado .btn:before {
  background: #fff;
}
body section.formulario-enviado .btn:hover, body section.formulario-enviado .btn:focus {
  color: white !important;
}
body header section.header {
  background-color: #f5f5f5;
}
body header section.header .mobileMenu {
  display: none;
}
@media (max-width: 991px) {
  body header section.header .mobileMenu {
    display: block;
    z-index: 800;
    position: fixed;
    top: 25px;
    right: 20px;
    background-color: #2a297c;
    padding: 10px;
    border-radius: 100%;
    width: 45px;
    font-size: 20px;
    color: white;
    text-align: center;
    height: 48px;
  }
}
@media screen and (min-width: 992px) {
  body header section.header.lgpd {
    margin-top: 36px;
  }
}
body header section.header .barra-topo {
  width: 100%;
  height: 4px;
  background-size: cover;
  background-image: url("../image/barra_topo.png");
}
body header section.header .topo {
  border-bottom: 1px solid gainsboro;
  padding: 6px 0;
}
body header section.header .topo .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body header section.header .topo .container span {
  color: #e40021;
  font-weight: 300;
}
body header section.header .topo .container span strong {
  font-weight: 600;
}
body header section.header .topo .container .menu-superior {
  color: #2a297c;
  font-weight: 600;
}
body header section.header .topo .container .menu-superior a {
  color: #2a297c;
  margin: 0 20px;
  transition: all 0.3s ease;
}
body header section.header .topo .container .menu-superior a:hover {
  color: #e40021;
}
body header section.header .topo .container .menu-superior .social {
  display: inline-block;
  margin-left: 20px;
}
body header section.header .topo .container .menu-superior .social a {
  margin: 0 10px;
  color: gray;
}
body header section.header .topo .container .menu-superior .social a:last-child {
  margin-right: 0;
}
body header section.header .principal {
  padding: 15px 0;
}
body header section.header .principal .botoes {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
body header section.header .principal .in-botoes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 1050px;
}
body header section.header .principal .in-botoes a {
  display: flex;
  border: 1px solid #2a297c;
  color: #2a297c;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body header section.header .principal .in-botoes a:hover::before {
  top: 0px;
}
body header section.header .principal .in-botoes a:hover img {
  filter: brightness(100);
}
body header section.header .principal .in-botoes a strong {
  font-size: 14px;
  font-weight: 600;
}
body header section.header .principal .in-botoes a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body header section.header .principal .in-botoes a.primary {
  padding: 9px 25px;
  border-radius: 0 30px;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: #f5f5f5;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body header section.header .principal .in-botoes a.primary:hover::before {
  top: 0px;
}
body header section.header .principal .in-botoes a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body header section.header .principal .in-botoes a.primary strong {
  font-size: 15px;
}
body header section.header .principal .in-botoes a.carrinho {
  color: #e40021;
  border-color: #e40021;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.carrinho::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.carrinho:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body header section.header .principal .in-botoes a.carrinho:hover::before {
  top: 0px;
}
body header section.header .principal .in-botoes a.carrinho i {
  font-size: 18px;
  margin-right: 10px;
}
body header section.header .principal .in-botoes a.secondary {
  padding: 12px 25px;
  border-radius: 0 30px 0 30px;
  background-color: #2a297c;
  color: white;
  border-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.secondary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body header section.header .principal .in-botoes a.secondary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body header section.header .principal .in-botoes a.secondary:hover::before {
  top: 0px;
}
body header section.header .principal .in-botoes a.secondary img {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
}
body header section.header .principal .in-botoes a.secondary strong {
  font-size: 15px;
}
body header section.header .menu {
  z-index: 1;
  position: relative;
  height: 50px;
  margin-top: 10px;
  display: flex;
  width: 100%;
}
body header section.header .menu .home {
  height: 100%;
  background-color: #2a297c;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 250px;
  border-top-right-radius: 30px;
  padding-right: 20px;
}
body header section.header .menu .home img {
  height: 20px;
  transition: all 0.3s ease;
}
body header section.header .menu .home a:hover img {
  opacity: 0.8;
}
body header section.header .menu .itens {
  display: flex;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  width: 1492px;
  font-size: 17px;
  background-color: #e40021;
  border-radius: 30px 0 30px 0;
}
body header section.header .menu .itens a {
  background-color: #e40021;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white;
  transition: all 0.3s ease;
}
body header section.header .menu .itens a:hover {
  background-color: #2a297c;
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body header section.header .menu .itens .dropdown {
  position: relative;
  height: 100%;
}
body header section.header .menu .itens .dropdown .drop-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  -webkit-animation: fadeEffect 0.3s;
          animation: fadeEffect 0.3s;
}
body header section.header .menu .itens .dropdown .drop-content a {
  justify-content: flex-start;
  padding: 10px;
  background-color: white;
  color: #e40021;
  font-size: 16px;
  border-top: 1px solid lightgray;
}
body header section.header .menu .itens .dropdown .drop-content a:hover {
  background-color: lightgray;
}
body header section.header .menu .itens .dropdown:hover .drop-content {
  display: block;
}
@media (max-width: 991px) {
  body header section.header .topo .container span {
    text-align: center;
  }
  body header section.header .topo .container .menu-superior {
    display: none;
  }
  body header section.header .principal .botoes {
    display: none;
  }
  body header section.header .logo {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block;
    margin-bottom: 20px;
  }
  body header section.header .menu {
    display: none;
  }
  body header section.header .principal .in-botoes {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  body header section.header .principal .in-botoes a {
    margin: 10px auto;
    width: 100%;
    max-width: 225px;
    text-align: center;
    justify-content: center;
  }
}
body header section.header-fixo {
  position: fixed;
  width: 100%;
  top: -50px;
  z-index: 400;
  left: 0;
  height: 50px;
  background-color: #e40021;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 17px;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  body header section.header-fixo {
    display: none;
  }
}
body header section.header-fixo.fixar {
  top: 0;
}
body header section.header-fixo a {
  background-color: #e40021;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white;
  transition: all 0.3s ease;
}
body header section.header-fixo a:hover {
  background-color: #2a297c;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body header section.header-fixo .dropdown {
  position: relative;
  height: 100%;
}
body header section.header-fixo .dropdown .drop-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  -webkit-animation: fadeEffect 0.3s;
          animation: fadeEffect 0.3s;
}
body header section.header-fixo .dropdown .drop-content a {
  justify-content: flex-start;
  padding: 10px;
  background-color: white;
  color: #e40021;
  font-size: 16px;
  border-top: 1px solid lightgray;
}
body header section.header-fixo .dropdown .drop-content a:hover {
  background-color: lightgray;
}
body header section.header-fixo .dropdown:hover .drop-content {
  display: block;
}
body main {
  /*Formulários/box/etc css que se repete em várias partes do site*/
  /*USADOS*/
  /*Home*/
}
body main section.breadcrumb {
  background: none;
  padding: 0;
  font-size: 13px;
}
body main section.breadcrumb a {
  text-decoration: underline;
  color: white;
  margin: 0 5px;
  font-weight: 500;
  font-size: 13px;
}
body main div.card-produto {
  max-width: 310px;
  width: 100%;
  border: 1px solid gainsboro;
  background-color: white;
  border-top: 8px solid #2a297c;
  border-radius: 0 40px 0 40px;
  padding: 30px;
  overflow: hidden;
  margin: 0px 0px 40px 20px;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  body main div.card-produto:hover {
    border-color: #2a297c;
    transform: translateY(-2px);
    box-shadow: 2px 2px 7px 1px #b8b8b8;
  }
}
body main div.card-produto:nth-child(-n+4) {
  margin-top: 0;
}
body main div.card-produto .foto {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main div.card-produto .cat {
  border-radius: 30px;
  font-weight: 500;
  padding: 3px 10px;
  text-align: center;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #e40021;
}
body main div.card-produto h2 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #010149;
  text-transform: uppercase;
  text-align: center;
}
body main div.card-produto h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  color: #010149;
  font-weight: 600;
}
body main div.card-produto .descricao {
  color: dimgray;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
}
body main div.card-produto .preco-promocional {
  color: #e40021;
  text-align: center;
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: -10px;
}
body main div.card-produto .preco-promocional span {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: -8px;
  text-decoration: line-through;
  display: block;
}
body main div.card-produto .item {
  display: flex;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
  margin: 10px 0;
  color: #2a297c;
  font-size: 16px;
  line-height: 18px;
}
body main div.card-produto .item img {
  margin-right: 10px;
  width: 30px;
}
body main div.card-produto .item strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
body main div.card-produto a.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 5px;
  margin-top: 20px;
  padding: 9px 20px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main div.card-produto a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main div.card-produto a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main div.card-produto a.primary:hover::before {
  top: 0px;
}
body main div.card-produto a.primary img {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
body main div.card-produto .botoes {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  width: 100%;
}
body main div.card-produto .botoes a {
  display: flex;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  margin: 0 5px;
}
body main div.card-produto .botoes a.azul {
  border: 2px solid #2a297c;
  padding: 8px 30px;
  color: #2a297c;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main div.card-produto .botoes a.azul::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main div.card-produto .botoes a.azul:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main div.card-produto .botoes a.azul:hover::before {
  top: 0px;
}
body main div.card-produto .botoes a.vermelho {
  padding: 15px 25px;
  border: 2px solid #e40021;
  color: #e40021;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main div.card-produto .botoes a.vermelho::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main div.card-produto .botoes a.vermelho:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main div.card-produto .botoes a.vermelho:hover::before {
  top: 0px;
}
body main div.card-produto .botoes a i {
  font-size: 20px;
}
@media (max-width: 991px) {
  body main div.card-produto {
    margin-bottom: 20px;
  }
  body main div.card-produto:last-child {
    margin-bottom: 0;
  }
  body main div.card-produto a {
    font-size: 15px;
  }
  body main div.card-produto a.primary {
    font-size: 13px;
  }
  body main div.card-produto a.azul {
    padding: 8px 20px !important;
  }
}
body main section.categorias {
  max-width: 1250px;
  margin: auto;
  padding-bottom: 70px;
  flex-wrap: wrap;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.categorias h3 {
  margin-bottom: 20px;
}
body main section.categorias a {
  display: flex;
  justify-content: center;
  border: 2px solid #e40021;
  color: #e40021;
  align-items: center;
  line-height: 18px;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 25px;
  border-radius: 0 20px 0 20px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.categorias a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.categorias a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.categorias a:hover::before {
  top: 0px;
}
body main section.categorias a.primary {
  font-size: 14px;
  padding: 9px 25px;
  margin-top: 10px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.categorias a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.categorias a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.categorias a.primary:hover::before {
  top: 0px;
}
body main section.categorias a.primary img {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
body main section.categorias .categoria {
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  width: 600px;
  margin: 30px 0;
  height: 300px;
  background-image: url("../image/bg_categorias.png");
  background-size: cover;
  color: white;
  border-radius: 0 30px 0 30px;
  padding: 30px 50px;
  position: relative;
}
body main section.categorias .categoria .texto {
  max-width: 250px;
}
body main section.categorias .categoria .foto {
  height: 100%;
  width: 250px;
  position: absolute;
  right: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: -52px;
}
@media (max-width: 991px) {
  body main section.categorias {
    margin-top: -130px;
  }
  body main section.categorias .categoria {
    margin: 30px 10px;
    padding: 30px;
    width: calc(100% - 20px);
  }
  body main section.categorias .categoria .foto {
    display: none;
  }
}
body main section.produtos-listagem {
  color: #2a297c;
  padding-bottom: 80px;
}
body main section.produtos-listagem h1 {
  color: #2a297c;
  font-size: 38px;
  margin-top: 50px;
  margin-left: 10px;
  margin-bottom: 30px;
}
body main section.produtos-listagem h6 {
  margin-left: 12px;
  color: dimgray;
  font-weight: 300;
}
body main section.produtos-listagem .busca {
  margin: 40px 0 0 0;
  background-color: #f7f7f7;
  text-transform: uppercase;
  padding: 20px 30px;
  border-radius: 10px;
}
body main section.produtos-listagem form {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
body main section.produtos-listagem form label {
  margin: 0 20px;
  font-weight: 500;
}
body main section.produtos-listagem form select {
  outline: none;
  font-size: 14px;
  flex-grow: 1;
  text-transform: uppercase;
  border: 1px solid gainsboro;
  color: gray;
  border-radius: 5px;
  padding: 10px;
}
body main section.produtos-listagem .container {
  max-width: 1350px;
}
body main section.produtos-listagem .row-produtos {
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 991px) {
  body main section.produtos-listagem .row-produtos {
    justify-content: center;
  }
  body main section.produtos-listagem .busca {
    padding: 20px;
  }
  body main section.produtos-listagem .busca form {
    flex-wrap: wrap;
  }
  body main section.produtos-listagem .busca form label {
    margin-top: 20px;
  }
  body main section.produtos-listagem .busca form label:first-child {
    margin-top: 0;
  }
  body main section.produtos-listagem .busca form select {
    width: 100%;
  }
}
body main section.produto-detalhes .foto {
  position: absolute;
  top: 250px;
  right: 320px;
  width: 710px;
  height: 480px;
  padding: 30px;
}
body main section.produto-detalhes .foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.produto-detalhes .detalhes {
  max-width: 1350px;
  margin: auto;
  align-items: flex-end;
  margin-top: -20px;
  margin-bottom: 70px;
}
body main section.produto-detalhes .detalhes .left {
  padding-right: 90px;
}
body main section.produto-detalhes .detalhes .left .botoes {
  display: flex;
}
body main section.produto-detalhes .detalhes .left a {
  display: flex;
  border: 1px solid #ffa300;
  color: #ffa300;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.produto-detalhes .detalhes .left a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #ffa300;
  transition: all 0.4s;
}
body main section.produto-detalhes .detalhes .left a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #ffa300;
  background: #ffa300;
  transform: translateY(0);
}
body main section.produto-detalhes .detalhes .left a:hover::before {
  top: 0px;
}
body main section.produto-detalhes .detalhes .left a:first-child {
  margin-right: 10px;
}
body main section.produto-detalhes .detalhes .left a:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.produto-detalhes .detalhes .left a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.produto-detalhes .detalhes .left a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.produto-detalhes .detalhes .left a.carrinho {
  border-color: #e40021;
  color: #e40021;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
  height: 100%;
  padding: 15px 25px;
  border-radius: 0 20px;
}
body main section.produto-detalhes .detalhes .left a.carrinho::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.produto-detalhes .detalhes .left a.carrinho:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.produto-detalhes .detalhes .left a.carrinho:hover::before {
  top: 0px;
}
@media screen and (max-width: 991px) {
  body main section.produto-detalhes .detalhes .left a.carrinho {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  body main section.produto-detalhes .detalhes .left a.carrinho {
    justify-content: center;
  }
}
body main section.produto-detalhes .detalhes .left a.carrinho i {
  font-size: 20px;
}
body main section.produto-detalhes .detalhes .left a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  max-width: 280px;
  margin-bottom: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.produto-detalhes .detalhes .left a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.produto-detalhes .detalhes .left a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.produto-detalhes .detalhes .left a.primary:hover::before {
  top: 0px;
}
body main section.produto-detalhes .detalhes .left a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.produto-detalhes .detalhes .left a.primary strong {
  font-size: 15px;
}
body main section.produto-detalhes .detalhes .right {
  padding-left: 50px;
  padding-top: 50px;
}
body main section.produto-detalhes .detalhes .right h5 {
  color: #2a297c;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  body main section.produto-detalhes .detalhes .right h5 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 991px) {
  body main section.produto-detalhes .detalhes .right h5 {
    padding-right: 10px;
  }
}
body main section.produto-detalhes .detalhes .right .catalogo {
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 21px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a297c;
  margin-bottom: 30px;
}
body main section.produto-detalhes .detalhes .right .catalogo span {
  line-height: 25px;
  font-weight: 500;
}
body main section.produto-detalhes .detalhes .right .catalogo a {
  padding: 15px 30px;
  font-size: 16px;
  color: #2a297c;
  font-weight: 600;
  border-radius: 0 30px 0 30px;
  margin-left: 30px;
  border: 2px solid #2a297c;
}
body main section.produto-detalhes .detalhes .right .catalogo strong {
  color: #e40021;
  display: block;
  font-weight: 500;
}
body main section.produto-detalhes .observacao {
  color: #e40021;
  margin: 25px 0;
  font-size: 18px;
  font-weight: 300;
}
body main section.produto-detalhes .itens .item {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 200;
  margin: 10px 0;
  text-transform: uppercase;
  color: #2a297c;
  font-size: 22px;
  line-height: 24px;
  border-bottom: 1px solid lightgray;
  padding: 10px 0;
}
body main section.produto-detalhes .itens .item:last-child {
  border-bottom: none;
}
body main section.produto-detalhes .itens .item img {
  margin-right: 10px;
  width: 30px;
}
body main section.produto-detalhes .itens .item strong {
  display: block;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 991px) {
  body main section.produto-detalhes .foto {
    height: auto;
    position: static;
    width: 100%;
    max-width: 250px;
    margin: auto;
    padding: 0;
  }
  body main section.produto-detalhes .detalhes {
    margin: 0;
  }
  body main section.produto-detalhes .detalhes .left {
    padding: 10px;
  }
  body main section.produto-detalhes .detalhes .left .botoes {
    flex-wrap: wrap;
    justify-content: center;
  }
  body main section.produto-detalhes .detalhes .left a {
    width: 100% !important;
    max-width: 230px !important;
    margin-bottom: 10px !important;
  }
  body main section.produto-detalhes .detalhes .left a.primary {
    margin: auto;
  }
  body main section.produto-detalhes .detalhes .right {
    padding: 10px;
  }
  body main section.produto-detalhes .detalhes .right .catalogo {
    flex-wrap: wrap;
    padding: 20px;
  }
  body main section.produto-detalhes .detalhes .right .catalogo a {
    margin-left: 0;
  }
  body main section.produto-detalhes .detalhes .right .catalogo span {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
  body main section.produto-detalhes .detalhes .observacao {
    padding: 0 10px;
  }
  body main section.produto-detalhes .detalhes .itens {
    padding: 0 10px;
  }
  body main section.produto-detalhes .detalhes .itens .item {
    font-size: 18px;
    line-height: 22px;
  }
  body main section.produto-detalhes .detalhes .itens .item strong {
    font-size: 16px;
  }
}
body main section.produto-fotos {
  background-color: #f2f2f2;
  padding: 50px 0;
}
body main section.produto-fotos .container {
  max-width: 1350px;
}
body main section.produto-fotos iframe {
  width: 100%;
  height: 100%;
}
body main section.produto-fotos .fotos, body main section.produto-fotos .video {
  overflow: hidden;
  border-radius: 5px;
  height: 400px;
  background-color: white;
  width: 100%;
  margin-top: 30px;
}
body main section.produto-fotos .fotos img, body main section.produto-fotos .video img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.produto-fotos .owl-fotos {
  width: 100%;
  height: 100%;
}
body main section.produto-fotos .owl-stage, body main section.produto-fotos .owl-stage-outer, body main section.produto-fotos .owl-item {
  height: 100% !important;
}
body main section.produto-fotos .owl-prev {
  position: absolute !important;
  top: calc(50% - 40px) !important;
  font-size: 40px !important;
  color: lightgray !important;
  left: 20px !important;
  outline: none !important;
  transition: all 0.3s ease;
}
body main section.produto-fotos .owl-prev:hover {
  color: gray !important;
}
body main section.produto-fotos .owl-next {
  position: absolute !important;
  top: calc(50% - 40px) !important;
  font-size: 40px !important;
  color: lightgray !important;
  right: 20px !important;
  outline: none !important;
  transition: all 0.3s ease;
}
body main section.produto-fotos .owl-next:hover {
  color: gray !important;
}
body main section.produto-fotos .titulo {
  font-size: 40px;
  display: flex;
  height: 80px;
  font-weight: 500;
  color: #2a297c;
  align-items: center;
}
body main section.produto-fotos .titulo img {
  margin-right: 30px;
  flex-grow: 0;
}
@media (max-width: 991px) {
  body main section.produto-fotos .fotos, body main section.produto-fotos .video {
    height: 200px;
  }
  body main section.produto-fotos .titulo {
    font-size: 30px;
    justify-content: center;
  }
  body main section.produto-fotos .titulo img {
    margin-right: 20px;
  }
  body main section.produto-fotos .fotos {
    margin-bottom: 40px;
  }
}
body main section.produto-detalhes {
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  body main section.produto-detalhes {
    padding-bottom: 20px;
  }
}
body main section.produto-detalhes .container {
  max-width: 1350px;
}
body main section.produto-detalhes .tabs {
  background-color: #f7f7f7;
  padding: 50px 70px;
}
body main section.produto-detalhes .tabs .tab-content {
  font-size: 20px;
  font-weight: 300;
  color: #2a297c;
  display: none;
  -webkit-animation: fadeEffect 0.3s;
          animation: fadeEffect 0.3s;
}
body main section.produto-detalhes .tabs .tab-content img {
  margin: 20px 0;
  display: block;
  max-width: 100%;
}
body main section.produto-detalhes .tabs .tab-content.ativo {
  display: block;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body main section.produto-detalhes .tab-menu {
  display: flex;
  width: 100%;
}
body main section.produto-detalhes .tab-menu a {
  display: block;
  font-size: 24px;
  font-weight: 500;
  padding: 25px 40px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  color: #e40021;
  position: relative;
}
body main section.produto-detalhes .tab-menu a.ativo {
  background-color: #f7f7f7;
}
body main section.produto-detalhes .tab-menu a.ativo:before {
  position: absolute;
  content: "";
  border-radius: 5px 5px 0 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #e40021;
}
@media (max-width: 991px) {
  body main section.produto-detalhes .tab-menu {
    flex-wrap: wrap;
    flex-flow: column;
  }
  body main section.produto-detalhes .tab-menu a {
    font-size: 16px;
    padding: 10px 20px;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    word-wrap: break-word;
    background-color: #f7f7f7;
  }
  body main section.produto-detalhes .tabs {
    padding: 30px;
  }
  body main section.produto-detalhes .tabs .tab-content {
    font-size: 16px;
  }
  body main section.produto-detalhes .tabs .tab-content h1 {
    font-size: 22px;
  }
}
body main section.index-banner {
  margin-top: -2px;
}
@media (max-width: 991px) {
  body main section.index-banner {
    display: none;
  }
}
body main section.index-banner img {
  width: 100%;
}
body main section.index-banner .owl-prev, body main section.index-banner .owl-next {
  position: absolute;
  top: calc(50% - 50px);
  color: black !important;
  font-size: 25px !important;
  width: 70px !important;
  background-color: #898989 !important;
  height: 50px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.3s ease;
}
body main section.index-banner .owl-prev:hover, body main section.index-banner .owl-next:hover {
  background-color: #616161 !important;
  color: white !important;
}
body main section.index-banner .owl-carousel {
  z-index: 0;
}
body main section.index-banner .owl-prev {
  left: 0;
  border-radius: 0 30px 30px 0 !important;
}
body main section.index-banner .owl-next {
  right: 0;
  border-radius: 30px 0 0 30px !important;
}
@media (min-width: 992px) {
  body main section.index-banner-mobile {
    display: none;
  }
}
body main section.index-especialistas {
  padding: 40px 0;
  background-color: #f5f5f5;
}
body main section.index-especialistas .selo {
  height: 74px;
}
body main section.index-especialistas .container {
  max-width: 1350px;
}
body main section.index-especialistas .logo {
  padding: 0;
  padding-right: 50px;
}
body main section.index-especialistas .logo img {
  width: 100%;
}
body main section.index-especialistas h3 {
  font-size: 25px;
  color: #2a297c;
  font-weight: 500;
}
body main section.index-especialistas h3 strong {
  font-weight: 500;
  color: #e40021;
}
body main section.index-especialistas h5 {
  color: #2a297c;
  font-weight: 400;
  font-size: 22px;
}
body main section.index-especialistas h5 strong {
  font-weight: 400;
  color: #e40021;
}
body main section.index-especialistas .texto {
  padding: 0;
  padding-right: 20px;
}
body main section.index-especialistas .consultor {
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 40px;
  border-left: 1px solid gainsboro;
}
body main section.index-especialistas .consultor a {
  display: flex;
  border: 1px solid #e40021;
  color: #e40021;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
  margin-left: 65px;
}
body main section.index-especialistas .consultor a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.index-especialistas .consultor a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.index-especialistas .consultor a:hover::before {
  top: 0px;
}
body main section.index-especialistas .consultor a:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.index-especialistas .consultor a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.index-especialistas .consultor a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.index-especialistas.fundo {
  background-color: white;
  background-image: url("../image/bg_azul.png");
  background-size: cover;
}
body main section.index-especialistas.fundo h3 {
  color: white;
}
body main section.index-especialistas.fundo h5 {
  color: white;
}
body main section.index-especialistas.fundo h5 strong {
  color: white;
}
body main section.index-especialistas.fundo .consultor a {
  color: white;
  border-color: white;
}
body main section.index-especialistas.fundo .consultor a img {
  filter: grayscale(1) brightness(100);
}
@media (max-width: 991px) {
  body main section.index-especialistas .logo {
    padding-right: 0;
  }
  body main section.index-especialistas .logo img {
    margin: auto;
    display: block;
    max-width: 250px;
    margin-bottom: 30px;
  }
  body main section.index-especialistas .selo {
    height: 65px;
    margin: 10px 0;
  }
  body main section.index-especialistas .texto {
    padding-right: 0;
  }
  body main section.index-especialistas h3 {
    font-size: 20px;
    text-align: center;
  }
  body main section.index-especialistas .consultor {
    flex-wrap: wrap;
    flex-flow: column;
    border: none;
    padding: 0;
  }
  body main section.index-especialistas .consultor a {
    margin-top: 10px;
    margin-left: 0;
  }
}
body main section.index-solucoes {
  padding: 50px 0;
}
body main section.index-solucoes .container {
  max-width: 1350px;
}
body main section.index-solucoes .left {
  padding: 0;
}
body main section.index-solucoes .left .logo {
  border-radius: 0 30px 0 30px;
  padding: 40px;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  border: 1px solid gainsboro;
  justify-content: center;
}
body main section.index-solucoes .left .logo img {
  height: 130px;
}
body main section.index-solucoes .right {
  padding: 0;
  padding-left: 100px;
  color: #2a297c;
  display: block;
  font-weight: 300;
  font-size: 22px;
}
body main section.index-solucoes .right strong {
  font-weight: 500;
}
body main section.index-solucoes .right h1 {
  color: #2a297c;
  font-weight: 500;
  font-size: 45px;
  line-height: 50px;
  max-width: 700px;
}
body main section.index-solucoes .right h1 strong {
  color: #e40021;
  text-decoration: underline;
  font-weight: 500;
}
body main section.index-solucoes .categorias {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
}
body main section.index-solucoes .categorias .item {
  background: linear-gradient(90deg, #005b92 0%, #1c287a 100%);
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  cursor: pointer;
  width: 300px;
  border-radius: 30px 0 30px 0;
  border: 3px solid #2a297c;
  font-size: 22px;
  padding: 50px;
  text-align: center;
  line-height: 25px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-solucoes .categorias .item::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.index-solucoes .categorias .item:hover {
  color: white !important;
  box-shadow: 2px 2px 8px 1px #cacaca;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(-2px);
}
body main section.index-solucoes .categorias .item:hover::before {
  top: 0px;
}
body main section.index-solucoes .categorias .item::after {
  position: absolute;
  bottom: 0;
  content: "";
  background: #e40021;
  height: 8px;
  width: 80px;
  left: calc(50% - 40px);
}
@media (max-width: 991px) {
  body main section.index-solucoes {
    padding: 30px 0;
  }
  body main section.index-solucoes .right {
    padding-left: 0;
  }
  body main section.index-solucoes .right h1 {
    font-size: 30px;
    line-height: 34px;
    margin-top: 30px;
  }
  body main section.index-solucoes .categorias {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  body main section.index-solucoes .categorias .item {
    margin-bottom: 20px;
  }
}
body main section.index-destaques section.destaque-principal {
  color: white;
  padding: 50px 0;
  position: relative;
}
body main section.index-destaques section.destaque-principal .fundo {
  background-image: url("../image/bg_destaques.png");
  background-size: cover;
  width: 100%;
  height: 800px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body main section.index-destaques section.destaque-principal .container {
  max-width: 1350px;
}
body main section.index-destaques section.destaque-principal h1 {
  font-size: 48px;
}
body main section.index-destaques section.destaque-principal .resumo {
  font-size: 24px;
  font-weight: 200;
  line-height: 30px;
}
body main section.index-destaques section.destaque-principal .big-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
body main section.index-destaques section.destaque-principal .big-buttons a {
  display: flex;
  border: 1px solid #ffa300;
  color: #ffa300;
  align-items: center;
  line-height: 24px;
  font-size: 22px;
  font-weight: 300;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .big-buttons a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #ffa300;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .big-buttons a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #ffa300;
  background: #ffa300;
  transform: translateY(0);
}
body main section.index-destaques section.destaque-principal .big-buttons a:hover::before {
  top: 0px;
}
body main section.index-destaques section.destaque-principal .big-buttons a:first-child {
  margin-right: 30px;
}
body main section.index-destaques section.destaque-principal .big-buttons a:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.index-destaques section.destaque-principal .big-buttons a strong {
  font-size: 20px;
  font-weight: 600;
}
body main section.index-destaques section.destaque-principal .big-buttons a img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.index-destaques section.destaque-principal .left {
  padding-right: 20px;
}
body main section.index-destaques section.destaque-principal .left .box-destaque {
  background-image: url("../image/bg_destaques1.png");
}
body main section.index-destaques section.destaque-principal .right {
  padding-left: 20px;
}
body main section.index-destaques section.destaque-principal .right .box-destaque {
  background-image: url("../image/bg_destaques2.png");
}
body main section.index-destaques section.destaque-principal .box-destaque {
  background-size: cover;
  border-radius: 0 30px 0 30px;
  padding: 50px 70px;
  height: 600px;
}
body main section.index-destaques section.destaque-principal .box-destaque .modelo {
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 30px;
  margin-bottom: 20px;
  font-size: 18px;
  display: inline-block;
  background-color: #e40021;
}
body main section.index-destaques section.destaque-principal .box-destaque h3 {
  font-size: 28px;
}
body main section.index-destaques section.destaque-principal .box-destaque h5 {
  font-weight: 300;
  font-size: 22px;
  max-width: 350px;
}
body main section.index-destaques section.destaque-principal .box-destaque .caracteristicas {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main section.index-destaques section.destaque-principal .box-destaque .caracteristicas .item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
  font-weight: 300;
  margin: 10px 0;
}
body main section.index-destaques section.destaque-principal .box-destaque .caracteristicas .item img {
  margin-right: 20px;
  width: 30px;
}
body main section.index-destaques section.destaque-principal .box-destaque .caracteristicas .item strong {
  display: block;
  font-weight: 500;
  font-size: 13px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  margin-top: 25px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a {
  display: flex;
  border: 2px solid #e40021;
  color: #e40021;
  align-items: center;
  line-height: 18px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 0 20px 0 20px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a:hover::before {
  top: 0px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a i {
  font-size: 20px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.secondary {
  border-radius: 20px 0 20px 0;
  padding: 8px 20px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary:hover::before {
  top: 0px;
}
body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary img {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
body main section.index-destaques section.destaque-principal .foto {
  width: 600px;
  display: block;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -130px;
}
@media (max-width: 991px) {
  body main section.index-destaques section.destaque-principal {
    padding: 30px 10px;
  }
  body main section.index-destaques section.destaque-principal h1 {
    font-size: 35px;
  }
  body main section.index-destaques section.destaque-principal .left {
    padding-right: 15px !important;
  }
  body main section.index-destaques section.destaque-principal .right {
    padding-left: 15px !important;
    margin-top: 20px;
  }
  body main section.index-destaques section.destaque-principal .resumo {
    font-size: 20px;
  }
  body main section.index-destaques section.destaque-principal .big-buttons {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  body main section.index-destaques section.destaque-principal .big-buttons a:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  body main section.index-destaques section.destaque-principal .box-destaque {
    padding: 25px;
    height: auto;
    margin: 0 -30px;
  }
  body main section.index-destaques section.destaque-principal .box-destaque h5 {
    font-size: 20px;
  }
  body main section.index-destaques section.destaque-principal .box-destaque .caracteristicas .item {
    width: 100%;
  }
  body main section.index-destaques section.destaque-principal .box-destaque .botoes {
    flex-wrap: wrap;
  }
  body main section.index-destaques section.destaque-principal .box-destaque .botoes a {
    margin: 0;
  }
  body main section.index-destaques section.destaque-principal .box-destaque .botoes a.primary {
    margin-bottom: 10px;
  }
  body main section.index-destaques section.destaque-principal .foto {
    display: none;
  }
}
body main section.index-destaques section.produtos-destaque {
  padding-bottom: 20px;
}
body main section.index-destaques section.produtos-destaque .container {
  max-width: 1350px;
}
body main section.index-destaques section.produtos-destaque .row-produtos {
  display: flex;
  justify-content: space-around;
}
body main section.index-destaques section.produtos-destaque .btn-ver-todos {
  display: block;
  max-width: 150px;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  text-align: center;
  color: #2a297c;
  border: 2px solid #2a297c;
  padding: 10px 20px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-destaques section.produtos-destaque .btn-ver-todos::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.index-destaques section.produtos-destaque .btn-ver-todos:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.index-destaques section.produtos-destaque .btn-ver-todos:hover::before {
  top: 0px;
}
@media (max-width: 991px) {
  body main section.index-destaques section.produtos-destaque .row-produtos {
    flex-wrap: wrap;
  }
}
body main section.index-locacao {
  background-image: url("../image/bg_locacao.png");
  background-size: cover;
  padding: 90px 0;
  color: white;
  font-size: 22px;
  font-weight: 300;
}
body main section.index-locacao .conteudo {
  margin-left: 300px;
  max-width: 800px;
}
body main section.index-locacao hr {
  height: 3px;
  border: none;
  background: #ffa300;
  width: 45px;
  margin: 20px 0;
}
body main section.index-locacao .texto {
  max-width: 720px;
}
body main section.index-locacao .titulo {
  display: flex;
  align-items: center;
  font-weight: 500;
}
body main section.index-locacao .titulo h1 {
  font-size: 40px;
}
body main section.index-locacao .titulo strong {
  color: #ffa300;
  font-weight: 500;
}
body main section.index-locacao .titulo img {
  width: 120px;
  flex-basis: 120px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 40px;
}
body main section.index-locacao .resumo {
  margin-top: 30px;
  color: #ffa300;
  font-size: 28px;
  line-height: 35px;
  font-weight: 300;
}
body main section.index-locacao .box {
  margin-top: 30px;
  padding: 50px;
  border-bottom-left-radius: 30px;
  background: #0d3462;
  background: linear-gradient(90deg, #0d3462 70%, rgba(42, 41, 124, 0.1) 100%);
}
body main section.index-locacao .box .contato {
  display: flex;
  align-items: center;
}
body main section.index-locacao .box .contato img {
  margin-right: 20px;
}
body main section.index-locacao .box .contato span {
  line-height: 26px;
  font-weight: 400;
  max-width: 450px;
}
body main section.index-locacao .box .botoes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 20px;
  max-width: 670px;
}
body main section.index-locacao .box .botoes a {
  display: flex;
  border: 1px solid #ffa300;
  color: #ffa300;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-locacao .box .botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #ffa300;
  transition: all 0.4s;
}
body main section.index-locacao .box .botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #ffa300;
  background: #ffa300;
  transform: translateY(0);
}
body main section.index-locacao .box .botoes a:hover::before {
  top: 0px;
}
body main section.index-locacao .box .botoes a:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.index-locacao .box .botoes a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.index-locacao .box .botoes a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.index-locacao .box .botoes a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-locacao .box .botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.index-locacao .box .botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.index-locacao .box .botoes a.primary:hover::before {
  top: 0px;
}
body main section.index-locacao .box .botoes a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.index-locacao .box .botoes a.primary strong {
  font-size: 15px;
}
@media (max-width: 991px) {
  body main section.index-locacao {
    padding: 20px;
  }
  body main section.index-locacao .conteudo {
    margin-left: 0;
  }
  body main section.index-locacao .texto {
    font-size: 18px;
  }
  body main section.index-locacao .titulo {
    flex-wrap: wrap;
  }
  body main section.index-locacao .titulo h1 {
    font-size: 28px;
  }
  body main section.index-locacao .titulo img {
    width: 80px;
    flex-basis: auto;
    margin-bottom: 20px;
  }
  body main section.index-locacao .resumo {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
  }
  body main section.index-locacao .box {
    padding: 20px;
  }
  body main section.index-locacao .box .contato {
    flex-wrap: wrap;
  }
  body main section.index-locacao .box .contato span {
    font-size: 20px;
    max-width: none;
  }
  body main section.index-locacao .box .contato img {
    height: 50px;
    margin-bottom: 20px;
  }
  body main section.index-locacao .box .botoes {
    flex-wrap: wrap;
  }
  body main section.index-locacao .box .botoes a {
    width: 100%;
    margin-bottom: 15px;
  }
}
body main section.index-ofertas {
  padding: 50px 0;
  background-repeat: no-repeat;
}
body main section.index-ofertas .container {
  max-width: 1350px;
}
body main section.index-ofertas h1 {
  color: #2a297c;
  font-size: 46px;
}
body main section.index-ofertas h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.index-ofertas .btn-ver-todos {
  display: block;
  max-width: 150px;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  text-align: center;
  color: #2a297c;
  border: 2px solid #2a297c;
  padding: 10px 20px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-ofertas .btn-ver-todos::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.index-ofertas .btn-ver-todos:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.index-ofertas .btn-ver-todos:hover::before {
  top: 0px;
}
body main section.index-ofertas .resumo {
  color: #2a297c;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}
body main section.index-ofertas .resumo strong {
  font-weight: 500;
}
body main section.index-ofertas .row-produtos {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  body main section.index-ofertas {
    padding: 20px 0;
  }
  body main section.index-ofertas h1 {
    font-size: 32px;
  }
  body main section.index-ofertas .resumo {
    font-size: 20px;
    line-height: 26px;
  }
  body main section.index-ofertas .row-produtos {
    flex-wrap: wrap;
  }
}
body main section.index-manutencao {
  padding-top: 90px;
  padding-bottom: 60px;
  color: white;
  position: relative;
  font-size: 26px;
  font-weight: 300;
}
body main section.index-manutencao .planos {
  background-color: #fff;
  color: black;
  padding: 30px 100px;
  max-width: 1300px;
  margin: auto;
  margin-top: 50px;
  border-top-right-radius: 40px;
  position: relative;
}
body main section.index-manutencao .planos::before {
  content: "";
  top: -4px;
  left: calc(50% - 68px);
  width: 136px;
  background: #e40021;
  height: 8px;
  position: absolute;
}
body main section.index-manutencao .planos h4 {
  text-align: center;
  font-size: 36px;
  color: #010149;
  margin-bottom: 25px;
}
body main section.index-manutencao .planos .itens {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main section.index-manutencao .planos .itens .item {
  width: calc(50% - 20px);
  overflow: hidden;
  border-radius: 0 30px 0 30px;
  font-size: 22px;
  color: white;
  margin: 10px 0;
  background-image: url("../image/bg_planos.png");
  background-size: cover;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-bottom: 8px solid #e40021;
}
body main section.index-manutencao .planos .itens .item .in-item {
  display: flex;
  align-items: center;
  line-height: 28px;
}
body main section.index-manutencao .planos .itens .item .in-item img {
  margin-right: 20px;
}
body main section.index-manutencao .planos .itens .item .in-item strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
body main section.index-manutencao .planos .contato {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: auto;
  max-width: 1050px;
  margin-top: 40px;
}
body main section.index-manutencao .planos .contato h2 {
  color: #2a297c;
  font-size: 28px;
  display: flex;
  align-items: center;
  margin-right: 50px;
}
body main section.index-manutencao .planos .contato a {
  display: flex;
  border: 1px solid #ffa300;
  color: #ffa300;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-manutencao .planos .contato a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #ffa300;
  transition: all 0.4s;
}
body main section.index-manutencao .planos .contato a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #ffa300;
  background: #ffa300;
  transform: translateY(0);
}
body main section.index-manutencao .planos .contato a:hover::before {
  top: 0px;
}
body main section.index-manutencao .planos .contato a:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.index-manutencao .planos .contato a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.index-manutencao .planos .contato a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.index-manutencao .planos .contato a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-manutencao .planos .contato a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.index-manutencao .planos .contato a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.index-manutencao .planos .contato a.primary:hover::before {
  top: 0px;
}
body main section.index-manutencao .planos .contato a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.index-manutencao .planos .contato a.primary strong {
  font-size: 15px;
}
body main section.index-manutencao h3 {
  font-size: 30px;
  font-weight: 500;
}
body main section.index-manutencao .conteudo {
  margin-left: 300px;
  max-width: 700px;
}
body main section.index-manutencao .fundo {
  background-image: url("../image/bg_manutencao.png");
  background-size: cover;
  width: 100%;
  height: 850px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body main section.index-manutencao hr {
  height: 3px;
  border: none;
  background: #ffa300;
  width: 45px;
  margin: 20px 0;
}
body main section.index-manutencao .titulo {
  display: flex;
  align-items: center;
  font-weight: 500;
}
body main section.index-manutencao .titulo h1 {
  font-size: 40px;
}
body main section.index-manutencao .titulo strong {
  color: #ffa300;
  font-weight: 500;
}
body main section.index-manutencao .titulo img {
  width: 120px;
  flex-basis: 120px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 40px;
}
body main section.index-manutencao .resumo {
  margin-top: 30px;
  color: #ffa300;
  font-size: 28px;
  line-height: 35px;
  font-weight: 300;
}
@media (max-width: 991px) {
  body main section.index-manutencao {
    padding: 30px;
  }
  body main section.index-manutencao .conteudo {
    margin-left: 0;
    font-size: 20px;
  }
  body main section.index-manutencao .titulo {
    flex-wrap: wrap;
  }
  body main section.index-manutencao .titulo h1 {
    font-size: 28px;
  }
  body main section.index-manutencao .titulo img {
    width: 80px;
    flex-basis: auto;
    margin-bottom: 20px;
  }
  body main section.index-manutencao h3 {
    font-size: 24px;
  }
  body main section.index-manutencao .resumo {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
  }
  body main section.index-manutencao .planos {
    margin-right: -15px;
    margin-left: -15px;
    padding: 20px;
  }
  body main section.index-manutencao .planos h4 {
    font-size: 26px;
  }
  body main section.index-manutencao .planos .itens .item {
    width: 100%;
    padding: 20px;
    height: auto;
    font-size: 19px;
    border-radius: 0 30px 0 40px;
  }
  body main section.index-manutencao .planos .itens .item .in-item {
    flex-wrap: wrap;
  }
  body main section.index-manutencao .planos .itens .item .in-item strong {
    font-size: 22px;
  }
  body main section.index-manutencao .planos .itens .item .in-item img {
    height: 50px;
    margin-bottom: 20px;
  }
  body main section.index-manutencao .planos .contato {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  body main section.index-manutencao .planos .contato h2 {
    margin-right: 0;
    font-size: 25px;
    margin-bottom: 25px;
  }
  body main section.index-manutencao .planos .contato a {
    width: 100%;
    margin-bottom: 10px;
  }
  body main section.index-manutencao .planos .contato a.primary {
    margin-bottom: 0;
  }
}
body main section.index-depoimentos {
  background-image: url("../image/bg_depoimentos.png");
  background-size: cover;
  padding: 80px 0;
}
body main section.index-depoimentos .container {
  max-width: 1350px;
}
body main section.index-depoimentos h1 {
  color: #2a297c;
  font-size: 46px;
}
body main section.index-depoimentos h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.index-depoimentos .btn-ver-todos {
  display: none;
  max-width: 150px;
  width: 100%;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  text-align: center;
  color: #2a297c;
  border: 2px solid #2a297c;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-depoimentos .btn-ver-todos::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.index-depoimentos .btn-ver-todos:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.index-depoimentos .btn-ver-todos:hover::before {
  top: 0px;
}
body main section.index-depoimentos .resumo {
  color: #2a297c;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  max-width: 600px;
}
body main section.index-depoimentos .resumo strong {
  font-weight: 500;
}
body main section.index-depoimentos .botao {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
body main section.index-depoimentos .depoimentos {
  margin-top: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
body main section.index-depoimentos .depoimentos .depoimento {
  height: 250px;
  width: 400px;
  border: 1px solid gainsboro;
  background-color: white;
  border-top: 8px solid #2a297c;
  border-radius: 0 40px 0 40px;
  padding: 40px 60px;
  line-height: 24px;
  font-size: 18px;
  color: dimgray;
  font-weight: 300;
  overflow: hidden;
}
body main section.index-depoimentos .depoimentos .depoimento .overflow {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 115px;
  height: 115px;
}
body main section.index-depoimentos .depoimentos .depoimento span {
  text-transform: uppercase;
  display: block;
  color: #010149;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body main section.index-depoimentos {
    padding: 20px 0;
    font-size: 18px;
    line-height: 26px;
  }
  body main section.index-depoimentos h1 {
    font-size: 35px;
  }
  body main section.index-depoimentos .botao {
    justify-content: center;
    margin-top: 30px;
  }
  body main section.index-depoimentos .depoimentos {
    margin-top: 0;
    flex-wrap: wrap;
  }
  body main section.index-depoimentos .depoimentos .depoimento {
    height: auto;
    margin-bottom: 20px;
    width: 100%;
    padding: 30px;
    line-height: 21px;
    font-size: 16px;
  }
}
body main section.index-clientes {
  padding: 80px 0;
}
body main section.index-clientes .container {
  max-width: 1350px;
}
body main section.index-clientes .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.index-clientes .clientes {
  border: 1px solid lightgray;
  border-radius: 0 30px 0 30px;
  width: 100%;
  padding: 40px 80px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
body main section.index-clientes .clientes img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.index-clientes .clientes.big {
  margin-top: 30px;
}
body main section.index-clientes .clientes.big img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.index-clientes .owl-next {
  position: absolute !important;
  right: -50px !important;
  top: 0 !important;
  color: #cbcbcb !important;
  font-size: 40px !important;
  outline: none !important;
  transition: all 0.3s ease;
}
body main section.index-clientes .owl-next:hover {
  color: gray !important;
}
body main section.index-clientes .owl-prev {
  position: absolute !important;
  left: -50px !important;
  top: 0 !important;
  color: #cbcbcb !important;
  font-size: 40px !important;
  outline: none !important;
  transition: all 0.3s ease;
}
body main section.index-clientes .owl-prev:hover {
  color: gray !important;
}
body main section.index-clientes h1 {
  color: #2a297c;
  font-size: 46px;
}
body main section.index-clientes h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.index-clientes .resumo {
  color: #2a297c;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  max-width: 600px;
}
body main section.index-clientes .resumo.big {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
body main section.index-clientes .resumo strong {
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.index-clientes {
    padding: 20px 0;
    padding-bottom: 90px;
  }
  body main section.index-clientes .carousel {
    margin-top: 30px;
  }
  body main section.index-clientes .resumo {
    font-size: 17px;
    line-height: 26px;
  }
  body main section.index-clientes h1 {
    font-size: 32px;
  }
}
body main section.index-diferenciais {
  background-image: url("../image/bg_destaques.png");
  color: white;
  background-size: cover;
  padding: 40px 0;
  padding-bottom: 70px;
  font-size: 22px;
  font-weight: 300;
}
@media screen and (min-width: 992px) {
  body main section.index-diferenciais {
    margin-top: 30px;
  }
}
body main section.index-diferenciais .container {
  max-width: 1350px;
}
body main section.index-diferenciais hr {
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  width: 45px;
  margin: 20px 0;
}
body main section.index-diferenciais .texto {
  padding: 0;
  padding-left: 50px;
}
body main section.index-diferenciais .row {
  margin: 0;
  align-items: flex-end;
  margin-top: -100px;
}
body main section.index-diferenciais img {
  width: 100%;
}
body main section.index-diferenciais h1 {
  font-size: 46px;
}
body main section.index-diferenciais h4 {
  font-weight: 200;
  font-size: 30px;
}
body main section.index-diferenciais .box {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 300px;
  border-radius: 0 40px 0 40px;
  max-width: 1500px;
  margin: auto;
  overflow: hidden;
  margin-top: 60px;
  border: 2px solid #315b82;
}
body main section.index-diferenciais .box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  font-size: 17px;
  border-left: 1px solid #315b82;
}
body main section.index-diferenciais .box .item:first-child {
  border-left: none;
}
body main section.index-diferenciais .box .item .in-item {
  padding: 30px 50px;
}
body main section.index-diferenciais .box .item strong {
  display: block;
  font-weight: 500;
  font-size: 22px;
}
body main section.index-diferenciais .box .item.item1 {
  background-color: #01114c;
}
body main section.index-diferenciais .box .item.item2 {
  background-color: #06255b;
}
body main section.index-diferenciais .box .item.item3 {
  background-color: #0b406f;
}
body main section.index-diferenciais .box .item.item4 {
  background-color: #315b82;
}
@media (max-width: 991px) {
  body main section.index-diferenciais {
    padding-bottom: 0;
  }
  body main section.index-diferenciais .texto {
    padding-left: 0;
    font-size: 18px;
  }
  body main section.index-diferenciais .box {
    margin-top: 10px;
    flex-wrap: wrap;
    height: auto;
    border-radius: 0;
    border: none !important;
  }
  body main section.index-diferenciais .box .item {
    border: none !important;
    width: 100%;
  }
  body main section.index-diferenciais .box .item .in-item {
    padding: 30px;
  }
  body main section.index-diferenciais h1 {
    font-size: 24px;
    margin-top: 26px;
  }
  body main section.index-diferenciais h4 {
    font-size: 21px;
  }
}
body main section.index-blog .container {
  color: #010149;
  max-width: 1300px;
  padding: 70px 20px;
}
body main section.index-blog h1 {
  color: #2a297c;
  font-size: 46px;
}
body main section.index-blog h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.index-blog .resumo {
  color: #2a297c;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}
body main section.index-blog .resumo strong {
  font-weight: 500;
}
body main section.index-blog h3 {
  color: #e40021;
  font-size: 21px;
  font-weight: 300;
  text-align: center;
}
body main section.index-blog .posts {
  display: flex;
  margin-top: 40px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main section.index-blog .posts .post {
  height: 300px;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #010149;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  body main section.index-blog .posts .post {
    width: 390px;
  }
}
body main section.index-blog .posts .post:hover {
  background-color: #dbdbdb;
}
body main section.index-blog .posts .post:hover img {
  filter: grayscale(1);
}
body main section.index-blog .posts .post .in-post {
  padding: 20px;
  position: relative;
}
body main section.index-blog .posts .post h2 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 48px;
}
body main section.index-blog .posts .post .cat {
  background-color: #e40021;
  color: white;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 15px;
  position: absolute;
  top: -15px;
}
body main section.index-blog .posts .post img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
body main section.index-blog .posts .post:hover {
  background-color: #dbdbdb;
}
body main section.index-blog .posts .post:hover img {
  filter: brightness(0.8);
}
body main section.index-blog .posts .destaque {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 17px;
  height: 300px;
  font-weight: 300;
  transition: all 0.3s ease;
  color: black;
}
body main section.index-blog .posts .destaque .cat {
  background-color: #e40021;
  color: white;
  display: inline-block;
  font-size: 14px;
  padding: 2px 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
body main section.index-blog .posts .destaque img {
  width: 550px;
  height: 100%;
  flex: 0 0 550px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
body main section.index-blog .posts .destaque:hover {
  background-color: #dbdbdb;
}
body main section.index-blog .posts .destaque:hover img {
  filter: brightness(0.8);
}
body main section.index-blog .posts .destaque.big {
  width: 100%;
  margin-bottom: 40px;
}
body main section.index-blog .posts .destaque .overflow {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 125px;
}
body main section.index-blog .posts .destaque h2 {
  font-size: 32px;
  font-weight: 500;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 80px;
}
body main section.index-blog .posts .destaque .in-destaque {
  padding: 30px;
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  body main section.index-blog .posts .destaque {
    height: auto;
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
  body main section.index-blog .posts .destaque img {
    height: 200px;
    width: 100%;
  }
}
body main section.index-blog .btn-ver-todos {
  display: block;
  max-width: 150px;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  text-align: center;
  color: #2a297c;
  border: 2px solid #2a297c;
  padding: 10px 20px;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.index-blog .btn-ver-todos::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.index-blog .btn-ver-todos:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.index-blog .btn-ver-todos:hover::before {
  top: 0px;
}
@media (max-width: 991px) {
  body main section.index-blog .container {
    padding: 20px !important;
  }
  body main section.index-blog .destaque h2 {
    font-size: 25px !important;
  }
  body main section.index-blog .destaque .in-destaque {
    padding: 20px 0 !important;
  }
  body main section.index-blog h1 {
    font-size: 35px !important;
  }
  body main section.index-blog .resumo {
    font-size: 19px !important;
    line-height: 23px !important;
  }
}
body main section.header-escuro {
  color: white;
  background-size: cover;
  font-weight: 200;
  font-size: 22px;
  background-color: #f5f5f5;
  padding-bottom: 85px;
}
body main section.header-escuro h3 {
  max-width: 500px;
  color: #e40021;
  font-weight: 500;
}
body main section.header-escuro h4 {
  max-width: 700px;
  color: #e40021;
  font-weight: 500;
  font-size: 28px;
}
body main section.header-escuro strong {
  font-weight: 500;
}
body main section.header-escuro .container {
  max-width: 1400px;
  padding: 50px 0;
}
body main section.header-escuro .texto {
  max-width: 850px;
}
body main section.header-escuro h1 {
  margin-top: 50px;
  font-size: 46px;
  line-height: 48px;
  font-weight: 600;
}
body main section.header-escuro h1 strong {
  color: #e40021;
  font-weight: 600;
}
@media (max-width: 991px) {
  body main section.header-escuro {
    font-size: 18px;
    padding: 0 20px;
    padding-bottom: 80px;
  }
  body main section.header-escuro h1 {
    font-size: 34px;
    line-height: 36px;
  }
}
body main section.header-escuro.manutencao {
  background-color: #dedede;
}
body main section.header-escuro.trabalhe {
  background-color: white;
}
body main section.header-escuro.apoio {
  background-color: #dedede;
}
body main section.header-escuro.contato {
  background-color: #dedede;
}
body main section.header-escuro.locacao {
  background-color: #dedede;
}
body main section.header-escuro.blog {
  background-color: #dedede;
}
body main section.header-claro {
  color: #2a297c;
  background-size: cover;
  font-weight: 200;
  font-size: 26px;
  background-color: #f5f5f5;
  padding-bottom: 120px;
}
body main section.header-claro.overflow {
  background-color: white;
  padding-bottom: 175px;
}
body main section.header-claro.ofertas {
  background-color: white;
  padding-bottom: 40px;
}
body main section.header-claro.produto {
  position: relative;
  padding-bottom: 50px;
  background-color: white;
}
body main section.header-claro section.breadcrumb a {
  color: #2a297c !important;
}
body main section.header-claro .financiamento {
  display: block;
  margin-top: 30px;
}
body main section.header-claro strong {
  font-weight: 500;
}
body main section.header-claro .container {
  max-width: 1400px;
  padding: 50px 0;
}
body main section.header-claro .texto {
  max-width: 600px;
}
body main section.header-claro h1 {
  margin-top: 50px;
  font-size: 46px;
  line-height: 48px;
  font-weight: 600;
}
body main section.header-claro h1 strong {
  color: #e40021;
  font-weight: 600;
}
@media (max-width: 991px) {
  body main section.header-claro {
    font-size: 18px;
    padding: 0 20px;
    padding-bottom: 80px;
  }
  body main section.header-claro.overflow {
    min-height: 0;
  }
  body main section.header-claro h1 {
    font-size: 34px;
    line-height: 36px;
  }
  body main section.header-claro img {
    width: 100%;
  }
}
body main section.header-small {
  background-image: url("../image/banner_small.png");
  background-size: cover;
  min-height: 110px;
}
body main section.header-small section.breadcrumb a {
  color: #2a297c !important;
}
body main section.header-small .texto {
  max-width: 1350px;
  padding: 50px 0;
  margin: auto;
}
@media (max-width: 991px) {
  body main section.header-small {
    min-height: 135px;
  }
  body main section.header-small .texto {
    padding: 10px 20px;
  }
}
body main section.sobre {
  background-image: url("../image/bg_branco.png");
  background-size: cover;
  padding: 70px 0;
  color: #2a297c;
  font-size: 22px;
  font-weight: 300;
}
body main section.sobre strong {
  font-weight: 500;
}
body main section.sobre .container {
  max-width: 1350px;
}
body main section.sobre h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
body main section.sobre h3 strong {
  color: #e40021;
  font-weight: 500;
}
@media (max-width: 991px) {
  body main section.sobre {
    padding: 20px 0;
    font-size: 18px;
  }
  body main section.sobre h3 {
    font-size: 20px;
  }
}
body main section.sobre-galeria {
  padding: 50px 0;
}
body main section.sobre-galeria .container {
  max-width: 1350px;
}
body main section.sobre-galeria h1 {
  color: #2a297c;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 10px;
}
body main section.sobre-galeria .owl-next, body main section.sobre-galeria .owl-prev {
  position: absolute !important;
  top: -55px !important;
  outline: none !important;
  font-size: 16px !important;
  background-color: gainsboro !important;
  border-radius: 100% !important;
  width: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 45px !important;
  transition: all 0.3s ease;
}
body main section.sobre-galeria .owl-next:hover, body main section.sobre-galeria .owl-prev:hover {
  background-color: lightgray !important;
}
body main section.sobre-galeria .owl-next {
  right: 0 !important;
}
body main section.sobre-galeria .owl-prev {
  right: 55px !important;
}
body main section.sobre-galeria .galeria {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.sobre-galeria .galeria .foto {
  display: block;
  width: 420px;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
}
body main section.sobre-galeria .galeria .foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  body main section.sobre-galeria {
    padding: 20px;
  }
  body main section.sobre-galeria .galeria {
    flex-wrap: wrap;
  }
  body main section.sobre-galeria .galeria .foto {
    margin: 10px 0;
    width: 100%;
  }
}
body main section.missao-visao-valores div.banner {
  background-size: cover;
  padding: 60px 0;
  color: white;
}
body main section.missao-visao-valores div.banner img {
  margin-right: 50px;
}
body main section.missao-visao-valores div.banner h3 {
  font-size: 32px;
}
body main section.missao-visao-valores div.banner .texto {
  font-size: 24px;
  font-weight: 200;
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 900px;
}
@media (max-width: 991px) {
  body main section.missao-visao-valores div.banner {
    padding: 0;
  }
  body main section.missao-visao-valores div.banner img {
    margin: auto;
    margin-bottom: 20px;
    display: block;
  }
  body main section.missao-visao-valores div.banner .texto {
    flex-wrap: wrap;
    font-size: 19px;
    padding: 20px;
  }
  body main section.missao-visao-valores div.banner h3 {
    font-size: 24px;
  }
}
body main section.sobre-diferencial {
  background-image: url("../image/bg_diferenciais.png");
  background-size: cover;
  padding: 40px 0;
}
body main section.sobre-diferencial h1 {
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: #2a297c;
  font-size: 46px;
}
body main section.sobre-diferencial h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.sobre-diferencial .destaque {
  max-width: 850px;
  background-color: #e40021;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  max-width: 750px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
}
body main section.sobre-diferencial .resumo {
  color: #2a297c;
  max-width: 850px;
  font-weight: 500;
  font-size: 22px;
  margin: auto;
  text-transform: uppercase;
  text-align: center;
}
body main section.sobre-diferencial .diferenciais {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: auto;
  margin-top: 70px;
  max-width: 1500px;
  flex-wrap: wrap;
}
body main section.sobre-diferencial .diferenciais .item {
  height: auto;
  margin: 30px 35px;
  width: 400px;
  border: 1px solid gainsboro;
  background-color: white;
  border-top: 8px solid #2a297c;
  border-radius: 0 40px 0 40px;
  padding: 40px 60px;
  line-height: 24px;
  font-size: 18px;
  color: dimgray;
  font-weight: 300;
  position: relative;
}
body main section.sobre-diferencial .diferenciais .item:last-child:before, body main section.sobre-diferencial .diferenciais .item:nth-child(3n):before {
  display: none;
}
body main section.sobre-diferencial .diferenciais .item:before {
  content: "";
  background: url("../image/seta.png");
  background-repeat: no-repeat;
  height: 50px;
  width: 74px;
  position: absolute;
  left: 100%;
  top: calc(50% - 37px);
  background-size: contain;
}
body main section.sobre-diferencial .diferenciais .item h2 {
  display: block;
  color: white;
  background-color: #2a297c;
  border-radius: 30px;
  margin-left: -90px;
  margin-top: -20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 20px;
  text-align: center;
  width: 300px;
  font-size: 20px;
  font-weight: 600;
}
body main section.sobre-diferencial .diferenciais .item h2.vantagens {
  width: 350px;
  margin-left: -70px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  body main section.sobre-diferencial h1 {
    font-size: 30px;
  }
  body main section.sobre-diferencial .resumo {
    font-size: 16px;
  }
  body main section.sobre-diferencial .destaque {
    margin: 20px;
  }
  body main section.sobre-diferencial .diferenciais {
    margin-top: 10px;
  }
  body main section.sobre-diferencial .diferenciais .item {
    width: calc(100% - 40px);
    margin: 20px 35px;
  }
  body main section.sobre-diferencial .diferenciais .item::before {
    display: none;
  }
  body main section.sobre-diferencial .diferenciais .item.vantagens {
    padding: 20px;
  }
  body main section.sobre-diferencial .diferenciais .item h2 {
    margin-left: -72px;
  }
  body main section.sobre-diferencial .diferenciais .item h2.vantagens {
    width: 100%;
    font-size: 16px;
    margin-top: 0;
    margin-left: 0;
  }
}
body main section.sobre-fornecedor {
  background-image: url("../image/bg_fornecedor.png");
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 30px;
}
body main section.sobre-fornecedor .box {
  margin-left: 290px;
  max-width: 580px;
  background-color: rgba(42, 41, 124, 0.9);
  color: white;
  padding: 50px;
  font-size: 20px;
  font-weight: 200;
  border-radius: 10px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  body main section.sobre-fornecedor {
    padding-top: 0;
  }
  body main section.sobre-fornecedor .box {
    margin-left: 0;
    border-radius: 0;
    margin-bottom: 0;
  }
}
body main section.trabalhe-conosco {
  padding: 60px 0;
}
body main section.trabalhe-conosco h1 {
  color: #2a297c;
  text-align: center;
  font-size: 36px;
  max-width: 550px;
  margin: auto;
}
body main section.trabalhe-conosco h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.trabalhe-conosco hr {
  width: 100px;
  margin: 30px auto;
  border: none;
  background: gainsboro;
  height: 3px;
}
body main section.trabalhe-conosco .descricao {
  margin: auto;
  color: #2a297c;
  text-align: center;
  display: block;
  font-size: 22px;
  font-weight: 300;
  max-width: 1000px;
}
body main section.trabalhe-conosco .row {
  max-width: 1300px;
  margin: auto;
  margin-top: 50px;
}
body main section.trabalhe-conosco .box_contato {
  border: 1px solid #f3f3f3;
  text-align: left;
  padding: 30px 60px;
  font-size: 18px;
  box-shadow: 5px 5px 10px #f3f3f3;
}
body main section.trabalhe-conosco input, body main section.trabalhe-conosco textarea, body main section.trabalhe-conosco select {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid gainsboro;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 4px;
}
body main section.trabalhe-conosco .info {
  display: block;
  width: 100%;
  font-size: 14px;
}
body main section.trabalhe-conosco textarea {
  resize: vertical;
  min-height: 80px;
}
body main section.trabalhe-conosco button {
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 30px 0 30px 0;
  margin-top: 5px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  color: white;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.trabalhe-conosco button::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.trabalhe-conosco button:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(-2px);
}
body main section.trabalhe-conosco button:hover::before {
  top: 0px;
}
body main section.trabalhe-conosco h5 {
  max-width: 350px;
  color: gray;
  font-weight: 200;
  font-size: 22px;
}
body main section.trabalhe-conosco .box_telefones {
  border: 1px solid lightgray;
  text-align: left;
  padding: 30px 40px;
  font-size: 18px;
  background-color: #f7f7f7;
  font-size: 18px;
  margin: 20px 0;
  border-radius: 0 50px 0 50px;
  color: dimgray;
}
body main section.trabalhe-conosco .box_telefones a {
  color: dimgray;
  transition: all 0.3s ease;
}
body main section.trabalhe-conosco .box_telefones a:hover {
  color: #2a297c;
}
body main section.trabalhe-conosco .box_telefones strong {
  display: block;
  color: #e40021;
  font-weight: 400;
  font-size: 26px;
}
body main section.trabalhe-conosco .botao-enviar {
  margin-top: 0;
  border-radius: 3px;
  width: 100%;
  position: absolute;
  top: 7px;
  background: #e40021;
  font-weight: 300;
}
body main section.trabalhe-conosco .campo {
  margin: 0 !important;
}
body main section.trabalhe-conosco .campo label {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid gainsboro;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 4px;
}
body main section.trabalhe-conosco .lista-vagas {
  text-align: left;
  color: gray;
  margin-top: 30px;
  font-size: 19px;
  font-weight: 300;
  overflow-y: scroll;
  height: 230px;
}
body main section.trabalhe-conosco .lista-vagas::-webkit-scrollbar {
  width: 10px;
  background-color: #ececec;
}
body main section.trabalhe-conosco .lista-vagas::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #f38572;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body main section.trabalhe-conosco .lista-vagas::-webkit-scrollbar-thumb:hover {
  background: #f3664f;
}
body main section.trabalhe-conosco .lista-vagas hr {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 20px auto;
}
body main section.trabalhe-conosco .lista-vagas hr:last-child {
  display: none;
}
body main section.trabalhe-conosco .lista-vagas h4 {
  color: #2a297c;
  margin-bottom: 0;
  font-weight: 400;
}
body main section.trabalhe-conosco .lista-vagas .itens {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}
body main section.trabalhe-conosco .lista-vagas .itens i {
  color: #e40021;
  margin-right: 5px;
  margin-left: 10px;
}
body main section.trabalhe-conosco .lista-vagas .itens i:first-child {
  margin-left: 0;
}
body main section.trabalhe-conosco .vagas {
  background-color: #f7f7f7;
  max-width: 1250px;
  margin: auto;
  margin-top: 50px;
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  margin-bottom: 50px;
}
body main section.trabalhe-conosco .vagas h1.destaque {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: auto;
  margin-top: -10px;
  font-weight: 600;
  font-size: 36px;
}
body main section.trabalhe-conosco .vagas h1.destaque::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 3px;
  width: 100%;
  height: 12px;
  background-color: #ff664d;
  z-index: -1;
}
@media (max-width: 991px) {
  body main section.trabalhe-conosco {
    padding: 40px 0;
  }
  body main section.trabalhe-conosco .lista-vagas {
    font-size: 17px;
    height: 310px;
  }
  body main section.trabalhe-conosco .lista-vagas h4 {
    font-size: 22px;
  }
  body main section.trabalhe-conosco .lista-vagas .itens {
    font-size: 15px;
  }
  body main section.trabalhe-conosco .vagas {
    padding: 25px;
  }
  body main section.trabalhe-conosco .vagas h1.destaque {
    font-size: 22px;
  }
  body main section.trabalhe-conosco .vagas h1.destaque:before {
    bottom: -2px;
  }
  body main section.trabalhe-conosco .tfix {
    display: block;
    margin-top: 65px;
  }
  body main section.trabalhe-conosco h1 {
    font-size: 22px;
  }
  body main section.trabalhe-conosco h1.destaque {
    font-size: 20px;
  }
  body main section.trabalhe-conosco h1.destaque:before {
    bottom: -3px;
  }
  body main section.trabalhe-conosco .descricao {
    padding: 0 20px;
    font-size: 18px;
  }
  body main section.trabalhe-conosco .box_contato {
    padding: 30px;
    margin-bottom: 30px;
  }
  body main section.trabalhe-conosco h5 {
    font-size: 18px;
  }
  body main section.trabalhe-conosco button {
    font-size: 14px;
  }
  body main section.trabalhe-conosco .box_telefones {
    font-size: 16px;
  }
  body main section.trabalhe-conosco .box_telefones strong {
    font-size: 20px;
  }
}
body main section.trabalhe-conosco-vantagens {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1300px;
  flex-wrap: wrap;
  margin: auto;
  padding-bottom: 50px;
}
body main section.trabalhe-conosco-vantagens .item {
  width: 630px;
  font-size: 22px;
  color: dimgray;
  font-weight: 300;
  margin-bottom: 60px;
}
body main section.trabalhe-conosco-vantagens .item h4 {
  color: #e40021;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
body main section.trabalhe-conosco-vantagens .item img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  body main section.trabalhe-conosco-vantagens .item {
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 30px;
  }
  body main section.trabalhe-conosco-vantagens .item h4 {
    font-size: 20px;
  }
  body main section.trabalhe-conosco-vantagens .item img {
    height: auto;
  }
}
body main section.manutencao-chamada {
  background-image: url("../image/bg_branco.png");
  background-size: cover;
  color: #2a297c;
  padding: 50px 0;
  font-size: 24px;
  font-weight: 300;
  position: relative;
  margin-bottom: 50px;
}
body main section.manutencao-chamada h5 {
  font-size: 24px;
  margin: 0;
  font-weight: 300;
  max-width: 800px;
  text-transform: uppercase;
}
body main section.manutencao-chamada h3 {
  font-size: 34px;
  line-height: 30px;
}
body main section.manutencao-chamada .container {
  max-width: 1350px;
}
body main section.manutencao-chamada::after {
  content: "PLANOS:";
  position: absolute;
  background: #e40021;
  bottom: -25px;
  padding: 4px 20px;
  width: 240px;
  text-align: center;
  border-radius: 30px;
  font-size: 28px;
  font-weight: 600;
  color: white;
  left: calc(50% - 120px);
}
body main section.manutencao-chamada.apoio::after {
  content: "CONTE CONOSCO";
  width: 340px;
  left: calc(50% - 170px);
}
@media (max-width: 991px) {
  body main section.manutencao-chamada.apoio::after {
    left: 10px;
    width: calc(100% - 20px);
    font-size: 18px;
    bottom: -5px;
  }
}
body main section.manutencao-chamada.contato-in::after {
  content: "ENTRE EM CONTATO";
  width: 380px;
  left: calc(50% - 190px);
}
@media (max-width: 991px) {
  body main section.manutencao-chamada.contato-in::after {
    left: 10px;
    width: calc(100% - 20px);
    font-size: 18px;
    bottom: -5px;
  }
}
body main section.manutencao-chamada.financiamento::after {
  content: "VEJA AS FORMAS ABAIXO";
  width: 460px;
  left: calc(50% - 230px);
}
@media (max-width: 991px) {
  body main section.manutencao-chamada.financiamento::after {
    left: 10px;
    width: calc(100% - 20px);
    font-size: 18px;
    bottom: -5px;
  }
}
body main section.manutencao-chamada.locacao {
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 991px) {
  body main section.manutencao-chamada.locacao {
    font-size: 22px;
  }
}
body main section.manutencao-chamada.locacao strong {
  font-weight: 500;
  color: #e40021;
}
body main section.manutencao-chamada.locacao::after {
  content: "BENEFÍCIOS DA LOCAÇÃO";
  width: 460px;
  left: calc(50% - 230px);
}
@media (max-width: 991px) {
  body main section.manutencao-chamada.locacao::after {
    left: 10px;
    width: calc(100% - 20px);
    font-size: 18px;
    bottom: -5px;
  }
}
@media (max-width: 991px) {
  body main section.manutencao-chamada {
    font-size: 20px;
  }
}
body main section.manutencao-planos .container {
  max-width: 1250px;
}
body main section.manutencao-planos .table-container {
  width: 100%;
  overflow-x: auto;
  max-width: 1100px;
  margin: auto;
  margin-top: 30px;
}
body main section.manutencao-planos .table-container table {
  width: 100%;
  height: 100%;
}
body main section.manutencao-planos .table-container table td, body main section.manutencao-planos .table-container table th {
  border: 1px solid #d7defe;
  text-align: center;
  padding: 10px;
}
body main section.manutencao-planos .table-container table td img, body main section.manutencao-planos .table-container table th img {
  height: 30px;
  width: 30px;
}
body main section.manutencao-planos .table-container table tr {
  background-color: #dae8fd;
}
body main section.manutencao-planos .table-container table tr:first-child {
  background-color: white;
}
body main section.manutencao-planos .table-container table tr:nth-child(even) {
  background-color: #e8eeff;
}
body main section.manutencao-planos .planos {
  background-color: #fff;
  color: black;
  padding: 30px 100px;
  max-width: 1250px;
  margin: auto;
  border-top-right-radius: 40px;
}
body main section.manutencao-planos .planos .itens {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main section.manutencao-planos .planos .itens .item {
  width: calc(50% - 20px);
  overflow: hidden;
  border-radius: 0 30px 0 30px;
  font-size: 22px;
  color: white;
  margin: 10px 0;
  background-image: url("../image/bg_planos.png");
  background-size: cover;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-bottom: 8px solid #e40021;
}
body main section.manutencao-planos .planos .itens .item .in-item {
  display: flex;
  align-items: center;
  line-height: 28px;
}
body main section.manutencao-planos .planos .itens .item .in-item img {
  margin-right: 20px;
}
body main section.manutencao-planos .planos .itens .item .in-item strong {
  text-transform: uppercase;
  display: block;
  font-size: 24px;
  font-weight: 500;
}
body main section.manutencao-planos .tabela {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: block;
  margin-top: 10px;
}
@media (max-width: 991px) {
  body main section.manutencao-planos .planos {
    margin-right: -15px;
    margin-left: -15px;
    padding: 20px;
  }
  body main section.manutencao-planos .planos h4 {
    font-size: 26px;
  }
  body main section.manutencao-planos .planos .itens .item {
    width: 100%;
    padding: 20px;
    height: auto;
    font-size: 19px;
    border-radius: 0 30px 0 40px;
  }
  body main section.manutencao-planos .planos .itens .item .in-item {
    flex-wrap: wrap;
  }
  body main section.manutencao-planos .planos .itens .item .in-item strong {
    font-size: 22px;
  }
  body main section.manutencao-planos .planos .itens .item .in-item img {
    height: 50px;
    margin-bottom: 20px;
  }
}
body main section.manutencao-cta {
  background: #02024a;
  background: linear-gradient(90deg, #02024a 20%, #75b9d2 100%);
  color: white;
  padding: 50px 0;
  margin-top: 50px;
}
body main section.manutencao-cta h2 {
  font-weight: 400;
}
body main section.manutencao-cta h2 strong {
  color: #e40021;
}
body main section.manutencao-cta .texto {
  padding-left: 40px;
  font-size: 20px;
  margin-left: 35px;
  border-left: 1px solid rgba(211, 211, 211, 0.5);
}
body main section.manutencao-cta .row {
  margin: auto;
  max-width: 1350px;
  flex-wrap: nowrap;
}
body main section.manutencao-cta .botoes {
  display: flex;
  align-items: center;
  width: 690px;
  margin-top: 20px;
  justify-content: space-evenly;
}
body main section.manutencao-cta .botoes a {
  display: flex;
  border: 1px solid white;
  color: white;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.manutencao-cta .botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.manutencao-cta .botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.manutencao-cta .botoes a:hover::before {
  top: 0px;
}
body main section.manutencao-cta .botoes a:hover img {
  filter: brightness(100);
}
body main section.manutencao-cta .botoes a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.manutencao-cta .botoes a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.manutencao-cta .botoes a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.manutencao-cta .botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.manutencao-cta .botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.manutencao-cta .botoes a.primary:hover::before {
  top: 0px;
}
body main section.manutencao-cta .botoes a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.manutencao-cta .botoes a.primary strong {
  font-size: 15px;
}
@media (max-width: 991px) {
  body main section.manutencao-cta .row {
    flex-wrap: wrap;
  }
  body main section.manutencao-cta .texto {
    margin-left: 0;
    padding-left: 0;
  }
  body main section.manutencao-cta .botoes {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 991px) {
  body main section.manutencao-cta {
    padding: 30px;
  }
  body main section.manutencao-cta h2 {
    font-size: 24px;
    text-align: center;
  }
  body main section.manutencao-cta .texto {
    border-left: none;
  }
  body main section.manutencao-cta .botoes a {
    margin: 10px 0;
  }
}
body main section.manutencao-vantagens {
  background-image: url("../image/bg_diferenciais.png");
  background-size: cover;
  padding: 70px 0;
  padding-bottom: 100px;
}
body main section.manutencao-vantagens h1 {
  color: #2a297c;
  font-size: 32px;
  max-width: 800px;
  text-align: center;
  margin: auto;
}
body main section.manutencao-vantagens .vantagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1320px;
  margin: auto;
}
body main section.manutencao-vantagens .vantagens .item {
  height: auto;
  text-align: center;
  margin: 30px 0;
  width: 650px;
  border: 1px solid gainsboro;
  background-color: white;
  border-top: 8px solid #2a297c;
  border-radius: 0 40px 0 40px;
  padding: 40px 60px;
  line-height: 24px;
  font-size: 18px;
  color: dimgray;
  font-weight: 300;
}
body main section.manutencao-vantagens .vantagens .item img {
  height: 70px;
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
body main section.manutencao-vantagens .vantagens .item h5 {
  color: #010149;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
body main section.manutencao-vantagens .vantagens .item-destaque {
  width: 650px;
  color: white;
  display: flex;
  font-size: 34px;
  line-height: 40px;
  font-weight: 300;
  align-items: center;
  border-radius: 0 40px 0 40px;
  padding: 40px 90px;
  border: 10px solid #2a297c;
  margin: 30px 0;
  background-image: url("../image/bg_planos.png");
  background-size: cover;
}
body main section.manutencao-vantagens .vantagens .item-destaque strong {
  font-weight: 500;
}
body main section.manutencao-vantagens .vantagens .item-destaque a {
  display: flex;
  border: 1px solid white;
  color: white;
  align-items: center;
  max-width: 250px;
  margin-top: 20px;
  line-height: 18px;
  font-size: 15px;
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.manutencao-vantagens .vantagens .item-destaque a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.manutencao-vantagens .vantagens .item-destaque a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.manutencao-vantagens .vantagens .item-destaque a:hover::before {
  top: 0px;
}
body main section.manutencao-vantagens .vantagens .item-destaque a img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.manutencao-vantagens .vantagens .item-destaque a strong {
  font-size: 15px;
}
body main section.manutencao-vantagens.locacao {
  padding: 0;
  background-image: none;
}
@media screen and (max-width: 991px) {
  body main section.manutencao-vantagens.locacao {
    padding: 0 10px;
  }
}
body main section.manutencao-vantagens.financiamento {
  padding: 30px 0;
  background-image: none;
}
body main section.manutencao-vantagens.financiamento .vantagens .item img {
  width: 200px;
  margin: 20px auto;
  margin-top: 0;
  display: block;
}
@media (max-width: 991px) {
  body main section.manutencao-vantagens {
    padding: 30px 15px;
  }
  body main section.manutencao-vantagens h1 {
    font-size: 26px;
  }
  body main section.manutencao-vantagens .vantagens .item-destaque {
    width: 100%;
    padding: 30px;
    font-size: 27px;
    line-height: 32px;
  }
}
body main section.apoio-logistico {
  padding: 50px 0;
}
body main section.apoio-logistico .box {
  border-radius: 0 30px 0 30px;
  font-size: 22px;
  color: white;
  margin-bottom: 30px;
  background-image: url("../image/bg_planos.png");
  background-size: cover;
  padding: 30px 50px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 8px solid #e40021;
}
body main section.apoio-logistico .box .item {
  width: 100%;
  margin: 10px 0;
}
body main section.apoio-logistico .box:last-child {
  margin-bottom: 0;
}
body main section.apoio-logistico .item-destaque {
  color: white;
  font-size: 34px;
  line-height: 40px;
  font-weight: 300;
  border-radius: 0 40px 0 40px;
  padding: 40px 90px;
  border: 10px solid #2a297c;
  margin: 30px 0;
  background-image: url("../image/bg_planos.png");
  background-size: cover;
}
body main section.apoio-logistico .item-destaque strong {
  font-weight: 500;
}
body main section.apoio-logistico .item-destaque a {
  display: flex;
  border: 1px solid white;
  color: white;
  align-items: center;
  max-width: 250px;
  margin-top: 20px;
  line-height: 18px;
  font-size: 15px;
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.apoio-logistico .item-destaque a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.apoio-logistico .item-destaque a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.apoio-logistico .item-destaque a:hover::before {
  top: 0px;
}
body main section.apoio-logistico .item-destaque a img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.apoio-logistico .item-destaque a strong {
  font-size: 15px;
}
body main section.apoio-logistico h1 {
  color: #2a297c;
  font-size: 36px;
  margin-bottom: 10px;
}
body main section.apoio-logistico .row {
  margin: auto;
  max-width: 1300px;
}
@media (max-width: 991px) {
  body main section.apoio-logistico {
    padding: 30px 20px;
  }
  body main section.apoio-logistico .box {
    padding: 30px;
    font-size: 18px;
  }
  body main section.apoio-logistico .item-destaque {
    width: 100%;
    padding: 30px;
    font-size: 27px;
    line-height: 32px;
  }
}
body main section.apoio-logistico-cta {
  background: #02024a;
  background: linear-gradient(90deg, #02024a 20%, #75b9d2 100%);
  color: white;
  padding: 50px 0;
}
body main section.apoio-logistico-cta h2 {
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}
body main section.apoio-logistico-cta h2 strong {
  color: #ffa300;
}
body main section.apoio-logistico-cta .texto {
  padding-left: 40px;
  font-size: 24px;
  margin-left: 35px;
  border-left: 1px solid rgba(211, 211, 211, 0.5);
}
body main section.apoio-logistico-cta .row {
  margin: auto;
  max-width: 1350px;
  align-items: center;
  flex-wrap: nowrap;
}
body main section.apoio-logistico-cta .botoes {
  display: flex;
  align-items: center;
  width: 690px;
  margin-top: 10px;
  justify-content: space-evenly;
}
body main section.apoio-logistico-cta .botoes a {
  display: flex;
  border: 1px solid white;
  color: white;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.apoio-logistico-cta .botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.apoio-logistico-cta .botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.apoio-logistico-cta .botoes a:hover::before {
  top: 0px;
}
body main section.apoio-logistico-cta .botoes a:hover img {
  filter: brightness(100);
}
body main section.apoio-logistico-cta .botoes a strong {
  font-size: 14px;
  font-weight: 600;
}
body main section.apoio-logistico-cta .botoes a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body main section.apoio-logistico-cta .botoes a.primary {
  padding: 9px 25px;
  border-radius: 30px 0 30px 0;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.apoio-logistico-cta .botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body main section.apoio-logistico-cta .botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body main section.apoio-logistico-cta .botoes a.primary:hover::before {
  top: 0px;
}
body main section.apoio-logistico-cta .botoes a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body main section.apoio-logistico-cta .botoes a.primary strong {
  font-size: 15px;
}
@media (max-width: 991px) {
  body main section.apoio-logistico-cta .row {
    flex-wrap: wrap;
  }
  body main section.apoio-logistico-cta .texto {
    margin-left: 0;
    padding-left: 0;
  }
  body main section.apoio-logistico-cta .botoes {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 991px) {
  body main section.apoio-logistico-cta {
    padding: 30px;
  }
  body main section.apoio-logistico-cta h2 {
    font-size: 24px;
    text-align: center;
  }
  body main section.apoio-logistico-cta .texto {
    border-left: none;
  }
  body main section.apoio-logistico-cta .botoes a {
    margin: 10px 0;
  }
}
body main section.carrinho {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  body main section.carrinho {
    padding: 20px 0;
  }
}
body main section.carrinho .container {
  max-width: 1100px;
}
body main section.carrinho .passos {
  max-width: 950px;
  margin: auto;
  width: 100%;
  font-size: 20px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
}
body main section.carrinho .passos a {
  padding: 20px;
  text-align: center;
  width: 100%;
  font-weight: 500;
  background-color: #f5f5f5;
  display: block;
  color: dimgray;
  position: relative;
}
body main section.carrinho .passos a:last-child:after {
  display: none;
}
body main section.carrinho .passos a:after {
  content: "";
  width: 0;
  position: absolute;
  right: -50px;
  z-index: 1;
  top: 0;
  height: 100%;
  border-style: solid;
  border-width: 35px 0 35px 50px;
  border-color: transparent transparent transparent #f5f5f5;
}
body main section.carrinho .passos a.ativo {
  background-color: #ececec;
  color: #2a297c;
}
body main section.carrinho .passos a.ativo:after {
  border-color: transparent transparent transparent #ececec;
}
body main section.carrinho .passos a.completo {
  background-color: #44c500;
  color: white;
}
body main section.carrinho .passos a.completo:after {
  border-color: transparent transparent transparent #44c500;
}
@media (max-width: 991px) {
  body main section.carrinho .passos {
    font-size: 14px;
    align-items: stretch;
  }
  body main section.carrinho .passos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  body main section.carrinho .passos a::after {
    display: none;
  }
}
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: 25px;
    font-size: 18px;
  }
}
body main section.carrinho .carrinho-mobile {
  margin-top: 20px;
  border-top: 1px solid #dcdcdc4d;
}
body main section.carrinho .carrinho-mobile .produto {
  border-bottom: 1px solid #dcdcdc4d;
  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 .remover {
  color: #e40021;
  font-size: 14px;
  display: block;
  text-align: center;
}
body main section.carrinho .carrinho-mobile .titulo {
  color: #2a297c;
}
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 .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 .tabela-carrinho {
  width: 100%;
  margin-top: 70px;
}
body main section.carrinho .tabela-carrinho thead td {
  background-color: #2a297c;
  color: white;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #3a3a3a4d;
}
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 #dcdcdc4d;
}
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: dimgray;
  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 .aumentar {
  position: absolute;
  top: 3px;
  right: 20px;
  cursor: pointer;
}
body main section.carrinho .tabela-carrinho .quantidade .aumentar i {
  color: dimgray;
  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: dimgray;
  font-size: 16px;
}
body main section.carrinho .tabela-carrinho td strong {
  font-weight: 600;
  color: #010149;
  font-size: 24px;
}
body main section.carrinho .tabela-carrinho td i {
  color: #e40021;
  font-size: 22px;
  cursor: pointer;
}
body main section.carrinho .tabela-carrinho td .produto {
  display: flex;
  align-items: center;
}
body main section.carrinho .tabela-carrinho td .produto h5 {
  font-weight: 600;
  color: #010149;
  text-transform: uppercase;
}
body main section.carrinho .tabela-carrinho td .produto img {
  margin-right: 10px;
  width: 140px;
}
body main section.carrinho .botoes {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
  width: 100%;
  display: flex;
}
body main section.carrinho .botoes a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  text-align: center;
  border-radius: 0 30px 0 30px;
  border: 2px solid #2a297c;
  color: #2a297c;
  font-size: 16px;
  padding: 10px 25px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.carrinho .botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.carrinho .botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.carrinho .botoes a:hover::before {
  top: 0px;
}
body main section.carrinho .botoes a.primary {
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: transparent;
  border-radius: 30px 0px 30px 0;
  color: white;
  padding: 10px 30px;
  max-width: 320px;
}
body main section.carrinho .botoes a i, body main section.carrinho .botoes a img {
  margin-right: 10px;
}
@media (max-width: 991px) {
  body main section.carrinho .botoes {
    margin-top: 20px;
    flex-flow: column;
    justify-content: center;
  }
  body main section.carrinho .botoes a {
    width: 100%;
    font-size: 14px !important;
    max-width: 265px !important;
    margin: 5px auto !important;
  }
  body main section.carrinho .botoes a i {
    font-size: 16px;
  }
  body main section.carrinho .botoes a img {
    height: 20px;
  }
}
body main section.carrinho .enviado {
  max-width: 650px;
  margin: 60px auto 0 auto;
  color: #2a297c;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}
body main section.carrinho .enviado h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
body main section.carrinho .enviado i {
  color: #3aa700;
  font-size: 50px;
  margin-bottom: 10px;
}
body main section.carrinho .enviado h1 {
  color: #3aa700;
  font-size: 39px;
  font-weight: 500;
  max-width: 450px;
  margin: auto;
  line-height: 40px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body main section.carrinho .enviado {
    font-size: 16px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  body main section.carrinho .enviado h1 {
    font-size: 28px;
    line-height: 30px;
  }
}
body main section.carrinho .form {
  max-width: 750px;
  margin: 60px auto 0 auto;
  background-color: #f5f5f5;
  padding: 50px 60px;
}
body main section.carrinho .form label {
  font-weight: 500;
  display: block;
  font-size: 18px;
  margin: 0;
  margin-bottom: 5px;
}
body main section.carrinho .form input, body main section.carrinho .form textarea, body main section.carrinho .form select {
  width: 100%;
  background-color: white;
  border: 1px solid gainsboro;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 20px;
  margin-bottom: 20px;
}
body main section.carrinho .form textarea {
  resize: vertical;
  min-height: 100px;
}
body main section.carrinho .form button {
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border: none;
  display: block;
  margin: auto;
  border-radius: 30px 0px 30px 0;
  color: white;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.carrinho .form button::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.carrinho .form button:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.carrinho .form button:hover::before {
  top: 0px;
}
@media (max-width: 991px) {
  body main section.carrinho .form {
    margin: 20px auto 0 auto;
    padding: 30px 20px;
  }
  body main section.carrinho .form label, body main section.carrinho .form input, body main section.carrinho .form textarea, body main section.carrinho .form select {
    font-size: 16px;
  }
}
body main section.blog-listagem {
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  body main section.blog-listagem.inner {
    padding: 0;
  }
}
body main section.blog-listagem .row {
  margin: auto;
  max-width: 1350px;
}
body main section.blog-listagem .pagina_blog {
  align-items: center;
  justify-content: flex-end;
}
body main section.blog-listagem .pagina_blog li a {
  background-color: white;
  border: 1px solid #2a297c;
  color: black;
  padding: 5px 15px;
  display: block;
  font-size: 16px;
  transition: all 0.2s ease;
}
body main section.blog-listagem .pagina_blog li a:hover {
  background: gainsboro !important;
}
body main section.blog-listagem .pagina_blog .active a {
  background-color: #2a297c !important;
  color: white !important;
}
body main section.blog-listagem .pagina_blog .active a:hover {
  background-color: #2a297c !important;
  color: white !important;
}
body main section.blog-listagem .posts {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main section.blog-listagem .posts .post {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #010149;
  width: 410px;
  position: relative;
  transition: all 0.3s ease;
}
body main section.blog-listagem .posts .post:hover {
  background-color: #dbdbdb;
}
body main section.blog-listagem .posts .post:hover img {
  filter: brightness(0.8);
}
body main section.blog-listagem .posts .post h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 35px;
  display: block;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 48px;
}
body main section.blog-listagem .posts .post .cat {
  background-color: #e40021;
  color: white;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 15px;
  position: absolute;
  top: 250px;
}
body main section.blog-listagem .posts .post .overflow {
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 100px;
  max-height: 100px;
  color: black;
  font-size: 17px;
  font-weight: 300;
}
body main section.blog-listagem .posts .post .link {
  color: #e40021;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
  display: block;
}
body main section.blog-listagem .posts .post img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
body main section.blog-listagem .posts .destaque {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: stretch;
  font-size: 17px;
  height: 300px;
  font-weight: 300;
  transition: all 0.3s ease;
  color: black;
}
body main section.blog-listagem .posts .destaque:hover {
  background-color: #dbdbdb;
}
body main section.blog-listagem .posts .destaque:hover img {
  filter: brightness(0.8);
}
body main section.blog-listagem .posts .destaque .overflow {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 100px;
  max-height: 100px;
  color: black;
}
body main section.blog-listagem .posts .destaque .link {
  color: #e40021;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
  display: block;
}
body main section.blog-listagem .posts .destaque .cat {
  background-color: #e40021;
  color: white;
  display: inline-block;
  font-size: 14px;
  padding: 2px 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
body main section.blog-listagem .posts .destaque img {
  width: 410px;
  height: 100%;
  flex: 0 0 410px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
body main section.blog-listagem .posts .destaque h2 {
  font-size: 24px;
  font-weight: 500;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 56px;
}
body main section.blog-listagem .posts .destaque .in-destaque {
  padding: 30px;
  padding-left: 40px;
}
@media (max-width: 991px) {
  body main section.blog-listagem .posts .destaque {
    flex-wrap: wrap;
    height: auto;
  }
  body main section.blog-listagem .posts .destaque h2 {
    font-size: 22px;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 48px;
  }
  body main section.blog-listagem .posts .destaque .in-destaque {
    padding: 0;
  }
  body main section.blog-listagem .posts .destaque img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
body main section.blog-listagem .box {
  background-color: #f5f5f5;
  border: 1px solid gainsboro;
  margin-top: 40px;
}
body main section.blog-listagem .box a {
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid gainsboro;
  padding: 20px 0;
  display: block;
  color: black;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  body main section.blog-listagem .box a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 991px) {
  body main section.blog-listagem .box a {
    font-size: 18px;
  }
}
body main section.blog-listagem .box a:hover {
  color: dimgray;
}
body main section.blog-listagem .box a.active {
  color: #e40021;
}
body main section.blog-listagem .box a:first-child {
  padding-top: 0;
}
body main section.blog-listagem .box a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
body main section.blog-listagem .box:first-child {
  margin-top: 0;
}
body main section.blog-listagem .box .titulo {
  background-color: #eeeeee;
  color: #2a297c;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
}
body main section.blog-listagem .box .in-box {
  padding: 30px 40px;
}
@media screen and (max-width: 991px) {
  body main section.blog-listagem .box .in-box {
    padding: 20px;
  }
}
body main section.blog-listagem .box .in-box input {
  width: 100%;
  background-color: white;
  border: 1px solid gainsboro;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 20px;
  margin-bottom: 20px;
}
body main section.blog-listagem .box .in-box button {
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border: none;
  display: block;
  width: 100%;
  border-radius: 30px 0px 30px 0;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: auto;
  max-width: 300px;
  cursor: pointer;
  margin-bottom: 20px;
  outline: none;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.blog-listagem .box .in-box button::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.blog-listagem .box .in-box button:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.blog-listagem .box .in-box button:hover::before {
  top: 0px;
}
body main section.blog-listagem .mais-lidas h2 {
  color: #2a297c;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}
body main section.blog-listagem .mais-lidas .item {
  margin-top: 30px;
}
body main section.blog-listagem .mais-lidas .item:hover h3 {
  color: dimgray;
}
body main section.blog-listagem .mais-lidas .cat {
  background-color: #e40021;
  color: white;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 15px;
  margin-bottom: 10px;
}
body main section.blog-listagem .mais-lidas h3 {
  font-size: 24px;
  color: black;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  body main section.blog-listagem .mais-lidas h3 {
    font-size: 21px;
  }
}
body main section.blog-conteudo .addthis_inline_share_toolbox {
  margin-top: 30px;
}
body main section.blog-conteudo .cat {
  background-color: #e40021;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 15px;
  margin-bottom: 20px;
}
body main section.blog-conteudo .cat a {
  color: white;
}
body main section.blog-conteudo h1 {
  color: #e40021;
}
@media screen and (max-width: 991px) {
  body main section.blog-conteudo h1 {
    font-size: 32px;
  }
}
body main section.blog-conteudo .conteudo {
  font-size: 22px;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  body main section.blog-conteudo .conteudo {
    font-size: 18px;
  }
}
body main section.blog-conteudo .conteudo h1, body main section.blog-conteudo .conteudo h2, body main section.blog-conteudo .conteudo h3, body main section.blog-conteudo .conteudo h4, body main section.blog-conteudo .conteudo h5 {
  color: #e40021;
}
body main section.blog-conteudo .conteudo img {
  width: 100%;
  margin: 15px 0;
}
body main section.contato-conteudo {
  padding-bottom: 50px;
}
body main section.contato-conteudo h1 {
  color: #2a297c;
  text-align: center;
  font-size: 36px;
  max-width: 550px;
  margin: auto;
}
body main section.contato-conteudo h1 strong {
  color: #e40021;
  font-weight: 500;
}
body main section.contato-conteudo h5 {
  max-width: 350px;
  color: gray;
  font-weight: 200;
  font-size: 22px;
}
body main section.contato-conteudo form label {
  font-weight: 500;
  display: block;
  font-size: 18px;
  margin: 0;
  margin-bottom: 5px;
}
body main section.contato-conteudo form input, body main section.contato-conteudo form textarea {
  width: 100%;
  background-color: white;
  border: 1px solid gainsboro;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 20px;
  margin-bottom: 20px;
}
body main section.contato-conteudo form textarea {
  resize: vertical;
  min-height: 100px;
}
body main section.contato-conteudo form button {
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border: none;
  display: block;
  float: right;
  border-radius: 30px 0px 30px 0;
  color: white;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  padding: 10px 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body main section.contato-conteudo form button::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body main section.contato-conteudo form button:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body main section.contato-conteudo form button:hover::before {
  top: 0px;
}
body main section.contato-conteudo .row {
  max-width: 1300px;
  margin: auto;
  margin-top: 80px;
}
body main section.contato-conteudo .box_telefones {
  border: 1px solid lightgray;
  text-align: left;
  padding: 30px 40px;
  font-size: 18px;
  background-color: #f7f7f7;
  font-size: 18px;
  margin: 20px 0;
  border-radius: 0 50px 0 50px;
  color: dimgray;
}
body main section.contato-conteudo .box_telefones a {
  color: dimgray;
  transition: all 0.3s ease;
}
body main section.contato-conteudo .box_telefones a:hover {
  color: #2a297c;
}
body main section.contato-conteudo .box_telefones strong {
  display: block;
  color: #e40021;
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 991px) {
  body main section.contato-conteudo {
    padding: 20px;
    margin-top: -40px;
  }
  body main section.contato-conteudo .row {
    margin-top: 0;
  }
  body main section.contato-conteudo h5 {
    font-size: 18px;
  }
  body main section.contato-conteudo h1 {
    font-size: 26px;
  }
  body main section.contato-conteudo button {
    margin-bottom: 30px !important;
  }
  body main section.contato-conteudo .box_telefones {
    font-size: 16px;
  }
  body main section.contato-conteudo .box_telefones strong {
    font-size: 20px;
  }
}
body footer {
  @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
}
body footer section.barra-fixa {
  position: fixed;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #2a297c;
  width: 100%;
  padding: 15px 80px;
  z-index: 600;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  body footer section.barra-fixa {
    display: none;
  }
}
body footer section.barra-fixa .container {
  max-width: 1250px;
}
body footer section.barra-fixa .fones i {
  background-color: #2a297c;
  transition: all 0.5s ease;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 14px;
  color: white;
  border-radius: 100%;
  margin-right: 8px;
}
body footer section.barra-fixa .row {
  align-items: center;
}
body footer section.barra-fixa.oculta {
  bottom: -100px;
}
body footer section.barra-fixa .fones {
  font-size: 18px;
  color: #2a297c;
  font-weight: 500;
  max-width: 300px;
}
body footer section.barra-fixa .fones a {
  color: #2a297c;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
body footer section.barra-fixa .fones a strong {
  display: block;
  font-size: 14px;
  line-height: 14px;
}
body footer section.barra-fixa .fones a:hover {
  color: #e40021;
}
body footer section.barra-fixa .fones a:hover i {
  background-color: #e40021;
}
body footer section.barra-fixa .botoes {
  text-align: right;
}
body footer section.barra-fixa .botoes .header_btn {
  color: #2a297c;
  border: 2px solid #2a297c;
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 30px;
  transition: all 0.5s ease;
}
body footer section.barra-fixa .botoes .header_btn:hover {
  background-color: #2a297c;
  color: white;
}
body footer section.barra-fixa .botoes .agendar_btn {
  background-color: #e40021;
  color: white !important;
  border: 2px solid #e40021;
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  font-size: 14px;
  padding: 10px 30px;
  transition: all 0.5s ease;
  margin-left: 10px;
}
@media (max-width: 991px) {
  body footer section.barra-fixa .botoes .agendar_btn {
    margin-left: 0 !important;
  }
}
body footer section.barra-fixa .botoes .agendar_btn:hover {
  background-color: white;
  border-color: #e40021;
  color: #e40021 !important;
}
body footer section.barra-lgpd {
  font-family: "Source Sans Pro", sans-serif;
  padding: 0 15px;
  background-color: white;
  border-bottom: 1px solid lightgray;
  position: absolute;
  top: 0px;
  font-size: 13px;
  left: 0px;
  width: 100%;
  z-index: 500;
  display: none;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  body footer section.barra-lgpd {
    padding: 10px;
    bottom: 0;
    position: fixed;
    top: auto;
  }
}
body footer section.barra-lgpd.exibir {
  display: block;
}
body footer section.barra-lgpd .row, body footer section.barra-lgpd .container {
  max-width: 1596px !important;
  margin: auto;
  justify-content: center;
}
body footer section.barra-lgpd .row .conteudo-lgpd-in, body footer section.barra-lgpd .container .conteudo-lgpd-in {
  display: flex;
  align-items: center;
}
body footer section.barra-lgpd .row .conteudo-lgpd-in .txt-in, body footer section.barra-lgpd .container .conteudo-lgpd-in .txt-in {
  width: 100%;
}
body footer section.barra-lgpd .row .conteudo-lgpd-in .txt-in a, body footer section.barra-lgpd .container .conteudo-lgpd-in .txt-in a {
  color: gray;
  text-decoration: underline;
}
body footer section.barra-lgpd .row .conteudo-lgpd-in .button-in button, body footer section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
  background-color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  margin-left: 20px;
  padding: 5px 10px;
  margin: 5px 0 5px 15px;
  color: black;
  border: 1px solid gray;
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
  transition: all 0.3s ease;
}
body footer section.barra-lgpd .row .conteudo-lgpd-in .button-in button:hover, body footer section.barra-lgpd .container .conteudo-lgpd-in .button-in button:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  body footer section.barra-lgpd .row .conteudo-lgpd-in, body footer section.barra-lgpd .container .conteudo-lgpd-in {
    flex-direction: column;
  }
  body footer section.barra-lgpd .row .conteudo-lgpd-in .button-in, body footer section.barra-lgpd .container .conteudo-lgpd-in .button-in {
    text-align: center;
  }
  body footer section.barra-lgpd .row .conteudo-lgpd-in .button-in button, body footer section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
    margin-top: 10px;
    margin-left: auto;
  }
}
body footer section.footer-financiamento {
  border-top: 1px solid gainsboro;
  padding: 20px 0;
  color: gray;
  font-weight: 300;
}
body footer section.footer-financiamento a {
  color: gray;
}
body footer section.footer-financiamento .container {
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  body footer section.footer-financiamento a {
    margin: 10px;
  }
  body footer section.footer-financiamento .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  body footer section.footer-financiamento .container span {
    width: 100%;
    text-align: center;
  }
  body footer section.footer-financiamento .container img {
    width: 100%;
    margin-bottom: 20px;
  }
}
body footer section.footer-contato {
  border-bottom: 1px solid gainsboro;
}
body footer section.footer-contato div.newsletter {
  background: #02024a;
  background: linear-gradient(90deg, #02024a 20%, #75b9d2 100%);
  padding: 50px 0;
}
body footer section.footer-contato div.newsletter .container {
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer section.footer-contato div.newsletter form {
  width: 780px;
  display: flex;
  align-items: stretch;
}
body footer section.footer-contato div.newsletter form input {
  width: 100%;
  border: 1px solid transparent;
  padding: 10px 25px;
  font-size: 20px;
  outline: none;
  font-weight: 300;
  height: 100%;
}
body footer section.footer-contato div.newsletter form button {
  height: 100%;
  cursor: pointer;
  margin-left: 20px;
  background-color: #e40021;
  outline: none;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 20px 0 20px 0;
  border: none;
  transition: all 0.3s ease;
}
body footer section.footer-contato div.newsletter form button:hover {
  background-color: #2a297c;
}
body footer section.footer-contato div.newsletter .texto {
  display: flex;
  align-items: center;
  color: white;
  font-size: 22px;
}
body footer section.footer-contato div.newsletter .texto img {
  margin-right: 20px;
}
body footer section.footer-contato div.newsletter .texto strong {
  color: #e40021;
  font-weight: 400;
  display: block;
  font-size: 30px;
  margin-bottom: -10px;
}
@media (max-width: 991px) {
  body footer section.footer-contato div.newsletter {
    padding: 20px;
  }
  body footer section.footer-contato div.newsletter form {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  body footer section.footer-contato div.newsletter form button {
    margin: auto;
    font-size: 16px;
  }
  body footer section.footer-contato div.newsletter form input {
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
  }
  body footer section.footer-contato div.newsletter .texto {
    font-size: 18px;
    flex-wrap: wrap;
    text-align: center;
  }
  body footer section.footer-contato div.newsletter .texto strong {
    font-size: 25px;
    margin-bottom: -5px;
  }
  body footer section.footer-contato div.newsletter .texto img {
    margin: auto;
    margin-bottom: 5px;
    height: 35px;
  }
  body footer section.footer-contato div.newsletter .container {
    flex-wrap: wrap;
  }
}
body footer section.footer-contato .iframe-container {
  background: url("../../default/image/loading.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  width: 100%;
  height: 450px;
}
@media (max-width: 991px) {
  body footer section.footer-contato .iframe-container {
    height: 350px;
  }
}
body footer section.footer-contato .iframe-container div {
  height: 100%;
}
body footer section.footer-contato .iframe-container iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body footer section.footer-contato .telefones {
  display: flex;
  width: 100%;
  max-width: 1500px;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 991px) {
  body footer section.footer-contato .telefones {
    justify-content: flex-start !important;
  }
}
body footer section.footer-contato .telefones .item {
  border-left: 1px solid gainsboro;
  font-size: 18px;
  padding: 70px 80px;
  transition: all 0.5s ease;
}
body footer section.footer-contato .telefones .item:hover {
  background-color: #2a297c;
  color: white;
  cursor: pointer;
}
body footer section.footer-contato .telefones .item:hover .phoneLink, body footer section.footer-contato .telefones .item:hover .phone, body footer section.footer-contato .telefones .item:hover h5 {
  color: white !important;
}
@media (max-width: 991px) {
  body footer section.footer-contato .telefones .item {
    margin-top: 20px;
    padding: 20px;
    border: none;
  }
}
body footer section.footer-contato .telefones .item .body {
  max-width: 300px;
  font-weight: 400;
}
body footer section.footer-contato .telefones .item .body h5 {
  font-size: 24px;
  font-weight: 500;
  color: #e40021;
}
body footer section.footer-contato .telefones .item .body a {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 25px;
  display: block;
}
body footer section.footer-contato .telefones .item .body a.phone {
  color: #2a297c;
  text-decoration: none;
  font-size: 23px;
  margin-top: -5px;
  margin-bottom: -20px;
  font-weight: 600;
}
body footer section.footer-contato .telefones .item .body a.phoneLink {
  margin: 0;
  margin-top: -5px;
  text-decoration: none;
}
@media (max-width: 991px) {
  body footer section.footer-contato .telefones .item .body {
    font-size: 15px !important;
  }
  body footer section.footer-contato .telefones .item .body h5 {
    font-size: 20px !important;
  }
}
body footer section.footer-menu {
  padding: 20px 0;
}
body footer section.footer-menu .container {
  max-width: 1350px;
}
body footer section.footer-menu .menu {
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer section.footer-menu .menu a {
  color: #010149;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.3s ease;
}
body footer section.footer-menu .menu a:hover {
  color: #e40021;
}
body footer section.footer-menu .principal {
  padding: 15px 0;
}
body footer section.footer-menu .principal .botoes {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
body footer section.footer-menu .principal .in-botoes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 930px;
}
body footer section.footer-menu .principal .in-botoes a {
  display: flex;
  border: 1px solid #2a297c;
  color: #2a297c;
  align-items: center;
  line-height: 18px;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 0 30px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #2a297c;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a:hover {
  color: white !important;
  box-shadow: none;
  border-color: #2a297c;
  background: #2a297c;
  transform: translateY(0);
}
body footer section.footer-menu .principal .in-botoes a:hover::before {
  top: 0px;
}
body footer section.footer-menu .principal .in-botoes a:hover img {
  filter: brightness(100);
}
body footer section.footer-menu .principal .in-botoes a strong {
  font-size: 14px;
  font-weight: 600;
}
body footer section.footer-menu .principal .in-botoes a img {
  flex-basis: 25px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
body footer section.footer-menu .principal .in-botoes a.primary {
  padding: 9px 25px;
  border-radius: 0 30px;
  background: linear-gradient(90deg, #ed0e1b 0%, #ff8f00 100%);
  border-color: #f5f5f5;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a.primary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a.primary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body footer section.footer-menu .principal .in-botoes a.primary:hover::before {
  top: 0px;
}
body footer section.footer-menu .principal .in-botoes a.primary img {
  flex-basis: 35px;
  width: 35px;
  height: 35px;
}
body footer section.footer-menu .principal .in-botoes a.primary strong {
  font-size: 15px;
}
body footer section.footer-menu .principal .in-botoes a.secondary {
  padding: 12px 25px;
  border-radius: 0 30px 0 30px;
  background-color: #2a297c;
  color: white;
  border-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a.secondary::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  color: white !important;
  top: 100%;
  background: #e40021;
  transition: all 0.4s;
}
body footer section.footer-menu .principal .in-botoes a.secondary:hover {
  color: white !important;
  box-shadow: none;
  border-color: #e40021;
  background: #e40021;
  transform: translateY(0);
}
body footer section.footer-menu .principal .in-botoes a.secondary:hover::before {
  top: 0px;
}
body footer section.footer-menu .principal .in-botoes a.secondary img {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
}
body footer section.footer-menu .principal .in-botoes a.secondary strong {
  font-size: 15px;
}
@media (max-width: 991px) {
  body footer section.footer-menu .logo {
    width: 100%;
    margin-bottom: 20px;
  }
  body footer section.footer-menu .menu {
    display: none;
  }
  body footer section.footer-menu .principal .in-botoes {
    flex-wrap: wrap;
    justify-content: center;
  }
  body footer section.footer-menu .principal .in-botoes a {
    width: 100%;
    margin-bottom: 10px;
    max-width: 255px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
body footer section.footer-copy {
  padding: 20px 0;
  background-color: #f7f7f7;
  color: gray;
}
@media screen and (min-width: 992px) {
  body footer section.footer-copy {
    margin-bottom: 78px;
  }
}
body footer section.footer-copy .copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: auto;
}
@media (max-width: 991px) {
  body footer section.footer-copy .copy {
    flex-wrap: wrap;
    justify-content: center;
  }
  body footer section.footer-copy .copy img {
    margin-top: 20px;
  }
}
body footer .menu-mobile {
  background-color: white;
  position: fixed;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
  padding-bottom: 65px;
  transition: all 0.5s ease;
}
body footer .menu-mobile .red {
  color: #e40021;
}
body footer .menu-mobile.aberto {
  left: 0px;
}
body footer .menu-mobile .fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  font-weight: 600;
  color: #e40021;
}
body footer .menu-mobile .logo {
  width: 80%;
  padding: 10px;
  margin: 20px auto;
  margin-top: 40px;
}
body footer .menu-mobile .logo img {
  width: 100%;
  max-height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}
body footer .menu-mobile ul {
  padding: 0px;
}
body footer .menu-mobile ul li {
  list-style: none;
  margin: 15px;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
}
body footer .menu-mobile ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #2a297c;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  body footer .menu-mobile {
    left: unset;
    right: -100%;
    top: 50px;
    height: auto;
    max-width: 500px;
    padding: 15px;
    border: 5px solid #0f5bd7;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.6s ease;
  }
  body footer .menu-mobile.aberto {
    left: unset;
    right: 0px;
  }
  body footer .menu-mobile ul li {
    transition: all 0.3s ease;
  }
  body footer .menu-mobile ul li a {
    transition: all 0.3s ease;
  }
  body footer .menu-mobile ul li:hover {
    background-color: #0f5bd7;
    border-color: #0f5bd7;
  }
  body footer .menu-mobile ul li:hover a {
    color: white;
  }
}
body footer section.botao_whatsapp {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  padding: 10px;
  z-index: 610;
  bottom: 32px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  right: 30px;
  border-radius: 75px;
  transition: all 0.5s ease;
}
body footer section.botao_whatsapp.scroll {
  bottom: 100px;
}
body footer section.botao_whatsapp i.fab.fa-whatsapp {
  color: white;
  font-size: 46px;
  vertical-align: middle;
}
body footer section.botao_whatsapp:hover {
  background-color: #1f9249;
}
@media screen and (max-width: 768px) {
  body footer section.botao_whatsapp {
    bottom: 20px !important;
    right: 20px !important;
  }
}/*# sourceMappingURL=custom.css.map */