/*
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;
}


/* grides */

#pagina {
    width: 100%;
    display: block;
    overflow: hidden;
}

#miolo {
    width: 100%;
    display: block;
    position: relative;
    /* overflow: hidden; */
}

.wrap {
    /* padrao de largura dos site, matem o conteudo centralizado e com tamanho de 940px largura */
    display: flex;
    margin: 0 auto;
    position: relative;
    padding: 81.35px 0;
    width: 90%;
    flex-direction: column;
    align-items: center;
}

#topo {
    width: 100%;
    position: fixed;
    z-index: 101;
}
#topo.flutuante{
    background: #00373D;
    height: 66px;
}
.
/* 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 {
    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 {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

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: 201;
}

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

img {
    object-fit: cover;
}


/* Sidebar */

.sidebar {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    bottom: -8000px;
    z-index: 2000;
    -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: #00373D;
}

#a-mb-close {
    position: absolute;
    color: #fff;
    font-weight: 400;
    top: 32px;
    right: 24px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 19px;
}

.sidebar .engloba-sidebar {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 35px;
}

.sidebar-bg {
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: hsl(210deg 35% 13% / 56%);
    /* background: transparent; */
    position: fixed;
    top: 0;
    z-index: 1001;
}

.sidebar .logo-side {
    margin: 0 auto;
    display: table;
    width: 149px;
    margin-bottom: 22.38px;
}

.titulo-sidebar {
    color: #FFFFFF;
    font-size: 25px;
    margin-bottom: 41px;
    font-family: 'Tinos', serif;
    font-weight: 400;
}

.sidebar .logo-side img {
    width: 100%;
    filter: brightness(10) saturate(0.1) contrast(10);
}

.sidebar.aberto {
    bottom: 0;
}

.sidebar .inside {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow-y: auto;
}

.engloba-nav-sidebar {
    margin-top: 33px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.logo-sidebar {
    width: 197.38px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.logo-sidebar img {
    width: 198px;
    object-fit: contain;
}

.nav-sidebar {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
}

.nav-sidebar ul {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    display: flex;
    text-align: center;
}

.nav-sidebar ul li {
    border-bottom: 1px solid rgb(233 233 233 / 16%);
    text-align: center;
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.nav-sidebar ul li a {
    color: #ffff;
}

.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: 29px;
    position: absolute;
    bottom: 0;
    left: 128px;
}

.engloba-boto-sidebar .rede-footer {
    display: flex;
    gap: 21px;
    justify-content: center;
}

.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 */

.engloba-texto-banner {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
    /* max-width: 914px; */
    margin: 0 auto;
    padding-left: 115.45px;
    padding-right: 102.45px;
}
.engloba-texto-banner .descricao-banner{
    margin-top: 45px;
    z-index: 100;
    position: relative;
    line-height: 52px;
    display: flex;
    flex-direction: column;
}
.engloba-texto-banner .titulo {
    color: #F7F4F0;
    font-size: 17px;
    letter-spacing: -0.31px;
    font-weight: 300;
    line-height: 25px;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 1px 1px 2px #00000029;
    margin-bottom: 5px;
}

.engloba-texto-banner .subtitulo {
    color: #F7F4F0;
    font-size: 59px;
    letter-spacing: -1.09px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 46px;
    font-weight: 700;
    margin-left: -3px;
}
.engloba-texto-banner .btn-banner{
    margin-top: 55px;
}
.engloba-texto-banner .btn-banner a{
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    width: 145px;
    height: 33px;
    border-radius: 9px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
}
.engloba-texto-banner .btn-banner:hover a{
    background:#FFFFFF;
    color: #1FB989;
}

.conteudo-banner .conteudo-banner-interno {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 66%;
    z-index: 100;
    position: relative;
}

.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;
    z-index: 100;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 119px;
    left: 50%;
    gap: 0 10px;
    margin-left: -47px;
}

.carrossel-banner .owl-dots .owl-dot {
    width: 15px;
    height: 13px;
    margin-bottom: 16px;
    background: #fff;
    display: inline-block;
    position: relative;
    font-size: 0;
    border-radius: 3px;
}

.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: #535C56;
    border-color: #535C56;
}


/* Efeito rolage */


/* Safari 4.0 - 8.0 */

@-webkit-keyframes example {
    0% {
        magin-top: 0;
    }
    100% {
        margin-top: 9px;
    }
}


/* Standard syntax */

@keyframes example {
    0% {
        magin-top: 0;
    }
    100% {
        margin-top: 9px;
    }
}

.sidebar .btn-group {
    position: relative;
    font-size: 0;
    vertical-align: middle;
}

.btn-contato-sidebar {
    margin-top: 43px;
}

.btn-contato-sidebar a {
    border: 1px solid rgb(252 246 232 / 45%);
    width: 186.39px;
    height: 39.6px;
    border-radius: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FCF6E8;
    font-size: 12px;
}

.btn-contato-sidebar:hover a {
    background: rgb(212 168 140);
    color: #fff;
}

.rede-sidebar {
    margin-top: 36px;
    display: flex;
    gap: 0 26px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 33px;
    left: 0px;
}

.rede-sidebar a {
    filter: brightness(10) saturate(0.1) contrast(10);
}

.sidebar .dropdown {
    color: #FCF6E8;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 13px;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.sidebar .dropdown b {
    display: block;
    color: #FCF6E8;
    font-size: 13px;
    letter-spacing: 1.43px;
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    font-style: italic;
    text-align: left;
}

.sidebar .btn-group+.sidebar .btn-group {
    margin-left: 16px;
}

.sidebar .btn-group>.dropdown-menu {
    list-style-type: none;
    z-index: 1000;
    display: none;
    /* position: absolute; */
    /* top: 100%; */
    /* left: 0px; */
    padding: 0px 0px;
    margin-top: 9px;
    min-width: 132px;
    font-size: 14px;
    background-color: #d4a88c;
}

.sidebar .btn-group>.dropdown-menu li a {
    display: block;
    padding: 9px 12px;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    color: #fff;
}

.icones-flutuante {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 25px;
}

.icones-flutuante img {
    width: 50px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@font-face {
    font-family: 'Ubuntu-Medium';
    src: url('../css/fontes/ubuntu/Ubuntu-Medium.eot');
    src: url('../css/fontes/ubuntu/Ubuntu-Medium.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/ubuntu/Ubuntu-Medium.woff2') format('woff2'),
        url('../css/fontes/ubuntu/Ubuntu-Medium.woff') format('woff'),
        url('../css/fontes/ubuntu/Ubuntu-Medium.ttf') format('truetype'),
        url('../css/fontes/ubuntu/Ubuntu-Medium.svg#Ubuntu-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-Bold';
    src: url('../css/fontes/ubuntu/Ubuntu-Bold.eot');
    src: url('../css/fontes/ubuntu/Ubuntu-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/ubuntu/Ubuntu-Bold.woff2') format('woff2'),
        url('../css/fontes/ubuntu/Ubuntu-Bold.woff') format('woff'),
        url('../css/fontes/ubuntu/Ubuntu-Bold.ttf') format('truetype'),
        url('../css/fontes/ubuntu/Ubuntu-Bold.svg#Ubuntu-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-Regular';
    src: url('../css/fontes/ubuntu/Ubuntu-Regular.eot');
    src: url('../css/fontes/ubuntu/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/ubuntu/Ubuntu-Regular.woff2') format('woff2'),
        url('../css/fontes/ubuntu/Ubuntu-Regular.woff') format('woff'),
        url('../css/fontes/ubuntu/Ubuntu-Regular.ttf') format('truetype'),
        url('../css/fontes/ubuntu/Ubuntu-Regular.svg#Ubuntu-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-BoldItalic';
    src: url('../css/fontes/ubuntu/Ubuntu-BoldItalic.eot');
    src: url('../css/fontes/ubuntu/Ubuntu-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/ubuntu/Ubuntu-BoldItalic.woff2') format('woff2'),
        url('../css/fontes/ubuntu/Ubuntu-BoldItalic.woff') format('woff'),
        url('../css/fontes/ubuntu/Ubuntu-BoldItalic.ttf') format('truetype'),
        url('../css/fontes/ubuntu/Ubuntu-BoldItalic.svg#Ubuntu-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-Light';
    src: url('../css/fontes/ubuntu/Ubuntu-Light.eot');
    src: url('../css/fontes/ubuntu/Ubuntu-Light.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/ubuntu/Ubuntu-Light.woff2') format('woff2'),
        url('../css/fontes/ubuntu/Ubuntu-Light.woff') format('woff'),
        url('../css/fontes/ubuntu/Ubuntu-Light.ttf') format('truetype'),
        url('../css/fontes/ubuntu/Ubuntu-Light.svg#Ubuntu-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../css/fontes/Montserrat/Montserrat-Bold.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Bold.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Bold.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../css/fontes/Montserrat/Montserrat-SemiBold.eot');
    src: url('../css/fontes/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
          url('../css/fontes/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
          url('../css/fontes/Montserrat/Montserrat-SemiBold.woff') format('woff'),
          url('../css/fontes/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
          url('../css/fontes/Montserrat/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: 'Montserrat-Thin';
    src: url('../css/fontes/Montserrat/Montserrat-Thin.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Thin.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Thin.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Thin.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Thin.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Thin.svg#Montserrat-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat-ExtraLight';
    src: url('../css/fontes/Montserrat/Montserrat-ExtraLight.eot');
    src: url('../css/fontes/Montserrat/Montserrat-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-ExtraLight.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-ExtraLight.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-ExtraLight.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-ExtraLight.svg#Montserrat-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
  }
  
  
  @font-face {
    font-family: 'Montserrat-Medium';
    src: url('../css/fontes/Montserrat/Montserrat-Medium.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Medium.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Medium.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'Montserrat-Regular';
    src: url('../css/fontes/Montserrat/Montserrat-Regular.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Regular.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Regular.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat-Light';
    src: url('../css/fontes/Montserrat/Montserrat-Light.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Light.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Light.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight: 300;
    font-style: normal;
  }
  
  
  @font-face {
    font-family: 'Montserrat-Black';
    src: url('../css/fontes/Montserrat/Montserrat-Black.eot');
    src: url('../css/fontes/Montserrat/Montserrat-Black.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-Black.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-Black.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-Black.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-Black.svg#Montserrat-Black') format('svg');
    font-weight: 900;
    font-style: normal;
  }
  

  @font-face {
    font-family: 'Montserrat-ExtraBold';
    src: url('../css/fontes/Montserrat/Montserrat-ExtraBold.eot');
    src: url('../css/fontes/Montserrat/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/Montserrat/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../css/fontes/Montserrat/Montserrat-ExtraBold.woff') format('woff'),
        url('../css/fontes/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'),
        url('../css/fontes/Montserrat/Montserrat-ExtraBold.svg#Montserrat-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
  }
  @font-face {
    font-family: 'PTSans-BoldItalic';
    src: url('../css/fontes/pt/PTSans-BoldItalic.eot');
    src: url('../css/fontes/pt/PTSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/pt/PTSans-BoldItalic.woff2') format('woff2'),
        url('../css/fontes/pt/PTSans-BoldItalic.woff') format('woff'),
        url('../css/fontes/pt/PTSans-BoldItalic.ttf') format('truetype'),
        url('../css/fontes/pt/PTSans-BoldItalic.svg#PTSans-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PTSans-Italic';
    src: url('../css/fontes/pt/PTSans-Italic.eot');
    src: url('../css/fontes/pt/PTSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/pt/PTSans-Italic.woff2') format('woff2'),
        url('../css/fontes/pt/PTSans-Italic.woff') format('woff'),
        url('../css/fontes/pt/PTSans-Italic.ttf') format('truetype'),
        url('../css/fontes/pt/PTSans-Italic.svg#PTSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PTSans-Regular';
    src: url('../css/fontes/pt/PTSans-Regular.eot');
    src: url('../css/fontes/pt/PTSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/pt/PTSans-Regular.woff2') format('woff2'),
        url('../css/fontes/pt/PTSans-Regular.woff') format('woff'),
        url('../css/fontes/pt/PTSans-Regular.ttf') format('truetype'),
        url('../css/fontes/pt/PTSans-Regular.svg#PTSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PTSans-Bold';
    src: url('../css/fontes/pt/PTSans-Bold.eot');
    src: url('../css/fontes/pt/PTSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/pt/PTSans-Bold.woff2') format('woff2'),
        url('../css/fontes/pt/PTSans-Bold.woff') format('woff'),
        url('../css/fontes/pt/PTSans-Bold.ttf') format('truetype'),
        url('../css/fontes/pt/PTSans-Bold.svg#PTSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Rawline-Medium';
    src: url('../css/fontes/rawline/Rawline-Medium.eot');
    src: url('../css/fontes/rawline/Rawline-Medium.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Medium.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Medium.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Medium.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Medium.svg#Rawline-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-Light';
    src: url('../css/fontes/rawline/Rawline-Light.eot');
    src: url('../css/fontes/rawline/Rawline-Light.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Light.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Light.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Light.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Light.svg#Rawline-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-Regular';
    src: url('../css/fontes/rawline/Rawline-Regular.eot');
    src: url('../css/fontes/rawline/Rawline-Regular.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Regular.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Regular.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Regular.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Regular.svg#Rawline-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-ExtraBold';
    src: url('../css/fontes/rawline/Rawline-ExtraBold.eot');
    src: url('../css/fontes/rawline/Rawline-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-ExtraBold.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-ExtraBold.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-ExtraBold.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-ExtraBold.svg#Rawline-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-Bold';
    src: url('../css/fontes/rawline/Rawline-Bold.eot');
    src: url('../css/fontes/rawline/Rawline-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Bold.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Bold.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Bold.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Bold.svg#Rawline-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-SemiBold';
    src: url('../css/fontes/rawline/Rawline-SemiBold.eot');
    src: url('../css/fontes/rawline/Rawline-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-SemiBold.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-SemiBold.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-SemiBold.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-SemiBold.svg#Rawline-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-Thin';
    src: url('../css/fontes/rawline/Rawline-Thin.eot');
    src: url('../css/fontes/rawline/Rawline-Thin.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Thin.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Thin.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Thin.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Thin.svg#Rawline-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Rawline-ExtraLight';
    src: url('../css/fontes/rawline/Rawline-ExtraLight.eot');
    src: url('../css/fontes/rawline/Rawline-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-ExtraLight.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-ExtraLight.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-ExtraLight.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-ExtraLight.svg#Rawline-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline-Black';
    src: url('../css/fontes/rawline/Rawline-Black.eot');
    src: url('../css/fontes/rawline/Rawline-Black.eot?#iefix') format('embedded-opentype'),
        url('../css/fontes/rawline/Rawline-Black.woff2') format('woff2'),
        url('../css/fontes/rawline/Rawline-Black.woff') format('woff'),
        url('../css/fontes/rawline/Rawline-Black.ttf') format('truetype'),
        url('../css/fontes/rawline/Rawline-Black.svg#Rawline-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
.eng-flutuante {
  position: fixed;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  border-radius: 13px 0px 0px 13px;
  overflow: hidden;
}
.whatsFlutuante {
  width: 59px;
  height: 58px;
  /* UI Properties */
  background: #1fb989;
  opacity: 1;
  -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;
}
.whatsFlutuante a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.whatsFlutuante: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;
  background: #596a60;
}
.whatsFlutuante a img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.instaFlutuante {
  width: 59px;
  height: 58px;
  /* UI Properties */
  background: #1fb989c4;
  opacity: 1;
  -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;
}
.instaFlutuante a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.instaFlutuante: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;
  background: #596a60;
}
.instaFlutuante a img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.mgTop {
  z-index: 100;
  position: relative;
  margin-top: -41px;
}
#topo .wrap {
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 22px;
  width: 100%;
  padding-left: 115.45px;
  padding-right: 102.45px;
}
#topo.flutuante .wrap {
  padding: 0;
  height: 100%;
  width: 85%;
}
#topo .wrap .engloba-topo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

#topo .wrap .engloba-topo .logo {
  width: 213px;
  height: 37px;
  display: flex;
  align-items: center;
}
#topo.flutuante .wrap .engloba-topo .logo {
  width: 162px;
  height: 32px;
  align-items: center;
}
#topo.flutuante .wrap .engloba-topo .logo a{
  display: flex;
  align-items: center;
}
#topo.flutuante .wrap .engloba-topo .logo img {
  width: 161px;
  object-fit: contain;
}
#topo .wrap .engloba-topo .logo img {
  width: 100%;
  height: 100%;
}

#topo .wrap .engloba-topo .nav-bar {
  display: flex;
  height: 100%;
  align-items: center;
  border-bottom: 1px solid rgb(208 224 213 / 30%);
  position: relative;
  width: 75%;
  margin-left: 108.5px;
}
#topo.flutuante .wrap .engloba-topo .nav-bar {
  border: none;
}
#topo .wrap .engloba-topo .nav-bar ul {
  display: flex;
  height: 63.22px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-right: 39.05px;
}
#topo.flutuante .wrap .engloba-topo .nav-bar ul li:after {
  bottom: 0px;
  -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;
}
#topo .wrap .engloba-topo .nav-bar ul li:after {
  content: "";
  display: flex;
  position: absolute;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background: #5cb9bd;
  -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;
}

#topo .wrap .engloba-topo .nav-bar ul li:hover:after,
#topo .wrap .engloba-topo .nav-bar ul li.active:after {
  opacity: 1;
  -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;
}
.bnt-agendamento {
}
.bnt-agendamento a {
  width: 154px;
  height: 33px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5cb9bd;
  color: #ffffff;
  font-size: 14px;
  font-family: "Ubuntu-Bold";
  -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;
}
.bnt-agendamento:hover a {
  background: #5cb9bd;
  -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;
}
#topo .wrap .engloba-topo .nav-bar ul li {
  position: relative;
  height: 100%;
  align-items: center;
  display: flex;
}
#topo .wrap .engloba-topo .nav-bar ul li a {
  color: #fff;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: -0.26px;
  font-weight: 700;
  width: 100%;
}
.engloba-menu-mobile {
  margin-right: auto;
  display: none;
}
.botao-sidebar {
  width: 33px;
  height: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.botao-sidebar span {
  width: 100%;
  height: 1px;
  background: #fff;
  display: flex;
}
.image-1 {
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.image-1 img {
  margin: 0 15px;
}

.descricao {
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
}

#banner {
  /* overflow-x: hidden; */
}

/*inicio sec-impolnattes*/

.conteudo-implantes {
  display: flex;
  gap: 0 25px;
  width: 100%;
}
.btn-implante {
  margin-left: auto;
  margin-top: 41px;
}
.btn-implante a {
  color: #00373d;
  font-size: 18px;
  font-weight: 400;
  width: 145px;
  height: 33px;
  border-radius: 9px;
  border: 1px solid #00373d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
}
.btn-implante:hover a {
  color: #fff;
  background: #00373d;
}
.carrossel-implantes .owl-nav {
  display: none;
}
.carrossel-implantes .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  right: 200px;
  gap: 0 10px;
  bottom: -64px;
  width: auto;
  position: absolute;
}

.carrossel-implantes .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 0;
}

.carrossel-implantes .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-implantes .owl-dots .owl-dot.active,
.carrosel-implantes .owl-dots .owl-dot:hover {
  background-color: #00373d;
  border-color: #00373d;
}

.box-implante {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 237.09px;
  width: 100%;
  box-shadow: 1px 2px 2px #00000029;
  border-radius: 55px 0px 55px 0px;
  overflow: hidden;
}
.sec-implantes {
  z-index: 100;
  position: relative;
}
.sec-implantes .wrap {
  width: 74.5%;
  padding-bottom: 84.79px;
  padding-top: 36px;
}

.box-implante .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.box-implante:hover .image img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 100;
  -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;
}
.box-implante .image img {
  width: 100%;
  height: 100%;
  -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;
}

.box-implante .descricao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px 0;
  border-radius: 55px 0px 55px 0px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgb(112 163 130 / 5%), #00373d);
}

.box-implante .descricao .titulo {
  color: #ffff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  width: 84%;
  font-family: "Ubuntu", sans-serif;
}
.box-implante .descricao .titulo:before {
  content: "";
  width: 24px;
  height: 23px;
  border-radius: 0px 8px 0px 0px;
  background: #5cb9bd;
  display: flex;
  margin-right: 18.21px;
}

/*inicio sec-sorrisos*/
.sec-sorriso {
  position: relative;
}

.carrossel-sorriso .owl-item {
  z-index: 10;
}

.sec-sorriso .wrap {
  width: 100%;
  padding-top: 68.91px;
  padding-left: 102px;
  padding-right: 79px;
  padding-bottom: 48px;
}
.sec-sorriso .wrap .conteudo-sorriso {
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  display: flex;
}
.sec-sorriso .wrap .carrossel-sorriso {
  height: 558px;
}
.carrossel-sorriso .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: 0;
  gap: 0 10px;
  bottom: 41px;
  width: auto;
  position: absolute;
}
.carrossel-sorriso .owl-nav {
  display: none;
}
.carrossel-sorriso .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: rgb(184 183 184 / 30%);
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 0;
}

.carrossel-sorriso .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-sorriso .owl-dots .owl-dot.active,
.carrossel-sorriso .owl-dots .owl-dot:hover {
  background-color: #535c56;
  border-color: #535c56;
}
.ld1-2 {
  display: flex;
  flex-direction: column;
  width: 453px;
  height: 100%;
}

.sec-sorriso .conteudo-1 {
  width: 100%;
}

.sec-sorriso .conteudo-1 .titulo-2 {
  color: #00373d;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 5px;
  font-family: "Ubuntu", sans-serif;
}

.sec-sorriso .conteudo-1 .sub-titulo-2 {
  font-size: 35px;
  color: #00373d;
  font-family: "Ubuntu", sans-serif;
  line-height: 38px;
  font-weight: 300;
}

.sec-sorriso .conteudo-1 p {
  margin-top: 29.08px;
  color: #707070;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  width: 284px;
  font-family: "Ubuntu", sans-serif;
}

.curva-verdex {
  position: absolute;
  bottom: 94px;
  left: 94px;
  width: 872.9px;
  height: 302px;
  object-fit: contain;
}

/*lado direito*/

.ld2-2 {
  position: relative;
  /* width: 497px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.box-sorriso {
  height: 558px;
  width: 100%;
  /* background: #000; */
}

.box-sorriso .image-antes {
  position: absolute;
  bottom: 109px;
  height: 281px;
  width: 435.82px;
  z-index: 100;
  left: 0;
}
.box-sorriso .image-antes img {
  opacity: 1;
  -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;
}
.box-sorriso .image-antes:hover img {
  opacity: 0.9;
  z-index: 100;
  -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;
}
.box-sorriso .image-depois {
  position: absolute;
  right: 8px;
  z-index: 1;
  top: 0;
}
.box-sorriso .image-depois:hover img {
  opacity: 0.9;
  z-index: 100;
  -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;
}
.box-sorriso .image-depois img {
  width: 335.12px;
  height: 216px;
  opacity: 1;
  z-index: 100;
  object-fit: contain;
  -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;
}
.box-sorriso .image-antes img {
  width: 435.82px;
  height: 241px;
  border-radius: 55px 0 55px 0;
  overflow: hidden;
}
.btn-sorriso {
  position: absolute;
  bottom: 35px;
  z-index: 100;
  right: 13%;
  -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;
  display: none;
}
.btn-sorriso a {
  width: 145px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #596a60;
  border-radius: 9px;
  -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;
  color: #596a60;
}
.btn-sorriso:hover a {
  background: #596a60;
  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;
}
.box-sorriso .image-antes span {
  position: absolute;
  width: 435.82px;
  height: 241px;
  border-radius: 55px 0 55px 0;
  background: #fff;
  top: -23px;
  right: -17px;
  z-index: -1;
}

.box-sorriso .image-antes .img-4 {
  position: absolute;
  top: -175px;
  right: 0;
  z-index: -2;
  width: 379px;
  height: 209px;
}

.box-sorriso .image-antes:before {
  content: "";
  position: absolute;
  width: 435.82px;
  height: 241px;
  border-radius: 55px 0 55px 0;
  border: 1px solid #70a382;
  top: -12px;
  right: -29px;
  z-index: 100;
}

.box-flutuante {
  height: 215px;
  width: 397px;
  border: solid 1px #70a382;
  border-radius: 55px 0px;
}

.img-1 {
  position: absolute;
  bottom: 41px;
  left: -299px;
  height: 300px;
  width: 573px;
  background-size: contain;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
}

/*sec-equipe inicio*/

.sec-equipe {
  position: relative;
  background-color: #f0f0f0;
}
.sec-equipe .curva-equipe {
  position: absolute;
  right: -172px;
  bottom: 43px;
  width: 1352.83px;
}
.sec-equipe .box-equipe .equipe-img {
  height: 100%;
}
.sec-equipe .wrap {
  width: 100%;
  padding-top: 49px;
  padding-bottom: 79.77px;
  padding-left: 100px;
  padding-right: 100px;
}
.sec-equipe .wrap .engloba-titulo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.sec-equipe .wrap .engloba-titulo .equi-titulo {
  font-size: 42px;
  color: #00373d;
  font-weight: 400;
  letter-spacing: -0.83px;
  font-family: "Ubuntu", sans-serif;
}

.sec-equipe .wrap .engloba-titulo .equi-titulo:after {
  content: "";
  background: rgb(92 185 189 / 37%);
  width: 62px;
  height: 2px;
  display: flex;
  margin-top: 21.56px;
}

.sec-equipe .wrap .engloba-titulo p {
  font-size: 15px;
  text-align: left;
  color: #707070;
  line-height: 22px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  width: 59%;
}

.sec-equipe .wrap .conteudo-equipe {
  display: flex;
  gap: 0 40px;
  margin-top: 64.13px;
  width: 100%; /* margin-left: 17%; */
  justify-content: center;
  flex-direction: row;
}
.carrossel-equipe .owl-nav {
  display: none;
}
.carrossel-equipe .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: calc(50% - 86px);
  gap: 0 10px;
  bottom: -89px;
  width: auto;
  position: absolute;
}

.carrossel-equipe .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 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;
}

.carrossel-equipe .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-equipe .owl-dots .owl-dot.active,
.carrossel-equipe .owl-dots .owl-dot:hover {
  background-color: #535c56;
  border-color: #535c56;
  -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;
}
.box-equipe .equipe-img {
  width: 100%;
  height: 317px;
  object-fit: contain;
  z-index: 10;
  position: relative;
}
.box-equipe .image:after {
  content: "";
  border: solid 1px rgb(0 55 61 / 25%);
  width: 100%;
  height: 94%;
  display: flex;
  position: absolute;
  left: 13px;
  top: -4px;
  z-index: 1;
  border-radius: 25px 0px 25px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box-equipe .descricao .titulo {
  font-size: 24px;
  color: #535c56;
  letter-spacing: -0.44px;
  font-weight: 700;
  margin-bottom: 0.87px;
  font-family: "Ubuntu", sans-serif;
}
.box-equipe .descricao {
  margin-top: 18.52px;
}
.lightbox-equipe {
  display: none;
  border-radius: 25px;
  width: 100%;
  height: 744px;
  padding: 9% 5%;
  padding-bottom: 7%;
  background-color: #fff;
  justify-content: center;
}
.lightbox-equipe .conteu-lightbox-sobre {
  display: flex;
  justify-content: space-between;
}
.lightbox-equipe .image {
  width: 300px;
  height: 317px;
  border-radius: 22px 0 22px 0;
  object-fit: contain;
  position: relative;
}
.lightbox-equipe .image:after {
  content: "";
  background-image: url(../images/bg-equipe-box.png);
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 25px 0px 25px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lightbox-equipe .mascara-equipe {
  height: 314px;
  width: 300px;
  position: absolute;
  top: -18px;
  right: -18px;
  border: solid 1px #b8b7b861;
  border-radius: 25px 0px 25px 0px;
  z-index: -1;
}
.lightbox-equipe .equipe-img {
  width: 100%;
  height: 317px;
  object-fit: contain;
  z-index: 10;
  position: relative;
}
.lightbox-equipe .titulo {
  font-size: 24px;
  color: #535c56;
  letter-spacing: -0.44px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  margin-bottom: 27.87px;
}
.lightbox-equipe .descricao {
  font-size: 15px;
  color: #5f5f5f;
  line-height: 22px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  width: 65%;
}
.lightbox-equipe .descricao strong {
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}
.lightbox-equipe .descricao ul {
  gap: 7px 0;
  display: flex;
  flex-direction: column;
}
.lightbox-equipe .descricao ul li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 16px;
}

.lightbox-equipe .descricao ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #58725f;
  display: flex;
  margin-right: 18.21px;
  position: absolute;
  top: 9px;
  left: 0;
}
.lightbox-equipe .carousel__button.is-close {
  top: 19px;
  left: 19px;
}

.lightbox-equipe .carousel__button.is-close svg {
  display: none;
}

.lightbox-equipe .carousel__button.is-close:before {
  content: "X";
  display: flex;
  color: #ccc;
  font-size: 24px;
}

.box-equipe .descricao .titulo-sub {
  font-size: 15px;
  color: #5f5f5f;
  line-height: 22px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}
.engloba-equipe-inter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.engloba-equipe-inter .box-equipe {
  min-width: 319.86px;
  width: 21%;
}
.engloba-equipe-inter .box-equipe .image {
  height: 363.41px;
}
.engloba-equipe-inter .box-equipe .mascara-equipe {
  height: 363.41px;
}
.engloba-equipe-inter .box-equipe .equipe-img {
  height: 483.41px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.box-equipe {
  position: relative;
  width: 30%;
  margin-top: 20px;
  -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;
}
.box-equipe:hover {
  -moz-transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 100;
  -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;
}
.box-equipe .image {
  width: 100%;
  height: 82%;
  border-radius: 22px 0 22px 0;
  object-fit: contain;
  position: relative;
}
.box-equipe .mascara-equipe {
  height: 95%;
  width: 100%;
  position: absolute;
  top: -7px;
  right: -19px;
  border: solid 1px rgb(0 55 61 / 25%);
  border-radius: 25px 0px 25px 0px;
}
.botao-3 {
  margin-left: auto;
  margin-right: 18%; /* margin: 0 auto; */
  margin-top: 91.65px;
}
.botao-3 a {
  height: 33px;
  width: 137px;
  border: solid 1px #00373d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  border-radius: 10px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  color: #00373d;
  -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;
}
.botao-3:hover a {
  background: #00373d;
  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;
}

/* sec-depoimento-home inicio*/

.sec-depoimentos {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.sec-depoimentos .wrap {
  width: 100%;
  padding-bottom: 84.34px;
  padding-top: 81.35px;
}
.sec-depoimentos .sec-depoimg {
  position: absolute;
  bottom: -18px;
  left: -259px;
}
.sec-depoimentos .sec-depoimg .sec-depoimentos .wrap .engloba-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-depoimentos .wrap .engloba-titulo h4 {
  font-size: 45px;
  color: #535c56;
  letter-spacing: -0.83px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  line-height: 50px;
}

.sec-depoimentos .wrap .engloba-titulo .horizontal {
  height: 1px;
  width: 71px;
  border: solid 1px #86b095;
  background: #86b095;
  margin: 0 auto;
  margin-top: 21px;
}

.sec-depoimentos .wrap .conteudo-depoimento {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 77.23px;
  margin-left: 23.8%;
}
.btn-depoimento {
  margin-left: auto;
  margin-right: 20%;
}
.carrossel-depoimento .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: calc(50% - 86px);
  gap: 0 10px;
  bottom: -89px;
  width: auto;
  position: absolute;
}

.carrossel-depoimento .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 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;
}

.carrossel-depoimento .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-depoimento .owl-dots .owl-dot.active,
.carrossel-depoimento .owl-dots .owl-dot:hover {
  background-color: #535c56;
  border-color: #535c56;
  -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;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 67%;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento:hover {
  z-index: 100;
  -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;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento .descricao {
  border: 1px solid #6d6e6e;
  background-color: #f0f0f0;
  height: 245px;
  width: 347px;
  display: flex;
  flex: 1;
  justify-content: center;
  border-radius: 0px 25px 25px 0px;
  gap: 17px 0px;
  margin-left: -31px;
  padding: 0 26.72px 0 50.72px;
  -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;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento .descricao .titulo {
  color: #7c8b80;
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.44px;
  font-family: "Montserrat-Bold";
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento .descricao p {
  color: #696969;
  font-size: 15px;
  line-height: 22px;
  margin-top: -17px;
  font-family: "Montserrat-Regular";
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento:hover .descricao {
  background: #fff;
  border: 1px solid #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;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento .image .img-deposec {
  width: 100%;
  height: 100%;
}
.sec-depoimentos .wrap .conteudo-depoimento .box-depoimento .image {
  width: 215px;
  height: 245px;
  border-radius: 28px 0 28px 0;
  z-index: 1;
}
.ul-estrela .li-estrela {
  gap: 0 3.86px;
  display: flex;
}
.ul-estrela .li-estrela .a-estrela {
  width: 17px;
  display: flex;
  height: 16px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/estrela.png);
}
.ul-estrela .li-estrela .a-estrela.active {
  background-image: url(../images/estrela-ok.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ul-estrela {
  margin-bottom: 15.98px;
}

/*sec-blog*/
.sec-blog {
  margin-top: 46px;
}
.sec-blog .wrap {
  padding-bottom: 72px;
  padding-top: 0;
}
.carrossel-blog .owl-nav {
  display: none;
}
.sec-blog .wrap .engloba-titulo {
  display: flex;
  align-items: center;
  font-size: 40px;
  color: #535c56;
  flex-direction: column;
}
.btn-blog {
  margin-left: auto;
  margin-right: 20%;
  display: none;
}
.sec-blog .wrap .engloba-titulo .titulo {
  font-weight: 400;
  font-size: 42px;
  color: #00373d;
  font-family: "Ubuntu", sans-serif;
}
.sec-blog .wrap .engloba-titulo .horizontal {
  height: 1px;
  width: 56px;
  border: solid 1px #86b095;
  background: #86b095;
  margin-top: 22px;
}
.carrossel-blog .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: calc(57% - 86px);
  gap: 0 10px;
  bottom: -89px;
  width: auto;
  position: absolute;
}
.carrossel-blog .owl-dots .owl-nav {
  display: none;
}
.carrossel-blog .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 0;
  border: 1px solid #00373d;
}

.carrossel-blog .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-blog .owl-dots .owl-dot.active,
.carrossel-blog .owl-dots .owl-dot:hover {
  background-color: #00373d;
  border-color: #00373d;
}
.sec-blog .wrap .conteudo-blog .box-blog {
  display: flex;
  margin-top: 58px;
  width: 100%;
}
.sec-blog .wrap .conteudo-blog .box-blog:hover .image img {
  -moz-transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 100;
  -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;
}
.sec-blog .wrap .conteudo-blog .box-blog .image {
  width: 541.8px;
  height: 376.09px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.sec-blog .wrap .conteudo-blog .box-blog .image img {
  width: 100%;
  height: 100%;
  -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;
}
.sec-blog .wrap .conteudo-blog .box-blog .descricao {
  height: 376px;
  width: 64%;
  border: solid 1px #f3f3f3;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  gap: 15px 0;
  padding: 0 41px;
  position: relative;
  margin-top: 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;
}

.sec-blog .wrap .conteudo-blog .box-blog .descricao h4 {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.44px;
  color: #535c56;
  margin-bottom: 17.6px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}

.sec-blog .wrap .conteudo-blog .box-blog .descricao p {
  color: #676767;
  font-size: 14px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
.btn-artigo {
  position: absolute;
  right: 20.23px;
  bottom: 0;
}
.btn-artigo a {
  color: #535c56;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 21px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  -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-artigo a:after {
  content: "";
  width: 100%;
  height: 4px;
  background: #5cb9bd;
  margin-top: 16.98px;
  display: flex;
}
.btn-artigo:hover a {
  -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;
}
/*sec-equipe-interna*/

.banner-interno {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 285.4px;
  position: relative;
  z-index: 1;
}

.banner-interno:after {
  content: "";
  width: 100%;
  height: 259px;
  background: url(../images/mascara-banner-inter.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -65px;
}
#sec-equipe-interno {
  z-index: 100;
  position: relative;
  margin-top: -42px;
  z-index: 9;
}
#sec-equipe-interno .engloba-titulo {
  margin-bottom: 43.93px;
  display: flex;
  align-items: center;
  gap: 44px;
  width: 100%;
}
#sec-equipe-interno .engloba-equipe-interno {
  width: 100%;

  justify-content: space-between;

  display: flex;

  flex-wrap: wrap;
}
#sec-equipe-interno .engloba-equipe-interno .box-equipe {
  width: 20%;

  min-width: 210px;
}
#sec-equipe-interno .engloba-equipe-interno .box-equipe .equipe-img {
}
#sec-equipe-interno .engloba-titulo .titulo {
  font-size: 42px;
  color: #00373d;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
#sec-equipe-interno .engloba-titulo .titulo:after {
  content: "";
  width: 62px;
  height: 2px;
  border: solid 0px #5cb9bd;
  background-color: #5cb9bd;
  margin-left: 3px;
}
#sec-equipe-interno .engloba-titulo p {
  font-size: 17px;
  color: #6d6e6e;
}
#sec-equipe-interno .wrap {
  padding-top: 0;
  width: 78%;
}
.engloba-equipe-interno .box-equipe-inter .image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engloba-equipe-interno .box-equipe-inter .image .img-equipe {
  height: 100%;
  width: 100%;
  position: relative;
}

.engloba-equipe-interno .box-equipe-inter .image .masckara {
  position: absolute;
  top: 164px;
  height: 485px;
  width: 321px;
  background-image: url(../images/bg-equipe-box.png);
  z-index: -1;
  border-radius: 25px 0;
  background-position: center;
  background-repeat: no-repeat;
}

.engloba-equipe-interno .box-equipe-inter .image .masckara-1 {
  position: absolute;
  top: 146px;
  left: 74px;
  height: 485px;
  width: 321px;
  border: solid 1px #d7d7d7;
  z-index: -1;
  border-radius: 25px 0px;
}

.engloba-equipe-interno .box-equipe-inter .image .masckara-2 {
  position: absolute;
  top: 146px;
  left: 499px;
  height: 485px;
  width: 321px;
  border: solid 1px #d7d7d7;
  z-index: -1;
  border-radius: 25px 0px;
}

.engloba-equipe-interno .box-equipe-inter .image .masckara-3 {
  position: absolute;
  top: 146px;
  left: 882px;
  height: 485px;
  width: 321px;
  border: solid 1px #d7d7d7;
  z-index: -1;
  border-radius: 25px 0px;
}

.engloba-equipe-interno .box-equipe-inter .image .descricao {
  width: 75%;
  height: 64px;
  display: flex;
  justify-content: space-around;
  align-items: initial;
}

.engloba-equipe-interno .box-equipe-inter .image .descricao .titulo {
  font-size: 20px;
  color: #535c56;
}

.engloba-equipe-interno .box-equipe-inter .image .descricao .subtitulo {
  font-size: 15px;
  font-weight: 400;
  color: #535c56;
}

.box-outros-denti .box-outros-dentistas {
  display: flex;
  gap: 35.97px;
  flex-wrap: wrap;
  justify-content: center;
}
.box-outros-denti .box-outros-dentistas .box-equipe {
  width: 30.2%;
  min-width: 233px;
}
.box-outros-denti .box-outros-dentistas .box-equipe .mascara-equipe,
.box-outros-denti .box-outros-dentistas .box-equipe .image {
  height: 253.08px;
}
.box-equipe .equipe-img {
  height: 252px;
}
.box-outros-denti .box-outros-dentistas .dente {
  position: relative;
}

.box-outros-denti .box-outros-dentistas .dente .dentista {
  width: 251px;
  height: 253px;
  background-color: #f0f0f0;
  border-radius: 25px 0;
}

.box-outros-denti .box-outros-dentistas .dente .camoflagem {
  position: absolute;
  width: 251px;
  height: 253px;
  border: solid 2px #f1f1f1;
  top: -13px;
  left: 14px;
  border-radius: 25px 0;
}

.box-outros-denti .box-outros-dentistas .dente .titulo {
  font-size: 20px;
  color: #535c56;
}

.box-outros-denti .box-outros-dentistas .dente .subtitulo {
  font-size: 13px;
  color: #535c56;
  font-weight: 400;
}

/* sec-tratamentos inicio*/
#sec-tratamentos {
  z-index: 100;
  position: relative;
  margin-top: -16px;
}
.firula-pd-destaque {
  position: absolute;
  right: -11px;
  bottom: -58px;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.firula-pd-destaque .titulo {
  position: absolute;
  left: calc(48% - 4px);
  top: 17px;
  color: #dbd3c7;
  font-size: 20px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
}
.firula-pd-destaque:before {
  content: "";
  background: url(../images/firula-pd-sec.png);
  width: 380px;
  height: 187px;
  display: flex;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#sec-tratamentos .wrap {
  padding-top: 0;
}
.engloba-titulo-pd {
}
.engloba-titulo-pd p {
  color: #6d6e6e;
  font-size: 17px;
  line-height: 26px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  width: 578.62px;
  text-align: center;
}
#sec-tratamentos .box-implante {
  width: 215px;
  height: 259px;
  border-radius: 76px 0px 76px 0px;
}
.engloba-tratamentos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 44px 50px;
  margin-top: 43.93px;
  justify-content: center;
  align-items: center;
}

.box-tratamentos {
  height: 395px;
  width: 30%;
  min-width: 373px;
}

.box-tratamentos .image {
  position: relative;
  width: 100%;
  height: 100%;
}

.box-tratamentos .descricao .titulo {
  color: #ffffff;
  font-weight: 400;
}

.box-tratamentos .dentista-trata {
  width: 100%;
  height: 100%;
}

.box-tratamentos {
}

/* sec-sobre/moderna*/

.descricao-1 p {
  color: #535c56;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

.box-galeria-sobre .img-sobre {
  height: 269px;
  width: 100%;
  z-index: 100;
  position: relative;
  border-radius: 25px 0px 25px 0px;
  overflow: hidden;
}

.ld1-sobre .descricao-1 {
  height: 100%;
}

.ld1-sobre .descricao-1 p {
  margin-top: 27px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

.img-firula-missao {
}

.titulo-visao {
  font-size: 28px;
  color: #535c56;
}

.titulo-visao p {
  color: #535c56;
}

.descricao-2 .descricao-3 {
  height: 250px;
}

.descricao-2 #topo .wrap {
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 28px;
}

.image-1 {
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.image-1 img {
  margin: 0 15px;
}

.descricao {
  display: flex;
  flex-direction: column;
}

#banner {
  /* overflow-x: hidden; */
}

.conteudo-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.conteudo-banner:after {
  content: "";
  width: 100%;
  height: 259px;
  background: url(../images/mascara-banner-inter.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -65px;
  z-index: 1;
}

.mascara-banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.mascara-black {
  background: rgb(0 0 0 / 33%);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.firula-banner {
  z-index: 100;
  width: 100%;
  height: 236px;
  position: absolute;
  bottom: -76px;
  left: 0;
  z-index: 100;
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

/*inicio sec-metodologia*/

.sec-metodologia {
  position: relative;
}

.sec-metodologia .wrap {
  width: 100%;
  flex-direction: column;
  padding-bottom: 0;
  padding-top: 0;
}

.ld1 {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 555px;
  height: 356px;
}

.ld1-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 26px;
}

.ld1-titulo .ld1-conteudo-metodologia {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ld1-titulo .wrap-metodologia {
  width: 71.5%;
  margin-right: auto;
  padding-left: 8%;
}
.ld1-conteudo-metodologia .titulo-1 {
  font-size: 26px;
  color: #00373d;
  font-weight: 300;
  font-family: "Ubuntu", sans-serif;
}

.ld1-conteudo-metodologia .subtitulo-1 {
  font-size: 33px;
  color: #00373d;
  font-weight: 300;
  font-family: "Ubuntu", sans-serif;
}

.ld1 img {
  width: 100%;
  height: 100%;
}

.ld2 {
  width: 100%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  background: transparent linear-gradient(117deg, #00373d 0%, #2c5458 100%) 0% 0% no-repeat padding-box;
  padding: 55.5px 0; /* padding-bottom: 38.41px; */
  position: relative;
}
.ld2-conteudo-metodologia {
  padding-left: 8%;
}
.ld2-conteudo-metodologia .btn-metodologia {
  margin-left: auto;
  margin-top: 16.44px;
  width: auto;
}
.ld2-conteudo-metodologia .btn-metodologia a {
  width: 145px;
  height: 33px;
  border: 1px solid #ffffff;
  border-radius: 9px;
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
.ld2-conteudo-metodologia .btn-metodologia:hover a {
  background: #ffffff;
  color: #596a60;
  -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;
}
.ld2 .descricao {
  width: 432.62px;
  margin-right: auto; /* align-items: flex-start; */
}

.ld2-conteudo-metodologia .descricao p {
  color: rgb(255 255 255 / 60%);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  font-family: "Ubuntu", sans-serif;
}

.curva-verde {
  height: 237px;
  width: 536px;
  margin-left: -150px;
  margin-top: 85px;
}

/* sec-convenio inicio*/

#sec-convenio .engloba-titulo {
  margin-bottom: 43.93px;
}
#sec-convenio .engloba-titulo .titulo {
  font-size: 42px;
  color: #00373d;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
#sec-convenio .engloba-titulo .titulo::after {
  content: "";
  width: 62px;
  height: 2px;
  border: solid 0px #5cb9bd;
  background-color: #5cb9bd;
  margin-left: 3px;
}
#sec-convenio .engloba-convenio {
  gap: 44px 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#sec-convenio .wrap {
  padding-top: 0;
}
#sec-convenio .engloba-convenio .box-convenio {
  min-width: 216px;
  width: 17%;
  position: relative;
  -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;
}
#sec-convenio .engloba-convenio .box-convenio:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 100;
  -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;
}
#sec-convenio .engloba-convenio .box-convenio .image {
  width: 95%;
  height: 200px;
  border-radius: 0px 27px;
  background: #f3f2f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec-convenio .engloba-convenio .box-convenio .image img {
  width: 190px;
  height: 150px;
}

#sec-convenio .engloba-convenio .box-convenio .descricao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 18.68px;
}

/* sec-agendatamento inicio*/

.lighbox-agendamento {
  display: none;
  border-radius: 25px;
  width: 100%;
  height: 744px;
  padding: 9% 5%;
  padding-bottom: 7%;
  background-color: #fff;
  justify-content: center;
  overflow: hidden;
}

.lighbox-agendamento .carousel__button.is-close {
  top: 19px;
  left: 19px;
}

.lighbox-agendamento .carousel__button.is-close svg {
  display: none;
}

.lighbox-agendamento .carousel__button.is-close:before {
  content: "X";
  display: flex;
  color: #ccc;
  font-size: 24px;
}

.lighbox-agendamento:before {
  content: "";
  background-image: url(../images/mascara-agenda.png) !important;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 811px;
  right: 0px;
  height: 100%;
  z-index: -1;
}

.lighbox-agendamento .conteudo-lightbox {
  width: 718.76px;
}

.lighbox-agendamento .engloba-titulo {
  width: 557px;
}

.lighbox-agendamento .engloba-titulo .titulo {
  margin-bottom: 23.66px;
  font-size: 35px;
  letter-spacing: -0.83px;
  color: #5cb9bd;
  font-family: "PTSans-Bold";
}

.lighbox-agendamento .engloba-titulo .titulo:after {
  content: "";
  display: flex;
  background: #5cb9bd;
  width: 142px;
  height: 2px;
  margin-top: 16.52px;
}

.lighbox-agendamento .engloba-titulo p {
  color: #535c56;
  font-weight: 400;
  text-align: left;
  font-family: "Rawline-Regular";
  line-height: 25px;
  font-size: 13px;
  width: 506px;
}

.lighbox-agendamento .form {
  margin-top: 23.66px;
  display: flex;
  flex-wrap: wrap;
  gap: 17.54px 8.59px;
}

.lighbox-agendamento .form label {
  border-radius: 25px;
  background: #ebebeb;
  width: 233.86px;
  height: 50.3px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 17.12px;
}

.lighbox-agendamento .form button {
  border-radius: 25px;
  background: #6d6e6e;
  color: white;
  width: 233.86px;
  height: 50.3px;
  display: flex;
  align-items: center;
  padding: 0 17.12px;
  justify-content: center;
  font-size: 18px;
  font-family: "Rawline-Regular";
  cursor: pointer;
  border: 1px solid #6d6e6e;
  -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;
}
.lighbox-agendamento .form button:hover {
  color: #6d6e6e;
  background: transparent;
  -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;
}
.lighbox-agendamento .form .tratamento {
  width: 100%;
}

.lighbox-agendamento .form label .seta {
  width: 13.65px;
  height: 13.65px;
  background: none;
  margin-right: 8.82px;
  object-fit: contain;
  position: absolute;
  right: 7px;
  top: 19px;
}

.lighbox-agendamento .form label input {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 3px;
  top: -1px;
  font-size: 13px;
  padding: 0 41.12px;
  font-family: "Rawline-Regular";
  color: #5f5f5f;
}
.lighbox-agendamento .form label input::placehodler {
  color: #5f5f5f;
}

.lighbox-agendamento .form label select {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 44.12px;
  font-size: 13px;
  font-weight: 300;
  color: #868686;
  font-family: "Rawline-Regular";
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

/*sec-depoimentos inicio*/
.sec-depoimentos-inter {
  margin-top: 0;
}
.sec-depoimentos-inter .wrap {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec-depoimentos-inter .engloba-titulo {
  margin-bottom: 43.93px;
  display: flex;
  align-items: end;
  gap: 63px;
}
.sec-depoimentos-inter .engloba-titulo .titulo {
  font-size: 42px;

  color: #00373d;

  font-weight: 400;
}
.sec-depoimentos-inter .engloba-titulo p {
  font-size: 15px;
}
.sec-depoimentos-inter .engloba-depoimentos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 50px 0;
  margin-top: 38.6px;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos:nth-of-type(even) {
  flex-direction: row-reverse;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos {
  min-width: 373px;
  width: 47%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 575.27px;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .image {
  min-width: 215px;
  height: 248px;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  -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;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos:nth-of-type(odd) .descricao {
  border-radius: 0 29px 29px 0;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos:nth-of-type(odd) .image {
  margin-right: -3px;
  z-index: 10;
  position: relative;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .image img {
  width: 100%;
  height: 100%;
  -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;
}
.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos:hover .image img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 100;
  -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;
}
.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .descricao {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 66%;
  display: flex;
  border: 2px solid #a2a2aa;
  min-height: 164px;
  padding: 20.61px 29.5px;
  border-radius: 29px 0 0 29px;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos:nth-of-type(even) .image {
  margin-left: -3px;
  z-index: 10;
  position: relative;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .depoimento-1 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 66%;
  display: flex;
  border: 2px solid #a2a2aa;
  border-left: none;
  height: 164px;
  padding: 29.5px;
  border-radius: 0 29px 29px 0;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .p {
  color: #a2a2aa;
}

.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos .titulo {
  color: #5cb9bd;
  margin-top: 14px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}
.sec-depoimentos-inter .engloba-depoimentos .box-depoimentos p {
  font-size: 15px;
  color: #696969;
  line-height: 22px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}

/* sec-sobre/moderna*/
.sec-sobre {
  margin-top: -41px;
}
#sec-sobre .wrap {
  padding-top: 0px;
  width: 84%;
}
#sec-sobre .eng-division .wrap {
  width: 90%;
}
.engloba-sobre {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* height: 309px; */
}

.ld1-sobre {
  width: 497px;
  margin-right: auto;
}

.ld1-sobre .descricao-1 .titulo {
  color: #00373d;
  font-size: 27px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
.ld1-sobre .descricao-1 .titulo:after {
  content: "";
  height: 0px;
  width: 60px;
  border: solid 1px #5cb9bd;
  background-color: #5cb9bd;
}

.descricao-1 p {
  color: #535c56;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

.img-firula-sobre {
  width: 565px;
  height: calc(100% + 16px);
  order: 1;
  display: flex;
  margin-top: -90px;
  position: absolute;
  right: -104px;
  bottom: 0;
}
.img-firula-sobre img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.eng-division {
  background-color: #f0f0f0;
}
.sec-galeria-sobre {
  display: flex;
  gap: 35.57px 29.88px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: -48px;
  min-width: 383.84px;
}
.carrossel-galeria-sobre .owl-nav {
  display: none;
}
.sec-galeria-sobre .pd-carrossel {
  display: flex;
  flex-wrap: wrap;
  gap: 35.57px 20.88px;
  padding-top: 35px;
  justify-content: space-between;
}
.box-galeria-sobre {
  width: 100%;
  height: 269.15px;
  margin-top: 20px;
  margin-bottom: 20px;
  -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;
}
.box-galeria-sobre:hover {
  -moz-transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -o-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 100;
  -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;
}
.box-galeria-sobre:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: -11px;
  right: -11px;
  border: solid 1px #b8b7b861;
  border-radius: 25px 0px 25px 0px;
  z-index: 1;
}
.ld1-sobre .descricao-1 {
  height: 100%; /* width: 316px; */
}

.ld1-sobre .descricao-1 p {
  margin-top: 27px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

.ld1-missao-visao {
  display: flex;
  width: 100%;
}

.sec-missao-visao {
  display: flex;
  justify-content: center;
  margin-top: 40.78px;
  width: 100%;
}

.img-firula-missao {
  position: absolute;
  right: -117px;
  bottom: 0;
  width: 400.7px;
  height: 390.49px;
}

.img-firula-missao img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 10;
}
.titulo-visao {
  font-size: 28px;
  color: #535c56;
}

.titulo-visao p {
  color: #535c56;
}

.box-missao-visao {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 66.49px 0;
  width: 646px;
  float: left;
}

.box-missao-visao .descricao-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.box-missao-visao .descricao-2 .titulo-visao {
  margin-bottom: 22.86px;
  color: #00373d;
  font-size: 42px;
  font-family: sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
.box-missao-visao .descricao-2 .titulo-visao::after {
  content: "";
  height: 1px;
  width: 60px;
  border: solid 1px #5cb9bd;
  background-color: #5cb9bd;
}
.box-missao-visao .descricao-2 p {
  color: #535c56;
  font-size: 15px;
  line-height: 28px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
/* sec-cate-blog inicio*/
#sec-cate-blog {
}
#sec-cate-blog:after {
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
#sec-cate-blog .wrap {
  padding-top: 0;
  width: 89%;
}
.box-form-blog {
  display: flex;
  gap: 28px;
  margin: 0 4px;
}

.box-form-blog li {
  font-size: 18px;
  color: #535c56;
  font-weight: 500;
}
.box-form-blog li a {
  display: flex;
  align-items: center;
  color: #535c56;
  letter-spacing: -0.33px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  font-size: 18px;
}
.box-form-blog li a:before {
  content: "";
  width: 17px;
  height: 19px;
  border-radius: 0px 8px 0px 0px;
  display: flex;
  margin-right: 11px;
  border: 1px solid #5cb9bd;
  -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;
}
.box-form-blog li:hover a:before,
.box-form-blog li.active a:before {
  background: #5cb9bd;
  -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;
}
.box-form-blog li:hover a,
.box-form-blog li.active a {
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}

.engloba-cate-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 43.82px 56px;
  align-items: center;
  justify-content: space-between;
  margin-top: 56.69px;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.engloba-cate-blog .box-cate-blog {
  display: flex;
  position: relative;
  width: 47.6%;
  min-width: 394px;
}

.engloba-cate-blog .box-cate-blog .image {
  width: 345.04px;
  height: 239.51px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.engloba-cate-blog .box-cate-blog .image .img {
  width: 100%;
  height: 100%;
}

.engloba-cate-blog .box-cate-blog .descricao {
  height: 239.51px;
  width: 57%;
  border: solid 1px #f9f9f9;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 35px;
}

.engloba-cate-blog .box-cate-blog .leia-blog {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.leia-blog a {
  font-size: 9px;
  color: #535c56;
  letter-spacing: -0.17px;
  line-height: 12px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}

.leia-blog .horizontal-leia {
  height: 1px;
  width: 37px;
  border: solid 1px #5cb9bd;
  background-color: #5cb9bd;
}

.engloba-cate-blog .box-cate-blog .descricao .titulo {
  color: #535c56;
  text-align: left;
  letter-spacing: -0.33px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  font-size: 18px;
}

.engloba-cate-blog .box-cate-blog .descricao .horizontal-blog {
  height: 2px;
  width: 97px;
  background: #70a382;
  margin-bottom: 6.93px;
  display: flex;
  margin-top: 8.53px;
}

.engloba-cate-blog .box-cate-blog .descricao .subtitulo {
  font-size: 15px;
  color: #676767;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  line-height: 22px;
}

/*sec-blog-blog*/
#sec-blog {
  position: relative;
}
#sec-blog .engloba-titulo .titulo-h4 br {
  display: none;
}
.engloba-titulo .titulo-h4 {
  font-size: 42px;
  color: #00373d;
  font-weight: 500;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.engloba-titulo .titulo-h4:after {
  content: "";
  width: 62px;
  height: 2px;
  border: solid 0px #5cb9bd;
  background-color: #5cb9bd;
}
.engloba-blogs-blog .box-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sec-blog .wrap {
  padding-top: 0;
  width: 68.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#sec-blog .box-blog .image {
  height: 494px;
  border-radius: 55px 0px;
  overflow: hidden;
}
.box-blog .image {
  width: 100%;
}
.box-blog .image img {
  width: 100%;
  height: 100%;
}
.box-blog .descricao {
  margin-top: 44px;
}

.box-blog .descricao p {
  font-weight: 500;
  color: #535c56;
  font-size: 15px; /* line-height: 28px; */
}

.box-blog .voltar-compartilhar {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.voltar-compartilhar a {
  font-size: 15px;
  font-weight: 700;
  color: #00373d;
  width: 221px;
  height: 33px;
  border: solid 1px #00373d;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
.voltar-compartilhar a:hover {
  background: #00373d;
  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;
}
.box-confira .titulo-artigo .titulo {
  display: flex;
  justify-content: center;
  font-size: 28px;
  color: #535c56;
}

.box-confira .artigos .outros-artigos {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}

.box-confira .artigos .outros-artigos .img {
  height: 100%;
}

.box-confira .artigos .outros-artigos .descricao {
  height: 240px;
  width: 222px;
  border: solid 1px #f9f9f9;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  position: relative;
}

.box-confira .artigos .outros-artigos .descricao .titulo {
  font-size: 18px;
  color: #535c56;
  margin-left: -65px;
}

.box-confira .artigos .outros-artigos .descricao .artigo-horizontal-1 {
  height: 1px;
  width: 97px;
  border: solid 1px #70a382;
  margin-left: -65px;
}

.box-confira .artigos .outros-artigos .descricao .leia-artigo {
  position: absolute;
  bottom: 4px;
  right: 27px;
}

.box-confira .artigos .outros-artigos .descricao .leia-artigo a {
  font-size: 11px;
  color: #535c56;
}

.box-confira .artigos .outros-artigos .leia-artigo .artigo-horizontal {
  height: 1px;
  width: 46px;
  border: solid 1px #70a382;
}

.box-confira .artigos .outros-artigos .descricao .subtitulo {
  font-size: 13px;
  color: #676767;
  font-weight: 400;
}

/*sec-contato inicio*/

.conteudo-contato .social-midia {
  display: flex;
  gap: 59px;
  width: 85%;
  margin-right: auto;
  margin-left: 31px;
}

.conteudo-contato .social-midia .whats-atendi {
  display: flex;
  width: 21%;
  position: relative;
}

.conteudo-contato .social-midia .endereco {
  display: flex;
}
.conteudo-contato .social-midia .endereco .titulo {
  letter-spacing: -0.22px;
  color: #5cb9bd;
  font-size: 12px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  margin-bottom: 2.51px;
}
.conteudo-contato .social-midia .endereco .subtitulo {
  letter-spacing: -0.22px;
  color: #535c56;
  font-size: 15px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  line-height: 22px;
  width: 266px;
}
.conteudo-contato .social-midia .redes-social {
  display: flex;
  gap: 0 15px;
  align-items: center;
}
.conteudo-contato .social-midia .redes-social a {
  z-index: 100;
  -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;
}
.conteudo-contato .social-midia .redes-social a:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 100;
  -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;
}
.conteudo-contato .social-midia .redes-social a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.form-contato {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #f0f0f0;
  background-color: #f0f0f0;
  border-radius: 65px 0 65px 0;
  padding-left: 69.13px;
  padding-top: 43px;
  padding-bottom: 75.15px;
  padding-right: 135.05px;
}

.conteudo-contato .engloba-titulos {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.conteudo-contato .engloba-titulos .titulos {
  font-size: 42px;
  color: #00373d;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
#sec-contato .conteudo-contato .engloba-titulos .titulos::after {
  content: "";
  width: 62px;
  height: 2px;
  border: solid 0px #5cb9bd;
  background-color: #5cb9bd;
  margin-left: 3px;
}
.conteudo-contato .engloba-titulo p {
  font-size: 17px;
  color: #6d6e6e;
}
.whats-atendi .engloba-titulo {
  color: #535c56;
  margin-left: 19.83px;
}
.whats-atendi .engloba-titulo .titulo {
  letter-spacing: -0.22px;
  color: #5cb9bd;
  font-size: 12px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  margin-bottom: 2.51px;
}
.whats-atendi .engloba-titulo .subtitulo {
  letter-spacing: -0.22px;
  color: #535c56;
  font-size: 12px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  line-height: 16px;
}
#sec-contato .wrap {
  padding-top: 0;
  width: 78%;
}
#sec-contato .wrap .conteudo-contato {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.endereco .engloba-titulo {
  color: #535c56;
  margin-left: 20px;
}

.form-contato .engloba-titulo {
  margin-bottom: 30.5px;
}

.form-contato .engloba-titulo .titulo {
  font-size: 42px;
  color: #00373d;
  line-height: 29px;
  margin-bottom: 9.09px;
  font-family: "Ubuntu-Light";
  font-weight: 600;
}

.form-contato .engloba-titulo .subtitulo {
  font-size: 15px;
  color: #5f5f5f;
  line-height: 22px;
  font-weight: 400;
  font-family: "PTSans-Regular";
}

.form-contato .formulario {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.ld1-form-contato {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 9.12px 0;
}
.ld2-form-contato {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 9.12px 0;
}

.formulario input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  padding: 0px 24px;
  color: #969696;
  font-weight: 400;
  font-family: "PTSans-Regular";
}
.ld2-form-contato input {
  width: 100%;
  height: 126px;
  border-radius: 20px;
  padding: 0px 24px;
  color: #969696;
  font-weight: 400;
}
.formulario button {
  width: 230px;
  height: 33px;
  border: solid 1px #5cb9bd;
  background-color: #5cb9bd;
  color: #ffffff;
  border-radius: 25px;
  margin-left: auto;
  margin-top: 60.77px;
  font-size: 14px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  cursor: pointer;
  -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;
}
.formulario button:hover {
  background: transparent;
  color: #70a382;
  -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;
}

/*sec-titulo-tratamento inicio*/

.estetica-conteudo {
  display: flex;
  gap: 80px;
  margin-top: 75px;
}

.titulo-lightbox {
  width: 484px;
  height: 830px;
  border: solid 1px #f0f0f0;
  background-color: #f0f0f0;
  margin-left: 30px;
  border-radius: 75px 0 75px 0;
}

.form-titulo {
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
}

.estetica-conteudo .titulo-lightbox .image {
  margin: 0 auto;
  display: flex;
  width: 300px;
  height: 310px;
}

.estetica-conteudo .titulo-lightbox .image .img {
  height: 100%;
  width: 100%;
}

.titulo-lightbox .form-titulo .engloba-titulo {
  margin-left: 35px;
}

.titulo-lightbox .form-titulo .engloba-titulo .titulo {
  font-size: 40px;
  color: #535c56;
  font-weight: 600;
}

.titulo-lightbox .form-titulo .engloba-titulo .subtitulo {
  font-size: 15px;
  color: #5f5f5f;
  font-weight: 500;
}

.titulo-lightbox .form-titulo .label-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 26px 30px;
}

.titulo-lightbox .form-titulo label input {
  width: 395px;
  height: 32px;
  border-radius: 25px;
  padding: 0px 20px;
  font-size: 14px;
  color: #969696;
}

.titulo-lightbox .form-titulo .agendar-ava {
  width: 289px;
  height: 44px;
  border: solid 1px #70a382;
  background-color: #70a382;
  border-radius: 25px;
  color: #ffffff;
  padding: 0 61px;
  margin: 4px 82px;
  display: flex;
  align-items: center;
}

.estetica-tituloc .descricao {
  display: flex;
  flex-direction: column;
}

.estetica-titulo .descricao .titulo {
  font-size: 24px;
  color: #535c56;
  font-weight: 300;
}

.estetica-titulo .descricao .subtitulo {
  color: #535c56;
  font-size: 41px;
  font-weight: 400;
}

.estetica-titulo .descricao p {
  font-size: 14px;
  color: #535c56;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 20px;
  width: 580px;
}

.estetica-titulo button {
  width: 289px;
  height: 44px;
  border: solid 1px #70a382;
  background-color: #70a382;
  border-radius: 25px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  margin-top: 40px;
}

.beneficios {
}

.beneficios .beneficios-sec {
  width: 580px;
}

.beneficios .beneficios-sec .bene-desc {
}

.beneficios .beneficios-sec .bene-desc .titulo {
  color: #535c56;
  font-size: 40px;
  font-weight: 400;
  margin: 30px -2px;
}

.beneficios .beneficios-sec .bene-desc .subtitulo {
  font-size: 14px;
  color: #535c56;
  letter-spacing: 2px;
  font-weight: 500;
  letter-spacing: 2px;
}

.beneficios .beneficios-sec .lista-beneficios .ponto-bene {
  width: 13px;
  height: 13px;
  border-radius: 7px;
  border: solid 1px #535c56;
  background-color: #535c56;
  margin: 6px 0;
}

.beneficios .beneficios-sec .lista-beneficios .bene-servico {
  display: flex;
  align-items: center;
}

.beneficios .beneficios-sec .lista-beneficios .bene-servico .titulo {
  font-size: 15px;
  color: #535c56;
  margin-left: 15px;
  margin: 16px 15px;
}

.beneficios .beneficios-sec .lista-beneficios .bene-sec .subtitulo {
  font-size: 15px;
  color: #535c56;
  font-weight: 400;
}

.estetica-titulo .beneficios-sec .casos-clinicos {
  height: 500px;
  margin-top: 30px;
  position: relative;
}

.estetica-titulo .beneficios-sec .casos-clinicos .titulo {
  color: #535c56;
  font-size: 40px;
  font-weight: 400;
}

.estetica-titulo .beneficios-sec .casos-clinicos .fim-clinico {
  width: 200px;
  height: 108px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.estetica-titulo .beneficios-sec .casos-clinicos .subtitulo {
  font-size: 20px;
  color: #535c56;
  font-weight: 200;
  margin-top: 20px;
}

.estetica-titulo .beneficios-sec .casos-clinicos h5 {
  font-size: 15px;
  color: #535c56;
  font-weight: 300;
}

.estetica-titulo .beneficios-sec .casos-clinicos .image {
  position: absolute;
  top: 88px;
  right: 51px;
  z-index: -1;
}

.estetica-titulo .beneficios-sec .casos-clinicos .image .img {
  height: 180px;
}

.estetica-titulo .beneficios-sec .casos-clinicos .image-x {
  position: absolute;
  bottom: 33px;
  left: 8px;
}

.estetica-titulo .beneficios-sec .casos-clinicos .image-x .img-x {
  height: 224px;
}

.estetica-titulo .beneficios-sec .casos-clinicos .masxca-x {
  width: 371px;
  height: 225px;
  border: solid 1px #70a382;
  position: absolute;
  bottom: 51px;
  left: 62px;
  border-radius: 25px 0px;
}

.estetica-titulo .beneficios-sec .casos-clinicos .masxca-y {
  width: 371px;
  height: 225px;
  border: solid 1px #ffffff;
  position: absolute;
  bottom: 60px;
  left: 51px;
  border-radius: 25px 0px;
  z-index: -1;
  background-color: #ffffff;
}

/* sec-footer inicio*/
#sec-rodape {
  position: relative;
}
#sec-rodape .wrap {
  padding-top: 0;
  width: 100%;
}

#sec-rodape .wrap .topo-midia {
  display: flex;
  flex-direction: column;
  display: none;
}

#sec-rodape .wrap .topo-midia .engloba-titulo {
  font-size: 28px;
  color: #535c56;
  justify-content: center;
  align-items: center;
}

#sec-rodape .wrap .topo-midia .engloba-titulo .titulo {
  font-family: sans-serif;
  font-weight: 600;
  color: #535c56;
  letter-spacing: -0.52px;
  line-height: 24px;
}

#sec-rodape .wrap .topo-midia .midia-social {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20.24px;
  align-items: center;
}
#sec-rodape .wrap .topo-midia .midia-social .arroba {
  color: #535c56;
  letter-spacing: -0.26px;
  line-height: 26px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
#sec-rodape .wrap .topo-midia .midia-social .titulo {
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  color: #535c56;
  letter-spacing: -0.26px;
  line-height: 26px;
  font-size: 14px;
}
#sec-rodape .wrap .topo-midia .midia-social .rodape-img {
  margin-right: 5px;
  width: 19px;
  height: 19px;
  object-fit: contain;
}

#sec-rodape .rodape-1 {
  height: 100%;
  width: 100%;
  display: flex;
  margin-top: -71px;
}

#sec-rodape .rodape-1 .imagem {
  height: 190px;
  width: 190px;
}

#sec-rodape .rodape-2 {
  background-color: #00373d;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#sec-rodape .rodape-2 .wrap {
}
#sec-rodape .rodape-2:after {
  content: "";
  background-image: url(../images/firula-footer.png);
  width: 1202px;
  height: 370px;
  position: absolute;
  bottom: -203px;
  right: -310px;
  z-index: 1;
  opacity: 0.2;
}

#sec-rodape .fim .titulo-credito {
  font-size: 14px;
  color: #ffffff;
  margin: 29px;
}

#sec-rodape .rodape-2 .wrap {
  flex-direction: row;
  align-items: flex-start;
  padding-top: 70.8px;
  padding-bottom: 59.43px;
  justify-content: space-between;
  width: 85%;
  z-index: 100;
  position: relative;
}
#sec-rodape .rodape-2 .wrap .eng-logo {
  /* height: 124px; */
  display: flex;
  align-items: end;
}
#sec-rodape .rodape-2 .wrap .eng-logo .logo {
  width: 222px;
}
#sec-rodape .rodape-2 .wrap .eng-logo .logo .img {
  width: 100%;
}
#sec-rodape .rodape-2 .redes {
  color: #ffffff;
  width: 213px;
}

#sec-rodape .rodape-2 .redes .titulo-sub .titulo {
  margin-top: 0;
  font-size: 20px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}

#sec-rodape .rodape-2 .redes .titulo-sub .sub {
  margin-top: 29.36px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Ubuntu-Regular";
}

#sec-rodape .rodape-2 .redes .img {
  margin-top: 0;
  display: flex;
  height: 71%;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}
#sec-rodape .rodape-2 .redes .img a {
}
#sec-rodape .rodape-2 .redes .img a:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .redes .img a img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
#sec-rodape .rodape-2 .redes .img .social-1 {
  margin-left: 15px;
}

#sec-rodape .rodape-2 .redes .img .social-2 {
  margin-left: 15px;
}

#sec-rodape .rodape-2 .home {
  color: #ffffff;
  width: 208px;
  min-width: 84px;
}
#sec-rodape .rodape-2 .titulo-destaque {
  margin-bottom: 20.2px;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  font-size: 20px;
}
#sec-rodape .rodape-2 .titulo-destaque a {
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  font-size: 20px;
}
#sec-rodape .rodape-2 .home ul {
  display: flex;
  gap: 8.07px 0; /* flex-direction: column; */
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
#sec-rodape .rodape-2 .home ul li {
  width: 35%;
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .home ul li:hover {
  -moz-transform: scale(1.051);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .home ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.28px;
  font-family: "Ubuntu-Regular";
}
#sec-rodape .rodape-2 .home .rodape-home {
  height: 100%;
}

#sec-rodape .rodape-2 .home .rodape-home .titulo {
  margin-top: 0;
  font-size: 20px;
  font-weight: 500;
}

#sec-rodape .rodape-2 .home .rodape-home .sub {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}

#sec-rodape .rodape-2 .tratamento {
  color: #ffffff;
  min-width: 117px;
  width: 195px;
}
#sec-rodape .rodape-2 .tratamento.tratamento2 {
  width: 109px;
}
#sec-rodape .rodape-2 .tratamento:nth-of-type(2) {
}
.box-rede-footer {
  display: flex;
  align-items: flex-start;
}
.box-rede-footer img {
  width: 40px;

  height: 33px;

  object-fit: contain;

  margin-right: 15px;
}
.box-rede-footer .descricao {
}
#sec-rodape .rodape-2 .tratamento .rodape-trata {
  height: 100%;
}
#sec-rodape .rodape-2 .tratamento .rodape-trata {
  display: flex;
  gap: 9px 0;
  flex-direction: column;
}
#sec-rodape .rodape-2 .tratamento .rodape-trata .titulo {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 500;
}

#sec-rodape .rodape-2 .tratamento .rodape-trata .sub {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.28px;
  font-family: "Ubuntu-Regular";
}
#sec-rodape .rodape-2 .tratamento .rodape-trata li {
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .tratamento .rodape-trata li:hover {
  -moz-transform: scale(1.051);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .atendimento {
  display: flex;
  flex-direction: column;
  width: 206px;
  justify-content: end;
  color: #ffffff;
  margin-top: 32px;
}

#sec-rodape .rodape-2 .atendimento .atendimento-1 {
  display: flex;
  margin-bottom: 27px;
}

#sec-rodape .rodape-2 .atendimento .atendimento-1 .img {
  height: 100%;
}

#sec-rodape .rodape-2 .atendimento .atendimento-1 .atendi {
  margin-left: 15.27px;
}

#sec-rodape .rodape-2 .atendimento .atendimento-1 .atendi .titulo {
  margin-bottom: 7.09px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3px;
  font-family: "Ubuntu-Regular";
}

#sec-rodape .rodape-2 .atendimento .atendimento-1 .atendi .sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.3px;
  font-family: "Ubuntu-Regular";
}

#sec-rodape .rodape-2 .atendimento .atendimento-2 {
  display: flex;
}

#sec-rodape .rodape-2 .atendimento .atendimento-2 .img {
  height: 100%;
}

#sec-rodape .rodape-2 .atendimento .atendimento-2 .atendi .titulo {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6.27px;
}

#sec-rodape .rodape-2 .atendimento .atendimento-2 .atendi .sub {
  font-size: 12px;
  letter-spacing: -0.22px;
  line-height: 16px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}

#sec-rodape .rodape-2 .atendimento .atendimento-2 .atendi {
  margin-left: 10px;
}

/* sec-rodape-cadastro inicio */

#sec-rodape .rodape-2 .cadastro {
  width: 306.22px;
  position: relative;
  z-index: 100;
}

#sec-rodape .rodape-2 .cadastro .cadastro-1 {
  display: flex;
  justify-content: initial;
  align-items: center;
  margin-top: 30px;
}

#sec-rodape .rodape-2 .cadastro .cadastro-1 img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#sec-rodape .rodape-2 .cadastro .cadastro-1 .titulo {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-left: 17.79px;
  line-height: 23px;
  letter-spacing: -0.33px;
  font-family: "Ubuntu-Regular";
}

#sec-rodape .rodape-2 .cadastro .dados {
  margin-top: 29.17px;
  display: flex;
  flex-direction: column;
  gap: 7.36px 0;
}

#sec-rodape .rodape-2 .cadastro .dados button {
  background: transparent;
  width: auto;
  color: #efe5dc;
  font-size: 14px;
  letter-spacing: -0.26px;
  text-align: right;
  margin-top: 15px;
  font-family: "Ubuntu-Regular";
  cursor: pointer;
}

#sec-rodape .rodape-2 .cadastro .dados button:hover {
  color: #ccc;
  -moz-transform: scale(1.051);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 100;
  -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;
}
#sec-rodape .rodape-2 .cadastro .dados input {
  background-color: transparent;
  padding: 0px 18px;
  height: 32px;
  border: 1px solid rgb(239 229 220 / 50%);
  border-radius: 10px;
  color: #faf6f0;
  font-size: 10px;
  width: 100%;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
#sec-rodape .rodape-2 .cadastro .dados input::placeholder {
  color: #faf6f0;
}
#sec-rodape .rodape-2 .cadastro .dados-email {
}

#sec-rodape .rodape-2 .cadastro .cadastro-fim {
  color: #ffffff;
  display: flex;
  justify-content: end;
  margin-top: 45px;
  font-size: 14px;
  font-weight: 300;
}

#sec-rodape .fim {
  background-color: #00373d;
  display: flex;
  justify-content: space-around;
  height: 78px;
  flex-direction: row;
  border-top: 1px solid rgb(167 175 171 / 46%);
  align-items: center;
}

#sec-rodape .fim img {
  width: 114.96px;
  object-fit: contain;
}
#sec-tratamento-inter {
  margin-top: 0;
}
.conteudo-tratamento-inter {
  display: flex;
  justify-content: space-between;
  padding-left: 30.87px;
  padding-bottom: 82.3px;
}
.ld1-tratamento-inter {
  width: 471px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  padding-left: 45.13px;
  padding-right: 32.87px;
  padding-top: 35.1px;
  padding-bottom: 57.75px;
  border-radius: 50px 0px;
}
.ld1-tratamento-inter .engloba-titulo {
  margin-top: 37.78px;
}
.ld1-tratamento-inter .engloba-titulo .titulo {
  color: #535c56;
  font-size: 33px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  line-height: 38px;
  margin-bottom: 1.42px;
}
.ld1-tratamento-inter .engloba-titulo p {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 22px;
  font-family: "PTSans-Regular";
}

.ld1-tratamento-inter form.label-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8.94px 0;
  margin-top: 22.65px;
}
.ld1-tratamento-inter form.label-input label {
  width: 100%;
}
.ld1-tratamento-inter form.label-input input {
  width: 100%;
  height: 41px;
  padding: 0 32px;
  color: #969696;
  letter-spacing: -0.26px;
  font-family: "PTSans-Regular";
  border-radius: 30px;
}
.ld1-tratamento-inter form.label-input button {
  width: 302px;
  height: 44px;
  border: solid 1px #70a382;
  background-color: #70a382;
  color: #ffffff;
  border-radius: 25px;
  margin: 0 auto;
  margin-top: 44.54px;
  font-size: 16px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  cursor: pointer;
}
.ld1-tratamento-inter form.label-input button:hover {
  background: transparent;
  color: #70a382;
}

.ld1-tratamento-inter .image {
  width: 100%;
  height: 414px;
  border-radius: 50px 0px;
}
.ld1-tratamento-inter .image img {
  width: 100%;
  height: 100%;
}
.ld2-tratamento-inter {
  display: flex;
  flex-direction: column;
  width: 59%;
  margin-left: 68.71px;
  padding-right: 159.18px;
}
.ld2-tratamento-inter .descricao .subtitulo {
  color: #535c56;
  font-size: 33px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 27.5px;
}
.box-tratatamento-inter .btn-avaliacao {
  margin: 37.8px 0;
  margin-bottom: 40px;
}
.btn-avaliacao a {
  padding: 8px 30px;
  border: solid 1px #70a382;
  background-color: #70a382;
  color: #ffffff;
  border-radius: 25px;
  margin: 0 auto;
  margin-top: 44.54px;
  font-size: 16px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  cursor: pointer;
}
.btn-avaliacao:hover a {
  background: transparent;
  color: #70a382;
}
.ld2-tratamento-inter .beneficio-tratamento-inter {
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc .titulo {
  color: #535c56;
  font-size: 27px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 27.5px;
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc {
  color: #535c56;
  font-size: 14px;
  line-height: 24px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc p {
  color: #535c56;
  font-size: 14px;
  line-height: 24px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc strong {
  font-family: "Ubuntu-Bold";
  font-weight: 600;
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc ul {
  gap: 0px 0;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}
.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc ul li {
  display: flex;
  position: relative;
  padding-left: 16px;
  color: #535c56;
  font-size: 14px;
  line-height: 24px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  flex-direction: column;
}

.ld2-tratamento-inter .beneficio-tratamento-inter .bene-desc ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #58725f;
  display: flex;
  margin-right: 18.21px;
  position: absolute;
  top: 9px;
  left: 0;
}

.ld2-tratamento-inter .lista-beneficios {
  margin-top: 13.79px;
}
.ld2-tratamento-inter .lista-beneficios .bene-sec {
}
.ld2-tratamento-inter .lista-beneficios .bene-sec .bene-servico {
}
.ld2-tratamento-inter .lista-beneficios .bene-sec .bene-servico .titulo {
  letter-spacing: -0.28px;
  color: #535c56;
  display: flex;
  align-items: center;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6.79px;
}
.ld2-tratamento-inter .lista-beneficios .bene-sec .bene-servico .titulo:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #535c56;
  border-radius: 7px;
  display: flex;
  margin-right: 10.62px;
}
.ld2-tratamento-inter .lista-beneficios .bene-sec p {
  color: #535c56;
  font-size: 15px;
  line-height: 28px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  letter-spacing: -0.28px;
}
.ld2-tratamento-inter .caso-tratamento-inter {
  margin-top: 51.53px;
}
.ld2-tratamento-inter .casos-clinico {
}
.ld2-tratamento-inter .casos-clinico .titulo-caso {
  color: #535c56;
  font-size: 33px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  line-height: 38px;
  margin-bottom: 45.82px;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico {
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso {
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-antes {
  height: 249px;
  width: 425.82px;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-antes img {
  width: 425.82px;
  height: 249px;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-antes span {
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-depois {
  right: 91px;
  top: 23px;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-depois img {
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .image-antes:before {
  height: 249px;
  width: 95%;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .descricao {
  position: absolute;
  top: 0;
  left: 0;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .descricao .titulo {
  color: rgb(83 92 86 / 66%);
  font-size: 20px;
  line-height: 17px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  margin-bottom: 14.39px;
}
.ld2-tratamento-inter .casos-clinico .conteudo-casos-clinico .box-sorriso .descricao .subtitulo {
  color: #535c56;
  font-size: 13px;
  line-height: 20px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
  letter-spacing: -0.28px;
  margin-bottom: 0;
  width: 201.24px;
}
.carrossel-caso-clinico-inter .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: 0;
  gap: 0 10px;
  bottom: 41px;
  width: auto;
  position: absolute;
}

.carrossel-caso-clinico-inter .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 0;
}

.ccarrossel-caso-clinico-inter .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-caso-clinico-inter .owl-dots .owl-dot.active,
.carrossel-caso-clinico-inter .owl-dots .owl-dot:hover {
  background-color: #535c56;
  border-color: #535c56;
}

#sec-pergunta {
  background: #f0f0f0;
  position: relative;
  overflow-y: hidden;
}
#sec-pergunta:after {
  content: "";
  background-image: url(../images/firula-pergunta.png);
  width: 1202px;
  height: 370px;
  position: absolute;
  bottom: -110px;
  right: 0;
  z-index: 1;
  /* opacity: 0.2; */
}
#sec-pergunta .wrap {
  width: 72%;
}
#sec-pergunta .engloba-titulo {
}

#sec-pergunta .engloba-titulo .titulo {
  font-size: 39px;
  color: #535c56;
  font-family: "Ubuntu-Bold";
  letter-spacing: -0.83px;
  line-height: 50px;
}
#sec-pergunta .engloba-titulo .titulo:after {
  content: "";
  background: rgb(112 163 130 / 37%);
  width: 62px;
  height: 2px;
  display: flex;
  margin: 0 auto;
  margin-top: 21px;
}
#sec-pergunta .conteudo-pergunta {
  margin-top: 81.3px;
  display: flex;
  /* gap: 0 127.23px; */
  position: relative;
  z-index: 100;
}
#sec-pergunta .conteudo-pergunta .box-pergunta {
  width: 100%;
  padding: 0 56px;
  text-align: left;
}

#sec-pergunta .conteudo-pergunta .box-pergunta:after {
  content: "";
  width: 1px;
  height: 172px;
  border-right: 1px solid rgb(112 112 112 / 32%);
  display: flex;
  position: absolute;
  right: 6px;
  top: 0;
}
#sec-pergunta .conteudo-pergunta .box-pergunta:last-of-type:after {
  display: none;
}
#sec-pergunta .conteudo-pergunta .box-pergunta:first-of-type {
  padding-left: 0;
}
#sec-pergunta .conteudo-pergunta .box-pergunta:last-of-type {
  padding-right: 0;
}
#sec-pergunta .conteudo-pergunta .box-pergunta .descricao {
}
#sec-pergunta .conteudo-pergunta .box-pergunta .descricao .titulo {
  font-size: 24px;
  color: #535c56;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 28px;
}
#sec-pergunta .conteudo-pergunta .box-pergunta .descricao p {
  color: #535c56;
  font-size: 15px;
  line-height: 22px;
  font-family: "Ubuntu-Regular";
  font-weight: 400;
}

#sec-tratatamentos-relacionados .botao-3 {
  margin-right: 5%;
}

#sec-tratatamentos-relacionados .engloba-titulo {
}

#sec-tratatamentos-relacionados .engloba-titulo .titulo {
  font-size: 39px;
  color: #535c56;
  font-family: "Ubuntu-Bold";
  font-weight: 600;
  letter-spacing: -0.83px;
  line-height: 50px;
}
#sec-tratatamentos-relacionados .engloba-titulo .titulo:after {
  content: "";
  background: rgb(112 163 130 / 37%);
  width: 62px;
  height: 2px;
  display: flex;
  margin: 0 auto;
  margin-top: 21px;
}

#sec-tratatamentos-relacionados .wrap {
  padding-top: 0;
}
#sec-tratatamentos-relacionados .conteudo-tratatamentos-relacionados {
  display: flex;
  width: 100%;
  margin-top: 56.02px;
  flex-direction: column;
}
#sec-tratatamentos-relacionados .box-implante {
  width: 100%;
  height: 338px;
  border-radius: 83px 0px 83px 0px;
}
#sec-tratatamentos-relacionados .box-implante .image {
}
#sec-tratatamentos-relacionados .box-implante .image img {
}
#sec-tratatamentos-relacionados .box-implante .descricao {
  margin-top: 0;
  padding: 52.66px 0;
}
#sec-tratatamentos-relacionados .box-implante .descricao .titulo {
}
#sec-tratatamentos-relacionados .box-implante .descricao .titulo:before {
}
.carrossel-tratatamentos-relacionados .owl-nav {
  display: none;
}
.carrossel-tratatamentos-relacionados .owl-dots {
  text-align: center;
  display: flex !important;
  z-index: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: calc(50% - 31px);
  gap: 0 10px;
  bottom: -89px;
  width: auto;
  position: absolute;
}

.carrossel-tratatamentos-relacionados .owl-dots .owl-dot {
  width: 15px;
  height: 13px;
  margin-bottom: 16px;
  background: #fff;
  display: inline-block;
  position: relative;
  font-size: 0;
  border-radius: 3px;
  margin-bottom: 0;
}

.carrossel-tratatamentos-relacionados .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.carrossel-tratatamentos-relacionados .owl-dots .owl-dot.active,
.carrossel-tratatamentos-relacionados .owl-dots .owl-dot:hover {
  background-color: #535c56;
  border-color: #535c56;
}
#sec-artigos-relacionados .wrap {
  width: 100%;
}

.sec-exames {
}
.sec-exames .wrap {
}
.sec-exames .engloba-tituo {
  display: flex;
  gap: 30px;
  height: 60px;
  align-items: center;
}
.sec-exames .engloba-tituo .titulo {
  font-size: 26px;
  font-weight: 400;
  color: #00373d;
}
.sec-exames .conteudo-exames {
  height: 1110px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 0px 30px 30px 0;
}
.sec-exames .conteudo-exames .form-exames {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px 0px;
  align-items: center;
  justify-content: center;
}
.sec-exames .conteudo-exames .form-exames .tratamento {
  height: 40px;
  width: 92%;
  border: solid 1px #ffffff;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 25px;
}

.sec-exames .conteudo-exames .form-exames .tratamento .img {
  position: absolute;
  left: 22px;
}
.sec-exames .conteudo-exames .form-exames .tratamento .seta {
  position: absolute;
  right: 22px;
}
.sec-exames .conteudo-exames .form-exames .tratamento select {
  background-color: transparent;
  color: #00373d;
  position: absolute;
  left: 60px;
  font-size: 21px;
}

.sec-consultas .engloba-tituo {
  display: flex;
  gap: 30px;
  height: 60px;
  align-items: center;
}
.sec-consultas .engloba-tituo .titulo {
  font-size: 26px;
  font-weight: 400;
  color: #00373d;
}
.sec-consultas .conteudo-consultas {
  width: 100%;
  background: #f0f0f0;
  padding: 31px 27px;
  border-radius: 0 25px 25px 0;
}
.sec-consultas .conteudo-consultas .box-consulta {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 1rem 0;
}
.sec-consultas .conteudo-consultas .box-consulta .beefup__body {
  background: #fff;

  margin-top: -20px;

  padding-top: 33px;

  padding-bottom: 21px;
}

.sec-consultas .conteudo-consultas .box-consulta .tratamento {
  background: #fff;
  border-radius: 30px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  padding: 0 34.03px;
}
.sec-consultas .conteudo-consultas .box-consulta.is-open .tratamento {
  background: #00373d;
}
.sec-consultas .conteudo-consultas .box-consulta .beefup__head::after {
  display: none;
}

.sec-consultas .conteudo-consultas .box-consulta:not(.beefup) .tratamento,
.sec-consultas .conteudo-consultas .box-consulta .beefup__head > button {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  color: #00373d;
  font-size: 21px;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: -0.39px;
  font-weight: 400;
}

.sec-consultas .conteudo-consultas .box-consulta:not(.beefup) .tratamento {
  height: 62px;
  padding: 0 34px;
}

.sec-consultas .conteudo-consultas .box-consulta.is-open .beefup__head > button {
  color: #fff;
}

.sec-consultas .conteudo-consultas .box-consulta:not(.beefup) .tratamento:before,
.sec-consultas .conteudo-consultas .box-consulta .beefup__head > button:before {
  content: "";
  background-image: url(../images/retangulo.png);
  display: flex;
  width: 23px;
  height: 24px;
  margin-right: 20.18px;
}
.sec-consultas .conteudo-consultas .box-consulta.is-open .beefup__head > button:before {
  content: "";
  background-image: url(../images/retangulo-cor.png);
  display: flex;
  width: 23px;
  height: 24px;
  margin-right: 20.18px;
}
.sec-consultas .conteudo-consultas .box-consulta .beefup__head > button:after {
  content: "";
  background-image: url(../images/triangulo.png);
  display: flex;
  border: none;
  width: 32px;
  height: 19px;
  transform: inherit;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}
.sec-consultas .conteudo-consultas .box-consulta.is-open .beefup__head > button:after {
  background-image: url(../images/triangulo.png);
}
.sec-consultas .categoria {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.sec-consultas .categoria li {
  width: 188px;
  height: 64px;
  border-radius: 0px 22px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  padding: 0 27px;
}
.sec-consultas .categoria li a {
  color: #00373d;
  font-size: 26px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
.sec-consultas .categoria li.active {
  background: #f3f2f2;
  border-bottom: 2px solid #5cb9bd;
}
.sec-consultas .conteudo-consultas .form-consultas {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px 0px;
  align-items: center;
  justify-content: center;
}
.sec-consultas .conteudo-consultas .form-consultas .tratamento {
  height: 40px;
  width: 92%;
  border: solid 1px #ffffff;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 25px;
}
.sec-consultas {
  position: relative;
}
.ancora-consulta {
  position: absolute;
}
.sec-consultas .wrap {
  padding-top: 0;
}
.sec-consultas .conteudo-consultas .form-consultas .tratamento .img {
  position: absolute;
  left: 22px;
}
.sec-consultas .conteudo-consultas .form-consultas .tratamento .seta {
  position: absolute;
  right: 22px;
}
.sec-consultas .conteudo-consultas .form-consultas .tratamento select {
  background-color: transparent;
  color: #00373d;
  position: absolute;
  left: 60px;
  font-size: 21px;
}

.sec-cirurgias .engloba-tituo {
  display: flex;
  gap: 30px;
  height: 60px;
  align-items: center;
}
.sec-cirurgias .engloba-tituo .titulo {
  font-size: 26px;
  font-weight: 400;
  color: #00373d;
}
.sec-cirurgias .conteudo-cirurgias {
  height: 412px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 0px 30px 30px 0;
}
.sec-cirurgias .conteudo-cirurgias .form-cirurgias {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px 0px;
  align-items: center;
  justify-content: center;
}
.sec-cirurgias .conteudo-cirurgias .form-cirurgias .tratamento {
  height: 40px;
  width: 92%;
  border: solid 1px #ffffff;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 25px;
}
.sec-cirurgias .conteudo-cirurgias .form-cirurgias .tratamento .img {
  position: absolute;
  left: 22px;
}
.sec-cirurgias .conteudo-cirurgias .form-cirurgias .tratamento .seta {
  position: absolute;
  right: 22px;
}
.sec-cirurgias .conteudo-cirurgias .form-cirurgias .tratamento select {
  background-color: transparent;
  color: #00373d;
  position: absolute;
  left: 60px;
  font-size: 21px;
}
.firula-pd-destaque {
  display: none;
}
@media screen and (max-width: 1370px) {
    .conteudo-banner:after {
    bottom: -115px;
    }
    .banner-interno:after {
    bottom: -80px;   
    }
}
@media screen and (max-width: 1232px) {
    .engloba-cate-blog .box-cate-blog{
    width: 46.6%;
    }
    #topo .wrap .engloba-topo .nav-bar ul{
    gap: 0 21px;
    margin-right: 21px;
    }
}
@media screen and (max-width: 1238px) {
    .banner-interno:after {
    bottom: -100px;
    }
    .engloba-cate-blog .box-cate-blog{
    width: 46.6%;
    }
    #topo .wrap .engloba-topo .nav-bar ul{
    gap: 0 21px;
    margin-right: 21px;
    }
}
@media screen and (max-width: 1172px){
    .sec-equipe .wrap {
    padding-right: 100px;
    }
    .ld2-2 {
    width: 500px;
    }
    .sec-blog .wrap .conteudo-blog .box-blog .descricao {
    width: 100%;
    }
    .engloba-texto-banner {
    padding-left: 70.45px;
    padding-right: 100.45px;
    }
    #topo .wrap {
    padding-left: 70.45px;
    padding-right: 100.45px;
    }
    #sec-rodape .rodape-2 .wrap {
    width: 90%;
    }
    #topo .wrap .engloba-topo .nav-bar {
    margin-left: 70.5px;
    }
    #topo .wrap .engloba-topo .logo img {
    width: inherit;
    }
    .engloba-cate-blog .box-cate-blog .descricao .titulo{
    font-size: 14px;
    }
    .engloba-cate-blog .box-cate-blog .descricao .subtitulo p{
    font-size: 13px;
    line-height: 17px;
    }
}
@media screen and (max-width: 1072px) {
    .banner-interno:after {
    bottom: -125px;
    }
    .sec-sobre {
    margin-top: 0;
    }
    .ld1-titulo .wrap-metodologia {
    padding-left: 105px;
    }
    .sec-implantes .wrap {
    width: 81%;
    }
    .sec-sorriso .wrap {
    padding-left: 100px;
    padding-right: 185px;
    }
    #topo.flutuante .wrap .engloba-topo .nav-bar ul{
    justify-content: right;
    }
    #topo.flutuante .wrap {
    width: 90%;
    }
    #topo .wrap .engloba-topo .nav-bar {
    margin-left: 45px;
    width: 100%;
    }
    #topo .wrap{
    padding-left: 40.45px;
    padding-right: 40.45px;
    }
    .ld1{
    /* width: 490px; */
    height: 375px;
    }
    .ld2{
    padding: 38.5px 0;
    }
    .ld2-conteudo-metodologia{
    padding-right: 149.69px;
    padding-left: 10%;
    }
    .sec-metodologia{
    margin-top: 17px;
    }
    #sec-rodape .rodape-2 .tratamento{
    width: 115px;
    }
    .ld2 .descricao{
    width: 41%;
    }
    #sec-rodape .rodape-2 .cadastro{
    width: 236.22px;
    }
    #sec-rodape .rodape-2 .cadastro .cadastro-1 .titulo{
    font-size: 14px;
    }
    .box-sorriso .image-antes{
    /* width: 289.12px; */
    height: 168px;
    }
    .box-sorriso{
    height: 496px;
    }
    .box-sorriso .image-antes:before{
    /* width: 289.12px; */
    height: 168px;
    }
    .box-sorriso .image-antes img{
    /* width: 289.12px; */
    height: 168px;
    }
    .box-sorriso .image-depois img{
    /* width: 262.12px; */
    height: 144px;
    }
    .sec-sorriso .conteudo-1 .titulo-2{
    font-size: 20px;
    }
    .sec-sorriso .conteudo-1 .sub-titulo-2{
    font-size: 30px;
    }
    .ld1-2{
    width:100%;
    text-align: center;
    margin-bottom: 48px;
    }
    .engloba-texto-banner{
    max-width: inherit;
    /* width: 79%; */
    }
    .engloba-texto-banner .descricao-banner{
    margin-top: 0px;
    }
    .sec-equipe .wrap .engloba-titulo .equi-titulo{
    font-size: 30px;
    }
    .sec-equipe .wrap .engloba-titulo p{
    margin-top: 8px;
    }
    .sec-equipe .wrap .engloba-titulo{
    align-items: flex-start;
    }
    }
    @media screen and (max-width: 1023px){
    #topo.flutuante .wrap .engloba-topo .nav-bar ul {
    margin-right: 10px;
    }
    #topo .wrap .engloba-topo .nav-bar {
    margin-left: 25px;
    }
    .fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{
    display: flex;
    align-items: center;
    }
}
@media screen and (max-width: 948px) {
    #sec-blog {
        margin-top: 25px;
    }
    #sec-blog .wrap {
        width: 100%;
        padding: 0 55px;
    }
    .form-contato {
    padding-right: 69.13px;
    }
    .conteudo-contato .engloba-titulos {
    justify-content: space-between;
    }
    .conteudo-contato .social-midia {
    margin-left: inherit;
    margin-right: inherit;
    justify-content: space-between;
    }
    #sec-contato .wrap {
    width: 100%;
    padding: 0px 55px 55px 55px;
    }
    #sec-equipe-interno .engloba-titulo {
    justify-content: space-between;
    }
    #sec-equipe-interno .engloba-equipe-interno {
    padding: 0px 55px 0px 0px;
    }
    #sec-equipe-interno .wrap {
    width: 100%;
    padding: 0 55px;
    }
    #sec-equipe-interno {
    margin-top: 0px;
    }
    .box-missao-visao .descricao-2 p {
    padding-right: 235px;
    line-height: 23px;
    }
    .carrossel-blog .owl-dots {
    bottom: -55px;
    }
    .botao-3 {
    margin: 0 auto;
    margin-top: 80px;
    }
    .sec-sorriso {
    height: 1120px;
    }
    .conteudo-banner:after {
    bottom: -150px;
    }
    #sec-sobre .wrap{
    width:90%;
    position: relative;
    }
    .ld1-sobre{
    width: 45%;
    margin-top: -6px;
    }
    .ld1-titulo .ld1-conteudo-metodologia{
    /* display: none; */
    }
    #sec-rodape .rodape-2 .home{
    }
    .img-firula-sobre{
    width: 63%;
    position: absolute;
    right: -5.2%;
    top: 19%;
    }
    .firula-pd-destaque{
    }
    .firula-banner{
    margin-bottom: -40px;
    }
    .banner-interno{
    }
    .firula-pd-destaque:before{
    width: 220px;
    }
    #sec-tratamentos .box-implante{
    min-width: 248px;
    height: 246px;
    }
    .engloba-tratamentos{
    justify-content: center;
    }
    .banner-interno:after{
    bottom: 0;
    height: 125px;
    }
    .firula-pd-destaque .titulo{
    font-size: 15px;
    top: 43px;
    }
    .engloba-cate-blog{
    justify-content: center;
    }
    #sec-cate-blog .box-blog-cate{
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .engloba-cate-blog .box-cate-blog{
    width: 74.6%;
    }
    .box-form-blog{
    width: 80%;
    }
    #sec-rodape .rodape-2 .redes{
    width: 100%;
    text-align: center;
    }
    #sec-rodape .rodape-2 .redes .img{
    text-align: center;
    justify-content: center;
    flex-direction: row;
    }
    #sec-rodape .rodape-2 .tratamento{
    width: 100% !important;
    text-align: center;
    }
    .engloba-titulo .titulo-h4{
    display: flex;
    align-items: center;
    }
    #sec-blog .wrap .engloba-titulo{
    width: 100%;
    }
    #sec-rodape .rodape-2 .wrap{
    flex-direction: column;
    justify-content: center;
    gap: 48px 0;
    align-items: center;
    padding-bottom: 115px;
    }
    #topo .wrap{
    padding-left: 46.5px;
    }
    #topo .wrap .engloba-topo .nav-bar ul, #topo .wrap .engloba-topo .nav-bar .bnt-agendamento{
    display: none;
    }
    #topo .wrap .engloba-topo{
    align-items: center;
    }
    #topo .wrap .engloba-topo .nav-bar{
    align-items: center;
    justify-content: flex-end;
    border: none;
    }
    .engloba-menu-mobile{
    display: flex;
    margin-right: inherit;
    }
    .engloba-texto-banner .descricao-banner{
    justify-content: center;
    align-items: flex-start;
    }
    #topo .wrap .engloba-topo .logo{
    width: 183px;
    }
    .carrossel-banner .owl-dots{
    margin-left: -12px;
    margin-bottom: -49px;
    }
    .engloba-texto-banner{
    width: 100%;
    justify-content: flex-start;
    padding-left: 55px;
    }
    .sec-sorriso .conteudo-1 .titulo-2{
    font-size: 22px;
    }
    .sec-sorriso .conteudo-1{
    text-align: left;
    }
    .sec-sorriso .conteudo-1 .sub-titulo-2{
    font-size: 45px;
    }
    .ld2-2{
    width: 100%;
    }
    .sec-sorriso .wrap .carrossel-sorriso{
    flex-direction: column;
    margin: 0 auto;
    }
    .sec-sorriso .wrap .conteudo-sorriso{
    justify-content: center;
    flex-direction: column;
    }
    #sec-rodape .rodape-2{
    flex-direction: column;
    }
    #sec-rodape .rodape-2 .home ul, #sec-rodape .rodape-2 .titulo-destaque a{
    text-align: center;
    margin: 0 auto;
    }
    #sec-rodape .rodape-2 .titulo-destaque{
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20.2px;
    }
    .sec-sorriso .wrap{
    width: 90%;
    padding: 67px 0;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-1{
    flex-direction: column;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-2{
    flex-direction: column;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-1 .img{
    width: 55px;
    margin: 0 auto;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-2 .atendi, #sec-rodape .rodape-2 .atendimento .atendimento-1 .atendi{
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-2 .img{
    width: 55px;
    margin: 0 auto;
    }
    #sec-rodape .rodape-2 .cadastro .cadastro-1{
    margin-top: 21px;
    }
    .box-sorriso .image-antes{
    width: 82%;
    height: 324px;
    }
    .box-sorriso{
    height: 785px;
    }
    .box-sorriso .image-antes:before{
    width: 100%;
    height: 324px;
    }
    .box-sorriso .image-antes img{
    width: 100%;
    height: 324px;
    }
    .box-sorriso .image-antes span{
    width: 100%;
    height: 324px;
    }
    .box-sorriso .image-depois{
    width: 53%;
    right: 0;
    }
    .box-sorriso .image-depois img{
    width: 100%;
    height: 250px;
    }
    .sec-equipe .wrap{
    padding-top: 60px;
    padding-left: 55px;
    padding-right: 55px;
    }
    .sec-equipe .box-equipe{
    width:100%;
    }
    .carrossel-equipe .owl-dots{
    position: relative;
    left: inherit;
    margin: 0 auto;
    bottom: inherit;
    margin-top: 45px;
    }
    .sec-equipe .wrap .conteudo-equipe{
    flex-direction: column;
    justify-content: center;
    }
    .ld1{
    position: absolute;
    top: -483px;
    bottom: inherit;
    left: calc(50% - 264px);
    }
    .sec-metodologia .wrap{
    position: inherit;
    }
    .ld2{
    width: 100%;
    padding-top: 0;
    position: inherit;
    }
    .ld1-titulo{
    background: transparent linear-gradient(117deg, #00373d 0%, #2c5458 100%) 0% 0% no-repeat padding-box;
    margin-bottom: 0;
    margin-top: 320px;
    }
    .sec-metodologia{
    /* height: 532px; */
    }
    .ld1-titulo .wrap-metodologia{
    width: 90%;
    padding: 20px 0;
    margin: 0 auto;
    }
    .ld1-titulo .wrap-metodologia .wrap{
    }
    .ld1-conteudo-metodologia .titulo-1, .ld1-conteudo-metodologia .subtitulo-1{
    color:#fff;
    }
    .ld2 .descricao{
    width: 100%;
    }
    .ld2-conteudo-metodologia{
    padding-right: 34px;
    margin-top: 26px;
    padding-left: 5%;
    }
    .carrossel-sorriso .owl-dots{
    position: relative;
    margin: 0 auto;
    left: 0px;
    bottom: 75px;
    }
    .btn-sorriso{
    right: inherit;
    left: calc(50% - 70px);
    bottom: 10px;
    }
    .sec-equipe .wrap .engloba-titulo{
    flex-direction: column;
    }
    .sec-equipe .wrap .engloba-titulo .equi-titulo{
    margin-right: inherit;
    }
    .sec-equipe .wrap .engloba-titulo p{
    margin-top: 30px;
    width: 100%;
    }
    #sec-rodape .rodape-2:after{
    right: -310px;
    width: 960px;
    height: 330px;
    background-size: contain;
    }
}
@media screen and (max-width: 868px){
    #sec-equipe-interno .engloba-equipe-interno {
    padding: 0px 25px 0px 0px;
    }
    .img-firula-missao{
    bottom: -65px;
    width: 337px;
    height: 520px;
    }
    .box-missao-visao .descricao-2 .titulo-visao{
    font-size: 37px;
    }
    .box-missao-visao .descricao-2 p{
    font-size: 15px;
    padding-right: 0;
    }
    .box-missao-visao .descricao-2 {
    width: 390px;
    }
}
@media screen and (max-width: 832px){
    .mgTop {
        margin-top: 0;
    }
    .banner-interno:after {
    height: 100px;
    }
    .box-equipe .image:after {
    max-width: 300px;
    }
    .sec-equipe .box-equipe .equipe-img {
    max-width: 300px;
    }
    .engloba-titulo .titulo-h4 {
    text-align: center;
    }
}
@media screen and (max-width: 825px){
    .engloba-texto-banner .descricao-banner{
    margin-top: 120px;
    }
    .img-firula-sobre {
    width: 67%;
    position: absolute;
    right: -5.2%;
    top: 20%;
    }
}
@media screen and (max-width: 804px){
    .lighbox-agendamento .form .tratamento{
    width: 66%;
    }
    .lighbox-agendamento .form{
    justify-content: space-between;
    }
}
@media screen and (max-width: 791px) {
    .box-equipe .image:after {
        max-width: 285px;
    }
    .sec-equipe .box-equipe .equipe-img {
        max-width: 285px;
    }
    #sec-cate-blog .engloba-cate-blog .box-cate-blog{
    width: 100%;
    }
    .lightbox-equipe .conteu-lightbox-sobre{
    flex-direction: column;
    justify-content: center;
    }
    .banner-interno:after{
    height: 139px;
    }
    .lightbox-equipe{
    height: auto;
    padding: 53px 38px;
    }
    .lightbox-equipe .descricao{
    width:100%;
    margin-top:50px;
    }
    .lightbox-equipe .image{
    width: 95%;
    margin-top: 32px;
    }
    .lighbox-agendamento .form label{
    width: 100%;
    }
    .lighbox-agendamento .form .tratamento{
    width: 100%;
    }
    .lighbox-agendamento .conteudo-lightbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .lighbox-agendamento .engloba-titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -21px;
    }
    .lighbox-agendamento .engloba-titulo .titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .lighbox-agendamento .engloba-titulo p{
    text-align: center;
    color: #5CB9BD;
    }
    .lighbox-agendamento .form{
    justify-content: center;
    margin-top: 11px;
    gap: 12px 0;
    }
    .box-sorriso .image-depois img{
    /* height: 180px; */
    }
    .box-sorriso .image-antes img{
    height: 268px;
    }
    #sec-rodape .rodape-2:after{
    right: -386px;
    width: 906px;
    height: 306px;
    }
    .box-sorriso .image-antes:before{
    height: 268px;
    }
    .box-sorriso .image-antes span{
    height: 268px;
    }
    .btn-sorriso{
    left: calc(50% - 59px);
    }
    .box-sorriso{
    height: 720px;
    }
    .curva-verdex{
    width: 100%;
    height: 215px;
    bottom: inherit;
    top: 65%;
    left: 0;
    }
    .sec-sorriso .wrap{
    padding-top: 131px;
    }
    .banner-interno:after{
    height: 85px;
    background-size: cover;
    }
    }
@media screen and (max-width: 697px) {
    .banner-interno:after{
    height: 75px;
    }
    .conteudo-banner:after {
        bottom: -190px;
    }
    .sec-equipe .box-equipe .equipe-img {
        max-width: 240px;
    }
    .box-equipe .image:after {
        max-width: 240px;
    }
    #sec-equipe-interno .wrap {
        padding: 0 55px;
        padding-bottom: 80px;
    }
    .mgTop {
        margin-top: 20px;
    }
}
@media screen and (max-width: 660px) {
    #sec-equipe-interno {
        margin-top: 30px;
    }
    .sec-consultas .conteudo-consultas .box-consulta:not(.beefup) .tratamento:before, .sec-consultas .conteudo-consultas .box-consulta .beefup__head > button:before{
        width: 19px;
        height: 10px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 8.18px;
    }
    .sec-consultas .conteudo-consultas .box-consulta .tratamento{
        font-size: 12px !important;
        height: auto !important;
        padding: 16px 15px !important;
    }
    .box-equipe .image:after {
        max-width: 220px;
    }
    .sec-equipe .box-equipe .equipe-img {
        max-width: 220px;
    }
    .firula-banner{
    margin-bottom: -52px;
    }
    .box-galeria-sobre{
    width: 96%;
    margin-top: 20px;
    }
    .firula-pd-destaque{
    bottom: -87px;
    }
    .ld1-sobre .descricao-1{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .ld1-sobre .descricao-1 .titulo{
    align-items: center;
    }
    #sec-sobre .wrap{
    padding-top: 94px;
    }
    .sec-missao-visao{
    flex-direction: column-reverse;
    margin-top: inherit;
    align-items: center;
    padding-bottom: 42px;
    }
    .sec-sobre {
    margin-top: 0;
    }
    .img-firula-missao::after {
    left: 2px;
    top: 69px;
    }
    .box-missao-visao{
    width: 100%;
    }
    .box-missao-visao .descricao-2{
    width: 100%;
    }
    .img-firula-missao {
    position: relative;
    display: flex;
    right: -44px;
    bottom: -42px;
    width: 300px;
    height: 314px;
    }
    .eng-division{
    margin-top: 76px;
    }
    .img-firula-sobre{
    margin-left: -12%;
    }
    .box-missao-visao .descricao-2{
    display: flex;
    align-items: center;
    }
    .box-missao-visao .descricao-2 .titulo-visao{
    align-items: center;
    }
    .box-missao-visao .descricao-2 p{
    text-align: center;
    }
    .banner-interno:after{
    height: 70px;
    }
    .ld1-sobre{
    width: 100%;
    margin: 0 auto;
    }
    #sec-sobre .wrap{
    padding-bottom:0;
    padding-top: 41px;
    }
    .img-firula-sobre{
    position: relative;
    left: inherit;
    bottom: -68px;
    top: inherit;
    height: 100%;
    width: 103%;
    margin-top: 0;
    }
}
@media screen and (max-width: 599px) {
    #sec-equipe-interno .wrap {
        padding-left: 45px;
        padding-right: 40px;
    }
    .box-equipe .image:after {
        max-width: inherit;
    }
    .sec-equipe .box-equipe .equipe-img {
        max-width: inherit;
    }
    .sec-sorriso {
        height: auto;
    }
    .ld1 {
        top: -481px;
    }
    #sec-rodape .rodape-2 .wrap .eng-logo{
    height:auto;
    }
    #sec-rodape .fim{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
    height: auto;
    padding: 20px 0;
    }
    #sec-rodape .rodape-2{
    padding-bottom: 50px;
    }
    .sec-implantes{
    /* margin-top: -59px; */
    }
    #sec-rodape .fim .titulo-credito{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    }
    .engloba-equipe-inter .box-equipe{
    margin-top: 0;
    display: flex;
    flex-direction: column;
    }
    #sec-convenio .engloba-convenio .box-convenio{
    min-width: 265px;
    }
    #sec-convenio .engloba-convenio{
    justify-content: center;
    }
    .engloba-equipe-inter{
    gap: 49px 0;
    }
    .whats-atendi .engloba-titulo{
    width: 100%;
    }
    .engloba-equipe-inter .box-equipe .equipe-img{
    height: 100%;
    }
    .conteudo-contato .social-midia .whats-atendi{
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
    .conteudo-contato .social-midia{
    width: 100%;
    flex-direction: column;
    gap: 27px 0;
    margin: 0 auto;
    justify-content: center;
    /* text-align: center; */
    }
    .ld1-form-contato, .ld2-form-contato{
    width: 100%;
    margin-top: 10px;
    }
    .formulario button{
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
    }
    #sec-contato .wrap{
    width: 100%;
    }
    .sec-blog .wrap .engloba-titulo .titulo{
    font-size: 25px;
    }
    .form-contato{
    padding: 47px 40px;
    }
    .engloba-cate-blog{
    gap: 43.82px 0;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    }
    .box-blog-cate{
    width: 100%;
    }
    .box-blog .voltar-compartilhar{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
    }
    .box-blog .voltar-compartilhar a{
    width: 100%;
    }
    #sec-blog .box-blog .image{
    height: 334px;
    }
    #sec-blog .box-blog .descricao{
    margin-top: 25px;
    }
    #sec-cate-blog .engloba-cate-blog .box-cate-blog{
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-width: auto;
    }
    .engloba-titulo .titulo-h4{
    font-size: 31px;
    line-height: 34px;
    }
    #sec-blog .wrap{
    width: 100%;
    }
    .box-form-blog{
    justify-content: center;
    }
    #sec-cate-blog .engloba-cate-blog .box-cate-blog .image{
    width:100%;
    }
    #sec-cate-blog .engloba-cate-blog .box-cate-blog .descricao{
    width:100%;
    }
    #topo .wrap{
    padding: 0 22px;
    padding-top: 22px;
    }
    .sec-galeria-sobre{
    margin-top: -75px;
    }
    .banner-interno:after{
    height: 60px;
    }
    #topo .wrap .engloba-topo .logo{
    width: 120px;
    height: auto;
    }
    .ld1-conteudo-metodologia .titulo-1, .ld1-conteudo-metodologia .subtitulo-1{
    font-size: 29px;
    }
    .sec-sorriso .conteudo-1 .sub-titulo-2{
    font-size: 23px;
    line-height: initial;
    }
    .btn-implante{
    margin: 0 auto;
    margin-top: 41px;
    }
    .carrossel-implantes .owl-dots{
    position:relative;
    left: inherit;
    bottom: inherit;
    margin: 0 auto;
    display: table;
    right: inherit;
    margin-top: 42px;
    }
    .engloba-texto-banner .descricao-banner{
    margin-top: 120px;
    line-height: 41px;
    }
    .eng-flutuante {
    top: 69%;
    }
    .engloba-texto-banner .titulo{
    font-size: 19px;
    }
    .engloba-texto-banner .subtitulo{
    font-size: 50px;
    }
    .instaFlutuante{
    display: none;
    }
    .box-sorriso .image-depois img{
    height: 100px;
    }
    .box-implante{
    height: 180px;
    }
    .box-sorriso .image-antes img{
    height: 174px;
    }
    #sec-rodape .rodape-2:after{
    right: inherit;
    left: -125px;
    width: 145%;
    height: 305px;
    bottom: -10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    }
    .box-sorriso .image-antes:before{
    height: 174px;
    }
    .box-sorriso .image-antes{
    height: 223px;
    }
    .box-sorriso .image-antes span{
    height: 174px;
    }
    .btn-sorriso{
    left: calc(50% - 59px);
    }
    .box-sorriso{
    height: 470px;
    }
    .curva-verdex{
    width: 100%;
    height: 190px;
    bottom: inherit;
    top: 56%;
    left: 0;
    }
    .sec-sorriso .wrap{
    padding-top: 61px;
    }
    #sec-rodape .rodape-2 .redes{
    order: 3;
    }
    #sec-rodape .rodape-2 .atendimento{
    order: 2;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    }
    #sec-rodape .rodape-2 .cadastro{
    order: 1;
    width: 100%;
    }
    #sec-rodape .rodape-2 .redes .titulo-sub .titulo{
    display:none;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-1, #sec-rodape .rodape-2 .atendimento .atendimento-2{
    flex-direction: row;
    justify-content: space-between;
    width: 52%;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-2 .atendi, #sec-rodape .rodape-2 .atendimento .atendimento-1 .atendi{
    text-align: left;
    margin-top: 0;
    margin-left: 10px;
    justify-content: inherit;
    }
    #sec-rodape .rodape-2 .atendimento .atendimento-1 .img, #sec-rodape .rodape-2 .atendimento .atendimento-2 .img{
    margin: inherit;
    width: 35px;
    height: 35px;
    margin-bottom: 0;
    }
    #sec-rodape .rodape-2 .wrap{
    padding-bottom: 0;
    }
    #sec-rodape .rodape-2 .redes .titulo-sub .sub{
    margin-top: 0;
    }
    .sec-blog .wrap .conteudo-blog .box-blog{
    flex-direction: column;
    }
    .sec-blog .wrap .conteudo-blog .box-blog .image{
    width: 100%;
    height: 261px;
    border-radius: 20px 20px 0 0;
    }
    .sec-blog .wrap .conteudo-blog .box-blog .descricao{
    width: 100%;
    border-radius: 0 0 20px 20px;
    height: auto;
    padding: 48px 20px;
    padding-top: 30px;
    }
    .sec-blog .wrap .conteudo-blog .box-blog .descricao h4{
    margin-bottom: 1px;
    font-size: 18px;
    }
    .carrossel-blog .owl-dots{
    position: relative;
    left: inherit;
    bottom: inherit;
    margin: 0 auto;
    margin-top: 51px;
    }
    .btn-blog{
    margin: 0 auto;
    margin-top: 43.65px;
    }
    .sec-equipe .wrap{
    width:100%;
    padding-top: 46px;
    padding-left: 0;
    padding-right: 0;
    }
    .sec-equipe .wrap .engloba-titulo{
    width: 100%;
    }
    .sec-implantes .wrap{
    width:100%;
    padding-left: 10px;
    padding-right: 10px;
    }
    .sec-sorriso .wrap .carrossel-sorriso{
    height: 285px;
    }
    .firula-banner{
    background-size: contain;
    height: 141px;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 5px;
    }
    .sec-equipe .wrap .engloba-titulo .equi-titulo{
    font-size: 31px;
    }
}
@media screen and (max-width: 561px) {
    .carrossel-sorriso .owl-dots {
        bottom: 69px;
    }
    .btn-sorriso {
        bottom: 40px;
    }
    .engloba-titulo-pd p{
    width:100%;
    }
    .banner-interno:after{
    height: 60px;
    }
    .banner-interno{
    height: 303px;
    }
    .engloba-texto-banner .descricao-banner {
    margin-top: 120px;
    line-height: 26px;
    }
    .engloba-texto-banner .titulo{
    font-size: 16px;
    }
    .engloba-texto-banner .subtitulo{
    font-size: 32px;
    }
    .lighbox-agendamento .form label{
    width: 93%;
    }
    .lighbox-agendamento .form .tratamento{
    width: 93%;
    }
    .lighbox-agendamento .form label{
    width: 75%;
    }
    .lighbox-agendamento .form .tratamento{
    width: 75%;
    }
    .lighbox-agendamento .conteudo-lightbox .engloba-titulo p{
    width: 46%;
    }
    .lighbox-agendamento:before{
    background-position: right;
    }
}
@media screen and (max-width: 519px) {
    #sec-contato .wrap {
        padding: 0 30px 35px 30px;
    }
    #sec-rodape .rodape-2 .redes .img a{
        
    }
    #sec-rodape .rodape-2 .home ul{flex-direction: column;justify-content: center;align-items: center;}
    .ld1 {
    }
    .ld1 {
        left: calc(45% - 265px);
    }
    .sec-equipe .wrap .engloba-titulo p {
        text-align: center;
    }
    .sec-equipe .wrap .engloba-titulo .equi-titulo:after {
    margin: 0 auto;
    margin-top: 21px;
    }
    .sec-equipe .wrap .engloba-titulo {
        align-items: center;
    }
    .sec-sorriso .conteudo-1 p {
        width: 100%;
    }
    .sec-sorriso .conteudo-1 {
        text-align: center;
    }
    .ld2-conteudo-metodologia .descricao p {
        text-align: center;
    }
    .descricao {
        align-items: center;
    }
    .ld1-sobre .descricao-1 p {
        text-align: center;
    }
    .form-contato .engloba-titulo {
        text-align: center;
    }
    .conteudo-contato .social-midia {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .conteudo-contato .social-midia .endereco .subtitulo {
        width: 230px;
    }
    .endereco .engloba-titulo {
        margin-left: 0;
    }
    .whats-atendi .engloba-titulo {
        width: auto;
    }
    .conteudo-contato .engloba-titulos {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #sec-contato .conteudo-contato .engloba-titulos .titulos::after {
        margin-left: 45px;
    }
    #sec-equipe-interno .engloba-equipe-interno .box-equipe .equipe-img {height: 100%;}
    .box-equipe .image {
        height: 100%;
    }
    #sec-equipe-interno .engloba-titulo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .box-equipe .image:after {
        top: -15px;
    }
    .box-equipe .descricao {
        margin-left: 15px;
    }
    #sec-equipe-interno .engloba-equipe-interno .box-equipe {
        width: 100%;
        margin-bottom: 40px;
    }
    .firula-pd-destaque{
    bottom: -108px;
    display: none;
    }
    .firula-pd-destaque:before{
    width: 175px;
    }
    .banner-interno:after{
    height: 50px;
    }
    .ld1-sobre .descricao-1 .titulo{
    font-size: 30px;
    }
}
@media screen and (max-width: 465px) {
    .form-contato .engloba-titulo .titulo {
        font-size: 35px;
    }
    .conteudo-contato .engloba-titulos .titulos {
        font-size: 36px;
        font-weight: 400;
    }
    .box-implante {
        margin-bottom: 20px;
    }
    .conteudo-implantes {
        flex-direction: column;
    }
    #sec-equipe-interno .engloba-titulo p {
        font-size: 15px;
    }
    #sec-equipe-interno .engloba-titulo .titulo:after {
        margin-left: 15px;
    }
    #sec-equipe-interno .engloba-titulo .titulo {
        font-size: 35px;
        font-weight: 400;
    }
    .sec-consultas .categoria li a {
        font-size: 21px;
        padding-left: 10px;
    }
    .ld1 img {
        object-fit: inherit;
        max-width: 480px;
    }
    .conteudo-banner:after {
        bottom: -205px;
    }
    .box-equipe .image:after {
        top: 15px;
        height: 80%;
    }
    .sec-consultas .categoria li.active {
        /* padding: 0; */
    }
    .sec-consultas .categoria{
        flex-direction: column;
    }
    .sec-consultas .categoria li{width: 100%;}
    .box-rede-footer {
        margin-bottom: 15px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .box-rede-footer img{
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .box-rede-footer:nth-of-type(3) .descricao p {
    width: 236px;
    }
    #sec-rodape .rodape-2 .redes .img {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .banner-interno:after{
    height: 45px;
    }
    .ld1 {
        left: calc(50% - 280px);
        justify-content: center;
    }
}
@media screen and (max-width: 440px) {
    .banner-interno:after{
    height: 50px;
    }
}
@media screen and (max-width: 409px) {
    .ld1 {
        top: -464px;
    }
    .banner-interno:after{
    height: 40px;
    }
    .ld1 img {
        max-width: 420px;
    }
    .ld1-conteudo-metodologia .titulo-1, .ld1-conteudo-metodologia .subtitulo-1 {
        font-size: 21px;
    }
}
@media screen and (max-width: 391px) {
    .form-contato .engloba-titulo .titulo {
        font-size: 33px;
    }
    .sec-consultas .categoria li.active {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .sec-consultas .categoria {
        flex-direction: column;
    }
    .ld1-conteudo-metodologia .titulo-1, .ld1-conteudo-metodologia .subtitulo-1 {
        text-align: center;
    }
    .banner-interno:after{
    height: 40px;
    background-size: cover;
    }
    .ld1 img {
        max-width: 400px;
    }
    .ld1 {
        top: -477px;
    }
}
@media screen and (max-width: 383px) {
    .ld1 img {
        max-width: 370px;
    }
    .conteudo-banner:after {
        bottom: -220px;
    }
    .sec-sorriso .wrap{
    padding-top: 64px;
    padding-bottom: 0;
    }
    .box-sorriso .image-depois img{
    height: 88px;
    }
    .ld1{
    width: 100%;
    left: 0;
    height: 273px;
    top: -375px;
    }
    .ld1-titulo{
    margin-top: 176px;
    }
    .sec-sorriso .conteudo-1 p{
    margin-top: 14px;
    }
    .box-sorriso{
    height: 381px;
    }
    .box-sorriso .image-antes{
    height: 176px;
    }
    .sec-consultas .conteudo-consultas .box-consulta .beefup__head > button:after {
        right: -20px;
    }
    .sec-consultas .conteudo-consultas .box-consulta .beefup__head > button {
        font-size: 19px;
    }
    .sec-equipe .wrap {
        padding-left: 0;
        padding-right: 0;
    }
    .engloba-texto-banner {
        padding-right: 45px;
    }
    #sec-contato .wrap {
        padding: 0px 45px 40px 45px;
    }
}
@media screen and (max-width: 372px) {
    .ld1 {
        top: -362px;
    }
}