*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif
}

.container{
    width: 100%;
    padding: 0 2%;
    margin: 0 auto;
    max-width: 1080px;
}

html,body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    background-color: #F9F9F9;
}

.center{
    justify-content: space-evenly!important;
}

.btn, a{
    cursor: pointer;
    padding: 20px 50px;
    background-color: #333333;
    border: none;
    border-radius: 5px;
    color: #FFFF;
    letter-spacing: 1px;
    font-family: "Julius Sans One", sans-serif;
    margin-top: 20px;
    font-weight: normal;
    margin-top: 50px;
    font-size: 20px;
    max-width: 80%;
    text-decoration: none;
}

.portifolio h4, .contato h4, .fotos-local h4{
    color: #858585;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: "Julius Sans One", sans-serif;
    text-align: center;
}

.portifolio h2, .contato h2, .fotos-local h2{
    color: #2E2E2E;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
    font-family: "Julius Sans One", sans-serif;
}

.contato p{
    color: #594F4D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.mobile{
    display: none;
}


/* Header */

.banner{
    width: 100%;
    background-image: url('./images/banner.png');
    background-size: cover;
    background-position: center;
}

header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 15px;
}

header img{
    width: 200px;
}

header h3{
    font-size: 17px;
    color: #000;
    font-family: "Julius Sans One", sans-serif;
    font-weight: normal;
    cursor: pointer;
}

header i{
    font-size: 9px;
}

/* MENU MOBILE */

.mobile{
    position: relative;
}

.menu-mobile{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(-100%);
    transition: 1s;
    z-index: 999;
}
  
#icon{
    font-size: 22px;
    color: #333;
    margin-right: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
  
.hide{
    top: 150px;
    transform: translate(0);
    opacity: 1;
}
  
.menu-mobile ul{
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    transition: 1s;
    overflow: hidden;
    box-shadow: 0px 13px 12px 0px rgba(0, 0, 0, 0.15);
}
  
.menu-mobile ul li{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #333;
    border-bottom: 1px solid #333;
    padding: 20px 0 15px 0;
    max-width: 60%;
    font-size: 14px;
}
  
.menu-mobile ul li:last-of-type{
    border-bottom: none;
}

/* Banner */

.content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-left{
    width: 40%;
    opacity: 0;
    transform: translateX(-100px);
    animation-name: anime-left;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    padding-bottom: 30px;
}

@keyframes anime-left{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }
    100%{
        opacity: 1;
        transform: translate(0,0);
    }
}

.content-left h1{
    font-size: 45px;
    font-family: "Julius Sans One", sans-serif;
    color: #333;
    font-weight: normal;
    margin-bottom: 20px;
    min-width: 500px;
}

.content-left p{
    font-size: 16px;
    color: #858585;
    margin-top: 15px;
    max-width: 330px;
}

.wrapper-metricas{
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px 30px;
}

.single-metricas h4{
    font-size: 50px;
    font-weight: normal;
    color: #333;
    font-family: "Julius Sans One", sans-serif;
}

.single-metricas p{
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.content-right{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.content-right img{
    width: 70%;
    position: relative;
    z-index: 2;
    top: 5px;
}

.wrapper-faixa{
    position: absolute;
    z-index: 1;
    top: 58%;
    right: 0;
    width: 55%;
    padding: 60px 20px;
    background-color: #565656;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-image: url('./images/papel-timbra.webp');
}

.wrapper-faixa h2{
    transform: rotate(90deg);
    font-size: 100px;
    color: #fff;
    font-family: "Julius Sans One", sans-serif;
    font-weight: normal;
    opacity: 0;
}


/* Faixa de palavras */

.faixa-palavras{
    padding: 15px;
    background-color: #565656;
    position: relative;
    z-index: 2;
}

.faixa-palavras .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faixa-palavras h3{
    font-size: 27px;
    color: #fff;
    font-family: "Julius Sans One", sans-serif;
    font-weight: normal;
}

/* Tratamentos */

.tratamentos{
    width: 100%;
    padding: 50px 2%;
}

.tratamentos-title-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.v{
    flex-direction: row-reverse;
}

.tratamentos-top h2{
    font-size: 60px;
    color: #333333;
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
}

.tratamentos-top p{
    font-size: 14px;
    color: #858585;
    font-family: "Sora", sans-serif;
    max-width: 400px;
}

.wrapper-tratamentos-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper-tratamentos-top i{
    font-size: 11px;
}

.single-tratamentos-top{
    width: 30%;
    padding-bottom: 40px;
    background-color: #E3E3E3;
   
}

.single-tratamentos-top img{
    width: 100%;
}

.single-tratamentos-top h2{
    font-size: 20px;
    margin-top: 20px;
    padding: 0 25px;
    color: #333333;
    font-family: "Julius Sans One", sans-serif;
    text-transform: uppercase;
}

.single-tratamentos-top h4{
    font-size: 15px;
    color: #858585;
    font-family: "Sora", sans-serif;
    padding: 0 25px;
    margin-top: 10px;
    font-weight: 400;
}

.single-tratamentos-top p{
    font-size: 11px;
    color: #858585;
    font-family: "Sora", sans-serif;
    padding: 0 25px;
    margin-top: 20px;
    font-weight: 400;
}

/* CLINICA PARTICULAR */

.clinica-particular{
    width: 100%;
    padding: 50px 0;
}

.clinica-particular .container{
    width: 100%;
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-clinica-particular{
    min-width: 50%;
    background-color: #FFFF;
    padding: 30px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.wrapper-clinica-particular h2{
    font-size: 60px;
    color: #333333;
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
}

.wrapper-clinica-particular h4{
    font-size: 14px;
    color: #858585;
    margin-top: 25px;
    max-width: 450px;
    font-weight: 400;
}

.button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SOBRE TADEU */

.about-tadeu{
    width: 100%;
    padding: 50px 0;
}

.wrapper-about{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper-about .btn{
    margin-top: 65px;
}

.about-left h4{
    font-size: 32px;
    font-family: "Julius Sans One", sans-serif;
    color: #858585;
    font-weight: 400;
}

.about-left h2{
    font-size: 128px;
    font-family: "Julius Sans One", sans-serif;
    color: #333333;
    font-weight: 400;
}

.about-left p{
    font-size: 16px;
    font-weight: 400;
    color: #858585;
    max-width: 450px;
    margin-top: 30px;
}

.about-right img{
    width: 100%;
}

/* FOTOS DO LOCAL */

.fotos-local{
    width: 100%;
    padding: 50px 0 100px 0;
}

.wrapper-fotos-local{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 40px;
}

.fotos-left{
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.fotos-left img{
    width: 100%;
}

.fotos-left img:first-child{
    margin-bottom: 20px;
}

.fotos-right img{
    width: calc(50% - 10px);
}

.fotos-right{
    width: 51%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fotos-right img:first-child{
    margin-right: 20px;
}

/* MISSÃO */

.missions{
    width: 100%;
    padding: 50px 10px;
    background-color: #333333;
}

.wrapper-missions{
    width: 100%;
    color: #FFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-missions{
    width: 30%;
    padding: 90px 30px;
    text-align: center;
}

.single-missions h2{
    font-size: 64px;
    font-family: "Julius Sans One", sans-serif;
    color: #FFF;
    font-weight: 400;
    text-align: center;
}

.single-missions h4{
    font-size: 14px;
    color: #FFF;
    font-weight: 400;
    margin-top: 25px;
    line-height: 25px;
}

.line-missions{
    width: 1px;
    height: 100px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-missions i{
    font-size: 11px;
}

/* Portifólio */

.portifolio{
    margin-top: 30px;
    padding: 70px 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.portifolio .container{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.antes-depois{
    width: 100%;
    max-width: 1000px;
    aspect-ratio: auto 1920 / 981;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    user-select: none;
    background-color: #1C1C1C;
}

.antes-depois img{
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: top;
    width: 100%;
}

.control{
    cursor: pointer;
    width: 70px;
    height: 70px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control i{
    color: #333333;
    padding: 0 5px;
    font-size: 16px;
}

.cursor{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DEPOIMENTOS */

.depoimentos{
    width: 100%;
    background-color: #333333;
    padding: 300px 0 50px 0;
    position: relative;
    top: -300px;
}

.depoimentos .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: calc(1000px + 4%);
}

.depoimentos-left{
    width: 40%;
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
}

.depoimentos-right{
    width: 60%;
}

.circle{
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle span{
    font-size: 30px;
    color: #333;
}

.single-depoimentos{
    width: 33.33%;
    transition: 1s;
    cursor: pointer;
}

.single-depoimentos .circle{
    opacity: 0.5;
}

.single-depoimentos h4{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
    display: none;
}

.single-depoimentos h5{
    color: #D7D7D7;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 8px;
    display: none;
}

.depoimentos p{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

.d-active h4{
    display: block !important;
}

.d-active h5{
    display: block !important;
}

.d-active .circle{
    opacity: 1;
}

.depoimentos-bottom{
    width: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev, .next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.prev i, .next i{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.prev{
    margin-right: 10px;
}

.next{
    margin-left: 10px;
}

/* Contato */

.contato{
    width: 100%;
    padding: 90px 0;
}

.contato .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    flex-wrap: wrap;
    max-width: 1180px;
}

.left-form, .right-form{
    width: 48%;
}

.left-form .btn{
    font-size: 18px;
    padding: 10px 20px;
    width: auto;
}

.right-form{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loc */

.line-contato{
    width: 50%;
    height: 2px;
    background-color: #6A5321;
    margin: 30px 0;
}

.left-form button{
    margin-top: 40px;
}

.right-form iframe{
    border: 8px solid #333;
    width: 80%; 
    aspect-ratio: 5/5;
}

.contato h2{
    text-align: left;
    max-width: 600px;
}

.contato h4{
    text-align: left;
}

.left-form ul{
    list-style-type: none;
    margin-top: 40px;
}
  
.left-form ul li{
    margin-top: 25px;
}
  
.left-form ul li i{
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1px;
}
  
.left-form ul li span{
    color: #594F4D;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
    margin-left: 15px;
}


/* FOOTER */

footer{
    width: 100%;
}

footer .container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-top h2{
    font-size: 20px;
    color: #2F2B2A;
    font-weight: 400;
}

.footer-top i{
    font-size: 10px;
}

.footer-top h3{
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.footer-bottom{
    padding: 30px 0;
}

.footer-bottom h4{
    font-size: 16px;
    font-weight: 400;
    color: #2E2E2E;
}

.footer-mobile{
    display: none;
    border-bottom: 1px solid #333;
}

.footer-mobile h3{
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}


.footer-mobile ul{
    list-style-type: none;
    padding: 15px 0;
}

.footer-mobile ul li{
    display: inline-block;
    color: #2F2B2A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 15px;
    cursor: pointer;
}

footer header{
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.contato{
    margin-top: -300px;
}

/* MEDIA QUERYS */

@media screen and (max-width: 1050px) {
    .wrapper-faixa{
        padding: 50px 20px;
    }
}

@media screen and (max-width: 920px){
    .content{
        align-items: flex-end;
    }

    .content-left{
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 850px){
    .wrapper-tratamentos-top{
        flex-wrap: wrap;
    }

    .single-tratamentos-top{
        width: 43%;
    }

    .wrapper-tratamentos-top i{
        display: none;
    }

    .wrapper-tratamentos-top .single-tratamentos-top:last-child{
        margin-top: 40px;
    }

    .tratamentos-title-top{
        display: flex;
        flex-direction: column-reverse;
    }

    .tratamentos-title-top p{
        text-align: center;
        margin-top: 20px;
    }

    .single-missions{
        width: 80%;
    }

    .wrapper-missions{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .line-missions{
        display: none;
    }

    .depoimentos .container{
        flex-direction: column;
        align-items: center;
    }

    .depoimentos-left{
        width: 80%;
        padding-right: 0;
    }

    .depoimentos-right{
        width: 80%;
        margin-top: 30px;
    }

    .left-form, .right-form{
        width: 100%;
    }
    
    .right-form{
        margin-top: 70px;
    }

    .left-form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contato h2, .contato h4, .contato p{
        text-align: center;
    }
}

@media screen and (max-width: 750px){
    .wrapper-about{
        flex-direction: column;
    }

    .about-right{
        margin-top: 40px;
    }

    .wrapper-fotos-local{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .fotos-right{
        width: 80%;
        margin-top: 30px;
    }

    .fotos-left{
        width: 80%;
    }
}

@media screen and (max-width: 700px){

    .btn{
        max-width: none;
    }

    .content-left h1{
        min-width: 0!important;
    }

    .content{
        flex-wrap: wrap;
        margin-top: 50px;
        align-items: center;
        justify-content: center;
    }

    .content-left{
        width: 80%;
    }

    .content-right{
        width: 100%;
        position: relative;
    }

    .wrapper-faixa h2{
        font-size: 70px;
    }

    .wrapper-faixa{
        transform: translateY(-50%);
        width: 80%;
    }

    .faixa-palavras .container h3:first-child{
        display: none;
    }

    .about-left h2{
        font-size: 90px;
    }

    .wrapper-about{
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 620px){
    .desktop{
        display: none;
    }

    .mobile{
        display: flex;
    }

    .clinica-particular .container{
        padding: 100px 20px;
    }

    .wrapper-clinica-particular h2{
        font-size: 40px;
    }

    footer header{
        display: none;
    }

    .footer-mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .products-right{
        width: 100%;
    }

    .portifolio h2{
        margin-bottom: 30px;
    }

    .faixa-palavras h3{
        font-size: 23px;
    }

    .footer-mobile ul{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width:550px){
    .faixa-palavras .container h3:last-child{
        display: none;
    }

    .faixa-palavras .container{
        justify-content: space-evenly;
    }

    .tratamentos-title-top h2{
        font-size: 35px;
    }

    .single-tratamentos-top{
        width: 85%;
        margin-bottom: 20px;
    }

    .wrapper-tratamentos-top{
        justify-content: center;
        align-items: center;
    }

    .wrapper-tratamentos-top .single-tratamentos-top:last-child{
        margin-top: 0;
    }

    .footer-mobile ul li{
        font-size: 14px;
        margin: 0;
    }
}


/* Animação */

[data-anime]{
    opacity: 0;
    transition: 1s;
}
  
[data-anime="left"]{
    transform: translateX(-100px);
}

[data-anime="right"]{
    transform: translateX(100px);
}

[data-anime="scale"]{
    transform: scale(0.5);
}

[data-anime].animation{
    opacity: 1;
    transform: translate(0,0) scale(1);
}

/* WHATSAPP */

.whatsapp-fixed{
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.circle-whatsapp{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #27D045;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.number-whatsapp{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    display: none;
    animation-name: notification;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    transform: scale(0) translate(0,-30%);
}

@keyframes notification{
    0%{
        opacity: 0;
        transform: scale(0) translate(0,-30%);
    }
    100%{
        opacity: 1;
        transform: scale(1) translate(0,-30%);
    }
}

.number-whatsapp span{
    color: #fff;
    font-size: 13px;
    font-family: "Montserrat";
}

.circle-whatsapp i{
    font-size: 35px;
    color: white;
}

.whatsapp-fixed p{
    padding: 8px 13px;
    background-color: white;
    font-size: 13px;
    margin-right: 10px;
    color: #000;
    border-radius: 15px;
    border: 1px solid #000;
    display: none;
    opacity: 0;
    animation-name: showMessage;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translateX(100px);
    cursor: pointer;
}

@keyframes showMessage{
    0%{
        opacity: 0;
        transform: translateX(100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
