@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
/* CLASSES GLOBAIS */
.has-error {
  border-color: red !important;
}

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

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

.container {
  max-width: 1350px;
}
.container.big {
  max-width: 1600px;
}

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

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

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

/* VARIAVEIS GLOBAIS DO PROJETO */
a.main-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s all;
}
@media (max-width: 991px) {
  a.main-phone {
    font-size: 16px;
  }
}
a.main-phone:hover {
  opacity: 0.5;
  transform: translateY(-3px);
}

.main-cta {
  border-radius: 8px;
  background: #f1e47c;
  display: inline-block;
  border: none;
  outline: none;
  padding: 12px;
  color: #303030;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.5s all;
}
.main-cta:hover {
  background-color: #4e0000;
  color: white;
}
.main-cta.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: #25b102;
  font-weight: 400;
  padding: 12px 50px;
}
.main-cta.whatsapp:hover {
  background-color: #135f00;
}
.main-cta.outline {
  background: transparent;
  border: 1px solid #4e0000;
  color: #4e0000;
  font-weight: 400;
}
.main-cta.outline:hover {
  background-color: #4e0000;
  color: white;
}
@media (max-width: 991px) {
  .main-cta {
    font-size: 16px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

div.out-card-servico {
  padding-top: 20px;
}

div.card-servico {
  border-radius: 30px;
  background-image: url("../image/bg-servico-blank.png");
  padding: 0 50px;
  transition: 0.5s all;
  background-size: cover;
  padding-top: 1px;
  position: relative;
  border: 1px solid #989898;
}
div.card-servico.black h4,
div.card-servico.black p {
  color: #303030;
}
div.card-servico.black:hover h4,
div.card-servico.black:hover p {
  color: white;
}
div.card-servico .inner {
  position: relative;
  z-index: 2;
}
div.card-servico .lente {
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #232323;
  z-index: 1;
  transition: 0.5s all;
}
div.card-servico:hover {
  background-image: var(--bg-image);
}
div.card-servico:hover .lente {
  opacity: 0.8;
}
div.card-servico .botoes {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
div.card-servico .botoes a {
  text-align: center;
  width: 100%;
  max-width: 235px;
}
div.card-servico p {
  color: white;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
div.card-servico h4 {
  color: white;
  font-family: Cinzel;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 13px;
}
div.card-servico .content {
  padding: 40px 0;
}
div.card-servico .icon {
  margin-top: -20px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #4e0000;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.card-servico .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  div.card-servico {
    padding: 0px 30px;
  }
  div.card-servico p {
    font-size: 15px;
  }
  div.card-servico h4 {
    font-size: 20px;
  }
}

div.main-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
div.main-title:before {
  content: "";
  width: 100px;
  background: var(--dourado, linear-gradient(90deg, #ddc05c 0%, #f7f098 54.69%, #ca993c 100%));
  height: 4px;
}
div.main-title h2 {
  color: #4e0000;
  font-family: Sora;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
div.main-title h2 strong {
  font-weight: 700;
}
div.main-title h3 {
  margin-bottom: 0;
  color: #0d0d0d;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 991px) {
  div.main-title {
    margin-bottom: 30px;
    gap: 20px;
  }
  div.main-title h2 {
    font-size: 20px;
  }
  div.main-title h3 {
    font-size: 16px;
  }
  div.main-title:before {
    width: 30px;
  }
}

.owl-carousel .owl-nav:not(.disabled) {
  position: absolute;
  display: flex;
  flex-flow: column;
  gap: 20px;
  right: -100px;
  top: 30%;
}
@media (max-width: 991px) {
  .owl-carousel .owl-nav:not(.disabled) {
    position: static;
    margin-top: 20px;
    justify-content: center;
    flex-flow: row;
    gap: 5px;
  }
  .owl-carousel .owl-nav:not(.disabled) svg {
    height: 40px;
  }
}

.owl-carousel .owl-dots:not(.disabled) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.owl-carousel .owl-dots:not(.disabled) .owl-dot {
  border-radius: 100%;
  background: #bbbbbb;
  width: 13px;
  height: 13px;
}
.owl-carousel .owl-dots:not(.disabled) .owl-dot.active {
  background: #d2af53;
}
@media (max-width: 991px) {
  .owl-carousel .owl-dots:not(.disabled) {
    margin-top: 20px;
  }
}

section.header {
  border-bottom: 1px solid white;
  padding: 30px 0;
  overflow: hidden;
  background: #4e0000;
}
section.header .logo {
  max-width: 100%;
}
section.header .linha {
  position: relative;
}
section.header .linha:before {
  content: "";
  width: 1px;
  background-color: white;
  height: 500px;
  position: absolute;
  right: 0;
  top: -70px;
}
section.header .linha.linha2:before {
  right: 20px;
}
section.header .menu {
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.header .menu a {
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
section.header .menu a:hover:before, section.header .menu a.active:before {
  width: 100%;
  opacity: 1;
}
section.header .menu a:before {
  opacity: 0;
  transition: 0.5s all;
  content: "";
  width: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  background-color: white;
}
@media (max-width: 991px) {
  section.header {
    position: static;
    background-color: #4e0000;
    padding: 20px 0;
    border-bottom: none;
  }
  section.header .logo {
    width: 200px;
  }
}

body {
  background: #f4f4f4;
  font-size: 1em;
  font-family: "Sora", sans-serif;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
  /* MODAL */
}
body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body section.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: white;
}
body section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #4e0000;
  animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
body .modal-backdrop.show {
  opacity: 0.8;
  width: 100% !important;
  height: 100% !important;
}
body .modal-lg {
  max-width: 600px;
}
body .modal .close-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
body .modal-content {
  border-radius: 0 !important;
  background-color: white;
}
body .modal-content .closebtn {
  outline: none;
  color: white;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -40px;
  border: none;
  cursor: pointer;
  z-index: 2;
  text-shadow: none;
  font-weight: 500;
  opacity: 1;
  font-size: 15px;
}
body .modal-content .closebtn:hover {
  color: white !important;
}
@media (max-width: 991px) {
  body .modal-content .closebtn {
    position: static;
    font-size: 14px;
    margin-top: 20px;
    padding-right: 20px;
    text-align: right;
    color: #23494a !important;
  }
}
body .modal-body {
  padding: 40px;
  border-radius: 15px;
}
body .modal-body .main-cta {
  max-width: 200px;
}
body .modal-body h1 {
  color: #4e0000;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1;
}
body .modal-body h1.terciary {
  color: #4e0000;
}
body .modal-body h3 {
  font-weight: 400;
  text-align: center;
  font-size: 16px;
}
body .modal-body form {
  margin-top: 20px;
}
body .modal-body form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
body .modal-body form input,
body .modal-body form select,
body .modal-body form textarea {
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid gray;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
}
body .modal-body form textarea {
  resize: none;
  height: 100px;
  outline: none;
}
body .modal-body.video {
  border-radius: 0;
  min-height: 650px;
  padding: 0;
}
@media (max-width: 991px) {
  body .modal-body.video {
    min-height: 360px;
  }
}
body .modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 991px) {
  body .modal-body {
    padding: 15px 0;
  }
  body .modal-body h1 {
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
  }
  body .modal-body h3 {
    text-align: center;
    font-size: 15px;
  }
  body .modal-body form {
    margin-top: 20px;
  }
  body .modal-body form label {
    font-size: 15px;
  }
  body .modal-body form input,
  body .modal-body form select,
  body .modal-body form textarea {
    font-size: 14px;
  }
}
body section.formulario-enviado {
  padding: 200px 0;
  background-image: url("../image/bg-branco2.jpg");
  color: #4e0000;
}
body section.formulario-enviado .box-in {
  text-align: center;
}
body section.formulario-enviado .box-in h5 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}
body section.formulario-enviado .box-in a {
  color: #4e0000;
  font-weight: 500;
  border-bottom: 1px dotted #4e0000;
}
body section.formulario-enviado .box-in .btn-voltar {
  color: #4e0000;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #4e0000;
  transition: 0.3s all;
}
body section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #4e0000;
  color: white;
}
body section.formulario-enviado .box-in .btn-voltar i {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 15px;
}
body section.formulario-enviado .box-in h3 {
  font-size: 24px;
  font-weight: 400;
  color: #4e0000;
}
body section.formulario-enviado .box-in h1 {
  font-size: 75px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 991px) {
  body section.formulario-enviado {
    padding: 90px 0;
    text-align: center;
  }
  body section.formulario-enviado .container {
    position: relative;
    z-index: 2;
  }
  body section.formulario-enviado .box-in {
    text-align: center;
  }
  body section.formulario-enviado .box-in .btn-voltar {
    font-size: 13px;
    margin: 10px 0;
  }
  body section.formulario-enviado .box-in h3 {
    font-size: 16px;
  }
  body section.formulario-enviado .box-in h5 {
    font-size: 15px;
  }
  body section.formulario-enviado .box-in h1 {
    font-size: 28px;
  }
}
body .politica-termos {
  padding: 40px 0px;
  color: #525252;
  background-size: cover;
  background-image: url("../image/bg-branco.png");
}
body .politica-termos h1,
body .politica-termos h2,
body .politica-termos h3,
body .politica-termos h4,
body .politica-termos h5,
body .politica-termos h6 {
  font-size: 48px;
  color: #4e0000;
}
body .politica-termos strong,
body .politica-termos b {
  color: #4e0000;
}
@media (max-width: 991px) {
  body .politica-termos {
    padding: 20px 0px;
    font-size: 15px;
  }
  body .politica-termos h1 {
    font-size: 22px;
  }
}
body main section.header-conteudo {
  background-size: cover;
  background-image: url("../image/bg-header.png");
  padding-top: 30px;
  padding-bottom: 100px;
  text-align: center;
}
body main section.header-conteudo.small {
  padding-bottom: 50px;
}
body main section.header-conteudo h1 {
  color: #fff;
  font-family: Cinzel;
  font-size: 48.509px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
body main section.header-conteudo p {
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 830px;
  margin: auto;
}
@media (max-width: 991px) {
  body main section.header-conteudo {
    padding: 30px 0 !important;
  }
  body main section.header-conteudo h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  body main section.header-conteudo p {
    font-size: 15px;
  }
}
body main section.breadcrumb {
  margin-bottom: 100px;
  color: #fff;
  font-family: Sora;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
}
body main section.breadcrumb a {
  color: white;
  text-decoration: underline;
  margin: 0 5px;
  font-weight: 300;
  text-transform: lowercase;
}
body main section.breadcrumb a:first-child {
  margin-left: 0;
}
body main section.breadcrumb a:last-child {
  margin-right: 0;
}
body main section.breadcrumb a.active {
  color: white;
  text-decoration: none;
}
@media (max-width: 991px) {
  body main section.breadcrumb {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
body main section.index-banner {
  position: relative;
}
body main section.index-banner .owl-carousel .owl-nav:not(.disabled) {
  flex-flow: row;
  bottom: 140px;
  left: 300px;
  right: auto;
  top: auto;
  display: flex;
}
body main section.index-banner .owl-carousel .owl-nav:not(.disabled) svg rect {
  stroke: white;
}
body main section.index-banner .owl-carousel .owl-nav:not(.disabled) svg path {
  fill: white;
}
body main section.index-banner .box {
  background-image: url("../image/bg-box.png");
  background-size: cover;
  display: flex;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  max-width: 995px;
  margin-top: -80px;
  position: relative;
  z-index: 5;
}
body main section.index-banner .box p {
  color: #050e2c;
  font-family: Sora;
  font-size: 21.391px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
body main section.index-banner .box p strong {
  font-size: 30.899px;
  font-weight: 600;
}
@media (max-width: 991px) {
  body main section.index-banner .owl-carousel .owl-nav:not(.disabled) {
    bottom: 30px;
    left: 30px;
    position: absolute;
    flex-flow: row;
    margin-top: 0;
    justify-content: flex-start;
  }
  body main section.index-banner .box {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 20px;
    flex-flow: column;
  }
  body main section.index-banner .box p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
  body main section.index-banner .box p strong {
    font-size: 18px;
  }
}
body main section.index-servicos {
  background: #0d0d0d;
  padding-top: 50px;
  padding-bottom: 50px;
}
body main section.index-servicos a.main-cta.outline {
  border-color: white;
  color: white;
}
body main section.index-servicos:not(.interna) .main-title h3 {
  color: white;
}
body main section.index-servicos:not(.interna) .main-title h2 {
  background: var(--dourado, linear-gradient(90deg, #ddc05c 0%, #f7f098 54.69%, #ca993c 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body main section.index-servicos .text-center {
  margin-top: 20px;
}
body main section.index-servicos.interna {
  margin: 0;
  padding: 50px 0;
  background: none;
}
body main section.index-servicos .owl-carousel .owl-nav:not(.disabled) {
  display: flex;
}
body main section.index-servicos .owl-carousel .owl-nav:not(.disabled) svg rect {
  stroke: white;
}
body main section.index-servicos .owl-carousel .owl-nav:not(.disabled) svg path {
  fill: white;
}
@media (max-width: 991px) {
  body main section.index-servicos {
    margin-top: 0;
    padding: 30px 0 !important;
  }
}
body main section.index-videos {
  background-image: url("../image/bg-duvidas.png");
  background-size: cover;
  padding: 50px 0;
}
body main section.index-videos .owl-carousel .owl-nav:not(.disabled) {
  display: flex;
}
body main section.index-videos .video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 365px;
  border-radius: 10px;
  width: 100%;
  background-size: cover;
  background-position: center;
  font-size: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}
body main section.index-videos .video i {
  position: relative;
  z-index: 1;
}
body main section.index-videos .video:hover:before {
  opacity: 0.5;
}
body main section.index-videos .video:before {
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  content: "";
  position: absolute;
  transition: 0.5s all;
}
@media (max-width: 991px) {
  body main section.index-videos {
    padding: 30px 0;
  }
  body main section.index-videos .video {
    height: 250px;
  }
}
body main section.index-porque {
  background-image: url("../image/bg-porque.png");
  padding: 70px 0;
  background-size: cover;
}
body main section.index-porque .main-title {
  margin-bottom: 0;
}
body main section.index-porque .box {
  border: 1px solid #cecece;
  background: #4e0000;
  text-align: center;
  height: 100%;
  transition: 0.5s all;
}
body main section.index-porque .box:hover {
  background-color: white;
}
body main section.index-porque .box:hover p {
  color: #050e2c;
}
body main section.index-porque .box img {
  margin-top: -20px;
  margin-bottom: 20px;
}
body main section.index-porque .box p {
  margin-bottom: 0;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 10px 20px 10px;
}
body main section.index-porque .box p strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
@media (max-width: 991px) {
  body main section.index-porque {
    padding: 30px 0;
  }
  body main section.index-porque .main-title {
    margin-bottom: 10px;
  }
  body main section.index-porque .box p {
    font-size: 15px;
  }
}
body main section.index-video {
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body main section.index-video:before {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.7;
  z-index: 1;
  content: "";
}
body main section.index-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
}
body main section.index-video .container {
  position: relative;
  z-index: 2;
}
body main section.index-video h2 {
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 21.027px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}
body main section.index-video .item {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
body main section.index-video .item span {
  color: #fff;
  font-family: Sora;
  font-size: 23.021px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.index-video .item h3 {
  margin-bottom: 0;
  color: #fff;
  font-family: Cinzel;
  font-size: 91.532px;
  background: var(--dourado, linear-gradient(90deg, #ddc05c 0%, #f7f098 54.69%, #ca993c 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.index-video {
    height: auto;
    padding: 30px 0;
  }
  body main section.index-video h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  body main section.index-video .item h3 {
    font-size: 50px;
  }
  body main section.index-video .item span {
    font-size: 16px;
  }
}
body main section.index-contato {
  background-image: url("../image/bg-contato.png");
  background-size: cover;
  background-position: bottom right;
  padding: 50px 0;
}
body main section.index-contato .box-form {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8);
  padding: 50px 40px;
}
body main section.index-contato .box-form label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
body main section.index-contato .box-form input,
body main section.index-contato .box-form textarea {
  padding: 15px 20px;
  resize: none;
  margin-bottom: 20px;
}
body main section.index-contato h2 {
  color: #232323;
  font-family: Sora;
  font-size: 28.331px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
body main section.index-contato h2 strong {
  color: #a37825;
  font-weight: 700;
}
body main section.index-contato ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
body main section.index-contato ol li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}
body main section.index-contato ol li::before {
  position: absolute;
  left: 0;
  background-color: #4e0000;
  top: calc(50% - 25px);
  content: counter(list-item);
  color: white;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
body main section.index-contato h3 {
  margin-bottom: 0;
  color: #050e2c;
  font-family: Sora;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.index-contato {
    padding-top: 30px;
    background: #fafafa;
  }
  body main section.index-contato .main-cta.whatsapp {
    padding-inline: 20px;
  }
  body main section.index-contato .box-form {
    padding: 20px;
  }
  body main section.index-contato .box-form label {
    font-size: 16px;
  }
  body main section.index-contato .box-form input,
  body main section.index-contato .box-form textarea {
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  body main section.index-contato h2 {
    font-size: 18px;
  }
  body main section.index-contato h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  body main section.index-contato ol li {
    margin-bottom: 20px;
  }
}
body main section.index-duvidas {
  padding: 50px 0;
}
body main section.index-duvidas .duvida {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  margin-bottom: 25px;
}
body main section.index-duvidas .duvida:last-child {
  margin-bottom: 0;
}
body main section.index-duvidas .duvida a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
body main section.index-duvidas .duvida a span {
  color: #050e2c;
  font-family: Sora;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}
body main section.index-duvidas .duvida .resposta {
  padding-top: 35px;
}
body main section.index-duvidas .duvida .resposta p {
  color: #050e2c;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  body main section.index-duvidas {
    padding: 30px 0;
  }
  body main section.index-duvidas .duvida {
    padding: 30px;
  }
  body main section.index-duvidas .duvida a span {
    font-size: 18px;
  }
  body main section.index-duvidas .duvida .resposta {
    padding-top: 20px;
  }
  body main section.index-duvidas .duvida .resposta p {
    font-size: 15px;
  }
}
body main section.index-sobre {
  padding: 60px 0 30px 0;
  background-image: url("../image/bg-sobre.png");
  background-size: cover;
}
body main section.index-sobre .owl-carousel .owl-nav {
  right: auto;
  left: -80px;
  top: 50%;
}
body main section.index-sobre .owl-carousel .owl-nav svg rect {
  stroke: white;
}
body main section.index-sobre .owl-carousel .owl-nav svg path {
  fill: white;
}
body main section.index-sobre .foto {
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 5px solid #620000;
}
body main section.index-sobre .out-fotos {
  margin-top: -100px;
}
body main section.index-sobre a.main-cta.outline {
  border-color: white;
  color: white;
  padding-inline: 50px;
}
body main section.index-sobre h2 {
  color: #f1e47c;
  font-family: Cinzel;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
body main section.index-sobre p {
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.index-sobre .boxes {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
body main section.index-sobre .boxes .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 20px 10px;
  border-radius: 8px;
  background: rgba(11, 0, 0, 0.5);
}
@media (max-width: 991px) {
  body main section.index-sobre .foto {
    height: 250px;
  }
  body main section.index-sobre .boxes {
    gap: 15px;
    flex-flow: column;
  }
  body main section.index-sobre .boxes .item {
    width: auto;
    font-size: 16px;
  }
  body main section.index-sobre h2 {
    font-size: 20px;
  }
  body main section.index-sobre p {
    font-size: 15px;
  }
}
body main section.index-social {
  padding: 60px 0;
}
body main section.index-social .main-cta {
  padding-inline: 25px;
  display: inline-flex;
  margin-top: 30px;
  align-items: center;
  gap: 15px;
}
body main section.index-social .link {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #303030;
  font-family: Sora;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.index-social {
    padding: 30px 0;
  }
  body main section.index-social .link {
    font-size: 18px;
  }
}
body main section.index-defesa {
  background-image: url("../image/bg-defesa.png");
  background-size: cover;
  background-position: right;
  padding: 45px 0;
}
body main section.index-defesa h2 {
  margin-bottom: 0;
  color: #4e0000;
  font-family: Sora;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
body main section.index-defesa h2 strong {
  font-weight: 700;
}
body main section.index-defesa .item {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: center;
}
body main section.index-defesa .item .text {
  color: #303030;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.index-defesa .item .text strong {
  display: block;
  color: #a37825;
  font-family: Cinzel;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}
body main section.index-defesa .item .icon {
  width: 100px;
  padding: 10px;
  height: 100px;
  border-radius: 20px;
  flex-shrink: 0;
  background: #600;
}
body main section.index-defesa .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  body main section.index-defesa {
    background-position: left;
    padding: 30px 0;
  }
  body main section.index-defesa h2 {
    text-align: center;
    font-size: 22px;
  }
  body main section.index-defesa .item {
    margin-top: 20px;
    gap: 20px;
  }
  body main section.index-defesa .item .text {
    font-size: 15px;
  }
  body main section.index-defesa .item .text strong {
    font-size: 16px;
  }
  body main section.index-defesa .item .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 5px;
  }
}
body main section.sobre-valores {
  padding-bottom: 50px;
}
body main section.sobre-valores svg {
  margin: 40px 0;
}
body main section.sobre-valores .texto {
  color: #050e2c;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.sobre-valores .itens {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.sobre-valores .itens span {
  color: #303030;
  font-family: Cinzel;
  font-size: 30px;
  font-style: normal;
  line-height: normal;
  font-weight: 700;
  display: block;
}
body main section.sobre-valores .itens .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #4e0000;
  margin-bottom: 25px;
}
body main section.sobre-valores .itens .icon i {
  font-size: 30px;
  color: white;
}
body main section.sobre-valores .box {
  border-radius: 20px;
  background: #4e0000;
  box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.25);
  padding: 40px 25px;
  margin-bottom: 70px;
}
body main section.sobre-valores .box .item {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
body main section.sobre-valores .box .item span {
  color: #fff;
  font-family: Sora;
  font-size: 23.021px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.sobre-valores .box .item h3 {
  margin-bottom: 0;
  background: var(--dourado, linear-gradient(90deg, #ddc05c 0%, #f7f098 54.69%, #ca993c 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  font-family: Cinzel;
  font-size: 91.532px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.sobre-valores {
    padding: 30px 0;
  }
  body main section.sobre-valores .texto {
    font-size: 15px;
  }
  body main section.sobre-valores svg {
    margin: 30px 0;
  }
  body main section.sobre-valores .itens {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  body main section.sobre-valores .itens span {
    font-size: 18px;
  }
  body main section.sobre-valores .itens .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  body main section.sobre-valores .itens .icon i {
    font-size: 15px;
  }
  body main section.sobre-valores .box {
    margin-top: 0;
    margin-bottom: 30px;
  }
  body main section.sobre-valores .box .item h3 {
    font-size: 50px;
  }
  body main section.sobre-valores .box .item span {
    font-size: 16px;
  }
}
body main section.sobre {
  padding: 50px 0;
}
body main section.sobre .logo {
  margin-bottom: 40px;
}
body main section.sobre .foto {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 5px solid #620000;
}
body main section.sobre p,
body main section.sobre li {
  color: #303030;
  font-family: Sora;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  body main section.sobre {
    text-align: center;
    padding: 20px 0;
    padding-bottom: 0;
  }
  body main section.sobre .out-fotos {
    margin-top: 20px;
  }
  body main section.sobre .foto {
    height: 250px;
  }
  body main section.sobre p,
  body main section.sobre li {
    text-align: left;
    font-size: 16px;
  }
  body main section.sobre .logo {
    margin-bottom: 30px;
    width: 200px;
  }
}
body main section.servicos-interna {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 36.56%, #d6d5fd 123.46%);
}
body main section.servicos-interna .box {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
  margin-top: 30px;
}
body main section.servicos-interna .box .title {
  color: #050e2c;
  font-family: Sora;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 25px */
}
body main section.servicos-interna .img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
  margin-bottom: 40px;
}
body main section.servicos-interna .texto p,
body main section.servicos-interna .texto ul,
body main section.servicos-interna .texto ol {
  color: #1e1e1e;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.servicos-interna {
    padding: 30px 0;
  }
  body main section.servicos-interna .box {
    flex-flow: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  body main section.servicos-interna .box .title {
    font-size: 20px;
    text-align: center;
  }
  body main section.servicos-interna .img {
    height: 250px;
    margin-bottom: 20px;
  }
  body main section.servicos-interna .texto p,
  body main section.servicos-interna .texto ul,
  body main section.servicos-interna .texto ol {
    font-size: 15px;
  }
}
body main section.servicos-form {
  border-radius: 5px;
  background: #4e0000;
  padding: 35px;
  position: sticky;
  top: 20px;
}
body main section.servicos-form .topo h3 {
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
body main section.servicos-form .topo p {
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
body main section.servicos-form label {
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
body main section.servicos-form textarea {
  height: 100px;
}
body main section.servicos-form input,
body main section.servicos-form textarea {
  display: block;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 15px 20px;
  color: black;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 15px;
}
body main section.servicos-form input::-moz-placeholder, body main section.servicos-form textarea::-moz-placeholder {
  color: #7d7d7d;
}
body main section.servicos-form input::placeholder,
body main section.servicos-form textarea::placeholder {
  color: #7d7d7d;
}
@media (max-width: 991px) {
  body main section.servicos-form {
    padding: 25px;
  }
  body main section.servicos-form .topo h3 {
    font-size: 18px;
  }
  body main section.servicos-form .topo p {
    font-size: 16px;
  }
  body main section.servicos-form input,
  body main section.servicos-form textarea {
    padding: 10px 15px;
  }
  body main section.servicos-form label,
  body main section.servicos-form input,
  body main section.servicos-form textarea {
    font-size: 15px;
  }
}
body main section.contato {
  background: #f4f4f4;
  padding: 60px 0;
}
body main section.contato .box-canais {
  border-radius: 0 8px 8px 0;
  background: #4e0000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
}
body main section.contato .box-canais h2 {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  font-family: Sora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
}
body main section.contato .box-canais iframe {
  width: 100%;
  height: 330px;
  border-radius: 5px;
  margin-bottom: 25px;
}
body main section.contato .box-canais .unidades {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 0 70px;
}
body main section.contato .box-canais .unidades strong {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
body main section.contato .box-canais .unidades strong svg {
  flex-shrink: 0;
}
body main section.contato .box-canais .unidades span {
  display: block;
  word-wrap: break-word;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.contato .box-form {
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 8px 16px 0px rgba(0, 0, 0, 0.25);
  padding: 45px 35px;
}
body main section.contato .box-form h2 {
  color: #041731;
  text-align: center;
  font-family: Sora;
  font-size: 27.13px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 32.556px */
  margin-bottom: 30px;
}
body main section.contato .box-form label {
  display: block;
  color: #4e0000;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
  margin-bottom: 15px;
}
body main section.contato .box-form input[type=text],
body main section.contato .box-form textarea,
body main section.contato .box-form select {
  margin-bottom: 20px;
  resize: none;
  padding: 15px 20px;
}
body main section.contato .box-form .form-check label {
  color: #4e0000;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
body main section.contato .numeros .item {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
body main section.contato .numeros .item span {
  color: #303030;
  font-family: Sora;
  font-size: 23.021px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body main section.contato .numeros .item h3 {
  margin-bottom: 0;
  color: #d2af53;
  font-family: Cinzel;
  font-size: 91.532px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  body main section.contato {
    padding: 30px 0;
  }
  body main section.contato .box-canais {
    margin-top: 30px;
    padding: 30px 20px;
  }
  body main section.contato .box-canais h2 {
    font-size: 20px;
  }
  body main section.contato .box-canais iframe {
    height: 200px;
  }
  body main section.contato .box-canais .unidades {
    gap: 10px;
    padding: 0;
  }
  body main section.contato .box-canais .unidades svg {
    height: 20px;
  }
  body main section.contato .box-canais .unidades strong {
    gap: 10px;
    font-size: 15px;
  }
  body main section.contato .box-canais .unidades span {
    font-size: 15px;
  }
  body main section.contato .box-form {
    padding: 30px 20px;
  }
  body main section.contato .box-form h2 {
    font-size: 20px;
  }
  body main section.contato .box-form label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  body main section.contato .box-form input[type=text],
  body main section.contato .box-form textarea {
    padding: 10px 15px;
  }
  body main section.contato .box-form .form-check label {
    font-size: 15px;
  }
  body main section.contato .numeros .item h3 {
    font-size: 50px;
  }
  body main section.contato .numeros .item span {
    font-size: 16px;
  }
}
body footer section.barra-fixa {
  position: fixed;
  bottom: -1px;
  background: white;
  border-top: 2px solid #4e0000;
  width: 100%;
  padding: 10px 80px 15px 80px;
  z-index: 600;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  body footer section.barra-fixa {
    display: none;
  }
}
body footer section.barra-fixa .main-phone {
  color: #050e2c;
}
body footer section.barra-fixa .main-phone svg {
  fill: #050e2c;
}
body footer section.barra-fixa .main-phone svg path {
  fill: #050e2c;
}
body footer section.barra-fixa.oculta {
  bottom: -100px;
}
body footer section.barra-fixa-mobile {
  background-color: #4e0000;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  padding: 5px 0;
  border-top: 2px solid #4e0000;
  transition: 0.3s all;
}
body footer section.barra-fixa-mobile .list-itens {
  display: flex;
  justify-content: space-around;
  font-size: 30px;
}
body footer section.barra-fixa-mobile .list-itens a {
  color: white;
}
body footer section.barra-fixa-mobile .list-itens a i {
  color: white;
}
@media screen and (min-width: 992px) {
  body footer section.barra-fixa-mobile {
    display: none;
  }
}
body footer section.footer {
  background-image: url("../image/bg-footer.png");
  background-size: cover;
  padding: 40px 0;
}
body footer section.footer h3 {
  color: #fff;
  font-family: Sora;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
body footer section.footer .links a {
  display: block;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
body footer section.footer iframe {
  border-radius: 20px;
  width: 100%;
  height: 350px;
}
body footer section.footer .phones {
  display: flex;
  gap: 20px;
  flex-flow: column;
}
body footer section.footer .social {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
@media (max-width: 991px) {
  body footer section.footer {
    padding: 30px 0;
    text-align: center;
  }
  body footer section.footer h3 {
    font-size: 18px;
  }
  body footer section.footer .links a {
    font-size: 15px;
  }
  body footer section.footer iframe {
    height: 250px;
  }
  body footer section.footer .phones a {
    justify-content: center;
    text-align: left;
  }
  body footer section.footer .social {
    justify-content: center;
    margin-bottom: 20px;
  }
  body footer section.footer .logo {
    width: 200px;
  }
}
body footer section.footer-copy {
  background: #4e0000;
  padding: 25px 0;
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 75px;
}
body footer section.footer-copy a {
  color: #fff;
}
@media (max-width: 991px) {
  body footer section.footer-copy {
    font-size: 15px;
    margin-bottom: 56px;
  }
}
body footer section.botao_whatsapp {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 610;
  bottom: 40px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  right: 30px;
  border-radius: 75px;
  transition: all 0.5s;
}
body footer section.botao_whatsapp i.fab.fa-whatsapp {
  color: white;
  font-size: 46px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  body footer section.botao_whatsapp.scroll {
    bottom: 100px;
  }
}
body footer section.botao_whatsapp:hover {
  background-color: #1f9249;
}
@media screen and (max-width: 991px) {
  body footer section.botao_whatsapp {
    bottom: 75px;
    right: 10px;
  }
}
body footer .menu-mobile {
  background-size: cover;
  background-color: rgba(78, 0, 0, 0.91);
  position: fixed;
  top: 0px;
  left: -100%;
  width: 90%;
  height: 100%;
  overflow: auto;
  z-index: 998;
  padding-bottom: 65px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
body footer .menu-mobile.aberto {
  left: 0px;
}
body footer .menu-mobile .fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  font-weight: 700;
  color: white;
}
body footer .menu-mobile .logo {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}
body footer .menu-mobile .logo img {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 20px;
}
body footer .menu-mobile ul {
  padding: 0px;
}
body footer .menu-mobile ul li {
  list-style: none;
  margin: 5px;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
body footer .menu-mobile ul li:last-child {
  border-bottom: none;
}
body footer .menu-mobile ul li a {
  color: white;
  font-size: 16px;
  padding: 0 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
body footer .menu-mobile ul.blue li {
  background-color: #013d60;
  margin: 0 0 2px 0;
  padding: 0;
}
body footer .menu-mobile ul.blue li a {
  color: white;
  font-size: 13px;
  line-height: 1;
  padding: 0 0;
}