@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Raleway:wght@700&family=Poppins:wght@300;400;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-Raleway: "Raleway", sans-serif;
  --font-family-Open-sans: "Open Sans", sans-serif;
  --font-family-Poppins: "Poppins", sans-serif;
  --font-family-GothamBlack: "GothamBlack";
  --font-color-green-light: #259a76;
  --font-color-green-dark: #063520;
  --font-color-white: #fff;
  --font-color-gray: #243153;
  --font-color-green-bold: #4b5952;
  --bg-color-green-light: #259a76;
  --bg-color-green-dark: #063520;
  --bg-color-green-bold: #4b5952;
  --bg-color-white: #fff;
  --bg-color-gray: #243153;
}

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-Raleway);
  font-weight: bold;
  line-height: 1;
}

h2 {
  font-family: var(--font-family-Raleway);
  font-weight: bold;
  line-height: 1;
}

h3 {
  font-family: var(--font-family-Raleway);
  font-weight: bold;
  line-height: 1;
}

p {
  font-family: var(--font-family-Poppins);
  font-weight: 500;
  text-align: justify;
}

.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-dark {
  color: var(--font-color-green-dark);
}

.text-color-white {
  color: var(--font-color-white);
}

.button {
  font-family: var(--font-family-Raleway);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  border-radius: 10px;
  line-height: 1;
  padding: 0.5em;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

.button.green {
  background-color: var(--bg-color-green-dark);
  color: var(--font-color-white) !important;
}

.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;
}

.button:hover {
  background-color: var(--bg-color-green-light);
}

.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-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-Raleway);
}
#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: flex-end;
  align-items: center;
}

#nav {
  background-color: #fff;
}

#nav .button {
  margin-left: 15px;
}

#nav .nav-link {
  font-family: var(--font-family-Raleway);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 0.3;
  color: var(--font-color-green-light);
  margin-top: 6px;
  transition: all 0.5s ease-out;
}

#nav .nav-link:hover {
  color: var(--font-color-green-dark);
}

#nav .nav-link.button {
  line-height: 1;
  margin-top: 0px;
}

#nav .nav-link.active {
}

#home .nav-link.home {
  border-bottom: 2px solid var(--bg-color-green-dark);
}
#saude .nav-link.saude {
  border-bottom: 2px solid var(--bg-color-green-dark);
}
#auto .nav-link.auto {
  border-bottom: 2px solid var(--bg-color-green-dark);
}
#vida .nav-link.vida {
  border-bottom: 2px solid var(--bg-color-green-dark);
}
#consorcio .nav-link.consorcio {
  border-bottom: 2px solid var(--bg-color-green-dark);
}
#responsabilidade .nav-link.responsabilidade {
  border-bottom: 2px solid var(--bg-color-green-dark);
}

#carouselInterval {
  margin-top: 109px;
}

#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: flex-start;
  justify-content: center;
  flex-flow: column;
}

.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: 40px;
}

#carouselInterval p {
  font-size: 14px;
}

.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-Raleway);
  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-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 p {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.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);
}

form {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

form .form-control {
  margin-bottom: 10px;
}

form button {
  font-family: var(--font-family-Raleway);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  border-radius: 12px;
  color: var(--font-color-white);
  background-color: var(--bg-color-green-dark);
  margin-top: 6px;
  transition: all 0.5s ease-out;
  border: none;
  padding: 5px 15px;
}

form button:hover {
  background-color: var(--bg-color-green-light);
}

@media (max-width: 1599px) {
  #carouselInterval .carousel-caption {
    bottom: 4vw;
  }
}

@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) {
  #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;
  }
}

@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;
  }
  .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;
  }
  #footer p {
    font-size: 18px;
  }
}

@media (max-width: 546px) {
  #nav .navbar-brand {
    width: 50%;
  }
  #carouselInterval .carousel-caption {
    display: block;
  }
  #carouselInterval .carousel-caption {
    position: relative;
    right: 0;
    /* bottom: 6vw; */
    left: 2%;
    padding-top: 0;
    color: var(--font-color-white);
    text-align: left;
    width: 100%;
    max-width: 540px;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
    background: #00593f;
    width: 100% !important;
    left: 0 !important;
    margin-top: 32px !important;
  }
  .carousel-item {
    background: #00593f;
  }
  .servicos .box {
    flex-flow: column;
  }
  .servicos .box img {
    max-width: inherit;
  }
}

@media (max-width: 346px) {
  #carouselInterval {
    margin-top: 31vw;
  }
  /* .section {
    margin-top: 13vw !important;
  } */
}
