@import url('boot.css');
@import url('../plugins/bootstrap/css/bootstrap.min.css');
@import url('../font/font-awesome/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    padding: 0px;
    margin: 0px;
}
/**/
:root{
    --cor-headers: #64b533;
    --cor-background: #214C1B;
    --cor-fonte-padrao: #25311C;
    --cor-botao-padrao: #0A2231;
    --cor-botao-agenda: #64b533;
    --cor-footer: #0A2231;
    --cor-cinza: #EDF2EA;
}
/**/




html{
    font-size: 15px;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
:target {
    scroll-margin-top: .8em;
}

body{
    background-color: #fff;
    color: var(--cor-fonte-padrao);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.4rem;
    height: 100%;
    font-weight: 400 !important;
}
a{
    color: #334155;
}
a:hover{
    color: var(--cor-fonte-padrao);
    text-decoration: none;
}

/* MENU LATERAL */
body.menu-open{
    overflow: hidden;
}

#menu-lateral{
    position: fixed;
    height: 100%;
    top: 0;
    bottom: 0;
    left: -360px;
    width: 360px;
    visibility: hidden;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    z-index: 9999 !important;
    background-color: #fffffff2;
}

#menu-lateral-fundo{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, .71);
    opacity: 86%;
    z-index: 9000 !important;
}

#menu-lateral-fundo.open{
    display: block;
}

#menu-lateral.open {
    visibility: visible;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

#menu-lateral .conteudoMenuHeader{
    background: #fff;
    padding: 2rem 3rem 2rem 1rem;
    position: relative;

    border-bottom: 1px solid #E2E2E2;
}
#menu-lateral .conteudoMenuHeader strong{
    display: block;
    color: #000;
}
#menu-lateral .conteudoMenuHeader .btn{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#menu-lateral .conteudoMenuHeader strong a{
    margin-left: 8px;
    display: inline-block;
    font-size: 1.2rem;
}

#menu-lateral .conteudoMenu{
    padding: 1rem 1rem;
    position: relative;
    height: 100%;
    overflow: hidden;
}
#menu-lateral .conteudoMenu .menu a{
    font-size: 1.27rem;
    font-weight: 700;
    letter-spacing: -.4px;
    color: #141617;
}

#menu-lateral .conteudoBody{
    overflow-y: scroll;
}

#menu-lateral .fechar{
    position: absolute !important;
    top: 0px;
    right: 14px;
    font-size: 2em;
    padding: 4px;
    z-index: 3;
    color: #707070 !important;
    border: 0px !important
}
/* MENU LATERAL */


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    margin: 0px;
    font-weight: 400;
    letter-spacing: -0.04em;
  /*  font-family: "Montserrat", sans-serif;*/
}

h1, .h1{
    font-size: 4.27rem;
}
h2, .h2{
    font-size: 3.2rem; /* title blocos*/
}
h3, .h3{
    font-size: 1.6rem;/* title empresas*/
}
h4, .h4{
    font-size: 1rem;;/* title oferts*/
}
h5, .h5{
    font-size: .87rem;/* title oferts*/
}

@media (max-width: 768px) {
    h1, .h1{
        font-size: 3rem;
    }
    h2, .h2{
        font-size: 2.4rem;
    }
    h3, .h3{
        font-size: 1.2rem;
    }

}

.max-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.max-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*REMOVE AS MARGINS NO MOBILE*/
@media (max-width: 768px) {
    .mobile-no-margin {
        margin-right: -1rem !important;
        margin-left: -1rem !important;
        border-radius: 0px !important;
        border-left: 0px !important;
        border-right: 0px !important;
    }
}

.btn{
    padding: 0.5rem 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
}

.btn-link{
    color: #334155;
}
.btn-link:hover{
    color: #000;
    text-decoration: none;
}

.btn-padrao{
   letter-spacing: -0.04em;
    height: 45px;
    line-height: 30px;
    font-size: 1.06rem;
}
.btn-padrao i{
    margin-right: 4px;
    font-size: 1.4rem
}
.btn-default{
    border: 1px solid #C4C4C4;
}
.btn-default i{
    color: var(--cor-headers);
}
.btn-success{
    background: var(--cor-headers);
    border: 0px;
}


header{
    border-bottom: 1px solid #eee;
    background: #fff;
}
header .navbar  {
    background: #ffffffe6;

}
header .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 1.07rem;
    color: #25311C;
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
    border-radius: 4px;
}

main{
    margin-top: 74px;
}

.btn-agendar-wpp{
    color: #fff;
    background: var(--cor-headers);
    display: flex;
    align-items: center;
    letter-spacing: -0.04em;
    height: 45px;
    border: 0px !important;
}
.btn-agendar-wpp i{
    font-size: 1.47rem;
    margin-right: 8px;
}

.btn-secondary{
    background: var(--cor-botao-padrao);
    height: 49px;
    line-height: 49px;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media(max-width: 768px) {
    header .navbar-brand img {
        height: 34px;
    }
    main{
        margin-top: 60px;
    }
}


.section-destaque{
    position: relative;
    min-height: 65vh;

}
.section-destaque:before{
    background: url(../img/fundo-destaque-scalla2.fw-min.webp) left center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    content: '';
}
.section-destaque:after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    /*background: #89BD66;*/
    background: #0a1006c2;
    opacity: 66%;
}
.section-destaque .destaque{
    /*background: url(../img/fundo-head.webp) center center no-repeat;*/
    background-size: cover;
    color: #fff;
}
.section-destaque .destaque h1{
    font-size: 1.6rem;
    font-weight: 700;
    display: none;
}
.section-destaque .destaque h2{
       font-size: 3.0rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.0em !important;
    display: block;
    color: #fff;
   /* color: var(--cor-background);*/
}

.section-destaque .destaque h3{
        font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.0em !important;
    display: block;
    color: #fff;
    margin-bottom: 30px;
}

.section-destaque .destaque .btn-agendar-wpp{
    color: #fff;
    background: var(--cor-headers);
    display: flex;
    align-items: center;
    letter-spacing: -0.04em;
    font-size: 1.33rem;
    height: 59px;
    width: 309px;
}
.section-destaque .destaque .btn-agendar-wpp i {
    font-size: 1.77rem;
    margin-right: 12px;
    color: #fff;
}
.section-destaque .destaque small{
    font-size: 0.93rem;
}
    .section-destaque{
        padding-top: 30px;
        padding-bottom: 30px;
    }

@media(max-width: 768px) {
    .section-destaque .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    .section-destaque .destaque{
        margin-bottom: 30px;
    }
    .section-destaque .destaque h2 {
        font-size: 2.73rem;
    }
    .section-destaque .destaque h1 {
        font-size: 1.3rem;
    }
}

.section{
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
@media(max-width: 768px){
  .section{
    padding-top: 30px;
    padding-bottom: 30px;
  }
}




.section-chamada{
    background: var(--cor-background);
    padding-top: 30px;
    padding-bottom: 30px;
}
.section-chamada img{
    border-radius: 24px;
    margin-right: 15px;
}
.section-chamada h2{
    font-size: 2.53rem;
    color: #fff;
    font-weight: 700;
}
.section-chamada h2 span{
    color: var(--cor-headers);
}

.btn-chamada-wpp{
    background-color: var(--cor-headers);
    font-size: 1.33rem;
    height: 59px;
    line-height: 45px;
}
.btn-chamada-wpp i{
    font-size: 1.9rem;
    margin-right: 4px;
}
@media(max-width: 768px) {
    .section-chamada img{
        height: 62px;
    }
    .section-chamada h2{
        font-size: 1.6rem;
    }
    .btn-chamada-wpp{
        margin-top: 30px;
        display: block;
        text-align: center;
    }
}

.page-header{
    margin-bottom: 45px;
}
.page-header h2{
    font-size: 3.2rem;
    margin-bottom: 8px;
    color: var(--cor-headers);
}
.page-header h2 strong{
    font-weight: 700;
}
.page-header p{
    font-size: 1.27rem;
}

.page-text p{
    font-size: 1.27rem;
    line-height: 1.6em;
}

.page-text ul{
    font-size: 1.27rem;
    line-height: 1.6em;
    list-style-position: inside;
}


@media(max-width: 768px) {
    .page-header h2 {
        font-size: 2.2rem;
    }
    .page-header p{
        font-size: 1.07rem;
    }
    .page-text p{
         font-size: 1.07rem;
    }
}

.section-especialidades{
    background: var(--cor-cinza);
    padding-bottom: 105px;
}
.card-especialidade{
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    border: none !important;
    border-radius: 12px;
    font-size: 1.03rem;
    text-align: center;
}
.card-especialidade .card-body{
    padding: 48px 24px 32px 24px;
}
.card-especialidade .card-title{
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cor-headers);
    margin-top: 15px;
}
.card-especialidade .card-body span{
    display: block;
}

.card-especialidade .icon{
    background: #eee;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    line-height: 101px;
    text-align: center;
    border: 2px double #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}


.section-sobre-scalla{
    position: relative;
    padding-top: 105px;
    padding-bottom: 80px;
}
.section-sobre-scalla .img-top{
    position: absolute;
    left: 50%;
    top: -43px;
    margin-left: -43px;
    border-radius: 24px;
}

.img-sobre{
    -webkit-border-top-left-radius: 100px;
    -webkit-border-bottom-right-radius: 100px;
    -moz-border-radius-topleft: 100px;
    -moz-border-radius-bottomright: 100px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

@media(max-width: 768px){
    .section-especialidades{
        padding-bottom: 65px;
    }
    .section-sobre-scalla{
        padding-top: 65px;
        padding-bottom: 50px;
    }
    .section-sobre-scalla .img-top{
        position: absolute;
        width: 60px;
        left: 50%;
        top: -30px;
        margin-left: -30px;
        border-radius: 24px;
    }
}
.section-depoimentos{
    position: relative;
}
.section-depoimentos .container{
    border-top: 4px solid #EDF2EA;
    padding-top: 60px;
    padding-bottom: 45px;
}
.section-depoimentos .img-top{
    position: absolute;
    left: 50%;
    top: -18px;
    margin-left: -18px;
    border-radius: 9px;
}


.card-depoimento-video .embed-responsive  {
    border-radius: 8px;
    background: #E3E3E3;
}
.card-depoimento-video .embed-responsive  iframe{
    border-radius: 8px;
}
.card-depoimento-video h3{
    font-size: 1.27rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.card-depoimento-video span{
    color: var(--cor-headers);
    font-size: 1rem;
}
@media(max-width: 768px){
    .card-depoimento-video{
        margin-bottom: 15px;
    }
}


.section-unidade{
    background: rgb(237,242,234);
    background: linear-gradient(180deg, rgba(237,242,234,1) 0%, rgba(255,255,255,1) 100%);
}

.card-unidade{
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    border: none !important;
    border-radius: 12px;
    font-size: 1.13rem;
    position: relative;
    -webkit-border-radius: 15px;
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius: 15px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-radius: 15px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.card-unidade .card-body{
    padding: 47px;
}
.card-unidade .img-top{
    position: absolute;
    width: 48px;
    left: 40px;
    top: -24px;
    border-radius: 9px;
}
.card-unidade .page-text p{
    line-height: 1.2em;
}
.card-unidade .page-header{
    margin-bottom: 20px !important;
    line-height: 1.4em;
}
.card-unidade .page-header .card-title{
    font-size: 2.13rem;
}
.card-unidade .telefone{
    font-size: 1.6rem;
    margin-bottom: 20px !important;
}
.card-unidade .telefone i{
    font-size: 1.8rem;
    margin-right: 4px;
    color: var(--cor-headers);
}

@media(max-width: 768px){
    .card-unidade .card-body{
        padding: 47px 30px 30px 30px;
    }
    .card-unidade .card-body .btn{
        margin-bottom: 8px;
        display: block;
    }
}

.section-contato{

}
.section-contato .title-mapa{
    font-size: 1.27rem;
    background:  var(--cor-headers);
    color: #fff;
    display: inline-block;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-left: 16px;
    padding: 12px 40px 12px 40px;
}

.section-contato .mapa-google{
   border-radius: 8px;
    border: 1px solid  var(--cor-headers);
    overflow: hidden;
}

.card-contato{
    border-radius: 12px;
    border: 1px solid  var(--cor-headers);
}
.card-contato .card-body{
    padding: 36px 78px;
    font-size: 1.17rem;
}
.card-contato .card-title{
    font-size: 3.2rem;
    font-weight: 700;
    color:  var(--cor-headers);
    margin-bottom: 0px;
}
@media(max-width: 768px){
    .card-contato{
        margin-top: -50px;
        height: auto !important;
    }
    .card-contato .card-body {
        padding: 25px 30px;
        font-size: 1.07rem;
    }
    .card-contato .card-title {
        font-size: 2.4rem;
    }
    .section-contato{
        padding-bottom: 0px !important;
    }
    .section-contato .mapa-google{
        border-bottom: 0px !Important;
    }

}
.form-group {
    margin-bottom: 1.3rem;
}
.form-group label{
    font-weight: 700;
    font-size: 1.07rem;
}
.form-group  input.form-control {
    font-size: 1rem;
    font-weight: normal;
    line-height: 45px;
    height: 45px;
    padding: 0.375rem 1rem;
    box-shadow: 2px 2px 2px #eee inset !important;
    color: #000;
    background: #fdfdfd;
    border: 1px solid #dfe4e8;
}
.form-group .btn-success{
    background-color:  var(--cor-headers);
    border: 0px;
    padding-right: 36px;
    padding-left: 36px;
}



footer .footer2{
    font-size: 1.07rem;
    color: #354629;
    padding-top: 15px;
    padding-bottom: 15px;
}
footer .footer1{
    color: #fff;
    background: var(--cor-footer);
    padding-top: 30px;
    padding-bottom: 30px;
}
footer .logo-rodape{
    background: #fff;
    padding: 12px 40px 20px 40px;
    -webkit-border-bottom-right-radius: 24px;
    -webkit-border-bottom-left-radius: 24px;
    -moz-border-radius-bottomright: 24px;
    -moz-border-radius-bottomleft: 24px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    display: inline-block;
    margin-bottom: 30px;
    margin-top: -2px;
}
footer .logo-rodape img{
    height: 49px;
}
footer .descricao-rodape{
    font-size: 1.13rem;
}
footer .descricao-rodape .title{
    font-size: 1.6rem;
    color:  var(--cor-headers);
    margin-bottom: 15px;
    display: block;
}
footer .descricao-rodape .telefone{
    font-size: 1.27rem;
}
footer .descricao-rodape .telefone i{
    font-size: 1.6rem;
}

footer .info-rodape p{
    font-size: 1.27rem;
    line-height: 1.2em;
}
footer .contato-rodape{
    font-size: 1.13rem;
}
footer .contato-rodape small{
    font-size: 0.93rem;
}
footer hr{
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 1px solid #707070;
}
footer .redes-sociais{
    margin-top: 20px;
}
/*
footer .redes-sociais a{
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    margin-right: 8px;
}
footer .redes-sociais a.icon-google{
    background: #fff;
    margin-right: 0px;
    width: 57px;
    height: 57px;
}
footer .redes-sociais a.icon-google img{
    width: 57px;
    margin-top: 3px;
}

footer .redes-sociais a.icon-facebook{
    border-radius: 20px;
}*/

footer .redes-sociais a.icon-facebook,
    footer .redes-sociais a{
        border-radius: 10px;
        display: inline-block;
    }
    footer .redes-sociais a img{
        height: 40px;
    }

    footer .redes-sociais a.icon-google{
        background: #fff;
        margin-right: 0px;
        width: 40px;
        height: 40px;
        top: -2px;
        position: relative;
    }
    footer .redes-sociais a.icon-google img{
        height: 34px;
        width: 40px;
        margin-top: 3px;
    }

 footer .logo-rodape2 {
     display: block;
        margin-bottom: 30px;
    }

@media(max-width: 768px){
    footer .container{
        padding-right: 30px;
        padding-left: 30px;
    }
    footer .info-rodape p {
        font-size: 1.07rem;
    }
    footer .footer2 {
        font-size: 0.85rem;
    }
    /*
    footer .redes-sociais a.icon-facebook,
    footer .redes-sociais a{
        border-radius: 10px;
    }
    footer .redes-sociais a img{
        height: 40px;
    }

    footer .redes-sociais a.icon-google{
        background: #fff;
        margin-right: 0px;
        width: 40px;
        height: 40px;
    }
    footer .redes-sociais a.icon-google img{
        height: 34px;
         width: 40px;
        margin-top: 3px;
    }*/
    footer .logo-rodape2{
        margin-bottom: 15px;
    }
    footer .logo-rodape2 img{
        width: 255px;

    }
}


.section-avaliacao .nota{
    font-size: 1.33rem;
}
.section-avaliacao .page-header{

}
.section-avaliacao .page-header h2{
    font-size: 2.13rem;
    color: #354629;
    margin-top: 30px;
}

.card-depoimento{
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    border: 1px solid #eeeeee45 !important;
    border-radius: 9px;
    font-size: 1.07rem;
    position: relative;
    color: #354629;
    line-height: 1.4em;
    font-weight: 400;
    overflow: hidden;
}
.card-depoimento .card-header{
    background: #fff;
    border: 0px;
    font-size: 1.6rem;
    padding-top: 30px;
}
.card-depoimento .card-footer{
    background: #fff;
    border: 0px;
    padding-bottom: 30px;
}
.card-depoimento .card-footer .icon{
    color: #fff;
    font-size: 1.6rem;
    background: #ccc;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    margin-right: 8px;
}

.card-depoimento .card-footer .icon1{
    background: #EC3377;
}
.card-depoimento .card-footer .icon2{
    background: #5D64BA;
}


.pulse {
  animation: pulse 0.7s infinite;
  display: table;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
  }
}

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


.wpp-flutuante{
    position:fixed;
    bottom: 20px;
    right: 20px;
    z-index:100;
}
.wpp-flutuante img{
    height:75px;
}


.reviews-google a{
   /* display: none !important;*/
}



.card-equipe img{
    border-radius: 50%;
}
.card-equipe h3{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cor-headers);
    margin-top: 15px;
}

.card-equipe .page-text p{
        font-size: 1.07em;
}

@media (max-width: 768px) {
    .card-equipe .page-text ul{
        font-size: 1.07rem;
    }
}

.separador-page{
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}
.separador-page img{
    position: relative;
    z-index: 1;
}
.separador-page:before{
    height: 2px;
    width: 100%;
    left: 0px;
    top: 11px;
    z-index: 0;
    content: '';
    position: absolute;
    background: #ffffff7a;
}

.container-galeriafotos{
    max-width: 840px;
}
.fotorama__stage {
    background: #eee;
}

.section-destaque-interna{
    position: relative;
}
.section-destaque-interna .fundo{
    min-height: 211px;
    background: url(../img/gradiente.png)  bottom left no-repeat;
    background-size: cover;
}
.section-destaque-interna .container{
}
.section-destaque-interna h1{
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.0em !important;
    display: block;
    color: var(--cor-background);
    padding-bottom: 20px;
    border-bottom: 6px solid #EDF2EA;
}

.section-destaque-interna:before{
    background: url(../img/fundo-destaque.webp) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    z-index: -2;
    content: '';
}
.section-destaque-interna:after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    z-index: -1;
    content: '';
    background: #89BD66;
    opacity: 82%;
}

@media (max-width: 768px) {
    .section-destaque-interna h1 {
        font-size: 2.2rem;
    }
    .section-destaque-interna .fundo{
        min-height: 120px;
    }
}