@charset "UTF-8";
/* -=-=-=-=-=-=- Imports -=-=-=-=-=-=- */
/* -=-=-=-=-=-= Mixins =-=-=-=-=-=- */
/* -=-=-=-=-= Globais =-=-=-=-=-*/
body,
html {
  position: relative;
  font-size: 62.5%;
  font-family: "Open Sans", sans-serif;
  color: #000;
  overflow-x: hidden;
  transition: all 0.8s;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

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

a.anchor {
  display: block;
  position: relative;
  top: -60px;
  z-index: -999;
  visibility: hidden;
}

.turbolinks-progress-bar {
  height: 4px;
  background-color: #344f42;
}

.owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.btn-veja-mais {
  border: 0;
  border-radius: 0;
  background: #d10117 !important;
  color: #fff !important;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  padding: 11px 30px;
  margin-top: 30px;
}

.btn-voltar {
  background: #d10117;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px 15px;
  border-radius: 0;
  border-color: #d10117;
  margin-top: 25px;
}
.btn-voltar:hover {
  background: #9e0111;
  border-color: #9e0111;
}

.tooltip {
  font-size: 1.5rem;
}
.tooltip .arrow:before {
  border-bottom-color: #d10117;
  border-width: 0 4px 4px;
}
.tooltip .tooltip-inner {
  max-width: 200px;
  padding: 5px 12px;
  color: #fff;
  text-align: center;
  background-color: #d10117;
  border-radius: 0;
}

.btn-voltar {
  background: #85010f;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  border: 0;
  padding: 9px 36px;
}
.btn-voltar:hover {
  background: #520009;
}

.button-whats a {
  position: fixed;
  right: 30px;
  bottom: 105px;
  height: 50px;
  width: 50px;
  background: #2db741 url(../../imagens/whatsapp-icon.png) no-repeat 55% 45%;
  background-size: 60%;
  border-radius: 50%;
  z-index: 9;
}

.pulsate-css {
  -webkit-animation: pulsate 1s ease-out;
          animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
  border: 3px solid #2db741;
  border-radius: 30px;
  height: 18px;
  width: 18px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

.effect {
  position: fixed;
  right: 25px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  background: #2db741;
  border-radius: 50%;
  z-index: 8;
}

/* Make the element pulse (grow large and small slowly) */
/* Usage
    .myElement {
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1;
    }
*/
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/* Make the element's opacity pulse*/
/* Usage
    .myElement {
        animation: opacityPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0;
    }
*/
@-webkit-keyframes opacityPulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Make the element's background pulse. I call this alertPulse because it is red. You can call it something more generic. */
/* Usage
    .myElement {
        animation: alertPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1;
    }
*/
@-webkit-keyframes alertPulse {
  0% {
    background-color: #9a2727;
    opacity: 1;
  }
  50% {
    opacity: red;
    opacity: 0.75;
  }
  100% {
    opacity: #9a2727;
    opacity: 1;
  }
}
/* Make the element rotate infinitely. */
/*
Usage
    .myElement {
        animation: rotating 3s linear infinite;
    }
*/
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* The location pointed to by the popup tip. */
.popup-tip-anchor {
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  width: 375px;
  /* The bubble is anchored above the tip. */
}
.popup-tip-anchor .popup-bubble-anchor {
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
  /* Draw the tip. */
  /* The popup bubble itself. */
}
.popup-tip-anchor .popup-bubble-anchor:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid white;
}
.popup-tip-anchor .popup-bubble-anchor:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 31px solid #000;
}
.popup-tip-anchor .popup-bubble-anchor .popup-bubble-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  /* Style the info window. */
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  font-family: sans-serif;
  overflow-y: auto;
  max-height: 170px;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
  color: #000;
  text-align: center;
  border: 1px solid #000;
}
.popup-tip-anchor .popup-bubble-anchor .popup-bubble-content h5 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #d10117;
  letter-spacing: -1px;
  line-height: 150%;
  margin-bottom: 0;
}
.popup-tip-anchor .popup-bubble-anchor .popup-bubble-content p {
  color: #333;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  line-height: 130%;
}
.popup-tip-anchor .popup-bubble-anchor .popup-bubble-content p strong {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: -1px;
}

icone-zoom {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 0;
  background: url(../../imagens/icon_zoom.png) no-repeat center;
  background-size: cover;
  z-index: 997;
  pointer-events: none;
}

icone-play {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../../imagens/play.svg) no-repeat center;
  background-size: cover;
  z-index: 997;
  pointer-events: none;
}

.det_fotos .lSSlideWrapper .lslide,
.det_fotos .lSSlideWrapper .clone,
.det_videos .lSSlideWrapper .lslide,
.det_videos .lSSlideWrapper .clone {
  height: 100%;
  text-align: center;
  display: block;
  position: relative;
}
.det_fotos .lSSlideWrapper .lslide img,
.det_fotos .lSSlideWrapper .clone img,
.det_videos .lSSlideWrapper .lslide img,
.det_videos .lSSlideWrapper .clone img {
  display: inline-block;
  max-width: 100%;
  height: 100%;
}
.det_fotos .lSSlideWrapper .lslide img-fundo-blur,
.det_fotos .lSSlideWrapper .clone img-fundo-blur,
.det_videos .lSSlideWrapper .lslide img-fundo-blur,
.det_videos .lSSlideWrapper .clone img-fundo-blur {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  filter: blur(13px);
  -moz-filter: blur(13px);
  -o-filter: blur(13px);
  -ms-filter: blur(13px);
  opacity: 0.7;
}
.det_fotos .lSSlideWrapper .lslide .larguraMaiorQueAltura,
.det_fotos .lSSlideWrapper .clone .larguraMaiorQueAltura,
.det_videos .lSSlideWrapper .lslide .larguraMaiorQueAltura,
.det_videos .lSSlideWrapper .clone .larguraMaiorQueAltura {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.det_fotos .lSPager,
.det_videos .lSPager {
  margin-top: 15px !important;
}
.det_fotos .lSPager li a,
.det_videos .lSPager li a {
  background-color: #bbb !important;
  width: 20px !important;
  height: 20px !important;
}
.det_fotos .lSPager li.active a,
.det_videos .lSPager li.active a {
  background-color: #1a1a1a !important;
}
.det_fotos .lSAction > a,
.det_videos .lSAction > a {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 26px 18px;
}
.det_fotos .lSAction .lSPrev,
.det_videos .lSAction .lSPrev {
  background-position: 4px 10px;
}
.det_fotos .lSAction .lSNext,
.det_videos .lSAction .lSNext {
  background-position: 32px 10px;
}

.calendar .months-container .month-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.calendar .months-container .month-container .month {
  width: 100%;
  height: 100%;
  max-width: 275px;
  margin: 15px 0;
  background: #fff;
}
.calendar .months-container .month-container .month thead tr .month-title {
  background: #e1e1e1;
  color: #ffcc00;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
}
.calendar .months-container .month-container .month thead tr .week-number {
  color: #999;
  font-size: 1.5rem;
}
.calendar .months-container .month-container .month tr td {
  padding: 0;
  box-shadow: none !important;
}
.calendar .months-container .month-container .month tr td .day-content {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .months-container .month-container .month tr td:nth-of-type(1), .calendar .months-container .month-container .month tr td:nth-of-type(7) {
  background: #ccc;
  color: #000;
  font-size: 1.5rem;
  border-radius: 0;
}
.calendar .months-container .month-container .month tr .week-number {
  color: #999;
  font-size: 1.5rem;
}
.calendar .months-container .month-container .month tr .disabled .day-content, .calendar .months-container .month-container .month tr .disabled:hover .day-content {
  background: #ffc7c7;
  color: #a71b1b;
}

.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-stage .owl-item {
  height: 100%;
}
.owl-carousel .owl-nav {
  opacity: 1;
  transition: all 1.3s;
  position: absolute;
  top: 30%;
  width: 100%;
  height: 0;
  z-index: 9;
}
.owl-carousel .owl-nav [class*=owl-] {
  position: absolute;
  background: transparent;
  opacity: 1;
  font-size: 3.5rem;
  height: 50px;
  width: 50px;
  border-radius: 0px;
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-nav [class*=owl-] span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  background: transparent;
  color: #d10117;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.owl-carousel .owl-nav [class*=owl-]:hover span {
  color: #d10117;
}
.owl-carousel .owl-nav .owl-prev {
  left: -4%;
}
.owl-carousel .owl-nav .owl-prev span i {
  margin-right: 8px;
}
.owl-carousel .owl-nav .owl-next {
  right: -4%;
}
.owl-carousel .owl-nav .owl-next span i {
  margin-left: 8px;
}
.owl-carousel .owl-dots {
  margin-top: 12px;
}
.owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #d10117;
  width: 13px;
  height: 13px;
  margin: 8px 3px;
  border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot span:hover {
  border: 1px solid #940110;
  background: #940110;
}
.owl-carousel .owl-dots .owl-dot:hover span {
  border: 1px solid #940110;
  background: #940110;
}
.owl-carousel .owl-dots .owl-dot.active span {
  border: 1px solid #d10117;
  background: #d10117;
}

/*=-=-=-=-=-=- Botão voltar ao topo -=-=-=-=-=-=*/
#back-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 200;
}
#back-top a {
  position: relative;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
#back-top a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
}
#back-top a i {
  color: #d10117;
  font-size: 4.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ad {
  height: 0px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
}

@-webkit-keyframes pulse {
  0% {
    top: 95%;
  }
  50% {
    top: 97%;
  }
  100% {
    top: 95%;
  }
}
@keyframes pulse {
  0% {
    top: 95%;
  }
  50% {
    top: 97%;
  }
  100% {
    top: 95%;
  }
}
#wrapper {
  transition: all 0.8s;
}

header {
  position: relative;
  height: 80px;
  background: transparent;
}
header nav {
  position: relative !important;
  background: rgba(209, 1, 22, 0.9);
  height: 80px;
  z-index: 991;
  transition: all 0.8s;
  padding: 0 !important;
  border-bottom: 0;
}
header nav .container {
  position: relative;
}
header nav .collapse {
  width: 100%;
  transition: all 0.8s;
}
header nav .collapse .navbar-nav {
  transition: all 0.8s;
}
header nav .collapse .navbar-nav .nav-item {
  transition: all 0.8s;
  height: 100%;
  flex: 1 1 auto;
}
header nav .collapse .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  color: #fff;
  background: transparent;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  transition: 0.2s all ease;
  padding: 25px 30px;
  align-items: center;
  justify-content: center;
}
header nav .collapse .navbar-nav .nav-item.active .nav-link {
  font-weight: 500;
}
header nav .collapse .navbar-nav .nav-item:hover, header nav .collapse .navbar-nav .nav-item:focus, header nav .collapse .navbar-nav .nav-item:active {
  background: #fe112a;
}
header nav .collapse .navbar-nav .nav-item:hover:active, header nav .collapse .navbar-nav .nav-item:focus:active, header nav .collapse .navbar-nav .nav-item:active:active {
  background: #fe112a;
}
header .fix {
  position: fixed !important;
  top: 0px !important;
  width: 100%;
  height: 60px;
  z-index: 991;
  transition: all 0.8s;
  border-bottom: 0;
}
header .fix .collapse .navbar-nav .nav-item {
  transition: 0.2s all ease;
}
header .fix .collapse .navbar-nav .nav-item .nav-link {
  padding: 15px 30px;
}

.dropdown-menu {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: rgba(209, 1, 22, 0.9);
}
.dropdown-menu .dropdown-item {
  padding: 4px 15px;
  color: #fff;
  background: transparent;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:focus {
  background: #fff;
  color: #000;
}
.dropdown-menu .dropdown-item.active {
  font-weight: 500;
}

.loading-screen {
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  /* pointer-events: none; */
  cursor: not-allowed;
}
.loading-screen .loading-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #d10117;
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 150px;
  border-radius: 18px;
  font-size: 2.3rem;
}
.loading-screen .loading-modal i {
  font-size: 3rem;
  margin: -5px 0 10px;
}

.mfp-title {
  font-size: 1.6rem;
}

.titulo-tarja {
  height: 360px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  margin-top: -80px;
}
.titulo-tarja .container {
  margin-top: 80px;
}
.titulo-tarja nav .breadcrumb {
  background: transparent;
  padding: 10px 0;
}
.titulo-tarja nav .breadcrumb .breadcrumb-item,
.titulo-tarja nav .breadcrumb a,
.titulo-tarja nav .breadcrumb .active {
  color: #fff !important;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.titulo-tarja nav .breadcrumb .active {
  color: #d10117 !important;
}
.titulo-tarja nav .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  display: inline-block;
  padding-right: 1.2rem;
  padding-left: 0.8rem;
  content: " | ";
  color: #fff !important;
}
.titulo-tarja .titulo-pagina {
  color: #fff;
  font-size: 3.6rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin-top: -28px;
}

.titulo-padrao .small-vermelho {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #d50000;
  margin: 0 auto;
  display: block;
}
.titulo-padrao .small-branco {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  display: block;
}
.titulo-padrao .titulo-preto {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #000;
}
.titulo-padrao .titulo-branco {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.titulo-padrao .detalhe-branco {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 45px;
}
.titulo-padrao .detalhe-branco:before, .titulo-padrao .detalhe-branco:after {
  width: 19px;
  height: 2px;
  display: flex;
  background: #fff;
  margin: 0 1px;
  content: "";
}

.detalhe-vermelho {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 45px;
}
.detalhe-vermelho:before, .detalhe-vermelho:after {
  width: 19px;
  height: 2px;
  display: flex;
  background: #d50000;
  margin: 0 1px;
  content: "";
}

.registros-nao-encontrados {
  text-align: center;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.card-blog {
  height: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
}
.card-blog .div-img {
  padding: 10px 10px 15px;
}
.card-blog .div-img .img-blog {
  width: 100%;
  height: auto;
}
.card-blog .body-blog {
  background: transparent;
}
.card-blog .body-blog .data-publicacao {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #717175;
  margin-bottom: 20px;
}
.card-blog .body-blog .data-publicacao i {
  font-size: 1.4rem;
  color: #717175;
}
.card-blog .body-blog .card-title {
  color: #000;
  font-size: 2.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.card-blog .body-blog .card-text {
  color: #686868;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 200%;
  text-align: justify;
}

.card-produto {
  height: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
}
.card-produto .div-img {
  padding: 10px 10px 15px;
}
.card-produto .div-img .img-produto {
  width: 100%;
  height: auto;
}
.card-produto .card-body {
  padding-bottom: 70px;
}
.card-produto .card-body h5 {
  font-family: "Roboto", sans-serif;
  font-size: 1.65rem;
  color: #999999;
  font-weight: 400;
  text-align: center;
  margin-bottom: 35px;
}
.card-produto .card-body .card-text {
  color: #686868;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 200%;
  text-align: justify;
}
.card-produto .card-body .btn {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 30px;
  text-transform: uppercase;
}
.card-produto .card-body .btn:hover, .card-produto .card-body .btn:active, .card-produto .card-body .btn:focus {
  background: #37332b;
  border: 1px solid #37332b;
  color: #fff;
}
.card-produto .card-body .btn:hover:active, .card-produto .card-body .btn:active:active, .card-produto .card-body .btn:focus:active {
  background: #37332b;
  border: 1px solid #37332b;
  color: #fff;
}

#sec-logo-topo {
  background: url(../../imagens/fundo-topo.jpg) no-repeat center center;
  background-size: cover;
  height: 115px;
  margin-bottom: -3px;
}

/* -=-=-=-=-= Section banner =-=-=-=-=-*/
#section-bann {
  margin-top: -80px;
  position: relative;
  height: 600px;
  width: 100%;
  background: url(../../imagens/loading-gif.gif) no-repeat;
  background-position: 50% 65%;
  background-size: 50px;
}
#section-bann #banners-vegas {
  position: relative;
  height: 600px;
  width: 100%;
}
#section-bann .banner-nav {
  opacity: 0;
  transition: all 1.3s;
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 9;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#section-bann .banner-nav #prev span,
#section-bann .banner-nav #next span {
  position: absolute;
  opacity: 1;
  font-size: 3.5rem;
  height: 50px;
  width: 50px;
  border-radius: 0px;
  margin: 0;
  padding: 0;
  background: rgba(204, 16, 35, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}
#section-bann .banner-nav #prev span i,
#section-bann .banner-nav #next span i {
  font-size: 2.2rem;
  color: #fff;
}
#section-bann .banner-nav #prev span:hover,
#section-bann .banner-nav #next span:hover {
  background: rgba(204, 16, 35, 0.75);
}
#section-bann .banner-nav #prev span:hover i,
#section-bann .banner-nav #next span:hover i {
  color: #fff;
}
#section-bann .banner-nav #prev span {
  left: -3px;
}
#section-bann .banner-nav #next span {
  right: 0;
}
#section-bann #dot-banner {
  display: flex;
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
}
#section-bann #dot-banner .dot span {
  background: #cc1023;
  border: 2px solid transparent;
  width: 13px;
  height: 13px;
  margin: 8px 3px;
  border-radius: 50%;
  display: block;
}
#section-bann #dot-banner .dot.active span {
  background: transparent;
  border-color: #cc1023;
}
#section-bann #content-down {
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  -webkit-animation: pulse 1.3s infinite;
  animation: pulse 1.3s infinite;
}
#section-bann #content-down i {
  color: #fff;
  font-size: 2.8rem;
}
#section-bann:hover .banner-nav {
  opacity: 1;
}

#section-nosso-catalogo {
  position: relative;
  background: #fff;
  padding: 40px 0 45px;
}
#section-nosso-catalogo .owl-item {
  height: 100%;
}
#section-nosso-catalogo .card-catalogo {
  height: 100%;
  border: 0;
}
#section-nosso-catalogo .card-catalogo a {
  height: 100%;
}
#section-nosso-catalogo .card-catalogo .img-card-top {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  max-height: 268px;
  min-height: 268px;
  width: 100%;
}
#section-nosso-catalogo .card-catalogo .body-catalogo {
  text-align: center;
  padding-bottom: 60px;
  height: 100%;
}
#section-nosso-catalogo .card-catalogo .body-catalogo .titulo-catalogo {
  font-size: 2.5rem;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  height: 100%;
  min-height: 92px;
}
#section-nosso-catalogo .card-catalogo .body-catalogo .btn {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  background: #2f2f2f;
  border: 0;
  border-radius: 0;
  padding: 5px 14px 3px;
}

#section-nosso-compromisso {
  background: url(../../imagens/fundo-site.jpg);
  position: relative;
  padding: 45px 0 55px;
}
#section-nosso-compromisso .texto-nosso-compromisso {
  font-size: 1.8rem;
  color: #686868;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-align: justify;
  line-height: 235%;
}

#section-blog {
  background: #fff;
  position: relative;
  padding: 40px 0 50px;
}
#section-depoimentos {
  background: #cc1023;
  position: relative;
  padding: 40px 0 55px;
}
#section-depoimentos .owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #fff;
  width: 13px;
  height: 13px;
  margin: 8px 3px;
  border-radius: 50%;
}
#section-depoimentos .owl-carousel .owl-dots .owl-dot span:hover {
  border: 1px solid #fff;
  background: #fff;
}
#section-depoimentos .owl-carousel .owl-dots .owl-dot:hover span {
  border: 1px solid #fff;
  background: #fff;
}
#section-depoimentos .owl-carousel .owl-dots .owl-dot.active span {
  border: 1px solid #fff;
  background: #fff;
}
#section-depoimentos .item-depoimento .img-depoimento {
  border: 5px solid #fff;
}
#section-depoimentos .item-depoimento .titulo-depoimento {
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
#section-depoimentos .item-depoimento .texto-depoimento {
  color: #fff;
  font-weight: 400;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif;
}

#section-newsletter {
  background: url(../../imagens/fundo-site.jpg);
  position: relative;
  padding: 60px 0 65px;
}
#section-newsletter .titulo-news {
  text-align: center;
}
#section-newsletter .titulo-news span {
  font-size: 4.9rem;
  font-weight: 300;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #000;
  text-transform: uppercase;
}
#section-newsletter .titulo-news p {
  margin-bottom: 0;
  font-size: 1.9rem;
  color: #000;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
#section-newsletter .form-newsletter {
  margin-top: 32px;
}
#section-newsletter .form-newsletter .form-group .form-control {
  height: 34px;
  border-radius: 0;
  border: 1px solid #bbb;
  color: #000;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}
#section-newsletter .form-newsletter .btn-envia {
  background: #000;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
}

#section-conteudos .fundo-conteudo {
  padding: 40px 0 45px;
  background: url(../../imagens/fundo-site.jpg);
}

#section-conteudo-detalhe .fundo-conteudo-detalhe {
  padding: 40px 0 45px;
  background: url(../../imagens/fundo-site.jpg);
}
#section-conteudo-detalhe .fundo-conteudo-detalhe .fundo-branco {
  background: #fff;
  padding: 25px 0 15px;
}
#section-conteudo-detalhe .fundo-conteudo-detalhe .fundo-branco .texto-cont-detalhe {
  color: #000;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  text-align: justify;
  line-height: 120%;
  margin-top: 40px;
}

#section-produtos .fundo-produto {
  padding: 40px 0 45px;
  background: url(../../imagens/fundo-site.jpg);
}

#section-produto-detalhe .fundo-produto-detalhe {
  padding: 40px 0 45px;
  background: url(../../imagens/fundo-site.jpg);
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco {
  background: #fff;
  padding: 25px 0 15px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .titulo-produto {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .btn-danger {
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  background: #d50000;
  border: 0;
  border-radius: 0;
  padding: 11px 55px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .texto-produto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: justify;
  color: #353535;
  line-height: 150%;
  font-size: 1.4rem;
  margin: 30px 0;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica h4 {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 25px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #3e3e3e;
  margin: 8px 0;
  padding: 5px 35px 3px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control {
  position: relative;
  display: block;
  min-height: 15px;
  padding-left: 20px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 10px;
  height: 12.5px;
  opacity: 0;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #bf0115;
  background-color: #bf0115;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(191, 1, 21, 0.25);
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #bb515c;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #c0888d;
  border-color: #c0888d;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input[disabled] ~ .custom-control-label, #section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input[disabled] ~ .custom-control-label::before, #section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-label::before {
  position: absolute;
  top: 2px;
  left: -20px;
  display: block;
  width: 15px;
  height: 15px;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li .custom-control-label::after {
  position: absolute;
  top: 2.5px;
  left: -19px;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") no-repeat 50%/50% 50%;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li:nth-of-type(even) {
  background: #fff;
  margin: -6px 0;
}
#section-produto-detalhe .fundo-produto-detalhe .fundo-branco .item-caracteristica ul li:nth-of-type(odd) {
  background: #e3e3e3;
}
#section-produto-detalhe .fundo-produto-detalhe .titulo-produtos-relacionados {
  background: #d50000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0 11px;
  margin-top: 15px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-dialog {
  max-width: 660px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-content {
  border: 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-header {
  border-bottom: 0;
}
#section-produto-detalhe #modalOndeEncontrar .modal-header .modal-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: #bf0115;
  padding-top: 70px;
  padding-bottom: 0px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-header .close {
  font-size: 3.5rem;
  color: #000;
  opacity: 1;
  float: none;
  margin-left: 0;
  position: absolute;
  right: 25px;
  top: 25px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-body {
  padding: 50px;
  padding-bottom: 0;
  padding-top: 0;
}
#section-produto-detalhe #modalOndeEncontrar .modal-body p {
  font-family: "Roboto", sans-serif;
  color: #353535;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 179%;
  text-align: center;
  padding-bottom: 12px;
}
#section-produto-detalhe #modalOndeEncontrar .modal-footer {
  border-top: 0;
  padding: 50px;
  padding-bottom: 80px;
  padding-top: 0;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato .form-group {
  margin-bottom: 20px;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato .form-control {
  font-size: 1.4rem;
  border: 1px solid #bbb;
  border-radius: 0;
  color: #bbb;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato input[type=text],
#section-produto-detalhe #modalOndeEncontrar .form-contato input[type=email],
#section-produto-detalhe #modalOndeEncontrar .form-contato input[type=file] {
  height: 45px;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato select {
  height: 45px;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato textarea {
  height: 100px;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato .btn-envia {
  background-color: #c00216;
  border: 1px solid #c00216;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 0;
  text-transform: uppercase;
}
#section-produto-detalhe #modalOndeEncontrar .form-contato .btn-envia:hover, #section-produto-detalhe #modalOndeEncontrar .form-contato .btn-envia:active, #section-produto-detalhe #modalOndeEncontrar .form-contato .btn-envia:focus {
  background-color: #8e0110;
  border: 1px solid #8e0110;
}
#section-texto-adicional {
  position: relative;
}
#section-texto-adicional .img-texto {
  border-bottom: 5px solid #c00216;
}
#section-texto-adicional .fundo-texto {
  padding: 40px 0 45px;
  background: url(../../imagens/fundo-site.jpg);
}
#section-texto-adicional .fundo-texto .fundo-branco {
  background: #fff;
  padding: 25px 0 15px;
}
#section-texto-adicional .fundo-texto .fundo-branco .texto-add {
  font-size: 1.8rem;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 120%;
  text-align: justify;
}

#section-trabalhe-conosco {
  position: relative;
}
#section-trabalhe-conosco .fundo-trabalhe {
  background: url(../../imagens/fundo-site.jpg);
}
#section-trabalhe-conosco .fundo-trabalhe .div-form {
  padding: 50px 0 60px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .form-group,
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .input-group {
  margin-bottom: 20px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .custom-file {
  height: 45px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .custom-file .custom-file-label {
  height: 45px;
  font-size: 1.4rem;
  border: 1px solid #bbb;
  border-radius: 0;
  color: #bbb;
  display: flex;
  align-items: center;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .custom-file .custom-file-label:after {
  height: 100%;
  display: flex;
  align-items: center;
  background: #c00216;
  border: 1px solid #c00216;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 0;
  color: #fff;
  content: "arquivo";
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .form-control {
  font-size: 1.4rem;
  border: 1px solid #bbb;
  border-radius: 0;
  color: #bbb;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco input[type=text],
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco input[type=email],
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco input[type=file] {
  height: 45px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco select {
  height: 45px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco textarea {
  height: 100px;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia {
  background-color: #c00216;
  border: 1px solid #c00216;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 0;
  text-transform: uppercase;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:hover, #section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:active, #section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:focus {
  background-color: #8e0110;
  border: 1px solid #8e0110;
}
#section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:hover:active, #section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:active:active, #section-trabalhe-conosco .fundo-trabalhe .div-form .form-trabalhe-conosco .btn-envia:focus:active {
  background-color: #8e0110;
  border: 1px solid #8e0110;
}

#section-contato {
  position: relative;
}
#section-contato .fundo-contato {
  background: url(../../imagens/fundo-site.jpg);
}
#section-contato .fundo-contato .div-form {
  padding: 50px 0 60px;
}
#section-contato .fundo-contato .div-form .form-contato .form-group {
  margin-bottom: 20px;
}
#section-contato .fundo-contato .div-form .form-contato .form-control {
  font-size: 1.4rem;
  border: 1px solid #bbb;
  border-radius: 0;
  color: #bbb;
}
#section-contato .fundo-contato .div-form .form-contato input[type=text],
#section-contato .fundo-contato .div-form .form-contato input[type=email],
#section-contato .fundo-contato .div-form .form-contato input[type=file] {
  height: 45px;
}
#section-contato .fundo-contato .div-form .form-contato select {
  height: 45px;
}
#section-contato .fundo-contato .div-form .form-contato textarea {
  height: 100px;
}
#section-contato .fundo-contato .div-form .form-contato .btn-envia {
  background-color: #c00216;
  border: 1px solid #c00216;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 0;
  text-transform: uppercase;
}
#section-contato .fundo-contato .div-form .form-contato .btn-envia:hover, #section-contato .fundo-contato .div-form .form-contato .btn-envia:active, #section-contato .fundo-contato .div-form .form-contato .btn-envia:focus {
  background-color: #8e0110;
  border: 1px solid #8e0110;
}
#section-contato .pag-informacoes {
  position: relative;
  z-index: 10;
  margin-bottom: -70px;
}
#section-contato .pag-informacoes .info-caixa {
  background-color: #fff;
  border: 2px solid #c00216;
  color: #000;
}
#section-contato .pag-informacoes .info-caixa .info-det {
  position: absolute;
}
#section-contato .pag-informacoes .info-caixa .info-det i {
  position: relative;
  padding: 10px 0 0 10px;
  color: #fff;
  font-size: 3rem;
}
#section-contato .pag-informacoes .info-caixa .info-det .fa-map-marker-alt {
  font-size: 3.5rem;
}
#section-contato .pag-informacoes .info-caixa .info-det:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 128px 128px 0 0;
  border-color: #c00216 transparent transparent transparent;
}
#section-contato .pag-informacoes .info-caixa .info-det:before {
  border-width: 98px 98px 0 0;
}
#section-contato .pag-informacoes .info-caixa .info-descricao {
  font-size: 1.5rem;
  height: 200px;
  font-weight: 300;
}
#section-contato .pag-informacoes .info-caixa .info-descricao .titulo {
  font-weight: 600;
}
#section-contato .pag-informacoes .info-caixa .info-descricao .fa-whatsapp {
  font-size: 2.9rem;
  color: #3fc351;
  padding: 5px 0;
}
#section-contato .pag-mapa .gmaps {
  height: 525px;
}

footer {
  padding-top: 70px;
  background: #fff;
}
footer .informacoes-empresa {
  padding: 40px 0 45px;
}
footer .informacoes-empresa .dados-endereco i,
footer .informacoes-empresa .dados-telefone i {
  color: #d50000;
  font-size: 2.6rem;
}
footer .informacoes-empresa .dados-endereco .endereco,
footer .informacoes-empresa .dados-endereco .telefone,
footer .informacoes-empresa .dados-telefone .endereco,
footer .informacoes-empresa .dados-telefone .telefone {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #999;
  text-align: center;
  margin-top: 15px;
}
footer .informacoes-empresa .div-redes-sociais {
  max-width: 260px;
}
footer .informacoes-empresa .div-redes-sociais a span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #df0023;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
}
footer .informacoes-empresa .div-redes-sociais a span i {
  color: #fff;
  font-size: 2.8rem;
}
footer hr {
  border-top: 1px solid #000;
}
footer .logo-agencia {
  margin: 20px 0 30px;
}/*# sourceMappingURL=style.css.map */