/*
Theme Name: Performance
Theme URI: https://www.performancesuplementos.com.br/
Author: Tássio Aquino
Author URI: http://tassioaquino.com.br
Description: LP criada para Performance
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;300;500;700;800&display=swap');

header{
    z-index: 1;
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .container nav{
    display: flex;
    align-items: center;
}
header .container nav ul{
    display: flex;
    align-items: center;
}
header .container nav ul li{
    margin-right: 54px;
}
header .container nav ul li a{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 113.2%;
    color: #fff;
}
header .container nav .btn-agendar a.agendar{
    display: flex;
    align-items: center;
    padding: 10px 25px;
    background: linear-gradient(89.75deg, #46FF54 0.33%, #14FF26 105.29%);
    border-radius: 6px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 113.2%;
    color: #000000;
    transition: .3s;
}
header .container nav .btn-agendar a.agendar:hover{
    background: #fff;
    color: #000000;
    transition: .3s;
}
header .container nav .btn-agendar a.agendar img{
    margin-right: 8px;
    width: 100%;
    max-width: 20px;
}

/* menu mobile */
header .container nav .btn-mobile {
    display: none;
}

.menu-mobile{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2022;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 9999;
}

.menu-mobile .overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

aside{
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: #fff;
    padding: 4rem;
    transform: translateX(-100%);
    transition: transform .3s;
}

.menu-mobile .logo {
    max-width: 210px;
    margin-bottom: 15px;
}

.menu-mobile ul li a{
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    padding: 1.5rem 0;
    display: block;
    font-size: 1.8rem;
    color: #686665;
}
.menu-mobile ul {
    width: 100%;
    max-width: 22.1rem;
    padding-bottom: 3.3rem;
    margin-bottom: 3.4rem;
    border-bottom: 1px solid rgb(255 117 117 / 10%);
}

.menu-opened{
    overflow: hidden;
}

.menu-opened .menu-mobile{
    opacity: 1;
    pointer-events: all;
}
.menu-opened .menu-mobile aside{
    transform: translateX(0%);
}

.menu-mobile .btn-m{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 225px;
}

.menu-mobile a.agendar { 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px 0px;
    background: #D5D82B;
    border-radius: 6px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 113.2%;
    color: #284368;
    transition: all .3s;
}
.menu-mobile a.agendar img{ 
    margin-right: 5px;
}
.menu-mobile a.agendar:hover {
    background: #30E564;
    transition: all .3s;
}

.menu-mobile a.btn-fale img {
    position: absolute;
    right: 6px;
}



/* banner */

.s-banner{
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #080808;
    position: relative;
}
.s-banner::after{
    content: '';
    background-image: url(img/bg-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.s-banner .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s-banner .container .texto{
    z-index: 1;
    width: 100%;
    max-width: 52%;
}
.s-banner .container .texto h1{
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 113.2%;
    color: #fff;
    margin-bottom: 30px;
}
.s-banner .container .texto h1 strong{
    color: #F1A276;
}
.s-banner .container .texto p{
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
    opacity: 0.9;
}
.s-banner .container .texto .explore{
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #034665;
    opacity: 0.9;
    display: flex;
    align-items: center;
    margin-top: 80px;
}
.s-banner .container .texto .explore::before{
    content: '';
    background-image: url(img/icon-arrow.svg);
    width: 27px;
    height: 27px;
    margin-right: 10px;
}
.s-banner .container .btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s-banner .container .texto a.instagram{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(89.75deg, #FFC151 0.33%, #F24D5B 53.56%, #C23A98 105.29%);
    border-radius: 6px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 189px;
    margin-top: 33px;
    transition: 0.3s;
}
.s-banner .container .texto a.instagram img{
    width: 100%;
    max-width: 20px;
    margin-right: 8px;
}
.s-banner .container .texto a.mapa{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #E8641A;
    border-radius: 6px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 189px;
    margin-top: 33px;
    transition: 0.3s;
}
.s-banner .container .texto a.mapa img{
    width: 100%;
    max-width: 20px;
    margin-right: 8px;
}


.s-banner .container .texto a.agendar{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #000;
    background: linear-gradient(89.75deg, #46FF54 0.33%, #14FF26 105.29%);
    border-radius: 6px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 211px;
    margin-top: 33px;
    transition: 0.3s;
    /* -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both; */
}
.s-banner .container .texto a.agendar img{
    width: 100%;
    max-width: 20px;
    margin-right: 9px;
}
@keyframes heartbeat{from{transform:scale(1);transform-origin:center center;animation-timing-function:ease-out}10%{transform:scale(.91);animation-timing-function:ease-in}17%{transform:scale(.98);animation-timing-function:ease-out}33%{transform:scale(.87);animation-timing-function:ease-in}45%{transform:scale(1);animation-timing-function:ease-out}}
.s-banner .container .texto a.agendar:hover{
    background: #fff;
    color: #000000;
    transition: 0.3s;
}

.s-banner .container .image{
    z-index: 1;
    width: 100%;
    height: 480px;
    max-width: 44%;
    position: relative;
}
.s-banner .container .image::after{
    content: '';
    background-image: url(img/shape1.png);
    width: 247.68px;
    height: 73.33px;
    position: absolute;
    left: -23px;
    top: -35px;
}
.s-banner .container .image::before{
    content: '';
    background-image: url(img/shape2.png);
    width: 247.68px;
    height: 73.33px;
    position: absolute;
    right: -53px;
    bottom: -35px;
}
.s-banner .container .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* pagamentos */
.s-formas-pagamento{
    padding-top: 43px;
    padding-bottom: 43px;
    background-color: #080808;
}
.s-formas-pagamento .container h2{
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 107.7%;
    color: #FFFFFF;
    text-align: center;
}
.s-formas-pagamento .container .bandeiras{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 30px;
}
.s-formas-pagamento .container .bandeiras .card{
    width: 100%;
    max-width: 182px;
    margin: 14px 26px;
    height: 89px;
    padding: 9px 12px;
    position: relative;
}
.s-formas-pagamento .container .bandeiras .card img{
    filter: grayscale(100%);
    transition: .4s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.s-formas-pagamento .container .bandeiras .card:hover img {
    filter: grayscale(0%);
    transition: .4s;
}

/* sobre */
.s-sobre{
    padding-top: 97px;
    padding-bottom: 99px;
    background-image: url(img/bg-sobre.jpg);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.s-sobre .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.s-sobre .container .imagem{
    width: 100%;
    max-width: 42%;
    height: 400px;
    position: relative;
}
.s-sobre .container .imagem::before {
    content: '';
    background-image: url(img/shape3.png);
    width: 311px;
    height: 249px;
    position: absolute;
    left: -203px;
    bottom: -150px;
}
.s-sobre .container .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-sobre .container .texto {
    width: 100%;
    max-width: 55%;
}
.s-sobre .container .texto h2{
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 107.7%;
    color: #FFFFFF;
    position: relative;
}
.s-sobre .container .texto h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 58px;
    height: 18px;
    left: 0;
    bottom: 50px;
    border-radius: 26px;
    background-image: url(img/shape4.png);
    background-repeat: no-repeat;
}
.s-sobre .container .texto p{
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    opacity: 0.8;
    margin-top: 24px;
}
.s-sobre .container .texto ul{
    margin-top: 30px;
}
.s-sobre .container .texto ul li{
    display: flex;
    align-items: flex-start;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    color: #334F6D;
    opacity: 0.9;
    margin-bottom: 20px;
}
.s-sobre .container .texto ul li img{
    margin-right: 12px;
}
.s-sobre .container .texto a.agendar {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #000;
    background: linear-gradient(89.75deg, #46FF54 0.33%, #14FF26 105.29%);
    border-radius: 6px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin-top: 33px;
    transition: 0.3s;
}
.s-sobre .container .texto a.agendar img{
    width: 100%;
    max-width: 20px;
    margin-right: 9px;
}

.s-sobre .container .texto a.agendar:hover{
    background: #fff;
    transition: 0.3s;
}

/* especialidade */
.s-produtos{ 
    padding-top: 76px;
    padding-bottom: 80px;
    background-color: #170A03;
    position: relative;
}
.s-produtos .container .swiper-pagination{ 
    bottom: 30px;
}
.s-produtos .container .swiper-pagination .swiper-pagination-bullet{ 
    background-color: #ffff;
}
.s-produtos .container h2{
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 107.7%;
    color: #fff;
    text-align: center;
    position: relative;
}
.s-produtos .container h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 58px;
    height: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 55px;
    border-radius: 26px;
    background-image: url(img/shape4.png);
    background-repeat: no-repeat;
}
.s-produtos .container .produtos{
    margin-top: 50px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide{
    width: 100%;
    max-width: 303px;
    height: 492px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .image{
    width: 100%;
    height: 198px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0px 0px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info{
    width: 100%;
    height: 283px;
    background: #332A24;
    border-radius: 0px 0px 14px 14px;
    padding: 22px 22px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info .cont{
    height: 198px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info .cont h3{
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 107.7%;
    color: #FFFFFF;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info .cont p{
    font-family: 'Sora';
    font-weight: 200;
    font-size: 12px;
    line-height: 146.7%;
    color: #FFFFFF;
    margin-top: 13px;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info a.btn-peca{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: #E8641A;
    border-radius: 7px;
    font-family: 'Sora';
    font-weight: 400;
    font-size: 15px;
    line-height: 113.2%;
    color: #FFFFFF;
    transition: 0.3s;
}
.s-produtos .container .produtos .swiper-wrapper .swiper-slide .info a.btn-peca:hover{
    background: #fff;
    color: #000;
    transition: 0.3s;
}




/* avaliacoes */

.s-avaliacoes{
    padding-top: 82px;
    padding-bottom: 80px;
    background-image: url(img/bg-depoimentos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.s-avaliacoes .container h2{
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 107.7%;
    color: #fff;
    text-align: center;
    position: relative;
}
.s-avaliacoes .container h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 58px;
    height: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 55px;
    border-radius: 26px;
    background-image: url(img/shape4.png);
    background-repeat: no-repeat;
}
.s-avaliacoes .container p{
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #254167;
    opacity: 0.9;
    margin-top: 9px;
}
.s-avaliacoes .container .cards{
    margin-top: 37px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;   
}
.s-avaliacoes .container .cards .card{
    width: 100%;
    max-width: 416px;
    height: 334px;
    padding: 34px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 2px 9px rgba(95, 88, 82, 0.1);
    border-radius: 19px;
}
.s-avaliacoes .container .cards .card .asp{
    content: '';
    background-image: url(img/icon-aspas.svg);
    background-repeat: no-repeat;
    width: 46px;
    height: 30px;
}
.s-avaliacoes .container .cards .card p{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #002349;
    opacity: 0.9;
    text-align: left;
    height: 170px;
}
.s-avaliacoes .container .cards .card .info{
    display: flex;
    align-items: center;
}
.s-avaliacoes .container .cards .card .info img{
    width: 100%;
    max-width: 73px;
    border-radius: 50%;
    margin-right: 10px;
}
.s-avaliacoes .container .cards .card .info .dados h3{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #254167;
}
.s-avaliacoes .container .cards .card .info .dados span{
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #616161;
}

.s-avaliacoes .container .cards .ti-rating-text span{
    color: #fff;
}
.s-avaliacoes .container .cards .ti-rating-text strong{
    color: #fff;
}
.s-avaliacoes .container{
    position: relative;
    z-index: 2;
}

.s-acao {
    padding-top: 88px;
    padding-bottom: 46px;
}
.s-acao .container .cont{
    background: linear-gradient(179.81deg, #2F6698 -21.44%, #0098DA 99.84%);
    border-radius: 22px;
    padding: 48px 0;
}
.s-acao .container .cont h2{
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 107.7%;
    text-align: center;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    max-width: 78%;
    margin: 0 auto;
}

.s-acao .container .cont a.agendar {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    background: #4BCD0E;
    border-radius: 6px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 368px;
    transition: 0.3s;
    margin: 0 auto;
    margin-top: 33px;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both;
}
.s-acao .container .cont a.agendar img{
    width: 100%;
    max-width: 20px;
    margin-right: 9px;
}
.s-acao .container .cont a.agendar:hover{
    background: #349109;
    transition: 0.3s;
}


/* footer */

footer{
    padding-top: 54px;
    padding-bottom: 30px;
    background: #0A0A0A;
}
footer .container .geral{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}
footer .container .geral .logo{
    width: 100%;
    max-width: 24%;
}
footer .container .geral .g1{
    width: 100%;
    max-width: 39%;
    display: flex;
    align-items: center;
}
footer .container .geral .g1 .local{
    display: flex;
    align-items: flex-start;
}
footer .container .geral .g1 .local h3{
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 114%;
    color: #fff;
    margin-left: 5px;
}
footer .container .geral .g1 a.maps{
    width: 100%;
    max-width: 178px;
    background: #FFFFFF;
    border-radius: 6px;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #000000;
    padding: 8px 0;
    margin-left: 24px;
}

footer .container .geral .g2{
    width: 100%;
    max-width: 18%;
}
footer .container .geral .g2 .tele{
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}
footer .container .geral .g2 .tele h3{
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 113.2%;
    color: #fff;
    margin-left: 10px;
}
footer .container .geral .g2 .zap a{
    display: flex;
    align-items: center;
}
footer .container .geral .g2 .zap h3{
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 113.2%;
    color: #fff;
    margin-left: 10px;
}


.s-copy{
    padding-top: 17px;
    padding-bottom: 17px;
    background: #E8641A;
}
.s-copy .container small{
    display: block;
    font-family: 'Sora';
    font-weight: 300;
    font-size: 18px;
    line-height: 113.2%;
    color: #FFFFFF;
    text-align: center;
}












  
