/*fonte*/

*{
    font-family: "Baskerville Livre" , sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2 linear;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
   overflow-x: hidden;

}

html::-webkit-scrollbar {
    width: 1rem;
}
html::-webkit-scrollbar-track {
    /*Abaixo da barra*/
    background: #000;
}
html::-webkit-scrollbar-thumb { 
    /*cor barra*/
    background:rgba(2, 176, 220, 0.444);
}
body{
    background: #000;
}

section{
    padding: 5rem 9%;
}

/*Cabeçalho das sessões*/
.heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: .1rem;
    width: 100%;
    background-color: #aaa;
    z-index: -1;
   

}

.heading span{
    font-size: 3rem;
    color: rgb(11, 158, 243);
    background: #000;
    padding: .5rem 1.5rem;
    border: 0.1rem solid #aaa;
    border-radius: .5rem;
    
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    padding-right: 3rem;
    background: linear-gradient(130deg, rgb(11, 158, 243) 93%, transparent 90%);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;

}

.btn:hover{
    transform: scale(1.1);

}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9%;
    z-index: 10000;
    background: #000;

}

.header .logo {
    font-weight: bolder;
    color: #fff;
    font-size: 3rem;

}

.header .logo span {
    color: rgb(11, 158, 243);
}

.header .navbar a {
    display: inline-block;
    padding: 1.5rem 2rem;
    font-size: 1.7rem;
    color: #fff;
}

.header .navbar a:hover {
    background-color:rgba(11, 158, 243, 0.796);
}

#menu-btn{
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    display: none;

}

.home{
    padding: 0;
    margin-top: 5rem;

}

.home .slide {
    min-height: 90vh;
    background-size: cover !important;
    background-position: center !important;
    padding: 2rem 9%;
    display: flex;
    align-items: center;

}

.home .slide .content {
    width: 60rem;
}

.home .slide .content span {
    font-size: 2rem;
    color: #29d1f7;
}

.home .slide .content h3 {
    font-size: 5rem;
    color:#fff;
    padding: 1rem 0;
}

/*class de swipwer para criar carrosel de bolinhas*/

.swiper-pagination-bullet {
    height: 2rem;
    width: 2rem;
    background: #fff;
    border-radius: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgb(11, 158, 243);
}

.about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8rem;

}

.about .image {
    flex:  1 1 42rem;
    position: relative;
}

.about .image::before,
.about .image::after {
    content: '';
    position: absolute;
    z-index: -1;
    background:  rgb(11, 158, 243);
    height: 15rem;
    width: 15rem;
}
.about .image::before {
    top: 0;
    left: 0;
}

.about .image::after {
    bottom: 0;
    right: 0;
}
.about .image img{
    width: 100%;
    padding: 2rem;
}

.about .content{
    flex: 1 1 42rem;
}
.about .content span {
    font-size: 2rem;
    color: rgb(11, 158, 243);
    
}

.about .content .title {
    font-size: 4rem;
    color: #fff;
    margin-top: .5rem;

}
.about .content p{
    font-size: 1.8rem;
    color: #aaa;
    padding: 1rem 0;
    line-height: 2;
    
}

.about .content .box-container{
    display:flex;
    flex-wrap: wrap;
    margin-top: 2rem;
   

}

.about .content .box-container .box{
    flex:  1 1 20rem;
    text-align: center;
}

.about .content .box-container .box h3{
    font-size: 2rem;
    color: #fff;

}


.about .content .box-container .box h3 i{
    padding-right: 1.5rem;
    color: rgb(9, 25, 251);
}

.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
    
}
.features .box-container .box {
    background: #111;
    
}

.features .box-container .box.second{
    display: flex;
    flex-flow: column-reverse;
}

.features .box-container .box:hover .image img{
    transform: scale(1.1);
}

.features .box-container .box .image{
    height: 30rem;
    width: 100%;
    overflow:hidden;
}
.features .box-container .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.features .box-container .box .content{
    padding: 2rem;
    text-align: center;
}
.features .box-container .box .content img{
    height: 9rem;
    margin-bottom: 1rem;
    filter: invert(1);
}
.features .box-container .box .content h3{
    font-size: 2rem;
    color: rgb(11, 158, 243);
}
.features .box-container .box .content p {
    line-height: 2;
    font-size: 1.8rem;
    color: #aaa;
    padding: 1rem 0;
    text-transform: none;
}

.pricing{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;

}
.pricing .plan-basic span {
    font-size: 2rem;
    color:rgb(11, 158, 243);
}
.pricing .plan-basic h3 {
    font-size: 4rem;
    padding-top: .5rem;
    color: #fff;
}

.pricing .plan-basic p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.8rem;
    color: #aaa;
}

.pricing .plan-basic p i {
    padding-right: 1rem;
    color:rgb(11, 158, 243);
}

.pricing .plan-basic .aulas{
    font-weight:bold;
    font-size: 2rem;
    color: #fff;
}


.pricing .plano-interm span {
    font-size: 2rem;
    color: rgb(11, 158, 243);
}
.plano-interm h3 {
    font-size: 4rem;
    padding-top: .5rem;
    color: #fff;
}

.plano-interm p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.8rem;
    color: #aaa;
}

.plano-interm p i {
    padding-right: 1rem;
    color: rgb(11, 158, 243);
}

.pricing .plano-interm .aulas{
    font-weight:bold;
    font-size: 2rem;
    color: #fff;
}

.premium span {
    font-size: 2rem;
    color: rgb(11, 158, 243);
}
.premium h3 {
    font-size: 4rem;
    padding-top: .5rem;
    color: #fff;
}

.premium p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.8rem;
    color: #aaa;
}

.premium p i {
    padding-right: 1rem;
    color: rgb(11, 158, 243);
}

.pricing .premium .aulas{
    font-weight:bold;
    font-size: 2rem;
    color: #fff;
}


.trainers .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    gap: 1.5rem;

}

.trainers .box-container .box {
    height: 40rem;
    overflow: hidden;
    position: relative;
}

.trainers .box-container .box:hover .content {
    transform: translateY(0);
}

.trainers .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.trainers .box-container .box .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    padding: 2rem;
    transform: translateY(6.5rem);
}
.trainers .box-container .box .content span {
    font-size: 1.5rem;
    color: rgb(11, 158, 243);
}
.trainers .box-container .box .content h3 {
    font-size: 2rem;
    color: #FFF;
    padding-top:.5rem ;
}

.trainers .box-container .box .content .share{
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 0.1rem solid #aaa;
}

.trainers .box-container .box .content .share a{
    font-size: 2rem;
    color: #fff;
    margin-right:1.5rem ;
}

.trainers .box-container .box .content .share a:hover{
    color: rgb(11, 158, 243);
}

.banner{
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url(img/fisioterapia.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment:fixed;
    text-align: center;
}

.banner span {
    font-size: 2rem;
    color: rgb(11, 158, 243);
    text-transform: uppercase;
    font-size: 4rem;
}

.banner  .titulo {
    padding-top: 1rem;
    padding-left: 6rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.2rem;
    text-align: center;
}

.banner  p {
    margin: 1rem auto;
    text-transform: none;
    max-width: 60rem;
    font-size: 1.8rem;
    color: #aaa;
    line-height: 2;
    
}


/*FAZER REVIWS DO GOOGLE E INCLUIR AQUI*/

.posts .slide {
    background: #111;
    margin-bottom: 7rem;
}

.posts .slide:hover .image img {
    transform: scale(1.1);
}

.posts .slide .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
}

.posts .slide .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.posts .slide .content {
    padding: 2rem;
}

.posts .slide .content .link {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
}

.posts .slide .content .link a{
   color:#fff;
}

.posts .slide .content .link a:hover{
    color: #fff;
 }

.posts .slide .content .link span{
    color: #fff;
    padding: 0 1rem;
}

.posts .slide .content h3{
    font-size: 2rem;
    color: #fff;
    line-height: 1.5;
}

.posts .slide .content p{
    font-size: 1.5rem;
    color: #aaa;
    line-height: 2;
    padding: 1rem 0;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: #fff;
    padding: 1rem 1rem;
}

.footer .box-container .box .links {
    font-size: 1.8rem;
    display: block;
    color: #aaa;
    padding: 1rem 3rem;

}
.footer .box-container .box .links:hover {
    color: rgb(11, 158, 243);

}
.footer .box-container .box p {
    font-size: 1.8rem;
    color: #aaa;
    padding: 1rem 3rem;
}

.footer .box-container .box p i {
    padding-right: 5rem;
    color: rgb(11, 158, 243);
}
.footer .box-container .box .share {
    padding: 1rem 3rem;
}

.footer .box-container .box .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.8rem;
    color: #fff;
    background: #111;
    border-radius: 50%;
    margin-right: .5rem;
    text-align: center;
}

.end {
    text-align: center;
}

.mapBox iframe{
    width: 100%;
    height: 550px;
    padding: 50px;
}
/*Responsividade*/
@media (max-width: 991px) {
    html {
        font-size: 75%;
        scroll-padding: 7rem;
    }
    .header {
        padding: 0 2rem;
    }

    section {
        padding: 3rem 2rem;
    }

    .home .slide {
        padding: 2rem 5%;
    }

    .home .slide .content {
        width: 50rem;
    }

    .home .slide .content h3 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    #menu-btn.fa-times {
        transform: rotate(180deg);
    }

    .header {
        padding: 2rem;
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #000;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a {
        display: block;
        font-size: 2rem;
    }

    .about {
        gap: 3rem;
    }

    .about .image {
        margin-top: 5rem;
    }

    .about .content .title {
        font-size: 3rem;
    }

    .features .box-container .box.second {
        flex-flow: column;
    }
}
@media (max-width: 450px) {
    html {
        font-size: 60%;
    }
}

