@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,500;1,500&display=swap');

@font-face {
  font-family: "GothamBlack";
  src: url("../fonts/GothamBlack.eot");
  src: url("../fonts/GothamBlack.eot?#iefix") format("embedded-opentype"),
    url("../fonts/GothamBlack.woff2") format("woff2"),
    url("../fonts/GothamBlack.woff") format("woff"),
    url("../fonts/GothamBlack.ttf") format("truetype"),
    url("../fonts/GothamBlack.svg#GothamBlack") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family-Montserrat: "Montserrat", serif;
  --font-family-Open-sans: "Open Sans", sans-serif;
  --font-family-Lato: "Lato", sans-serif;
  --font-family-GothamBlack: "GothamBlack";
  --font-color-green-light: #73c92d;
  --font-color-green-dark: #063520;
  --font-color-white: #fff;
  --font-color-gray: #243153;
  --bg-color-green: #214910;
  --font-color-green-bold: #4b5952;
  --bg-color-green-light: #73c92d;
  --bg-color-green-dark: #063520;
  --bg-color-green-bold: #4b5952;
  --bg-color-white: #fff;
  --bg-color-gray: #243153;
  --border-color-gray: #666;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  line-height: 1.2;
}

/*Geral*/
a {
  cursor: pointer;
}

h1 {
  font-family: var(--font-family-Montserrat);
  font-weight: bold;
  line-height: 1.3;
}

h2 {
  font-family: var(--font-family-Montserrat);
  line-height: 1.3;
  font-size: 23px
}

h3 {
  font-family: var(--font-family-Montserrat);
  line-height: 1;
  font-size: 18px;
}

p {
  font-family: var(--font-family-Lato);
  font-weight: 400;
}

.text-left {
  text-align: left;
}

.bg-green {
  background: var(--bg-color-green);
}

.bg-green-light {
  background: var(--bg-color-green-light);
}

.bg-duas-cores {
  background: linear-gradient(to right, #bfbbb2  50%,  var(--bg-color-green) 50%);
}

.bg-duas-cores .container-fluid{
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.bg-duas-cores .row {
    --bs-gutter-x: 0;
}

.bg-image {
  background: url(../images/banner_contato_01.png) no-repeat center center;
  background-size: cover;
}

.bg-duas-cores .box-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 620px;
}
.bg-duas-cores .box-bt a {
  font-family: var(--font-family-Montserrat);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 15px 50px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.bg-duas-cores .box-bt a:hover {
  background-color: var(--bg-color-green-dark);
}

.bg-duas-cores .box-bt a::before {
  content: '';
  border: 2px solid var(--bg-color-green-light);
  position: absolute;
  width: 262px;
  height: 43px;
  margin-left: -40px;
  transition: all 0.5s ease-out;
}

.bg-duas-cores .box-bt a:hover::before {
  border: 2px solid var(--bg-color-green-dark);
}

.hidden {
  display: none;
}

/*Cor do Scroll*/
body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-color-green-dark);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--bg-color-green-light);
  border-radius: 0px;
  border: 2px solid var(--bg-color-green-light);
}

.text-color-green {
    color: #73c82c;
}

.text-color-white {
  color: var(--font-color-white);
}

.text-color-gray {
  color: #838080;
}

.text-justify {
  text-align: justify;
}

.text-right {
  text-align: right;
}

.button {
  font-family: var(--font-family-Montserrat);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 15px 50px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.button:hover {
  background-color: var(--bg-color-green-dark);
}

.button::before {
  content: '';
  border: 2px solid var(--bg-color-green-light);
  position: absolute;
  width: 200px;
  height: 43px;
  margin-left: -40px;
  transition: all 0.5s ease-out;
}

.button:hover::before {
  border: 2px solid var(--bg-color-green-dark);
}

.button.green {
  background-color: var(--bg-color-green-dark);
  color: var(--font-color-white) !important;
}

.button.green::before {
  border: 2px solid var(--bg-color-green-dark);
  width: 197px;
}

.button.green:hover::before {
  border: 2px solid var(--bg-color-green-light);
}

.button.green:hover {
  background-color: var(--bg-color-green-light);
}

.button.white {
  font-size: 14px;
  background-color: var(--bg-color-white);
  font-family: var(--font-family-Open-sans);
  color: var(--font-color-gray) !important;
  font-weight: 800;
  padding: 15px;
  padding-right: 56px;
}

.button.white::after {
  content: "";
  background: url(../images/seta-botao.png) no-repeat;
  background-position-y: 0px;
  width: 40px;
  height: 40px;
  margin-left: 9px;
  position: absolute;
  margin-top: -7px;
}

.modal-custom {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
}
.modal-custom.servico .content {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 0px;
    flex-direction: column-reverse;
}
.modal-custom.servico img,
.modal-content-custom img {
      width: 100%;
    height: 250px;
    object-fit: contain;
}
.modal-custom.servico p {
  width: 50%;
  width: 100%;
}
.modal-content-custom {
    background: #fff;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 8px;
    min-width: 300px;
    max-width: 90vw;
    max-width: 550px;
    position: relative;
    text-align: center;
    height: 57vw;
    height: 600px;
    overflow: auto;
}
.modal-content-custom label {
    display: table;
    line-height: 1;
    margin-bottom: 10px;
}

.modal-content-custom p span {
    float: left;
    margin: 5px;
    margin-top: 0;
}
.close-modal {
        position: sticky;
    top: 0px;
    right: 3px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: center;
    background: #fff;
    width: 40px;
    float: right;
    align-items: center;
    border-radius: 100%;
    height: 40px;
    padding-bottom: 5px;
}

.margin-top-sm {
  margin-top: 1rem;
}

.margin-top-md {
  margin-top: 3rem;
}

.margin-top-lg {
  margin-top: 5rem;
}

.margin-top-xl {
  margin-top: 7rem;
}

.margin-top-bottom-md {
  margin: 3rem 0;
}

.margin-top-bottom-lg {
  margin: 5rem 0;
}

.margin-top-bottom-xl {
  margin: 7rem 0;
}

.padding-top-lg {
  padding-top: 5rem;
}

.padding-top-bottom-md {
  padding: 3rem 0;
}

.padding-top-bottom-lg {
  padding: 5rem 0;
}

/*Pop Up*/
.html-popup-hidden {
  overflow: hidden;
}

.html-popup-auto {
  overflow-y: auto;
}

#alertaPopUp {
  position: absolute;
  z-index: 99999;
}
#alertaPopUp p {
  font-size: 14px;
}
#alertaPopUp h2,
#alertaPopUp span {
  font-family: var(--font-family-p);
}
#alertaPopUp .popupFixed {
  position: fixed;
  background: rgb(82 82 82/90%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#alertaPopUp .boxPopUp {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 1100;
  _filter: alpha(opacity=90);
  -moz-opacity: 0.95;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .box {
  padding: 0px;
  /* background: #fff; */
  max-width: 520px;
  width: 100%;
  /* height: min-content; */
  position: relative;
}
#alertaPopUp .boxPopUp .topPop {
  width: 100%;
  background: #009b75;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .topPop span {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 17px;
  padding: 7px 3px 6px 9px;
  font-family: var(--font-family-Montserrat);
}
#alertaPopUp .boxPopUp .btClose {
  cursor: pointer;
  color: #fff;
  padding: 20px;
  font-family: arial;
  font-size: 19px;
  text-align: center;
  background: #b8aa9d;
}
#alertaPopUp .boxPopUp .btClose:hover {
  background: #fff;
  color: #b8aa9d;
}
#alertaPopUp .boxPopUp .mainPop {
  padding: 0px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* height: calc(629px + 10vw);
  height: 664px; */
  padding-bottom: 20px;
  overflow: hidden;
  /* background: url(../images/bg-club.webp) no-repeat top center; */
  background-size: contain;
  background: #fff;
}
#alertaPopUp .boxPopUp .box,
#alertaPopUp .popupFixed {
  opacity: 0;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
#alertaPopUp .boxPopUp .box.visible,
#alertaPopUp .popupFixed.visible {
  opacity: 1;
}

/*Resetar Bootstrap*/
.navbar-toggler,
.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}

.navbar-expand-xl .navbar-collapse {
  justify-content: center;
  align-items: center;
}

#nav .navbar-nav {
  align-items: center;
}

#nav {
  background-color: #fff;
}

#nav .button {
  margin-left: 15px;
}

#nav .nav-link {
  font-family: var(--font-family-Montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 0.3;
  color: var(--font-color-green-light);
  padding: 15px 15px;
  transition: all 0.5s ease-out;
  text-align: center;
    line-height: 1;
}

#nav .nav-link:hover {
  color: var(--font-color-green-dark);
}

#nav .nav-link.button {
  line-height: 1;
  margin-top: 0px;
}

#nav .nav-link.active {
}

.navbar-brand {
  margin: 0;
  margin: 0 25px;
}

#home .nav-link.home {
  border: 2px solid var(--border-color-gray);
}
#saude .nav-link.saude {
  border: 2px solid var(--border-color-gray);
}
#auto .nav-link.auto {
  border: 2px solid var(--border-color-gray);
}
#vida .nav-link.vida {
  border: 2px solid var(--border-color-gray);
}
#consorcio .nav-link.consorcio {
  border: 2px solid var(--border-color-gray);
}
#responsabilidade .nav-link.responsabilidade {
  border: 2px solid var(--border-color-gray);
}

#carouselInterval {
    margin-top: 91px;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
  /* height:350px;overflow: hidden; display: flex; align-items: center; padding-top: 40px; */
}

#carouselInterval .carousel-item .container {
  position: relative;
}

#carouselInterval .carousel-caption {
  position: absolute;
  right: 0;
  bottom: 6vw;
  left: 2%;
  padding-top: 1.25rem;
  color: var(--font-color-white);
  text-align: left;
  width: 100%;
  max-width: 540px;
  height: 26vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;

  margin: 0 auto;
  text-align: center;
}

#carouselInterval .carousel-caption .box-bt {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5%;
}

#carouselInterval .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063520'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  padding: 10px;
  border-radius: 6px;
  background-color: var(--bg-color-white);
}

#carouselInterval .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063520'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  padding: 10px;
  border-radius: 6px;
  background-color: var(--bg-color-white);
}

#carouselInterval h2 {
  font-size: 32px;
}

#carouselInterval h2 span{
  font-size: 40px;
  color: var(--font-color-green-light);
}

#carouselInterval p {
  font-size: 14px;
}

.box.orcamento {
  margin: 50px 0;
}

.box.compromisso {
  padding: 0 50px;
  margin: 50px 0;
}

.box.compromisso p {
  font-weight: 400;
  font-size: 18px;
}

.content p {
  font-weight: 400;
  font-size: 18px;
}

.box.compromisso .box-itens {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.box.compromisso .box-itens h3,
.box.compromisso .box-itens p {
  margin-bottom: 0;
}

.section-logistica h2 {
  padding: 20px 0;
}

.section-logistica h2 a {
  color: #fff;
  text-decoration: none;
}

.section-logistica h2 a:hover {
  color: #f45620;
}

.section-logistica .box {
  background-color: #00593f;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.section-logistica .box.um {
  background-color: #63a917;
}

.section-logistica .box.dois {
  background-color: #72af30;
}

.section-logistica .box.tres {
  background-color: #80b744;
}

.section-logistica .box.quatro {
  background-color: #8ebf59;
}

.section-logistica .box.cinco {
  background-color: #9cc76e;
}

.section-logistica .box.seis {
  background-color: #aacf83;
}

.section-logistica .row>* {
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-top: -10px;
}

.section-logistica span {
  margin-bottom: 10px;
  display: block;
}

.section-logistica span,
.section-logistica h3 {
  color: #fff;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.section-logistica p {
  text-align: center;
  padding: 0 15px;
  color: #fff;
}

.section-logistica p.text-color-black {
  color: #000;
}

.section-logistica .box-infografico {
  background-color: #fff;
  margin: auto;
  display: none;
  margin-top: -8px;
}

.section-banner-interno .bg {
  background: url(../images/banner-interno.jpg) center center;
  width: 100%;
  height: 530px;
}

.section-banner-interno .bg h2 {
  color: #fff;
}

.section-banner-interno .bg h2 b {
  color: #e76124;
}

.section-banner-interno h2 {
  text-align: left;
  padding-top: 9rem;
  font-size: 34px;
  display: table;
  margin: 0 auto;
  padding-right: 63px;
}

.section-numeros .col-md-6 {
  height: 625px;
  overflow: hidden;
}

.section-numeros p {
  font-size: 17px;
}

.section-numeros p.visualizar {
  font-size: 22px;
}

.section-numeros .row>* {
  flex-shrink: 0;
  padding-right: calc(var(--bs-gutter-x)* 0);
  padding-left: calc(var(--bs-gutter-x)* 0);
  margin-top: 0;
}

.section-numeros .item-quadrado {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.section-numeros .item-quadrado {
  width: 50%;
  height: 313px;
  padding: 15px;
}

.section-numeros .item-quadrado.licenca {
  background: url(../images/licenca.jpg) top right;
    background-size: cover;
}

.section-numeros .item-quadrado.profissionais {
  background: url(../images/profissionais.jpg) top right;
    background-size: cover;
    background-position-y: -50px;
}

.section-numeros .item-quadrado.green {
  background-color: var(--bg-color-green);
}

.section-numeros .item-quadrado.gray {
  background-color: #d0d0d0;
}

.section-numeros .box-quadrado {
  display: flex;
}

.section-numeros .bg {
      background-image: url(../images/bg-numeros.jpg);
    background-size: cover;
    width: 100%;
    padding: 45px 50px;
    background-blend-mode: overlay;
    background-color: #7a5930;
    /* height: 69vh; */
}

.section-numeros .box {
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
}

.section-numeros .box .item {
  width: 70%;
  border: 1px solid #fff;
  padding: 0 10px;
  min-width: 295px;
}

.section-numeros .box .item .statistic {
  font-size: 76px;
  color: #fff;
  font-family: var(--font-family-Montserrat);
  letter-spacing: -1px;
  font-weight: 400;
}

.section-numeros .box .item .statistic-text {
  font-size: 60px;
  color: #fff;
  font-family: var(--font-family-Montserrat);
  letter-spacing: -1px;
  font-weight: 400;
}

.section-numeros .box .item .statistic:before {
  content: '+';
}

.section-numeros .button {
  font-family: var(--font-family-Montserrat);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 15px 50px;
}

.section-numeros .button:hover {
  background-color: var(--bg-color-green-dark);
}


.section-numeros .bg .content {
  width: 70%;
}

.section-servicos {
            padding: 50px 0;
            padding-bottom: 70px;
        }

    .owl-stage {
        display: flex;
        align-items: center;
    }
    .custom-carousel .item {
        margin: 10px;
        text-align: center;
        border-radius: 10px;
        transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        height:22vw;
    }

    .custom-carousel .owl-item.active.center {
        transform: scale(1.3);
        transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .custom-carousel .owl-item.active.center img {
        opacity: 1;
    }

    .custom-carousel .owl-item.active img {
        opacity: .7;
    }

    .owl-nav {
        display: flex;
        position: absolute;
        justify-content: space-between;
        width: 96%;
        left: 2%;
        align-items: center;
        top: 50%;
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .owl-nav button span {
        font-size: 43px;
        background: #063520;
        padding: 10px;
        border-radius: 100%;
        /* width: 50px; */
        /* height: 50px; */
        /* display: block; */
        align-items: center;
        justify-content: center;
        color: #fff;
        margin: 0;
        transition: transform 0.5s  cubic-bezier(0.4, 0.0, 0.2, 1);
        line-height: 19px;
        text-align: center;
        padding-top: 15px;
        aspect-ratio: 1 / 1;
    }

    .owl-nav button span:hover {
        transform: scale(1.1);
        transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .owl-item a {
        color: #063520;
        text-decoration: none;
    }

    .owl-item .item:hover a {
        color: #000;
    }

    .figure-mask {
        height:16vw;
        overflow:hidden;
        margin-bottom:5px;
    }

@media (max-width: 1741px) {
  .section-numeros .bg .content {
    width: 80%;
  }
}

/* @media (max-width: 1563px) {
  .section-numeros .bg .content {
    width: 100%;
  }
  .section-numeros .box .item .statistic {
    font-size: 50px;
  }
  .section-numeros .box .item .statistic-text {
    font-size: 46px;
  }
  .section-numeros .item-quadrado {
    height: 289.4px;
  }
} */

@media (max-width: 1440px) {
  .section-numeros .col-lg-6 {
    width: 100%;
  }
  .section-numeros .box {
    flex-wrap: wrap;
  }
  .section-numeros .box {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .section-numeros .box .item {
    width: 25%;
    min-width: 185px;
  } 
  .section-numeros .box .item .statistic,
  .section-numeros .box .item .statistic-text {
    font-size: 38px;
  }
}

@media (max-width: 1141px) {
  .section-numeros .col-md-6 {
    width: 100%;
    height: auto;
  }
  .section-numeros .item-quadrado.profissionais {
    background-position-y: -30px;
  }
}

@media (max-width: 566px) {
  .section-numeros .bg .content {
        width: 100%;
    }
    .section-numeros .box .item {
        width: 100%;
    }
    .section-numeros .bg {
        height: auto;
    }
    .section-numeros .col-md-6 {
        height: auto;
        overflow: hidden;
    }
}

@media (max-width: 460px) {
  .section-numeros .box-quadrado {
    width: 100%;
    display: flex;
    flex-flow: column;
  }
  .section-numeros .box-quadrado.reverse {
    flex-flow: column-reverse;
  }
  .section-numeros .box-quadrado .item-quadrado {
    width: 100%;
  }
}

.section-depoimentos .box {
  display: flex;
  align-items: center;
  background-color: #f1eded;
  padding: 20px;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.section-depoimentos .box .item p.aspas {
  font-size: 68px;
  line-height: 0;
  margin-bottom: 0;
  margin-top: 33px;
  font-family: 'Lato';
}

.section-depoimentos .box .item p.autor {
  line-height: 0;
  margin-bottom: 0;
  margin-top: 33px;
  line-height: 1.3;
  color: #000;
  font-family: 'Lato';
}

.section-depoimentos .box .item p {
  color: #b5b0b0;
}

.quem-somos.porque h2 {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.quem-somos.porque h3 {
  font-size: 18px;
}

.quem-somos.porque img,
.quem-somos.porque h3,
.quem-somos.porque p {
  max-width: 320px;
  margin: 0 auto;
  display: table;
  width: 100%;
}

.quem-somos.porque p {
  margin-top: 10px;
  margin-bottom: 20px;
}

.quem-somos h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.quem-somos p {
  font-size: 18px;
}

.quem-somos img {
  margin-bottom: 8px !important;
}

.quem-somos.consorcio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

.quem-somos.vantagens .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
}

.quem-somos.vantagens h2 {
  text-align: center;
}

.quem-somos.vantagens h3 {
  font-size: 18px;
}

.quem-somos.vantagens .item .box {
  max-width: 210px;
}

.servicos.bg {
  background: url(../images/bg-servicos.jpg);
}

.servicos .box {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}

.servicos h2 {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.servicos p {
  font-size: 13px;
}

.servicos .button.white {
  font-size: 11px;
  padding: 15px;
  padding-right: 54px;
}

.servicos .button.white::after {
  margin-top: -9px;
}

.depoimentos h2 {
  font-size: 20px;
  font-family: var(--font-family-Montserrat);
  font-weight: bold;
  color: var(--font-color-green-bold);
}

.depoimentos p {
  font-size: 13px;
  color: var(--font-color-green-bold);
  margin: 0 auto;
  width: 90%;
  height: 14vh;
  overflow: auto;
}

.depoimentos .item {
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.depoimentos .item::after {
  content: "";
  background: url(../images/sombra.png) no-repeat center center;
  background-size: contain;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 40px;
  display: block;
}

.depoimentos .item .box {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 90%;
}

.depoimentos .avaliacao {
  font-family: var(--font-family-GothamBlack);
  border: 2px solid var(--bg-color-green-bold);
  border-radius: 50px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 1.1;
}

.depoimentos .avaliacao::after {
  color: var(--bg-color-green-bold);
}

.depoimentos .stars1::after {
  content: "★";
}

.depoimentos .stars2::after {
  content: "★★";
}

.depoimentos .stars3::after {
  content: "★★★";
}

.depoimentos .stars4::after {
  content: "★★★★";
}

.depoimentos .stars5::after {
  content: "★★★★★";
}

.solicitar-cotacao h2 {
  font-size: 47px;
  line-height: 0.9;
  text-align: center;
  color: var(--font-color-green-dark);
}

.solicitar-cotacao .button {
  font-size: 30px;
  line-height: 0.9;
  text-align: center;
  color: var(--font-color-green-dark);
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  display: table;
  margin-top: 0.8rem;
}

.faq h2 {
  font-size: 35px;
  text-align: center;
  color: var(--font-color-green-dark);
  margin-bottom: 40px;
}

.faq h3 button {
  font-size: 25px;
  color: var(--font-color-green-dark) !important;
  font-weight: 500;
}

.faq p {
  font-size: 20px;
  color: var(--font-color-green-dark) !important;
  font-weight: 300;
}

.faq button.accordion-,
.faq .accordion-button:not(.collapsed) {
  background: none;
  outline: none;
}

.faq h3 .accordion-button:not(.collapsed) {
  font-weight: bold;
}

.faq h3 .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-item {
  border: none;
}

.faq .accordion-item .accordion-header .accordion-button {
  border-bottom: 2px solid var(--bg-color-green-dark);
}

.faq .accordion-item .accordion-header .accordion-button.collapsed {
  border-bottom: 2px solid var(--bg-color-green-light);
  border-radius: 0;
}

.faq .accordion-button::after {
  content: "+";
  background-image: none;
  transition: none;
  font-weight: normal;
  text-align: right;
  font-family: var(--font-family-Open-sans);
  font-size: 26px;
}

.faq .accordion-button:not(.collapsed)::after {
  content: "x";
  transform: none;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--bg-color-green-light, var(--swiper-theme-color));
}

.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 16px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 16px)
  );
  background: var(--swiper-pagination-bullet-inactive-color, #daddfe);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(
    --swiper-pagination-bullet-inactive-color,
    var(--bg-color-green-dark)
  );
}

#footer {
  background-color: #333333;
}

#footer p {
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

#footer form {
  width: 100%;
  margin-top: 10px;
}

#footer a {
  text-decoration: none;
}

#footer a:hover {
  color: var(--bg-color-white);
}

#footer .copy {
  background-color: #242424;
  margin-top: 60px;
  padding: 20px 0;
  padding-top: 26px;
}

#footer .copy .redes {
  float: right;
}

.bt-whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 7px;
  right: 7px;
  transition: all 0.5s ease-out;
}

.bt-whatsapp:hover {
  transform: scale(1.1);
}

.header-form {
    display: flex;
    justify-content: space-between;
}

.header-form a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 23px;
}

form {
  width: 90%;
  margin: 0 auto;
}

form h2 {
  margin-bottom: 30px;
  font-weight: bold;
}

form .form-control {
  margin-bottom: 10px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 20px 10px;
  margin-bottom: 10px;
  background: #f5f5f5;
  border:none;
  color: #757575;
}

form button {
  font-family: var(--font-family-Montserrat);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 15px 30px;
  float: right;
}

form button:hover {
  background-color: var(--bg-color-green-dark);
}

.main-servicos .bg-color-green {
  background-color: var(--bg-color-green);
}

.main-servicos .bg-color-green .container-fluid.sem-margin {
  --bs-gutter-x: 0rem;
}

.main-servicos .bg-color-green .box-bt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: 320px;
}

.main-servicos .bg-color-green .box-bt.text {
    display: block;
    height: auto;
    margin-top: 30px;
}

.main-servicos .bg-color-green .box-bt a {
  font-family: var(--font-family-Montserrat);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 15px 50px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.main-servicos .bg-color-green .box-bt a:hover {
  background-color: var(--bg-color-green-dark);
}

.main-servicos .bg-color-green .box-bt a::before {
  content: '';
  border: 2px solid var(--bg-color-green-light);
  position: absolute;
  width: 295px;
  height: 43px;
  margin-left: -40px;
  transition: all 0.5s ease-out;
}

.main-servicos .bg-color-green .box-bt a:hover::before {
  border: 2px solid var(--bg-color-green-dark);
}

.main-servicos .box {
    padding: 0 50px;
    margin: 0;
    height: 320px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-servicos .box h2,
.main-servicos .box p {
  margin-bottom: 0;
}

.main-servicos .flex {
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #f45620;
    border-radius: 20px;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.main-servicos .flex p {
  color: #fff;
  padding: 20px;
}

.main-servicos label {
    display: table;
    line-height: 1;
    margin: 9px 0;
}

.main-servicos p span {
    float: left;
    margin: 5px;
    margin-top: 0;
}

.main-servicos .flex img {
      width: 50%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    object-position: top;
}

.main-servicos .box-end {
    background: #214910;
    margin-top: 80px;
    padding: 60px;
    color: #fff;
    background-image: url(../images/equipe.jpg);
    background-blend-mode: overlay;
}

.main-servicos .box-end h3 {
  font-size: 23px;
}

.main-sobre .box-jornada {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.main-sobre .box-jornada .ano {
  background-color: #f45620;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: -2px;
  position: relative;
}

.main-sobre .box-jornada .ano span {
  border: 3px solid #f45620;
  position: absolute;
  height: 120px;
  left: 50%;
  z-index: -1;
}

.main-sobre .row-objetivo {
  display: flex;
  gap:15px;
}

.main-sobre .col-objetivo {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;  
  width:33%;
  box-shadow: 0px 0px 25px 0px rgba(151, 191, 30.000000000000032, .2784313725490196);
}

.main-sobre .col-objetivo img {
  margin: 0 auto;
  display: table;
  width: 50px;
  margin-bottom: 10px;
}

.main-sobre .col-objetivo p {
  color: #000;
}

.main-unidades .section-unidades h3 span {
    background: var(--bg-color-green);
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 10px;
    color: #fff;
}

@media (max-width: 1399px) {
  #nav .navbar-nav {
    padding-top: 15px;
  }
  #nav .nav-link {
    font-size: 16px;
  }
  /* #carouselInterval .carousel-caption {
    bottom: 2vw;
  } */
  /* #carouselInterval h2 {
    font-size: 36px;
  } */
  .servicos .box {
    gap: 15px;
  }
  .servicos .box img {
    max-width: 180px;
    width: 100%;
  }
}

@media (max-width: 1199px) {

  .navbar-brand.pc {
    display: none;
  }

  .navbar-brand.mobile {
    display: block !important;
  }

  #nav .button {
    margin-left: 0;
  }
  #nav .nav-link {
    line-height: 1;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
    display: table;
  }
  #carouselInterval p {
    display: none;
  }
}

@media (max-width: 991px) {
  /* #carouselInterval h2 {
    font-size: 28px;
  } */
  .quem-somos h2 {
    margin-top: 6px !important;
  }
  .quem-somos .row.flex {
    display: flex;
    flex-direction: column-reverse;
  }
  .bg-duas-cores {
    background: #fff;
  }
  .box.compromisso {
    padding: 50px 13vw;
    margin: 0;
  }
  #footer .col-lg-4 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  /* #carouselInterval .carousel-caption {
    bottom: 1vw;
    width: 70%;
    left: 40px;
  } */
  /* #carouselInterval h2 {
    font-size: 18px;
  } */
  #carouselInterval .button.white {
    font-size: 11px;
    margin-top: 0 !important;
  }
  #carouselInterval .button.white::after {
    margin-top: -9px;
  }
  #carouselInterval .carousel-control-prev {
    left: 5px;
  }
  #carouselInterval .carousel-control-next {
    right: 5px;
  }
  .custom-carousel .item {
    height: auto;
  }
  .figure-mask {
    height: 250px;
  }
  .custom-carousel .owl-item.active img {
    opacity: 1;
  }
  .modal-custom.servico .content {
    flex-flow: column-reverse;
    gap: 0;
  }
  .modal-custom.servico .content img,
  .modal-custom.servico .content p {
    width: 100%;
  }
  .quem-somos h2 {
    font-size: 14px;
  }
  .quem-somos h3 {
    font-size: 14px;
  }
  .quem-somos p {
    font-size: 14px;
  }
  .depoimentos .item::after {
    background-size: cover;
  }
  .depoimentos p {
    height: auto;
    overflow: inherit;
    padding-bottom: 15px;
  }
  .faq h2 {
    font-size: 23px;
  }
  .faq h3 button {
    font-size: 18px;
  }
  .faq p {
    font-size: 14px;
  }
  .solicitar-cotacao h2 {
    font-size: 23px;
  }
  .solicitar-cotacao h2 br {
    display: none;
  }
  .solicitar-cotacao .button {
    font-size: 16px;
    line-height: 1.2;
  }

  .main-servicos .flex {
    flex-flow: column-reverse;
  }

  .main-servicos .flex.reverse {
    flex-flow: column;
  }

  .main-servicos .flex img {
    width: 100%;
  }

  #footer p {
    font-size: 18px;
  }

  #footer .copy .redes {
    float: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

}

@media (max-width: 700px) {
  #nav .navbar-brand {
    width: 50%;
  }
  /* #carouselInterval .carousel-caption {
    display: block;
  }
  #carouselInterval .carousel-caption {
    position: relative;
    right: 0;
    left: 2%;
    padding-top: 0;
    color: var(--font-color-white);
    text-align: left;
    width: 100%;
    max-width: 540px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100% !important;
    left: 0 !important;
    margin-top: 80px !important;
    text-align: center;
  } */
  .carousel-item {
    background: #c7cfcd;    
  }
  .servicos .box {
    flex-flow: column;
  }
  .servicos .box img {
    max-width: inherit;
  }

  .main-servicos .box {
    flex-flow: column;
    padding-top: 40px;
    height: auto;
    padding-bottom: 50px;
}

}

@media (max-width: 346px) {
  #carouselInterval {
    margin-top: 31vw;
  }
  .main-servicos p span {
    margin-bottom: 34px;
  } 
  /* .section {
    margin-top: 13vw !important;
  } */
}

.box-cookies.hide {
  display: flex;
}

.box-cookies {
  position: fixed; 
  opacity:1;
   background-color: rgb(33 73 16 / 90%);
   border-top: 1px solid #fff;
   bottom: 0;
   width: 100%;
   color: #fff;
   z-index: 999999;
   display: flex;
   gap: 10px;
   justify-content: center;
   align-items: center;
   padding: 3rem 1rem 3rem 1rem;
   box-sizing: border-box;
}

@media (max-width: 767px) {
  .box-cookies {
    flex-flow: column;
    text-align: center;
  }
  .box-cookies p,
  .box-cookies a {
    font-size: 14px;
    line-height: 16px;
  }
  .box-cookies .bt-aceitar {
    border-radius: 10px;
    padding: 6px 30px;
    font-size: 14px;
  }
}

.box-cookies p {
  font-size: 18px !important;
  line-height: 26px;
  margin-bottom: 0;
  color: #fff;
  opacity: 1;
}

.box-cookies a {
  color: #73c92d;
}


.box-cookies p.active {
  padding: 10px;
}

.box-cookies .bt-aceitar {
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  padding: 10px 50px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: var(--font-family-p);
  margin-top: 0rem;
  display: inline-block;
  font-size: 18px;
}

.box-cookies .bt-aceitar:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #000 !important;
}