/*========================================

QUEM SOMOS

========================================*/

.about{

    padding:120px 0;

    background:#050505;

}

.about .container{

    max-width:1180px;

    margin:auto;

    padding:0 24px;

}

.about-partnership{

    margin-top:60px;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:40px;

}

.section-title .white{

    color:#fff;

}

.section-title .green{

    color:#00DA00;

}

.partner{

    flex:1;

    max-width:360px;

    text-align:center;

}

.partner img{

    height:82px;

    margin-bottom:22px;

}

.partner p{

    margin-top:0;
    
    color:#BDBDBD;

    font-size:17px;

    line-height:1.8;

}

.partnership-center{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.energy-dot{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#00DA00;

    box-shadow:0 0 18px #00DA00;

}

.energy-line{

    width:2px;

    height:34px;

    background:rgba(0,218,0,.45);

}

.badge-partnership{

    padding:12px 28px;

    border-radius:999px;

    border:1px solid rgba(0,218,0,.28);

    background:rgba(0,218,0,.07);

    font-size:13px;

    letter-spacing:1.4px;

}

.badge-partnership span{

    color:#00DA00;

}

/*====================================================

                MOBILE

====================================================*/

@media (max-width:768px){

.about{

    padding:90px 0;

}

.about .section-title{

    margin-bottom:45px;

}

.about .section-title h2{

    font-size:clamp(54px,14vw,72px);

}

.about .section-title p{

    font-size:17px;

    line-height:1.8;

    max-width:100%;

}

.about-partnership{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:35px;

    margin-top:55px;

}

.about-partnership::before{

    content:"";

    position:absolute;

    top:-30px;

    left:50%;

    transform:translateX(-50%);

    width:200px;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,218,0,.35),
        transparent
    );

}

.partner{

    max-width:100%;

}

.partner img{

    height:68px;

    margin-bottom:20px;

}

.partner:last-child img{

    height:58px;
}

.partner p{

    font-size:17px;

    line-height:2;

}

.partnership-center{

    order:2;

}

.energy-line{

    height:28px;

}

.energy-dot{

    width:8px;

    height:8px;

}

.badge-partnership{

    padding:10px 22px;

    font-size:12px;

}


.partner:first-child{

    order:1;

}

.partnership-center{

    order:2;

    margin:10px 0 20px;

}

.partner:last-child{

    order:3;

}


}