/*
Reseta nossa pagina dos estilos padroes do navegador
reset */

body {
  font-size: 16px;
}

input[type="text"] {
  font-size: inherit;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

root {
  display: block;
}

* {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

input,
textarea,
select {
  outline: none;
}

/* Estilos loading email */

#loadingEmail {
  position: fixed;
  top: -150px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  z-index: 2000;
  background-color: #2e282a;
  font: 14px "ralewaybold";
  color: #dadada;
  padding: 10px 30px;
  border-radius: 50px;
}

#loadingEmail.active {
  top: 5px;
  left: 50%;
}

#loadingEmail img {
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin-right: 20px;
}

#loadingEmail p {
  line-height: 23px;
  font-size: 13px;
  color: #949494;
}

/* fim reset */

/* grides */

#pagina {
  width: 100%;
  display: block;
  overflow: hidden;
}

#miolo {
  width: 100%;
  display: block;
  position: relative;
}

.wrap {
  /* padrao de largura dos site, matem o conteudo centralizado e com tamanho de 940px largura */
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 76px 0;
  width: 82.9%;
  flex-direction: column;
}

#topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.
/* alinhamento
  Mantem a quantidade de box independente do tamnaho do pai, quantidade de acordo com a numeracao depois do x limtado a 6 box
  */

.col-full {
  width: 100%;
}

.col-x2 {
  width: 50%;
}

.col-x3 {
  width: 33%;
}

.col-x4 {
  width: 25%;
}

.col-x5 {
  width: 20%;
}

.col-x6 {
  width: 16.65%;
}

[class*="col-"] {
  display: inline-flex;
}

[class*="box-"] {
  position: relative;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.67%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3%;
}

.col-8 {
  width: 66.7%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.28%;
}

.col-11 {
  width: 91.7%;
}

.col-12 {
  width: 100%;
}

.col-inline {
  /* funciona como um float, mas esse e bom para deixar responsivo OBS: evite usar muito float, a menos que seja nescessÃƒÂ¡rio */
  display: inline-flex;
  position: relative;
  flex-direction: column;
}

.content {
  /* centraliza os itens verticalmente*/
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
}

.btn {
  width: 100%;
  justify-content: center;
  display: flex;
}

.esq {
  float: left;
}

.dir {
  float: right;
}

/* fim alinhamento */

/* estilizacao das fontes */

p {
  /* padrao para toda tag p do site */
  line-height: 22px;
  font-size: 14px;
  color: #707070;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 30px;
}

b,
strong {
  /* padrao para toda tag strong do site */
  font-family: "PT Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.28px;
}

@font-face {
  font-family: "fontello";
  src: url("../fontello/fontello.eot?7977416");
  src: url("../fontello/fontello.eot?7977416#iefix") format("embedded-opentype"),
    url("../fontello/fontello.woff?7977416") format("woff"), url("../fontello/fontello.ttf?7977416") format("truetype"),
    url("../fontello/fontello.svg?7977416#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon-text {
  font-family: "fontello";
}

/* guarda a fonte com os icones de fonte */

/* fim estilizacao das fontes */

/* estilos padrao */

html,
body {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  font-size: 16px;
}

.link-full {
  /* aplicada na tag a para que o link ocupe todo o box */
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.trans-fast {
  /* aplica a transicao no objeto, usado muito nos elementos que tem hover */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.trans-slow {
  /* aplica a transicao no objeto, usado muito nos elementos que tem hover */
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.radius-full {
  /* deixa o objeto redondo, lembrando que o objeto ja tem que esta com tamnho definido */
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.radius-med {
  /* deixa o objeto com bordas arredondada, usado muito nos botoes e inputs*/
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.radius-min {
  /* deixa o objeto com bordas um pouco arredondada, usado muito nas imagens e box*/
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

/* Sidebar */

.sidebar {
  width: 1176px;
  height: 143px;
  display: block;
  position: fixed;
  top: 161px;
  left: -8000px;
  right: inherit;
  z-index: 2000;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  background-color: #ffffff;
  border-right: 5px solid #b8202e;
}

#a-mb-close {
  color: #707070;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-size: 27px;
  position: absolute;
  top: -58px;
  right: 800px;
  transform: scaleX(2.5);
}

.sidebar .engloba-sidebar {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.sidebar .engloba-sidebar ul {
  text-align: center;
  display: flex;
  gap: 0 70px;
  justify-content: space-between;
}

.sidebar .engloba-sidebar ul li {
}

.sidebar .engloba-sidebar ul li a {
  color: #707070;
  line-height: 31px;
  letter-spacing: 2.04px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.sidebar-bg {
  display: none;
  height: 100vh;
  width: 100vw;
  background-color: rgb(1 1 1 / 15%);
  position: fixed;
  top: 0;
  z-index: 1001;
}

.sidebar .logo-side {
  margin: 0 auto;
  display: table;
  width: 149px;
  margin-bottom: 22.38px;
}

.sidebar .logo-side img {
  width: 100%;
  filter: brightness(10) saturate(0.1) contrast(10);
}

.sidebar.aberto {
  left: 0;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.sidebar .inside {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow-y: auto;
}

.fundo-sidebar {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0.7;
  background: #000;
}

.engloba-boto-sidebar {
  margin-top: 34.65px;
}

.engloba-boto-sidebar a {
  margin-bottom: 29.72px;
  display: block;
}

.engloba-boto-sidebar .btn-especialista {
  margin: 0 auto;
}

/* estilo accordion */

.aba_accordion {
  display: none;
}

/* padrao banner */

#banner {
}

#banner .conteudo-banner:after {
  content: "";
  width: 100%;
  height: 136.74px;
  background-image: url(../images/mascara-bann.svg);
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.conteudo-banner {
  background-size: cover;
  height: 622px;
  display: flex;
  justify-content: center;
  width: 100%;
  /* padding-top: 36.5px; */
  position: relative;
  background-color: #f5f5f5;
  /* align-items: flex-end; */
  background-position: center;
  background-repeat: no-repeat;
  /* padding-top: 36.5px; */
  width: 100%;
  z-index: 100;
  position: relative;
}

.conteudo-banner .conteudo-banner-interno {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: flex-start; */
  width: 100%;
  max-width: 82.9%;
  z-index: 100;
  position: relative;
}

.conteudo-banner .content {
  height: 100%;
  max-width: 81%;
  margin: 0 auto;
}

.conteudo-banner .descricao {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  height: 100%;
  z-index: 100;
  position: relative;
}

.eng-titulo-descricao {
  display: flex;
  flex-direction: column;
  z-index: 100;
  position: relative;
  width: 384px;
}
.eng-titulo-descricao:after {
  content: "";
  width: 81px;
  height: 10px;
  background: #707070;
  opacity: 0.2;
  margin-top: 55px;
}
.eng-galeria-bann {
  display: flex;
  position: absolute;
  right: 0;
  width: 722px;
  height: 100%;
  /* flex-direction: column; */
  flex-wrap: nowrap;
  /* z-index: 1000; */
}
.separacao {
  display: flex;
  flex-direction: column;
}
.eng-galeria-bann .image-galeria-bann {
  background-size: contain;

  background-position: center;

  background-repeat: no-repeat;

  display: flex;

  position: absolute;

  filter: grayscale(100%);
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(1) {
  width: 359px;
  height: 58.2vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(2) {
  width: 359px;
  height: calc(100% - 308px);
  background-size: cover;
  left: 0;
  z-index: 101;
  bottom: -76px;
  background-position: top center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(1).efeito-bann {
  opacity: 1;

  -webkit-transition: all 1s ease;

  -moz-transition: all 1s ease;

  -ms-transition: all 1s ease;

  -o-transition: all 1s ease;

  transition: all 1s ease;
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(2).efeito-bann {
  opacity: 1;

  -webkit-transition: all 2s ease;

  -moz-transition: all 2s ease;

  -ms-transition: all 2s ease;

  -o-transition: all 2s ease;

  transition: all 2s ease;
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(3).efeito-bann {
  opacity: 1;

  -webkit-transition: all 3s ease;

  -moz-transition: all 3s ease;

  -ms-transition: all 3s ease;

  -o-transition: all 3s ease;

  transition: all 3s ease;
}
.eng-galeria-bann .image-galeria-bann:nth-of-type(3) {
  width: 361px;
  height: 115vh;
  background-size: cover;
  right: 0;
  top: 0;
  z-index: 0;
  background-position: top center;
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.conteudo-banner .descricao .titulo {
  color: #707070;
  font-size: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 55px;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  letter-spacing: 27px;
  text-transform: uppercase;
}
.conteudo-banner .descricao .terceiro-titulo {
  color: #707070;

  font-size: 20px;

  font-family: "Poppins", sans-serif;

  font-weight: 400;

  letter-spacing: 2px;

  height: 32px;
}
.conteudo-banner .descricao .subtitulo {
  color: #707070;
  font-size: 67px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 93px;
  display: inline-block;
  flex-direction: row;
  letter-spacing: 3.35px;
  width: 638px;
}

.conteudo-banner .descricao .subtitulo b {
  display: inline-block;
  color: #ffffff;
  font-size: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: inherit;
}

.btn-saiba {
  position: absolute;
  bottom: 33px;
  z-index: 101;
  transform: translate(152%, 0);
  /* left: 50%; */
}

.btn-saiba a {
  width: 177px;
  height: 157px;
  border: 1px solid rgb(184 32 46 / 92%);
  background: rgb(184 32 46 / 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 0.9em;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
  letter-spacing: 21px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn-saiba:hover a {
  background: transparent;
  color: #b8202e;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.carrossel-banner .owl-nav {
  display: none;
  width: 66px;
  position: absolute;
  bottom: 49px;
  left: 51px;
  margin-top: 150px;
}

.carrossel-banner .owl-nav .owl-prev {
  margin-bottom: 1px;
}

.carrossel-banner .owl-nav .owl-prev:before {
  content: "";
  color: #b5b7be;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 11px solid #fff;
}

.carrossel-banner .owl-nav .owl-next:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.carrossel-banner .owl-nav .owl-prev,
.carrossel-banner .owl-nav .owl-next {
  font-size: 0 !important;
  color: #b8202e;
  width: 34px;
  border: 1px solid #2d81cc !important;
  height: 34px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #2d81cc !important;
  border-radius: 100%;
}

.carrossel-banner .owl-nav .owl-prev:hover,
.carrossel-banner .owl-nav .owl-next:hover {
  background: #b5b7be;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carrossel-banner .owl-nav .owl-prev:hover:before,
.carrossel-banner .owl-nav .owl-next:hover:before {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carrossel-banner .owl-dots {
}

.carrossel-banner .owl-dots .owl-dot {
  width: 21px;
  height: 21px;
  margin-bottom: 16px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 100%;
  left: inherit;
  top: inherit;
}

.carrossel-banner .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-banner .owl-dots .owl-dot.active,
.carrosel-plantas .owl-dots .owl-dot:hover {
  background-color: #cb2314;
}
