@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
:root {
    --width-container-boxed: 1200px;
  }
* {
    font-family: 'Open Sans', sans-serif !important;
    color: #606060;
    line-height: 1.5;
    transition: all 200ms ease-out;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
  }

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}
.reveal{
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
a.btn{
    font-size: 24px;
    border-radius: 64px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    text-align: center;
}
a.btn.blue{
    background-color: #3f52ab;
    color: #fff;
}
a.btn.purple{
    background-color: #6f65b3;
    color: #fff;
}

header{
    width: var(--width-container-boxed);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #fff;
}
header a{
    text-decoration: none;
}

header .logo img{
    width: 80px;
}

nav.menu-fixo{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    padding: 24px;
    z-index: 5;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.15);
}
nav.menu-fixo ul{
    padding: 0;
}
nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 24px;
    padding-bottom: 36px;
}
nav ul li{
    height: 30px;
}
nav ul li.active{
    background: url(../img/active-menu-item.webp);
    background-repeat: no-repeat;
    background-position: center 26px;
}
nav ul li a:hover{
    color:#6F65B3;
}
.social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-bottom: 40px;
}

.hero{
    background-image: url(../img/abstract-bg-lines.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #6F65B3;
    border-radius: 0 0 124px 124px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero .container{
    width: var(--width-container-boxed);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 72px;
    margin-bottom: -6px;
}

.hero .container .headline{
    position: absolute;
    top: 100px;
    left: 0;
    width: 344px;
}
.hero .container .headline h1{
    font-size: 56px;
    line-height: 110%;
    color: #fff;
}

.hero .container .headline .splash-green{
    position: absolute;
    right: 10px;
    top: -20px;
    width: 50px;
}
.hero .container .headline .yellow-line{
    width: 76%;
}

.hero .container .hero-description{
    position: absolute;
    top: 100px;
    right: 0;
    width: 415px;
}

.hero .container .hero-description h4{
    font-size: 36px;
    line-height: 110%;
    color: #fff;
    font-weight: 700;
    margin-bottom: 24px;
}
.hero .container .hero-description p{
    font-size: 18px;
    line-height: 137%;
    color: #fff;
    font-weight: 300;
}

.cv .container{
    width: var(--width-container-boxed);
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
}
.cv .container h1{
    color:#6f65b3;
    text-align: center;
    font-weight: 700;
    font-size: 44px;
}

.cv .container .cv-topico{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.cv .container .cv-topico p{
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}
.cv .container .cv-topico.left{
    margin-right: 50%;
}
.cv .container .cv-topico.right{
    margin-left: 50%;
}

.cv .container .cv-topico.left p{
    text-align: right;
}
.cv .container .cv-topico.right p{
    text-align: left;
}
.cv .container .cv-topico.top{
    margin-top: -80px;
}
.cv .cv-cert{
    background-color: #3f52ab;
    background-image: url(../img/bg-cv.webp);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 124px;
}
.cv .cv-cert p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}
.cv .cv-cert .box-certificados{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cv .cv-cert .box-certificados .certificados{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}
.cv .cv-cert .box-certificados .certificados .cert-img{
    width: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cv .cv-cert .box-certificados .certificados .cert-img img{
    width: 100%;
}

.cv .cv-cert .box-certificados .certificados.top{
    margin-top: 10px;
}

.cv .container .cv-more{
    display: flex;
    align-items: center;
    gap: 32px;
}
.cv .container .cv-more .box-yellow{
    background-image: url(../img/box-yellow.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 50%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    padding: 0 40px 0 50px;
}
.cv .container .cv-more p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #fff;
    text-align: left;
    width: 50%;
}
.cv .cv-empresas{
    background-color: #6f65b3;
}
.cv .cv-empresas .cv-empresas-content{
    border-radius: 0 0 124px 124px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.cv .cv-empresas p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    text-align: center;
}
.cv .cv-empresas p.blue{
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #3f52ab;
    text-align: center;
    width: 80%;
}
.cv .cv-empresas .logos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-white{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #6f65b3;
}
.section-white.expand-cv{
    background-color: #fff;
}
.section-white.bg-blue{
    background-color: #3f52ab;
}
.section-white .section-content{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 124px 124px;
    background-color: #f0f0f0;
}
.section-white.gradient .section-content{
    background: linear-gradient(0deg, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 27%, rgba(255,255,255,1) 100%);
}
.section-white .section-content .container{
    width: var(--width-container-boxed);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.section-white h2{
    font-weight: 700;
    font-size: 44px;
    color:#6F65B3;
}

.section-white h2{
    font-weight: 700;
    font-size: 44px;
    color:#3f52ab;
}

.section-white .box-about{
    background-color: #3f52ab;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding: 48px 10%;
    margin-top: 80px;
}
.section-white .about{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
}
.section-white .about img{
    margin-top: -50px;
    width: 58%;
}
.section-white .about p{
    padding: 24px 64px;
    box-shadow: 5px 8px 10px 5px rgba(0,0,0,0.15);
    border-radius: 24px;
    min-height: 480px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    font-size: 20px;
    background-color: #fff;
}

.section-white a.btn{
    margin: 90px auto -140px auto;
    box-shadow: 5px 8px 10px 5px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
}

.metodology{
    background-image: url(../img/abstract-bg-lines.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #6F65B3;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.metodology .section-content{
    background-image: url(../img/foto-pessoa-2.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 1220px;
    
}
.metodology .container{
    width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 100px;
    margin-bottom: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.metodology h2{
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
}
.metodology h3{
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
    width: 600px;
}
.metodology p{
    font-weight: 300;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    width: 70%;
    margin-bottom: 24px;
}
.metodology .card-container{
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 24px;
}
.metodology .cards{
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: space-between;
    box-sizing: border-box;
}
.metodology .cards .card-content{
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 5px 8px 10px 5px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 24px;
    gap: 16px;
    box-sizing: border-box;
    width: 340px;
}
.metodology .cards .card-content img{
    width: 80%;
}
.metodology .cards .card-content img.icone{
    width: 130px;
}
.metodology .cards .card-content h4{
    color: #6f65b3;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.metodology .cards .card-content p{
    font-weight: 300;
    color: #606060;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
}

.box-features{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin: 48px auto;
    width: 100%;
}
.box-features .feature{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 33%;
}
.box-features .feature p{
    text-align: left;
}
.people{
    background-image: url(../img/abstract-bigger-2.webp);
    background-position: center top;
    background-repeat: no-repeat;   
    padding-top: 24px;
    background-size: contain;
}
.people img{
    width: 100%;
}
.box-atendimento{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 48px auto;
    width: 100%;
    min-height: 450px;
}
.box-atendimento .atendimento{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
    width: 33%;
    height: 407px;
    border-radius: 24px;
}
.box-atendimento .atendimento:hover{
    height: 437px;
    justify-content: flex-start;
    /* margin-top: -133px; */
}
.box-atendimento .atendimento.atendimento-1 .atendimento-1-img{
    background-image: url(../img/atendimento-box-individual-1.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 405px;
    height: 313px; 
    border-radius: 24px;
}
.box-atendimento .atendimento.atendimento-1:hover .atendimento-1-img{
    background-image: url(../img/atendimento-box-individual-2.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 343px; 
    position: relative;
    z-index: 3;
}
.box-atendimento .atendimento.atendimento-2 .atendimento-2-img{
    background-image: url(../img/atendimento-box-grupos-1.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 405px;
    height: 313px;
    border-radius: 24px;
}
.box-atendimento .atendimento.atendimento-2:hover .atendimento-2-img{
    background-image: url(../img/atendimento-box-grupos-2.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 343px; 
    position: relative;
    z-index: 3;
}

.box-atendimento .atendimento.atendimento-3 .atendimento-3-img{
    background-image: url(../img/atendimento-box-empresas-1.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 405px;
    height: 313px;
    border-radius: 24px;
}
.box-atendimento .atendimento.atendimento-3:hover .atendimento-3-img{
    background-image: url(../img/atendimento-box-empresas-2.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 343px; 
    position: relative;
    z-index: 3;
}
.box-atendimento h5{
    font-weight: 700;
    font-size: 32px;
    color: #6f65b3;
}

.box-how p{
    width: 60%;
    margin: 260px auto 0 auto;
    font-size: 20px;
    font-weight: 300;
}
.how-line{
    display: flex;
    align-items: center;
    width: 100%;
    margin: 48px auto -114px auto;
}
.how-line.left{
    justify-content: flex-start;
}
.how-line.right{
    justify-content: flex-end;
}
.how{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
}

.how img{
    width: 200px;
}
.how span{
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 5px -49px 0 0;
    z-index: 2;
}
.how span.green{
    background-color: #79deae;
}
.how span.light-blue{
    background-color: #6acae1;
}
.how span.dark-blue{
    background-color: #3f52ab;
}
.how p{
    background-color: #fff;
    font-weight: 700;
    font-size: 24px;
    border-radius: 24px;
    width: 310px;
    box-sizing: border-box;
    padding: 44px;
    box-shadow: 6px 10px 10px -3px rgba(0,0,0,0.15);
    margin: 32px -30px 0 0;
    z-index: 2;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topicos{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #fff;
}
.topicos .topicos-content{
    background-color: #3f52ab;
    border-radius: 0 0 124px 124px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.topicos .container{
    width: var(--width-container-boxed);
    margin: 0 auto;
    position: relative;
    padding: 100px;
    margin-bottom: -6px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.topicos .people{
    background-image: url(../img/abstract-bigger.webp);
    background-position: center top;
    background-repeat: no-repeat;
    width: 60%;
    background-size: contain;
}
.topicos .people img{
    width: 100%;
}
.topicos .list  {
    /* padding-top: 75px; */
    width: 40%;
}
.topicos .list ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.topicos .list ul li{
    font-size: 18px;
    font-weight: 300;
    color:#fff;
    position: relative;
    padding: 0 0 0 36px;
}
.topicos .list ul li img{
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
}

.depoimentos{
    background-image: url(../img/bg-depoimentos.webp);
    background-position: center bottom;
    background-repeat: no-repeat;      
    background-color: #9f7ccd;
}
.depoimentos .depoiments-white{
    border-radius: 0 0 124px 124px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    padding: 100px 0 0 0;
    gap: 24px;
    overflow: hidden;
}
.depoimentos .depoimento-container{
    width: var(--width-container-boxed);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 48px;
}
.depoimentos .depoiments-white h2{
    color: #9f7ccd;
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.depoimentos .box-depoimento{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}
.depoimentos .box-depoimento .depoimento{
    padding: 48px;
    box-shadow: 5px 8px 10px 5px rgba(0,0,0,0.15);
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 18px;
    flex-direction: column;
    background-color: #fff;
    gap: 24px;
    width: 50%;
}
.depoimento-header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url(../img/aspas-gray.webp);
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 120px;
    min-height: 77px;
}
.depoimento-header img{
    width: 121px;
}
.depoimento-header b{
    color:#9f7ccd;
}

.depoimento p{
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}
.depoimentos .people{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    width: var(--width-container-boxed);
    height: 790px;
    margin: 0 auto;
    background-image: url(../img/foto-pessoa-5.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    /* background-size: contain; */
}
.depoimentos .people .box-people{
    color: #3f52ab;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    background-image: url(../img/box-yellow-footer.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 30%;
    height: 409px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px 0 78px;
    box-sizing: border-box;
}
.depoimentos .people p{
    width: 27%;
    font-size: 18px;
}

.depoimentos h5{
    font-size: 48px;
    color:#fff;
    text-align: center;
    font-weight: 700;
    padding: 100px 0 200px 0;
}
.depoimentos .cta{
    width: var(--width-container-boxed);
    border-radius: 24px;
    background-color: #fff;
    padding: 54px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: -100px auto -170px auto;
    gap: 48px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.depoimentos .cta .whats{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.depoimentos .cta .whats p{
    font-size: 18px;
    font-weight: 300;
}
footer{
    background-color: #3f52ab;
    /* border-bottom: 60px solid #79deae; */
    padding: 280px 0 100px 0;
    color: #fff;
    text-align: center;
}
.dev{
    background-color: #79deae;
    text-align: center;
    font-size: 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#1e774d;
    gap: 8px;
}
.dev a{
    color:#1e774d;
    text-decoration: none;
}
footer a{
    color:#fff;
    text-decoration: none;
}
.footer-content{
    width: var(--width-container-boxed);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-content .fale{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 72px;
}
.footer-content .fale .title{
    width: 200px;
}
.footer-content .fale .title img{
    width: 100%;
}
.footer-content .fale h4{
    text-align: left;
    color: #fff;
    font-size: 48px;
    line-height: 48px;
}
.footer-content .social{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding-bottom: 28px;
}
footer .logo-footer{
    width: 300px;
}
.footer-content .social img{
    width: 26px;
}
.footer-content .social div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.footer-content span{
    color: #fff;
    font-size: 18px;
}

.btn-whats{
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 5;
}

@media screen and (max-width: 1546px) {
    :root {
        --width-container-boxed: 1200px;
      } 
      .hero .container .headline{
        width: 310px;
      }  
      .hero .container .headline h1{
        font-size: 51px;
      }
      .hero .container .headline .splash-green {
        width: 60px;
    }
    .hero .container .hero-image img{
        width: 720px;
    }
    .hero .container .hero-description {
        width: 375px;
    }
    .hero .container .hero-description h4 {
        font-size: 32px;
        line-height: 110%;
    }
    .section-white .about img {
        margin-top: -10px;
        width: 690px;
    }
    .section-white .about{
        margin-top: -100px;
    }
    .people img{
        width: 100%;
        margin-top: -30px;
    }
    .box-atendimento{
        overflow: hidden;
    }
    .box-atendimento{
        gap: 0;
        width: 100%;
    }
    
    .topicos .list ul li{
        font-size: 22px;
        padding: 0 0 0 24px;
    }
    .topicos .list ul li img{
        position: absolute;
        top: 12px;
        left: 0;
        width: 12px;
    }
    .depoimentos .people {
        height: 800px;
}

    
}

@media screen and (max-width: 1366px) {
    :root {
        --width-container-boxed: 980px;
      } 
      .hero .container .headline{
        width: 312px;
      }
      .hero .container .headline h1{
        font-size: 50px;
    }
    .hero .container .headline .yellow-line{
        width: 73%;
    }
    .hero .container .headline .splash-green{
        width: 50px;
        right: 10px;
        top: -21px;
    }
    /* .hero .container .hero-image img{
        width: 590px;
    } */
    .hero .container .hero-description{
        width: 300px;
    }
    .hero .container .hero-description h4{
        font-size: 22px;
    }
    .hero .container .hero-description p{
        font-size: 16px;
        line-height: 132%;
    }
    .metodology .section-content{
        background-position: -100px bottom;
    }
    .section-white .about img{
    margin-top: 34px;
    width: 480px;
    }
    .section-white .about p{
    font-size: 20px;
    padding: 64px;
    min-height: 410px;
    }
    .box-atendimento .atendimento{
    width: 330px;
    }
    .how-line{
    width: 100%;
    margin: 48px auto -134px auto;
    }
    .topicos .container{
    padding: 100px 0;
    }
    
    
    .cv .cv-empresas .logos {
        gap: 32px;
    }
    /* .cv .cv-empresas .logos img{
        width: calc(100% / 5);
    } */
    .cv .cv-empresas p.blue{
        font-size: 22px;
        line-height: 36px;
    }
    .cv .container .cv-more{
        flex-direction: column;
    }
    .cv .container .cv-more .box-yellow{
        padding: 0 200px;
        width: 100%;
        background-size: contain;
    }
    .cv .container .cv-more p {
        font-size: 20px;
        line-height: 29px;
        font-weight: 300;
        color: #fff;
        text-align: left;
        width: 80%;
    }

    .depoimentos .people .box-people{
        font-size: 26px;
        line-height: 34px;
        padding: 0px 50px 0 58px;
        
    }
    .depoimentos .people p{
        width: 23%;
        font-size: 15px;
    }
    
}
@media screen and (max-width: 1220px) {
    :root {
        --width-container-boxed: 768px;
    }     
    header .logo img{
    width: 100px;
    }
    .hero .container .hero-description {
    width: 235px;
    }
    .hero .container .hero-description h4 {
        font-size: 20px;
    }
    .hero .container .hero-description p {
        font-size: 14px;
    }
    .section-white h2{
        font-size: 37px;
    }
    .section-white .section-content{
        padding: 60px 0;
    }
    .section-white .about{
        flex-direction: column;
        gap: 0;
    }
    .section-white .about img{
        margin-top: 50px;
        width: 80%;
    }
    .section-white .about p{
        margin: -100px 0 0 0;
        padding: 48px;
        min-height: unset;
    }
    .section-white a.btn{
        padding: 36px auto -100px auto;
    }
    .metodology h2{
        font-size: 24px;
        line-height: 27px;
    }
    .metodology .container{
        width: 100%;
    }
    .metodology .section-content{
        background-position: -90px bottom;
        min-height: unset;
    }
    .metodology .cards{
        flex-direction: column;
    }
    .metodology .cards .card-content{
        width: 100%;
    }
    
    .box-features .feature{
        flex-direction: column;
        justify-content: center;
    }
    .box-features .feature p{
        text-align: center;
    }
    .box-atendimento{
        flex-direction: column;
        gap: 24px;
    }
    .how-line{
        margin: 48px auto -94px auto;
    }
    .box-how p.botton-how{
        margin: 180px auto 0 auto;
    }
    .section-white a.btn{
     margin: 40px auto -96px auto;   
    }
    .topicos .container{
        flex-direction: column;
    }
    .topicos .people,
    .topicos .list{
        width: 100%;
    }
    .topicos .list{
        margin-top: 0;
    }
    .depoimentos .depoiments-white h2{
        font-size: 35px;
        line-height: 36px;   
    }
    .depoimentos .box-depoimento{
        flex-direction: column;
    }
    .depoimentos .box-depoimento .depoimento{
        width: 100%;
    }
    .depoimentos .people{
        flex-direction: column;
        height: auto;
        justify-content: flex-start;
        height: 940px;
    }
    .depoimentos .people p{
        width: 100%;
    }
    .footer-content{
        flex-direction: column;
        gap: 48px;
        }
        .logo-footer{
        width: 250px;
        }
        .footer-content .fale{
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 48px;
        flex-direction: column;
        align-items: center;
        }
    
    .depoimentos .people .box-people {
        /* font-size: 21px;
        line-height: 23px;
        padding: 0px 0px 0 40px;
        height: 220px; */
        font-size: 21px;
    line-height: 23px;
    padding: 0px 0px 20px 0px;
    height: auto;
    background: none;
    width: 80%;
    }
    .depoimentos .people .box-people::before{
        content: "“";
    }
    .cv .container .cv-topico{
        width: 60%;
    }
    .cv .container .cv-topico.left,
    .cv .container .cv-topico.right{
        margin: 0;
    }
    .cv .container .cv-topico.left{
        flex-direction: row-reverse;
    }
    .cv .container .cv-topico.left p{
        text-align: left;
    }
    .cv .container .cv-more .box-yellow{
        padding: 0 90px;
        width: 100%;
        background-size: contain;
    }
}
@media screen and (max-width: 1100px) {
    .metodology .section-content{
        background: none;
    }
}
@media screen and (max-width: 830px) {
    :root {
        --width-container-boxed: 90%;
    } 
    header{
        align-items: center;
        flex-direction: column;
    }
    .hero .container{
        flex-direction: column;
        gap: 48px;
    }
    .hero .container .headline,
    .hero .container .hero-description{
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero .container .headline h1{
        text-align: center;
        margin-bottom: 12px;
    }
    .hero .container .headline .yellow-line{
        width: auto;
    }
    .hero .container .hero-description h4{
        text-align: center;
        font-size: 24px;
    }
    .hero .container .hero-description p{
        text-align: center;
        font-size: 18px;
    }
    .hero .container .headline .splash-green{
        width: 50px;
        right: 30px;
        top: 40px;
    }
    .how-line{
        margin: 48px auto -24px auto;
    }
    .depoimentos .cta .whats{
        flex-direction: column;
    }
    .depoimentos .cta .whats p{
        text-align: center;
    }
    .cv .container .cv-more .box-yellow{
        padding: 0 80px;
        width: 100%;
        background-size: 460px;
        font-size: 19px;
        height: 180px;
        line-height: 23px;
    }
    .cv .container .cv-more .box-yellow{
        background: none;
    }
    
}
@media screen and (max-width: 580px) {
    .metodology .container{
        padding: 48px;
    }
    .metodology .cards .card-content{
        padding: 38px 24px;
    }
    .how{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .how p{
        width: 100%;
        margin: -80px 0 0 0;
    }
    .how span{
        position: absolute;
        top: -20px;
        left: 50%;
        translate: -50% 0;
    }
    .how-line{
        margin: 64px 0;
    }
    .box-how p.botton-how{
        margin: 60px auto 20px auto;
        width: 90%;
    }
    .topicos .list{
        margin-top: -75px;
    }
    .depoimentos .depoiments-white{
        padding: 60px 0 0 0;
    }
    .depoimentos .depoiments-white h2{
        width: 100%;
        font-size: 27px;
        line-height: 28px;
    }
    a.btn{
        font-size: 18px;
        width: 100%;
    }
    .depoimentos .cta{
        padding: 30px;
    }
    .hero-image{
        display: flex;
    align-items: center;
    justify-content: center;
    }
    .metodology h3{
        width: 100%;
    }
    .depoimentos .people{
        background-size: 90%;
        height: 830px;
        padding-bottom: 610px;
    }
    
}
@media screen and (max-width: 490px) {
    header .logo{
        padding-top: 12px;
    }
    .btn-whats {
        bottom: 4px;
        right: 16px;
    }
    nav ul{
        gap: 6px;
        padding-bottom: 24px;
        justify-content: space-between;
    }
    nav ul li{
        font-size: 14px;
    }
    .hero .container .hero-description p{
        width: 90%;
    }
    .section-white h2{
        font-size: 24px;
    }
    .section-white .about p{
        margin: -20px 0 0 0;
        padding: 24px;
        min-height: unset;
        font-size: 16px;
    }
    .metodology h2{
        margin-top: 24px;
    }
    .metodology p{
        width: 100%;
    }
    .metodology .cards .card-content{
        padding: 32px 16px;
    }
    .box-features{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        margin: 48px auto;
        width: 100%;
        flex-direction: column;
    }
    .box-features .feature{
        width: 100%;
    }
    .box-how .yellow-line-how{
        width: 100%;
    }
    .topicos .list ul{
        gap: 12px;
        margin-left: 24px;
        width: 80%;

    }
    .topicos .list ul li{
        font-size: 18px;
    }
    
    .depoimentos .box-depoimento .depoimento{
        padding: 34px;
    }
    .depoimento p{
        font-size: 18px;
    }
    /* .depoimentos .people{
        overflow: hidden;
        border-radius: 0 0 124px 124px;
        height: 1420px;
        width: 100%;
    } */
    .yellow-line-depoimento{
        width: 90%;
    }
    .depoimentos .people{
        background-size: 90%;
        height: 740px;
    }
    /* .depoimentos .people .box-people{
        font-size: 33px;
    line-height: 31px;
    background-size: 400px;
    padding: 0px 50px 0px 132px;
    background-size: 70%;
    box-sizing: border-box;
    overflow: hidden;
    } */
    .depoimentos .people p{
        width: 80%;
    }
    .cv .container h1{
        font-size: 32px;
    }
    .cv .container .cv-topico.left{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .cv .container .cv-topico.right{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cv .container .cv-topico.left,
    .cv .container .cv-topico.right{
        width: 100%;
    }
    .cv .container .cv-topico.left p,
    .cv .container .cv-topico.right p{
        text-align: center;
        width: 80%;
        font-size: 18px;
    }
    .cv .container .cv-more .box-yellow{
        background-image: none;
        width: 100%;
        text-align: center;
        padding: 0px 30px;
        height: auto;
    }
    .cv .cv-empresas .logos{
        flex-direction: column;
    }
    .cv .cv-empresas .logos img{
        width: 50%;
    }
    .cv .cv-cert .box-certificados .certificados {
        flex-direction: column;
    }
    .cv .cv-cert .box-certificados .certificados.top {
        margin-top: 12px;
    }
    .cv .cv-cert .box-certificados .certificados .cert-img,
    .cv .cv-cert .box-certificados .certificados img{
        width: 100%;
    }
}