.about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80vh;
    padding: 0 90px;
}

.container-about-left {
    width: 55%;
    text-align: justify;
}
.container-about-left h1 {
    color: #2F642D;
    font-size: 50pt;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal; 
}

.container-about-left p {
    color: #1B2F17;
    font-size: 18pt;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 25px;
}

.logo-clients {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin-top: 50px;
}

.clients {
    width: auto;
    height: 100px;
    padding: 10px;
}

.delta {
    padding: 0;
}

.gramam {
    padding: 0;
}

.metrics {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    width: 40%;
    margin-left: 40px;
    /* background-color: pink; */
}

.data {
    text-align: center;
    padding: 15px;

}

.data-number {
    font-family: "Inter", sans-serif;
    font-size: 56pt;
    font-weight: 600;
    color: #2E632C;
}

.data-text {
     font-family: "Inter", sans-serif;
    font-size: 20pt;
    font-weight: 400;
    color: #686868;
}

/* responsividade */

/* telas muito grandes */
@media (max-width: 1600px) {  
    .data-number {
        font-size: 46pt;
       
    }

    .data-text {
        font-size: 16pt;

    }
}

/* laptops médios */
@media (max-width: 1280px) {
     .data-number {
        font-size: 36pt;
       
    }

    .data-text {
        font-size: 12pt;

    }

}

/* tablets */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .container-about-left {
        width: 90%;
        text-align: justify;
    }
    
    .logo-clients {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 50px;
        margin-top: 50px;
        margin-bottom: 150px;
    }

    .metrics {
        width: 70%;
        margin-left: 0px;
    }

    .data-number {
        font-size: 50pt;
       
    }

    .data-text {
        font-size: 20pt;

    }
}

/* mobile grande */
@media (max-width: 770px) {
    .about {
     
        margin-bottom: 120px;
    }
    .metrics {
        width: 80%;
        margin-left: 0px;
    }

    .data-number {
        font-size: 50pt;
       
    }

    .data-text {
        font-size: 20pt;

    }
}

/* @media (max-width: 768px) {
  
} */

/* mobile pequeno */
@media (max-width: 480px) {
    .about {
        
        padding: 0px 0px;
        margin-top: 200px;
        margin-bottom: 390px;
    }

    .container-about-left {
        width: 90%;
        text-align: justify;
    }

    .container-about-left p {
        color: #1B2F17;
        font-size: 14pt;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top: 25px;
    }
    
    .logo-clients {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 90%;
        gap: 50px;
        margin-top: 50px;
        margin-bottom: 150px;
    }

    .metrics {
        width: 100%;
        margin-left: 0px;
    }

    .data-number {
        font-size: 40pt;
       
    }

    .data-text {
        font-size: 12pt;

    }
}