@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;700;800&display=swap');

:root {
    /*--------COLORS--------*/
    --first-color: #22723e;
    --second-color: #d5ffcc;
    --third-color: #124022;
    --color-white: #fff;
    --color-black: #000;
    --bg: #d8fcc7;

    /*--------FONTS--------*/
    --font-cursive: 'Great Vibes', cursive;
    --body-font: 'Oswald', sans-serif;

    /*--------BORDER--------*/
    --border: .1rem solid rgba(255, 255, 255, .3);

}

* {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 10rem;
    scroll-behavior: smooth;
}


.heading {
    text-align: center;
    color: var(--first-color);
    font-family: var(--font-cursive);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 4.5rem;
    margin: 2rem 0;
}


.btn {
    margin-top: 5rem;
    display: inline-block;
    padding: 1.7rem 3rem;
    font-size: 2.3rem;
    color: var(--color-white);
    background: var(--first-color);
    border-radius: 0.5rem;
    cursor: pointer;
}
.background {
    background-color: var(--second-color);
}

.p{
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
}

section {
    padding: 2rem 7%;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9990;
  }

.whatsapp-icon img{
    width:50px;
}

/* HEADER */

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 3%;
    text-transform: capitalize;
    border-bottom: var(--border);
    background: var(--color-white);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    z-index: 1000;


}

.header .logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
}

.header .logo h3 {

    color: var(--first-color);
}

.header .logo img {
    height: 7rem;
    margin: 1rem;
}

.header .navbar a {
    padding: .3rem .7rem;
    font-size: 2rem;
    color: var(--first-color);
}

.header .navbar a:hover {
    background-color: var(--first-color);
    color: var(--color-white);
    border-radius: .3rem;
}

.header .icons {
    position: absolute;
    cursor: pointer;
    font-size: 2.5rem;
    margin-right: 2rem;
}



#menu-btn {
    font-size: 1.5rem;
    display: none;
}

#menu-btn:hover {
    color: var(--letter);
}

/* HEADER */

/* HOME */

.home {
    position: relative;
    height: 94vh;
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;

}

.home .content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
     z-index: 10;
  }




.home::after {
    content: '';
    background-color: rgba(69, 67, 67, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .7;
    z-index: 1;
}


.home .content .btn i {
    font-size: 2.8rem;
    margin-right: 1rem;
}

.home .content .btn:hover {
    background: var(--color-white);
    color: var(--first-color);
}

/* HOME */

/* ABOUT */
.about .heading {
    margin: 1.5rem 0 2rem 0;
}

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 30px;
    width: 100%;
    border: 2.5px solid var(--first-color);
    margin: auto auto 6rem auto;
}

.about .row .image {
    flex: 1 1 25rem;
    text-align: center;
}

.about .row .image img {
    width: 60%;
    margin: 1rem;
    border-radius: 50%;
}

.about .row .content {
    flex: 1 1 25rem;
    padding: 2rem;
}

.about .row .content p {
    display: block;
    font-size: 2.2rem;
    color: #000;
    padding: 1rem 0;
    line-height: 1.5;

}

.about .row .content h3 {
    font-size: 3.6rem;
}

.about .video {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    padding: 2rem;
}

/* ABOUT */

/* THERAPY */

.therapy .container{
    margin-top: 1rem;
}

.therapy .container p{
    text-align: center;
}

.therapy .container .content .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.therapy .container .content .box-container .box {
    padding: .5rem;
}

.therapy .container .content .box-container .box img {
    width: 20rem;
    border-radius: 5px;
}

.therapy .container .content img:hover {
    transform: scale(1.1);
    cursor: pointer;
}


.therapy .container .content .box-container .box span {
    display: flex;
    justify-content: center;
    font-size: 2.2rem;
    margin-top: 1rem;
}

.therapy .container .content .button {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}


.therapy .container .content .button a:hover {
    transform: scale(1.1);
}

/* THERAPY */

.service {
    padding-bottom: 5rem;

}

.service p{
    margin: -.7rem 0 3rem;
}

.service .container {

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 57vh;
}

.service .wrapper {
    position: relative;
    max-width: 100rem;
}

.service .wrapper i {
    top: 50%;
    height: 46px;
    width: 46px;
    position: absolute;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    background: rgb(189, 186, 186);
    border-radius: 50%;
    transform: translateY(-50%);

}

.service .wrapper i:first-child {
    left: -23px;
    display: none;
}

.service .wrapper i:last-child {
    right: -23px;
}

.service .wrapper .carousel {
    display: flex;
    font-size: 0px;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging img {
    pointer-events: none;
}

.service .wrapper .carousel .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 20px 20px;

}

.service .wrapper .carousel .box img {
    object-fit: cover;
    height: 25rem;
    width: 18rem;
    border-radius: 10px;
}

.carousel .box span {
    margin-top: 1.3rem;
    font-size: 2.4rem;
    text-align: center;
}



.service .wrapper .carousel img:first-child {
    margin-left: 0px;
}


/* jobs */


.jobs h2{
    margin-bottom: 3rem;
}

.jobs p{
    margin: -2.5rem 0 2rem 0;
}

.jobs .gallery .image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    width: 90%;
}

.jobs .gallery .image img {

    width: 20rem;
    border-radius: 10px;
    height: 100%;
    padding: 5px;
    object-fit: cover;
}
.jobs a{
    color: var(--first-color);
    margin-top: 1.5rem;
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
}

.jobs a:hover{
    color: var(--third-color);
    transform: scale(1.1);

}

.jobs a i{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .6rem;
}


/* depositions */



.depositions{
    display: none;
}

.depositions p{
    margin: -2rem 0 2rem 0;
}


.depositions .box-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.depositions .box-container .box{
    position: relative;
    width: 420px;
    height: 30rem;
    background-color: var(--bg);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 1rem;
}


.depositions .box-container .box .content{
    display: flex;
    align-items: center;
}

.depositions .box-container .box .content img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.depositions .box-container .box .content .star{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 7rem;
}

.depositions .box-container .box .content .star i{
    font-size: 2rem;
    color: var(--first-color);
}

.depositions .box-container .box .content .star h1{
    font-size: 2.5rem;
}

.depositions .box-container .box .descripition{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
}

.depositions .box-container .box .descripition p{
    font-size: 1.7rem;
    font-weight: 300;
    padding: 1rem 1.5rem 1.2rem 0;
}

/* depositions */


/* information */

.information .information__content{
    max-width: 100rem ;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid rgb(171, 171, 171);


}


.information .information__content .container{

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 4rem;

}

.information .information__content .title{
    font-size: 2.5rem;
}

.information .information__content span{
    font-size: 1.8rem;
}

.information .information__content .container .time{
   margin-bottom: 5rem;
}


.information .information__content .map{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}


.information .information__content .map iframe{
    width: 400px;
    height: 300px;
    margin: 1rem 0;
}


.information .information__content .image{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information .information__content .image img{
    width: 18rem;
}


.information .information__content .image a{
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
}

.information .information__content .image a:hover{
    color: var(--first-color);

}

footer{
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
}

footer p{
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
}


/* information */

/* ANIMAÇÕES */

.home .content h1 {
    font-size: 7rem;
    color: #ffffff;
    animation: fadeInDown 1.5s ease forwards;
}

.home .content .btn {
    animation: fadeInUp 1.8s ease forwards;
}

.header {
    animation: slideDown 0.8s ease forwards;
}

.whatsapp-icon {
    animation: fadeInUp 1s ease 1.5s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1300px) {

    .about .row .image img {
        width: 70%;
    }

}

@media (max-width: 1100px) {

    html {
        font-size: 60%;
    }

    section {
        padding: 2rem;
    }

}

@media (max-width: 1070px){
    .header .navbar a {
        font-size: 1.8rem;
    }
}

@media (max-width: 1000px) {

    /* .header {
        position: fixed;
    } */

    .header .icons {
        position: static;
        cursor: pointer;
        margin-left: 2rem;
    }

    #menu-btn {
        display: inline-block;
        font-size: 2.5rem;

    }

    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: var(--color-white);
        width: 40%;
        text-align: center;
        height: 100vh;
        transition: all 400ms ease;
    }

    .header .navbar a {
        color: var(--first-color);
        position: relative;
        display: block;
        padding: .5rem;
        margin: 1rem;
        font-size: 2.5rem;
        transition: all 400ms ease;
        border-bottom: 1px solid grey;
    }

    .header .navbar a:hover,
    .header .navbar a.active-link {
        color: var(--color-white);
        background-color: var(--first-color);
    }

    .header .navbar.active {
        right: 0;
    }

    .home .content{

        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
      }




    .service .container {

        min-height: 40vh;
    }

    .service p{

        margin-bottom: 5rem;
    }


}

@media (max-width: 870px) {

    .service .wrapper {
        max-width: 70rem;
    }

}

@media (max-width: 780px) {

    .about .row {
        display: block;
        align-items: center;
    }

    .about .row .image img {
        width: 50%;
    }

    .about .row .content {
        text-align: justify;
    }

    .about .row .content p {
        margin: 0 2rem;
    }


}

@media (max-width:748px){

    .information .information__content .image{
        margin-bottom: 2.5rem;
    }

}

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

    .home{
        height: 78vh;
    }


    .service .container {
        min-height: 30vh;
    }

     .service .wrapper {
        max-width: 100%;
    }

}


@media(max-width: 683px){

    .information .information__content .container{

        display: flex;
        flex-direction: row;
        justify-content: space-between;

    }

    .information .information__content .container .time{
        margin-right: 15rem;
    }

}


@media (max-width: 620px) {

    .header .navbar {
        width: 60%;

    }

    .about .row {
        width: 100%;
    }

    .about .row .image img {
        width: 50%;
    }

}


@media (max-width: 580px) {

    .home{
        height: 70vh;
    }


    .home .content h1 {
        margin-top: 5rem;
        font-size: 5rem;
    }

}


@media (max-width:540px) {

    .about .row .content p {
        font-size: 1.8rem;
    }

    .about .video iframe {
        height: 250px;
    }

    .therapy .container p{
    font-size: 2rem;
}

}

@media (max-height: 530px){


    .about .row .image img {
        width: 40%;
    }

    .depositions .box-container .box .descripition p{
        font-size: 1.8rem;
        font-weight: 300;
        padding: 0 1rem 1rem 0;
    }
}



@media (max-width:495px) {

    .about .row .content p {
        margin: 0;
    }

    .about .row .image img {
        width: 80%;
    }

    .therapy .container p{
        font-size: 2rem;
    }

    .service .container {

        min-height: 27vh;
    }

}

@media (max-width:480px) {

    .about .video iframe {
        height: 220px;
    }

    .therapy .container .content .box-container .box img {
        width: 18rem;
    }

    .jobs .gallery .image img{
        width: 15rem;
    }

}

@media(max-width: 450px){

    .information .information__content .container .time{
        margin-right: 5rem;
    }

    .information .information__content .map iframe{
        width: 300px;
        height: 200px;
        margin: 1rem 0;
    }

    .information .information__content .image img{
        width: 14rem;
    }

}


@media (max-width:440px) {


    .depositions .box-container .box .content .star{
        margin-left: 4.5rem;
    }

}

@media (max-width: 400px){

    .depositions .box-container .box .descripition p{
        font-size: 1.5rem;
    }
}



@media (max-height: 370px){

    .home .content{
        margin-top: 6rem;
    }

    .home .content h1{
        font-size: 4rem;
    }

}


