.header{
    width: 100%;
    background-color: #fff;
    
    position: absolute;
    top: 0;
    z-index: 99999;
    transition: 0.5s linear;
}

.header .container{
    padding: 15px 0;
    
}

.nav-header {
    justify-content: space-between;
}

.nav-header .nav-item{
    list-style: none;
    padding: 15px;
}

.nav-header .nav-item .nav-link{
    font-size: 1.6rem;
    text-decoration: none;
    color: #258477;
    transition: 0.3s linear;
    position: relative;
}
.nav-header .nav-item .login-link{
    background-color: #258477;
    color: #FFF;
    padding: 4px 16px;
    border-radius: 5px;
}

.nav-header .nav-item .nav-link::before{
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background-color: #258477;
    left: 0;
    bottom: -5PX;
    z-index: 2;
    transition: 0.3s linear;
}
.nav-header .nav-item .nav-link:hover::before{
    width: 100%;
    transition: 0.3s linear;
}


.header.fixed{
    position: fixed;
    top: 0;
    z-index: 99999;

    background-color: var(--verde);
    transition: 0.5s linear;
}

.header.fixed .nav-header .nav-item .nav-link{
    color: #fff;
}

.header.fixed .nav-header .nav-item .login-link{
    background-color: #FFF;
    color: #258477;
}
/***************/

.banner{
    width: 100%;
    background-image: url(../img/banner-bg.png);
    background-position-y: 60px;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

.banner::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: #258477dd;*/
    background: linear-gradient(to right, #258477ef 0%, #258477bd 51%, #258477ef 100%);
}

.banner .img-bottom{
    position: absolute;
    bottom: -5px;
    width: 100%;
    z-index: 10;
}

.banner .banner-hero{
    flex-direction: column;
    padding: 240px 0 200px 0;
    
}
.banner .banner-hero > div{
    z-index: 1;
}

.banner .banner-hero .logo-banner{
    padding: 20px 0;
}

.banner .banner-hero .title-banner h1{
    color: #FFF;
    text-align: center;
}

.banner .banner-hero .text-banner{
    text-align: center;
    padding: 20px 0;

    max-width: 70%;
}
.banner .banner-hero .text-banner p{
    color: #FFf;
    line-height: 2.4rem;
}

.banner .banner-hero .download-banner{
    width: auto;
    justify-content: space-between;
}

.banner .banner-hero .download-banner .button-loja{
    margin: 8px;
}

.banner .banner-hero .download-banner .button-loja a{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 8px 15px;
    text-decoration: none;
    color: #FFF;
    transition: 0.3s linear;
}


.banner .banner-hero .download-banner .apple a{
    padding: 8px 22px;
}

.banner .banner-hero .download-banner .button-loja a .icon{
    width: 50px;
    color: #FFF;
}

.banner .banner-hero .download-banner .button-loja a .icon .fa-apple{
    font-size: 3.2rem;
}

.banner .banner-hero .download-banner .button-loja a .icon .fa-google-play{
    font-size: 2.4rem;
}

.banner .banner-hero .download-banner .button-loja a .title{
    color: #FFF;
}

.banner .banner-hero .download-banner .button-loja a .title p{
    color: #FFF;
}

.banner .banner-hero .download-banner .button-loja a:hover{
    transition: 0.3s linear;
    background-color: #FFF;
}

.banner .banner-hero .download-banner .button-loja a:hover .icon{
    color: #258477;
    transition: 0.3s linear;
}

.banner .banner-hero .download-banner .button-loja a:hover .title{
    color: #258477;
    transition: 0.3s linear;
}

.banner .banner-hero .download-banner .button-loja a:hover .title p{
    color: #258477;
    transition: 0.3s linear;
}


/*Funções*/

.funcoes{
    width: 100%;
}

.funcoes .content{
    justify-content: space-between;
}
.funcoes .coluna-func{
    flex-direction: column;
    justify-content: space-around;
    align-items: center;


}
.funcoes .imagem-func .center img{
    width: 450px;
}

.funcoes .imagem-func .center{
    text-align: center;
}

.funcoes .imagem-func img{
    width: 100%;
    max-height: 500px;
    animation: floating2 7s infinite;
}

@keyframes floating2 {
    0% {
        
        transform: rotateX(0deg) translateY(0px);
    }
    50% {
        
        transform: rotateX(0deg) translateY(15px);
    }
    100% {
        
        transform: rotateX(0deg) translateY(0px);
    }
}

.funcoes .funcao-box{
    text-align: center;
    box-shadow: 0px 0px 29px 6px #eee;
    padding: 20px;
    margin: 30px 10px;
    border-radius: 10px;
    width: 100%;
    min-height: 290px;
    justify-content: space-between;
}



.funcoes .funcao-box .icon img{
    width: 65px;
}

.funcoes .funcao-box .text{
    text-align: left;
    width: 70%;
}

.funcoes .funcao-box .text h4{
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 7px;
}

.funcoes .funcao-box .text p{
    line-height: 2.4rem;
}

.funcoes .flex-colum{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.funcoes .flex-colum .text{
    width: 100%;
    text-align: center;
}


.funcoes .funcao-box .icon{
    box-sizing: content-box;
    width: 55px;
    height: 60px;
    position: relative;
    margin: 0px 0px 25px;
    font-size: 24px;
    -webkit-border-radius: 50% / 14%;
    border-radius: 50% / 14%;
    color: white;

    text-align: center;
    line-height: 64px;
    -o-text-overflow: clip;
    text-overflow: clip;
    z-index: 1;
    padding: 0 5px;
}

.funcoes .funcao-box .icon i{
    margin: 0 auto;
}

.funcoes .button-conta{
    text-align: center;
    margin-top: 80px;
}

.funcoes .button-conta a{
    background-color: #24BAAF;
    font-size: 2.0rem;
    color: #FFF;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-radius: 5px;
}


/* Como Funciona */

.como-funciona{
    width: 100%;
    padding: 60px 0;
}

.como-funciona .como-funciona-flex{
    justify-content: space-between;
}

.como-funciona .imagem-ilustracao{
    max-width: 500px;
}
.como-funciona .imagem-ilustracao img{
    width: 100%;
    animation: floating2 5s infinite;
}
.como-funciona .conteudo-texto{
    width: 50%;
}
.como-funciona .conteudo-texto .etapa{
    box-shadow: 0px 0px 29px 6px #eee;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.como-funciona .conteudo-texto .etapa .content .number{
    width: 60px;
    padding: 0 20px;
}

.como-funciona .conteudo-texto .etapa .content .number .numero-etapa{
    font-size: 3.5rem;
    color: #258477;
}

.como-funciona .conteudo-texto .etapa .content .text{
    padding: 0 20px;
}

.como-funciona .conteudo-texto .etapa .content .text h6{
    color: #258477;
    text-transform: capitalize;
    padding-bottom: 8px;
}

.como-funciona .conteudo-texto .etapa .content .text p{
    line-height: 2.3rem;
}

/* Planos */


.planos {
    width: 100%;
    padding: 100px 0 20px 0;
}

.planos .plano-flex{
    justify-content: space-between;
    align-items: flex-start;
}

.planos .escolha-plano{
    max-width: 400px;
    width: 25%;
}

.planos .escolha-plano .text{
    padding: 20px 0;
    margin-bottom: 30px;
}

.planos .escolha-plano .text h2{
    color: #258477;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.planos .escolha-plano .saiba-mais{
    text-align: left;
}

.planos .escolha-plano .saiba-mais a{
    font-size: 1.6rem;
    color: #FFF;
    background-color: #258477;
    border-radius: 30px;
    padding: 15px 50px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #258477;
    transition: 0.3s linear;
}

.planos .escolha-plano .saiba-mais a:hover{
    background-color: #FFF;
    color: #258477;
    transition: 0.3s linear;
}


.planos .planos-lista{
    width: 70%;
    justify-content: space-between;
}

.planos .planos-lista .card-plano{
    width: 33%;
    box-shadow: 0px 0px 29px 6px #eee;
    border-radius: 15px;
}

.card-plano{
    border-radius: 15px;
    padding-bottom: 20px;
    max-width: 32%;
}


.card-header {
    background: linear-gradient(to right, #258477ef 0%, #258477bd 51%, #258477ef 100%);
    position: relative;
    text-align: center;
    border-radius: 15px 15px 0px 0px;
    padding: 20px;
}

#basico{
    background: linear-gradient(to right, #F38650 0%, #F38650 51%, #F38650 100%);
    
}

.card-header h4{
    color: #FFF;
    padding-bottom: 5px;
}


.card-header-price .simbolo{
    vertical-align: top !important;
    color: #FFF;
}
.card-header-price .preco{
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFF;
}

.card-header .user{
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: #eee;
    transform: translateX(-50%);
}

.card-header-price .periodo{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFF;
}
.card-plano .beneficios{
    padding: 20px 0;
}
.card-plano .beneficios ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    list-style: none;
    font-size: 1.6rem;
    padding-top: 5px;
}
.card-plano .beneficios p{
    padding: 0 10px;
    min-height: 140px;
}
.card-plano .beneficios p strong{
    color: #258477;
}

.card-plano .beneficios ul li span{
    color: #FFF;
    background-color: #258477;
    border-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 25px;
    text-align: center;
    position: absolute;
    top: 3px;
    left: 5px;
}

.card-plano .experimente{
    text-align: center;
    padding-top: 20px;
}

.card-plano .experimente a{
    text-decoration: none;
    font-size: 1.6rem;
    background-color: #258477;
    border-radius: 15px;
    padding: 8px 30px;
    color: #FFF;
    border: 1px solid #258477;
    transition: 0.3s linear;
}

.card-plano .experimente a:hover{
    background-color: #FFF;
    color: #258477;
    transition: 0.3s linear;
}

/*Planos interno*/

.planos-interno{
    padding: 120px 0 50px 0;
}
.planos-interno .planos-lista{
    width: 100%;
}

.planos-interno .card-plano{
    width: 33%;
}

.planos-interno .card-plano .beneficios p{
    min-height: 80px;
}

.planos-beneficios .lista-beneficios{
    justify-content: space-between;
}

.planos-beneficios .lista-beneficios .box{
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.planos-beneficios .lista-beneficios .box .icone{
    padding: 10px 15px;
    border-radius: 100%;
    color: #fff;
    font-size: 2.0rem;
    background-color: #258477;
    
}

.planos-beneficios .lista-beneficios .box h6{
    color: #258477;
    padding: 0px 10px;
}
.tabela-container{
    width: 100%;
    padding: 100px 0;

}

.tabela-comparativo{
    width: 80%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 10px;
    border: 3px solid #258477;
}

.tabela-container .text-primary{
    color: #24BAAF;
}

.tabela-container .title td{
    font-size: 2.4rem;
    font-weight: 600;
    color: #606060;
}

.tabela-container td {
    font-size: 1.8rem;
    padding: 16px 4px;
    color: #606060;
    border-bottom: 1px solid #cccbcb;
}

.tabela-container .text-center{
    text-align: center;
}

.tabela-container .title-tipo{
    background-color: #258477;
    color: #FFF;
    padding-left: 8px;
    
}
/* Perguntas Frequentes */

.perguntas-frequentes{
    width: 100%;
    margin: 60px 0;
}

.perguntas-frequentes .title-section p a{
    color: var(--verde);
}
.perguntas-frequentes .imagem-ilustracao{
    padding-right: 50px;
}
.perguntas-frequentes .imagem-ilustracao img{
    max-height: 450px;
    animation: floating2 7s infinite;
}

.perguntas-frequentes .accordion {
    background-color: #258477;
    color: #FFF;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.6rem;
    transition: 0.3s;
    margin: 15px 0;
    border-radius: 30px;
}
  
.perguntas-frequentes .accordion:hover {
    background-color: #258477dd;
}
  
.perguntas-frequentes .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.perguntas-frequentes .panel.height{
    max-height: min-content !important;
    transition: 0.3s linear;
}

.perguntas-frequentes .panel a{
    color: var(--verde);
}


/*Depoimentos*/

.depoimentos{
    width: 100%;
    padding: 120px 0;
    background-color: #258477ee;
}

.teste-comprove{
    background-color: #F38650;
    text-align: center;
    color: #FFF;
    padding: 10px 0;
}

.teste-comprove p{
    color: #FFF;
    font-size: 2rem;
}

.teste-comprove a{
    color: #FFF;
    font-size: 2rem;
    border: 1px solid #FFF;
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 5px;
}

.depoimentos-flex{
    justify-content: space-between;
}

.depoimentos .conteudo-texto{
    width: 40%;
    max-width: 450px;
}

.depoimentos .conteudo-texto .title h2{
    color: #FFF;
    padding-bottom: 15px; 
}
.depoimentos .conteudo-texto .title p{
    color: #FFF;
}

.depoimentos .conteudo-texto .title .button{
    margin-top: 50px;
}

.depoimentos-flex .conteudo-texto .title .button a{
    font-size: 1.6rem;
    background-color: #FFF;
    padding: 10px 31px;
    border-radius: 30px;
    text-decoration: none;
    color: #258477;
    border: 1px solid #FFF;
    transition: 0.3s linear;
}

.depoimentos-flex .conteudo-texto .title .button a:hover{
    color: #FFF;
    background-color: #258477;
    transition: 0.3s linear;
}


.depoimentos .depoimentos-flex .slider{
    width: 50%;
    position: relative;
}

.depoimentos .depoimentos-flex .slider .center{
    width: 100px;
    text-align: center;
}

.depoimentos .depoimentos-flex .slider .center p{
    width: 80%;
    margin: 0 auto;
}

.depoimentos .depoimentos-flex .slider .center .estrelas{
    margin-bottom: 10px;
}

.depoimentos .depoimentos-flex .slider .center .estrelas i{
    color: #FFF;
    font-size: 16px;
}
.depoimentos .depoimentos-flex .slider .center h3{
    color: #FFF;
    font-size: 2.0rem;
    padding-top: 20px;
}

.depoimentos .depoimentos-flex .slider .center p{
    color: #FFF;
    
}

.depoimentos-flex .slick-next, .depoimentos-flex .slick-prev{
    position: absolute;
    background-color: #258477;
    color: #FFF;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    border: 1px solid #FFF;
    font-size: 1.8rem;
    cursor: pointer;
    text-align: center;

    display: grid;
    place-items: center;

    transition: 0.3s linear;

    outline: none;

    z-index: 5;
}

.depoimentos-flex .slick-next:hover{  
    background-color: #FFF;
    color: #258477;
    transition: 0.3s linear;
}
.depoimentos-flex .slick-prev:hover{
    background-color: #FFF;
    color: #258477;
    transition: 0.3s linear;
}

.depoimentos-flex .slick-prev{
    bottom: 0;
    left: 0;
}

.depoimentos-flex .slick-next{
    bottom: 0;
    right: 0;
}

/* COntato */

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

.contato .infos{
    width: 35%;
}

.contato .contato-flex{
    align-items: start;
    justify-content: space-between;
}
.contato .infos .title{
    padding-bottom: 60px;
}

.contato .infos .title h4{
    color: #258477;
    font-weight: 500;
}

.contato .infos .title p{
    line-height: 2.3rem;
    padding-top: 10px;
    max-width: 80%;
}

.contato-info i{
    font-size: 35px;
}
.contato-info {
    margin-bottom: 25px;
}
.contato-info h6 {
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #258477;
}
.contato-info-side {
    position: relative;
    padding-left: 70px;
}
.contato-info-side i{
    position: absolute;
    left: 0;
    top: -7px;
    color: #258477;
    
}
.contato-info-side i:before{
    font-size: 45px;
    margin: 0;
}
.contato-info-side p{
    margin-bottom: 0
}
.contato-info-side p span {
    display: block;
    margin-bottom: 5px;
}

.contato .form{
    padding: 30px 50px;
    border-radius: 30px;
    box-shadow: 0px 0px 29px 6px #eee;
    width: 60%;
}
.contato .infos p a{
    color: #606060;
}

.contato .form form h4{
    color: #258477;
    padding-bottom: 10px;
    font-weight: 500;
}


.contato .form form p{
    padding-bottom: 10px;
}

.contato .form form input{
    width: 100%;
    border-radius: 30px;
    border: none;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-size: 1.6rem;
    margin: 4px 0;
    outline: none;
}

.contato .form form textarea{
    width: 100%;
    border-radius: 30px;
    border: none;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-size: 1.6rem;
    margin: 10px 0;
    outline: none;
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
    max-height: 200px;

    font-family: "Montserrat", sans-serif;
}


.contato .form form input[type=submit]{
    width: 200px;
    border-radius: 30px;
    border: none;
    border: 1px solid #258477;
    padding: 10px 20px;
    font-size: 1.6rem;
    margin: 15px 0;
    outline: none;
    color: #fff;
    cursor: pointer;
    background-color: #258477;
    transition: 0.3s linear;
}

.contato .form form input[type=submit]:hover{
    color: #258477;
    background-color: #FFF;
    transition: 0.3s linear;
}

/* Footer */


.footer{
    width: 100%;
    background-color: #258477;
    position: relative;
    padding-top: 244px;
}

.footer .shap-top{
    background-image: url(../img/footer-top.svg);
    background-size: 100% 204px;
    top: 0;
    height: 180px;
    z-index: 1;
    margin-top: -1px;
    position: absolute;
    width: 100%;
    pointer-events: none;
    transform: rotate(180deg);
}


.footer .footer-flex{
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 15px;
}
.footer .footer-flex > div{
    width: 25%;
    padding: 15px;
}


.footer .footer-flex .godash p{
    color: #FFF;
    padding-top: 10px;
}

.footer .footer-flex .links-rapidos{
    color: #FFF;
}

.footer .footer-flex .links-rapidos ul{
    padding-top: 20px;
}

.footer .footer-flex .links-rapidos ul li{
    list-style: none;
    padding: 4px 0;
}

.footer .footer-flex .links-rapidos ul li a{
    font-size: 1.6rem;
    text-decoration: none;
    color: #FFF;
    padding: 4px 4px;
    border-radius: 5px;
    transition: 0.3s linear;
}


.footer .footer-flex .links-rapidos ul li a:hover{
    color: #258477;
    background-color: #FFF;
    transition: 0.3s linear;
}


.footer .footer-flex .redes-footer{
    color: #FFF;
}

.footer .footer-flex .redes-footer ul{
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer .footer-flex .redes-footer ul li{
    list-style: none;
    padding: 8px;
}

.footer .footer-flex .redes-footer ul li a{
    font-size: 3.5rem;
    text-decoration: none;
    color: #FFF;
    padding: 4px 4px;
    border-radius: 5px;
    transition: 0.3s linear;
}

.footer .footer-flex .redes-footer ul li a:hover{
    color: #258477;
    background-color: #FFF;
    transition: 0.3s linear;
}

.footer .made-by{
    text-align: center;
    color: #FFF;
    border-top: 1px solid #FFF;
    padding: 10px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .made-by p{
    color: #FFF;
}
.footer .made-by a{
    color: #FFF;
    text-decoration: none;
    transition: 0.3s linear;
}

.footer .made-by a:hover{
    color: #24BAAF;
    transition: 0.3s linear;
}