/*
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: #5F5F5F;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -0.28px;
}

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: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    top: -8000px;
    left: 0;
    right: inherit;
    z-index: 1001;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.6s ease;
    background-color: #231926E3;
}

#a-mb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 26px;
}

.sidebar .engloba-sidebar {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 67px;
}

.sidebar .engloba-sidebar ul {
    text-align: center;
}

.sidebar .engloba-sidebar ul li {
    margin-bottom: 16px;
}

.sidebar .engloba-sidebar ul li a {
    color: #FAF6F0;
    line-height: 31px;
    letter-spacing: -0.41px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
}

.sidebar-bg {
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: rgb(0 0 0);
    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 {
    top: 0;
}

.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 {}

.grade-efeito {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 10;
    display: flex;
    display: none;
}

.grade-efeito:after {
    content: '';
    width: 266px;
    height: 100%;
    background: rgb(235 69 72 / 89%);
    display: flex;
}

.grade-efeito:before {
    content: '';
    width: 670px;
    height: 100%;
    background: rgb(34 38 52 / 91%);
    display: flex;
}

.conteudo-banner {
    background-size: cover;
    height: 622px;
    display: flex;
    justify-content: center;
    width: 100%;
    /* padding-top: 36.5px; */
    position: relative;
    background-color: #F0E5D2;
    /* 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: 80%;
    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;
    margin-top: 116px;
}

.conteudo-banner .descricao .titulo {
    color: #FFFFFF;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    letter-spacing: 1px;
    margin-bottom: 6.23px;
    text-transform: uppercase;
}

.conteudo-banner .descricao .subtitulo {
    color: #FFFFFF;
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 80px;
    display: inline-block;
    flex-direction: row;
    letter-spacing: 3px;
    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 {
    margin-top: 70px;
}

.btn-saiba a {
    width: 219px;
    height: 55px;
    border: 1px solid #EB4548;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB4548;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    -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: #EB4548;
    color: #fff;
    -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: #9c9c9c;
    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 {
    text-align: center;
    display: flex!important;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    right: 62px;
}

.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;
}