/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 20 de mar. de 2024, 13:19:58
    Author     : tiago
*/




html{
    overflow-x: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
}

body{
    font-family: "DM Sans", sans-serif;
}
.header.header-scrolled {
    /*background: #fff;*/
    background: rgb(32,32,32);
    background: linear-gradient(121deg, rgba(32,32,32,1) 0%, rgba(106,106,106,1) 100%);
    padding: 5px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    /*max-height: 169px;*/
    max-width: 203px;
    /*margin-right: 15px;*/
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "DM Sans", sans-serif;
    margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0px;
}

.navbar ul {
    margin: auto;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;

}

.navbar li {
    position: relative;
    padding-right: 15px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    /*background: #4154f1;*/
    border: 3px solid #fff;
    padding: 5px 90px;
    margin-left: 30px;
    border-radius: 0px;
    color: #fff;
    text-decoration: none;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    /*background: #5969f3;*/
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .megamenu {
    position: static;
}

.navbar .megamenu ul {
    margin-top: 5px;
    right: 0;
    padding: 10px;
    display: flex;
}

.navbar .megamenu ul li {
    flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
    color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
    color: #4154f1;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }

    .header .logo img {
        /*max-height: 169px;*/
        max-width: 153px;
        /*margin-right: 15px;*/
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

@media (max-width: 768px) {
    .header .logo{
        margin: auto;
    }
    .header .logo img {
        /*max-height: 169px;*/
        max-width: 153px;
        /*margin-right: 15px;*/
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    background: linear-gradient(121deg, rgba(32,32,32,1) 0%, rgba(106,106,106,1) 100%);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    /*height: 107vh;*/
    /*background: url(../img/hero-bg.png) top center no-repeat;*/
    /*background-color: #202020;*/
    /*    background: rgb(32,32,32);
        background: linear-gradient(121deg, rgba(32,32,32,1) 0%, rgba(106,106,106,1) 100%);*/
    background-color: rgb(83, 83, 83);
    background-size: cover;
    margin-top: -102.5px;
    padding-top: 130px;
}

.hero h1 {
    /*margin: 0;*/
    font-size: 56px;
    line-height: 61px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    max-width: 890px;
    margin: auto;
    font-family: "DM Sans", sans-serif;
    padding-top: 25px;
    padding-bottom: 10px;
}

.hero .bg-destaque {
    background-color: #527E7B !important;
    padding-right: 10px;
    padding-left: 8px;
}

.hero h2 {
    color: #d4d4d4;
    margin: 15px 0 0 0;
    font-size: 18px;
    line-height: 33px;
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero .img-hero{
    max-width: 540px;
    margin: auto;
}

.hero .btn-hero{
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #fff;
    background-color: #62c1bf;
    text-transform: uppercase;
    padding: 15px 50px;
    border-radius: 100px;
    margin-top: 15px;
}

.hero p{
    color: #d4d4d4;
    font-size: 16px;
    line-height: 29px;
    margin-top: 15px;
    margin-bottom: 50px;
}

.hero p i{
    font-size: 32px;
    vertical-align: -8px;
    margin-right: 7px;
}

/*@media (max-width: 1324px) {*/
@media (max-width: 1400px) {
    .hero {
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 3rem;
        line-height: 3.4rem;
        /*max-width: 800px;*/
    }

    .hero h2 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }
    .hero img{
        /*max-width: 75%;*/

    }

    .hero .swiper-slide img{
        max-width: 45%;
    }
    .hero .swiper-slide .img-partner-shopify{
        max-width: 70%;
    }
    .hero .swiper-slide .img-partner-google{
        max-width: 35%;
    }
}
@media (max-width: 1024px) {
    /*    .hero img{
            max-width: 50%;
    
        }
        .hero h1 {
            font-size: 30px;
            line-height: 37.6px;
        }
    
        .hero h2 {
            font-size: 22px;
            line-height: 27.6px;
        }*/
}

@media (max-width: 991px) {
    /*    .hero {
            height: auto;
            padding: 70px 0px 60px 0px;
        }
    
        .hero .hero-img {
            text-align: center;
            margin-top: 80px;
        }
    
        .hero .hero-img img {
            width: 80%;
        }*/

    .hero hr{
        max-width: 141px;
        border: 1.7px solid rgb(98, 193, 191);
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    #hero .container{
        width: 100%;
    }
    .hero {
        height: auto;
        text-align: center;
        margin-top: -85px;
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 27px;
        line-height: 32px;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .hero h2 {
        font-size: 11px;
        line-height: 20px;
        max-width: 311px;
    }

    .hero .img-hero{

        /*width: 360px;*/
        /*max-height: 100px;*/
        max-width: 100%
    }

    .hero .btn-hero{
        font-size: 15px;
        line-height: 20px;
        padding: 13px 14px;
    }

    .hero p{
        font-size: 13px;
        line-height: 23px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .hero p i{
        font-size: 20px;
        vertical-align: -3px;
        margin-right: 7px;
        color: #fff;
    }



}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about h3{
    max-width: 810px;
    margin: auto;
    font-size: 40px;
    color: #212121;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.about .row .col-lg-4{
    padding: 20px;
}

.about .box{
    border: 2px solid #121212;
    border-radius: 16px;
    padding: 20px 48px;
    min-height: 175px;

}

.about .about-number{
    /*margin: auto;*/
    margin-top: -43px;
    margin-left: -73px;
    z-index: 999;
    border: 1px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #fff;
    padding-top: 7px;
}

.about .box .about-number p{
    font-size: 1.5rem;

}

.about .box h4{
    font-size: 1.5rem;
    font-weight: bold;
    color: #121212;
    /*padding-top: 40px;*/
    /*    padding-top: 10px;
        padding-bottom: 10px;*/
}

.about .box p{
    font-size: 1rem;
    font-weight: normal;
}

.container-itens{
    margin-top: 20px;
    background-color: #66bab6;
    color: #fff;
}

.container-itens .row{
    padding-top: 25px;
    padding-bottom: 25px;
}

.container-itens .item {
    max-width: 280px;
    margin: auto;
}

.container-itens h5{
    font-size: 51px;
    font-weight: 700;
}

.container-itens p{
    font-size: 16px;
}

@media (max-width: 1400px) {

    .about .container{
        max-width: 1120px;
        margin: auto;
    }

    .about .box{
        /*padding: 30px 45px 0px;*/
        min-height: 170px;
        padding: 23px 32px 0px;

    }

    .about .row .col-lg-4{
        padding: 20px;
    }

    .about .about-number{
        margin-top: -43px;
        margin-left: -60px;

    }

    .about .box h4{
        font-size: 1.4rem;
        font-size: 20px;
        margin-top: 15px;
    }

    .about .box p{
        font-size: .9rem;
    }

    .container-itens{
        margin-top: 10px;
    }
}

@media (max-width: 1200px) {
    .about .container{
        max-width: 990px;
        margin: auto;
    }
    .about .row .col-lg-4{
        padding: 20px;
    }
    .about .box{
        padding: 0px 25px 0px;
        ;
    }

    .about .about-number{
        margin-top: -25px;
        margin-left: -50px;

    }
}

@media (max-width: 768px) {
    .about h3{
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        margin-top: 45px;
    }
    .about .box{
        padding: 23px 32px 10px;
        border: 2px solid rgb(212, 212, 212);
    }

    .about .about-number {
        margin: auto;
        margin-top: -50px;
        border: 1px solid rgb(212, 212, 212);
    }

    .container-itens{
        margin-top: 10px;
    }


}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.service{
    margin-top: 30px;
}

.service .title p {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 4px;
    margin: 0px auto 10px;
}
.service h2{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.service p{
    max-width: 1044px;
    font-size: 1.2rem;
    margin-top: 47px;
    margin-bottom: 60px;
    font-weight: normal;
}

.service  h3{
    font-size: 21px;
    line-height: 22px;
}




.service .title-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 240px;
}

.service .title-service .service-div {
    display: flex;
    align-items: center;
}

.service .title-service .service-div .icon-service {
    position: relative;
    width: 37px;
    height: 37px;
    overflow: hidden;
    margin-right: 8px;
}

.service .cover {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 100%;*/
    /*height: 100%;*/
    object-fit: cover;
}

#service .title-service .service-div h3 {
    color: #121212;
    font-size: 21px;
    font-weight: 700;
    line-height: 27px;
    padding-left: 6px;
}

.service .text-service {
    max-width: 232px;
}

.service .text-service p {
    margin-top: 15px;
    color: #858585;
    color: #000;
    font-size: 1rem;
}

.service .btn-service{
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #fff;
    background-color: #62c1bf;
    text-transform: uppercase;
    padding: 15px 80px;
    border-radius: 100px;
    margin-bottom: 50px;
}

@media (max-width: 1400px) {
    .service p{
        font-size: 1.1rem;
    }

    .service  h3{
        font-size: 17px;
        line-height: 18px;
    }

    .service .text-service p {
        font-size: .95rem
    }
}

@media (max-width: 768px) {
    .service{

    }

    .service .title p {
        font-size: 16px;
        line-height: 22px;
    }
    .service h2{
        font-size: 28px;
        line-height: 34px;
        max-width: 768px;
    }

    .service .title-service .service-div .icon-service {
        position: relative;
        width: 28px;
        height: 28px;
        overflow: hidden;
        margin-right: 5px;
    }

    .service  h3{
        font-size: 19px;
        line-height: 20px;
    }

    .service .title-service .service-div .icon-service {
        position: relative;
        width: 42px;
        height: 42px;
        overflow: hidden;
        margin-right: 8px;
    }

    #service .title-service .service-div h3 {
        font-size: 14px;
        font-weight: 700;
        line-height: 16px;
        padding-left: 6px;
    }
    .service .text-service {
        max-width: 100%;
    }

    .service .row {
        max-width: 90%;
        margin: auto;
    }

    .service .btn-service{
        font-size: 15px;
        line-height: 21px;
        font-weight: 700;
        color: #fff;
        background-color: #62c1bf;
        text-transform: uppercase;
        padding: 15px 20px;
        border-radius: 100px;
        margin: auto;
        margin-bottom: 50px;
    }

}

/*--------------------------------------------------------------
# Plans Section
--------------------------------------------------------------*/

#plans{
    /*    background: rgb(32,32,32);
        background: linear-gradient(120deg, rgba(32,32,32,1) 0%, rgba(106,106,106,1) 100%);*/
    background-color: #474747;
}

.plans .title h2 {
    font-size: 47px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    max-width: 1100px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 10px;
}

.plans .title p {
    font-size: 16px;
    line-height: 29px;
    text-align: center;
    color: #d4d4d4;
    line-height: 39px;
}

.plans .item {
    max-width: 280px;
    margin: auto;

}

.plans .container-plan-item{
    max-width: 940px;
    margin: auto;
}

.plans .item h5{
    font-size: 71px;
    line-height: 85px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.plans .item p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    max-width: 160px;
    margin: auto;
}

.plans .item .plan-invest{
    max-width: 110px;
    margin: auto;
}

.plans .item-border-plan{
    border-right: 1px solid #a3bac6;
}

.plans .video-institucional {
    max-width: 920px;
    margin: 50px auto 20px;
    background-color: #474747;
    border: none;
}

.image-content,
.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.card-img-overlay {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 0;
    left: 45%;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    /*border: 4px solid #4070F4;*/
}

.dimbox-btn-download {
    display: none;
}


.plans .hr-plan{
    color: rgb(98, 193, 191);
    max-width: 447px;
    margin: 30px auto;

}

.plans .subtitle h2{
    font-size: 48px;
    line-height: 58px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    max-width: 1000px;
    margin: auto;
}
.plans .subtitle p{
    font-size: 19px;
    line-height: 34px;
    font-weight: 400;
    color: #d4d4d4;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 25px;
}


.container-plan{
    max-width: 1281px;
    margin: auto
}

.plan {
    border: 1px solid #626262;
    /*border-radius: 16px;*/
    background: rgb(29,29,29);
    /*background: linear-gradient(120deg, rgba(32,32,32,1) 0%, rgba(106,106,106,1) 100%);*/

}

.plans .plan-starter .title {
    /*background-image: url("../img/plan-starter.jpg");*/
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), url("../img/phoenixRise.jpg");*/
    /*background-image: url("../img/phoenixRise.jpg");*/
    background-image: linear-gradient(rgba(29, 29, 29, 0.63), rgba(29, 29, 29, 0.63)), url("../img/plan-starter.webp");
    background-size: cover;
    background-position: top 50% right 50%;
    /*border-radius: 16px 16px 0px 0px;*/
    min-height: 410px;
}

.plans .plan .title h3 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 71px;
    padding-top: 40px;
    margin-bottom: 0px;
}

.plans .plan .title p {
    color: #24f0eb;
    text-align: center;
    font-weight: 700;
    padding-bottom: 40px;
    font-size: 41px;
    margin-top: 10px;
}

.plans .plan .content{
    padding: 40px 80px;
}
.plans .plan .content .period{
    color: #fff;
    font-size: 25px;
    ;
    line-height: 30px;
    font-weight: 700;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.plans .plan .subtitle{
    color: #fff;
    font-size: 34px;
    line-height: 41px;
    font-weight: 700;
    max-width: 1000px;
}

.text-spotlight {
    color: #24f0eb !important;
}

.plan .content p {
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    padding-top: 30px;
    padding-bottom: 20px;
}


.plan .content ul li{
    color: #d4d4d4;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    padding-bottom: 5px;
}


.plans .content .item-border-plan{
    border-right: 1px solid #d4d4d4;
}

.plans .btn-plan {
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background-color: #62c1bf;
    border-radius: 100px;
    padding: 12px 33px;
    margin-top: 30px;
    margin-bottom: 30px;
    /*width: 415px;*/
}


.plans .plan-professional .title {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.63)), url("../img/plan-professional.jpg");*/
    background-image: linear-gradient(rgba(29, 29, 29, 0.63), rgba(29, 29, 29, 0.63)), url("../img/plan-professional.webp");
    background-size: cover;
    /*background-position: center;*/
    background-position: top 50% right 50%;
    /*border-radius: 16px 16px 0px 0px;*/
    min-height: 410px;
    /*min-height: 360px;*/
    /*max-width: 1670px;*/
}

.ml-n1{
    margin-left: -18px !important;
}

.plan .content  .plan-list-plus{
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #24f0eb;
    margin-top: 20px;
}

.plans .btn-plan-pro{
    padding: 12px 80px;
    /*width: 467px;*/
}


@media (max-width: 1400px) {
    .plans .plan .subtitle{
        font-size: 2rem
    }

    .plan .content ul li{
        font-size: 18px;
    }

}
@media (max-width: 1199px) {
    .plans .content .item-border-plan{
        border-right: none;
    }
}

@media (max-width: 768px) {
    .plans .title h2 {
        font-size: 29px;
        text-align: center;
        color: #fff;
        font-weight: bold;
        /*max-width: 1224px;*/
        padding-top: 35px;
        padding-bottom: 25px;
    }

    .plans .title p{
        font-size: 14px;
        line-height: 25px;
        max-width: 220px;
        margin: auto;
        margin-bottom: 25px;
    }

    .plans .container-plan-item{
        max-width: 290px;
        margin: auto;
    }

    .plans h5{
        font-size: 40px;
    }

    .plans .item h5{
        font-size: 2.4rem;
        margin-bottom: -20px;
    }

    .plans .item p{
        font-size: .9rem;
        margin-bottom: 15px;
    }

    .plans .item-border-plan{
        border-bottom: 1px solid #a3bac6;
    }
    .plans .item-no-border-plan-bottom{
        border-bottom: none;
    }
    .plans .item-border-plan-mobile{
        border-right: none;
    }

    .plans .content .item-border-plan{
        border: none;
    }

    .plans .subtitle h2{
        font-size: 25px;
        line-height: 30px;
        max-width: 280px;
        margin: auto;
    }

    .plans .subtitle p{
        color: #fff;
        font-size: 14px;
        line-height: 25px;
        font-weight: 400;
        max-width: 220px;
        margin: auto;
        margin-bottom: 25px;
    }

    .plans .container-plan{
        max-width: 88%;
    }

    .plans .plan-starter .title{
        min-height: 200px;
    }

    .plans .plan .title h3 {
        font-size: 32px;
        line-height: 38px;
        padding-top: 60px;
    }

    .plans .plan .title p{
        font-size: 32px;
        line-height: 38px;
    }

    .plans .plan .content .period{
        color: #fff;
        font-size: 13px;
        text-align: left;
        font-weight: 700;
        margin-bottom: 0px;
    }

    .plans .plan .subtitle{
        color: #fff;
        font-size: 21px;
        line-height: 25px;
        font-weight: 700;
    }

    .plan .content p {
        font-size: 19px;
        line-height: 23px;
        padding-bottom: 0px;
        padding-top: 10px;
    }

    .plans .plan .content {
        padding: 15px 15px;
    }

    .plan .content ul li {
        font-size: 14px;
        line-height: 25px;
    }
    .plans .item-border-plan{
        /*border: none;*/
    }

    .plan .content ul{
        margin-bottom: 0px;
        padding-left: 1rem;
    }

    .plans .btn-plan {
        font-size: 15px;
        line-height: 21px;
        padding: 12px 10px;
        width: 100%;

    }

    .plans .plan-professional .title{
        min-height: 200px;
    }
    .plan .content .plan-list-plus {
        font-size: 16px;
        line-height: 19px;
        margin-top: 0px;
    }

    .card-img-overlay {
        top: 25%;
        left: 35%;
    }

    .plan .icone-play{
        max-width: 10px;
    }
}


/*--------------------------------------------------------------
# method Section
--------------------------------------------------------------*/

.method {
    /*    background: rgb(37,88,88);
        background: linear-gradient(90deg, rgba(37,88,88,1) 0%, rgba(74,116,111,1) 100%);*/
    background-color: #474747;
}

.method .title h2{
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
}


.method .method-item {
    box-sizing: content-box;
    /*padding: 30px;*/
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

/*.method .method-item .stars {
  margin-bottom: 15px;
}*/

.method .method-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.method .method-item .method-img {
    width: 90px;
    border: 4px solid #fff;
    margin: 0 auto;
}

.method .method-item h5 {
    color: #fff;
    text-align: left;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.method .method-item p {
    color: #fff;
    /*font-size: 15px;*/
    font-size: 0.9rem;
    text-align: left;
    margin: 0 auto 15px auto;
}

.method .swiper-pagination {
    margin-top: 20px;
    position: relative;

}

.method .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #D9D9D9;
    margin-top: 10px;
    margin-bottom: 30px;
}

.method .swiper-pagination .swiper-pagination-bullet-active {
    /*background-color: rgba(32,32,32, 0.5);*/
    /*background-color: rgba(74, 116, 111, 1);*/
    background-color: rgb(98, 193, 191);
}

.method .swiper-slide {
    opacity: 0.3;
}


.method .card,
.method .card {
    /*  border-top-left-radius: 16px;;
      border-top-right-radius: 16px;*/
    border-radius: 16px;
    border: none;
    background-color: rgba(180, 179, 179, 0.45);
}

.method .card-body{
    min-height: 200px;
}

.method .subtitle{
    font-size: 1.9rem;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-bottom: 0px;
}

@media (max-width: 1199px) {
    .method{
        margin-top: -1px;
    }
    .method .swiper-slide-active {
        opacity: 1;
    }

    .method .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .method .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

@media (max-width: 1400px) {
    .method .title h2 {
        font-size: 3.1rem;
    }
}
@media (max-width: 768px) {
    .method .title h2{
        font-size: 30px;
        padding-top: 30px;
    }

    .method .subtitle{
        font-size: 16px;
        line-height: 22px;
        font-weight: 700;
        max-width: 285px;
        margin: auto;
        padding-top: 15px;
        padding-bottom: 0px;
        margin-bottom: 0px;
        letter-spacing: 4px;
    }
}


/*--------------------------------------------------------------
# Case Section
--------------------------------------------------------------*/

.case {
    padding: 50px 0px;
}

.container-case {
    max-width: 1200px;
    margin: auto
}

.case .title h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #62c1bf;
}

.case .title h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #171717;
}

.case .title p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #171717;
    max-width: 342px;
}



.case .btn-case {
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #fff;
    background-color: #62c1bf;
    border-radius: 100px;
    padding: 12px 33px;
    margin-top: 30px;
    margin-bottom: 30px;
    min-width: 310px;
    /*width: 415px;*/
}




.case .img-nubank{
    min-width: 556px;
    margin-left: -70px;
}

.case p{
    font-size: 16px;
    line-height: 29px;
    color: #171717;
    max-width: 248px;
}

.case hr {
    max-width: 112px;
    border: 2px solid rgb(98, 193, 191);
}

.case .icone-case{
    border: 2px solid #000;
    width: 62px;
    height: 58px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.case .icone-case i{
    font-size: 27px;
    vertical-align: -20px;
}

.case .img-nike{
    min-width: 644px;
}

.case .title .case-nike p {
    max-width: 525px;
}

@media (max-width: 768px) {
    .container-case {
        width: 90%;
        text-align: center !important;
    }
    .case .title h2 {
        font-size: 28px;
        text-align: center;
        line-height: 24px;
    }
    .case .title h3 {
        font-size: 27px;
        text-align: center;
        line-height: 34px;
        max-width: 299px;
        margin: auto;
    }

    .case .title p{
        font-size: 14px;
        text-align: center;
    }

    .case .img-nubank {
        min-width: 242px;
        width: 272px;
        margin: 20px auto;
    }

    .case .icone-case{
        margin: 30px auto 15px;
    }

    .case p{
        font-size: 14px;
        max-width: 248px;
        margin: auto;
    }

    .case hr {
        margin: 30px auto;
    }

    .case .btn-case {
        text-align: center;
        padding: 12px 29px;
        min-width: 290px;
    }

    .case .title-case-nike h3{
        max-width: 355px;
    }

    .case .title .case-nike p {
        max-width: 303px;
    }
}

/*--------------------------------------------------------------
# Clientes Section
--------------------------------------------------------------*/
.clientes{
    background-color: #474747;
}

.container-clientes {
    width: 1160px;
    margin: auto;
}

.clientes .title h2{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    padding-top: 80px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.clientes .analise {
    background-color: #f9f9f9;
    min-height: 232px;
    border-radius: 14px;
    padding-top:  20px;
    padding-right: 20px;
}

.clientes .analise-linha-2 {
    background-color: #f9f9f9;
    min-height: 290px;
    border-radius: 14px;
    padding-top:  20px;
    padding-right: 20px;
}

.clientes .img-cliente {
    width: 150px;
    height: 150px;
    border-radius: 50%;

}

.clientes p{
    font-size: 16px;
    line-height: 29px;
    color: #171717;
    font-weight: 400;

}

.clientes .box-img-cliente {
    margin-left: -45px;
    /*padding-top: 10px;*/
}

.clientes .nome-cliente{
    line-height: 17px;
    color: #4e9796;
    font-weight: 700;
    margin-bottom: 0px;

}
.clientes .redesocial-cliente a, .clientes .redesocial-cliente {
    text-decoration: none;
    color: #4e9796;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 5px;
}


@media (max-width: 1159px) {
    .container-clientes {
        width: 70%;
        margin: auto;
    }
}
@media (max-width: 768px) {
    .container-clientes {
        width: 90%;
        margin: auto;
    }

    .clientes .analise, .clientes .analise-linha-2 {
        margin-top: 50px;
    }

    .clientes .box-img-cliente {
        text-align: center;
        margin: auto;
        margin-top: -95px;
    }

    .clientes p{
        text-align: center;
        font-size: 14px;
        margin: 13px;
        line-height: 25px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
    background-color: #474747;
}

.contact .container-contato{
    max-width: 1400px;
    margin: auto;
}

.contact .title {
    color: #fff;
}

.contact .title h2 {
    /*font-size: 58px;*/
    font-size: 59px;
    font-weight: 700;
    line-height: 71px;
}

.contact hr {
    max-width: 267px;
    border: 1px solid rgb(98, 193, 191);
    margin-top: 40px;
    margin-bottom: 40px;
}


.contact .title p {
    font-size: 22px;
    padding-bottom: 25px;
    max-width: 685px;
}

.contact .form{
    margin: 40px auto;
    padding: 20px 45px 30px;
    border: 3px solid #fff;
    border-radius: 40px;
    max-width: 585px;
}

.contact .form h4{
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    font-style: italic;
    font-weight: 700;
}

.contact .form input{
    font-size: 16px;
    padding: 15px 10px;
    border-color: rgb(98, 193, 191);
}

.contact .form input::placeholder{
    color: rgba(0, 0, 0, .6);
}

.contact .form .btn-submit{
    background-color: rgb(98, 193, 191);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    width: 100%;
    padding: 15px 7px;
    text-align: center;
    border-radius: 3px;
    box-shadow: rgb(79, 145, 145) 0px 5px 0px;
}


@media (max-width: 1400px) {
    .contact .container-contato{
        max-width: 1180px;
        margin: auto;
        margin-top: -1px;
    }

    .contact .title h2{
        font-size: 49px;
        line-height: 56px;
        padding-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .contact .container-contato{
        max-width: 93%;
        margin: auto;
        margin-top: -1px;
    }

    .contact .title{
        padding: 15px 12px 0px;
    }

    .contact .title h2{
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 10px;
    }

    .contact .title p{
        font-size: 14px;
        line-height: 25px;
        padding-bottom: 0px;
        padding-top: 10px;
    }

    .contact .form {
        margin: 20px auto 40px;
        padding: 25px 15px 30px;
    }

    .contact .form h4{
        font-size: 22px;
        line-height: 26px;
    }

    .contact .form .btn-submit{
        font-size: 16px;
        line-height: 21px;

    }

}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news{
    margin-top: 20px;
}

.news .container-news{
    max-width: 880px;
    margin: auto;
}

.news .post-box{
    margin-top: 20px;
}

.news .title h2{
    font-size: 3.4rem;
}

.news .post-img{
    margin-bottom: 15px;
}

.news .post-date{
    color: #212121;
    font-size: 0.8rem;
}

.news .post-title{
    font-size: 1.1rem;
    margin-top: 15px;
}

.news .post-box p{
    font-size: 0.7rem;
}

.news .show-more {
    font-size: 21px;
    text-align: right;
    margin-top: 30px;
}

.news .show-more-icon {
    color: #66bab6;
    font-size: 30px;
    vertical-align: -13%;
}

@media (max-width: 1400px) {
    .news .container-news{
        max-width: 880px;
        margin: auto;
    }

    .news .post-date{
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .news .title h2{
        font-size: 35px;
    }

    .news .show-more {
        font-size: 21px;
    }
    .news .show-more-icon {
        font-size: 37px;
    }
    .news .post-title{
        font-size: 1rem;
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
#faq {
    max-width: 1100px;
    margin: auto;
}

.faq .title h2{
    font-size: 48px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
.faq .accordion-collapse{
    border: none;
    background-color: rgba(85, 85, 85, 0.29) !important;
    border-radius: 0px 0px 8px 8px;
    padding-bottom: 20px;
}

.faq .accordion-body{
    padding: 0px 30px 20px;
}

.faq .accordion-item{
    margin-bottom: 20px;
    border-radius: 8px;
}



.faq .accordion-item .accordion-button {
    background-color: rgba(85, 85, 85, 0.29) !important;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    padding: 25px 30px;
}

.faq .accordion-button:not(.collapsed) {
    color: #000;
    border-radius: 8px 8px 0px 0px;
}


.faq p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0px;
}



@media (max-width: 768px) {
    .faq .title h2{
        margin-top: 30px;
        font-size: 32px;
        font-weight: 700;
    }

    .faq .accordion-item .accordion-button {
        font-size: 14px;
        line-height: 17px;
        padding: 15px 20px;
    }
    .faq .accordion-body {
        padding: 0px 20px 15px;
    }

    .faq p {
        font-size: 12px;
        line-height: 18px;
    }
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

.footer {
    margin-top: 60px;
    background-color: #3b3b3b;
    color: #fff;
}

.footer .container{
    max-width: 1080px;
}

.footer-newsletter {
    padding-top: 30px;
}

.footer .footer-newsletter h4 {
    font-size: 22px;
    line-height: 31px;
    font-weight: 700;
    text-align: left;
    max-width: 454px;
}

.footer form {
    /*border: 2px solid #ccc;*/
    /*display: inline-block;*/
    padding: 4px;
    padding-left: 15px;
    /*background-color: #fff;*/
    border-radius: 3px;

}


.footer form > input {
    border: none;
    min-width: 100%;
    border-radius: 3px;
}
.footer form > input:focus {
    border-radius: 0px;
    border: none;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
}

.footer form .input-group-text {
    background: #66bab6;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 3px;
}

.footer form .btn-newsletter {
    border: none;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
    background: #66bab6;
    border-radius: 3px;
}

.footer .footer-content{
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    /*border-top: 1px solid rgba(255, 255, 255, 0.06);*/
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.06);*/
}

.footer .footer-content h4{
    font-size: 22px;
    line-height: 31px;
    font-weight: 700;
}


.footer .footer-content .logo-footer {
    width: 169px;
    /*    margin-top: -30px;
        margin-left: -30px;
        margin-bottom: 20px;*/
}

.footer .footer-content .social-links a {
    font-size: 1.2rem;
    display: inline-block;
    color: #fff;
    line-height: 0;
    margin-right: 20px;
    transition: 0.3s;
}

.footer .footer-content ul{
    padding-left: 0px;
}

.footer .footer-content li{
    list-style: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}


.footer .footer-content li a{
    text-decoration: none;
    color: #fff;
}

.text-underline{
    color: #fff;
    text-decoration: underline !important;
}

.footer .footer-content .icon-contact{
    vertical-align: -13%;
}

.footer .footer-content .horary h6 {
    font-size: 13px;
    text-transform: uppercase;
}

.footer .footer-content .horary {
    border-left: solid 1px #fff;
    padding-left: 15px;
    margin-top: 10px;
}

.footer .footer-content .horary p {
    font-size: 13px;
    color: rgba(255, 255, 255, 1);
}

.footer .footer-copyright p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0px;
    padding: 30px 0px;
    text-align: right;
}

@media (max-width: 1200px) {
    .footer form > input {
        /*width: 200px;*/
    }
}

@media (max-width: 768px) {
    .footer{
        /*text-align: center;*/
    }

    .footer .footer-newsletter h4{
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer .footer-content{
        margin-top: 0px;
    }

    .footer .footer-content h4{
        margin-top: 10px;
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 15px;
    }

    .footer .logo-footer{
        text-align: center;
    }

    .footer .footer-copyright p {
        font-size: 11px;
        line-height: 22px;
        text-align: center;
    }
}


.bi-facebook::before {
    content: url(../img/logo-facebook.svg);
    line-height: 1;
    vertical-align: -.125em;
}

/*.footer .footer-content .social-links a .bi-facebook::before{
    font-size: 1px !important;
}*/


.pulsar img{
    width: 35px;
    height: 35px;
    background: transparent;
}

.pulsar{
    position: relative;
    width: 70px;
    height: 70px;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.pulsar:before, .pulsar:after{
    content: '';
    display: block;
    position: absolute;
    left:  -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: animar 1.5s linear infinite;
    opacity: 0;
}

.pulsar:after{
    animation-delay:  .5s;
}

.whatsapp {
    position:fixed;
    width:70px;
    height:70px;
    bottom:25px;
    right: 30px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 1px 1px 2px #888;
    z-index:1000;
}

@keyframes animar {
    0%{
       transform: scale(0.5);
       opacity: 0;
    }
    50%{
       opacity: 1;
        
    }
    100%
       transform: scale(1.2);
       opacity: 0;
}


.popup-Whatsapp {
    position: fixed;
    width:165px;
    height:50px;
    bottom:25px;
    background-color: #f5f7f9;
    font-size: 13px;
    color: #43474e;
    padding: 5px 0 5px 12px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    right: 75px;
    bottom: 35px;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}