.aboutMain__about {
    display: flex;
    gap: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about_img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
}

.about_content .about_content__tag {
    color: #1B9849;
    font-weight: 500;
}

.about_content .about_content__title {
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.about_content .about_content__description {
    color: #6D6D6D;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.about_experience-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about_experience-value{
    font-size: 25px;
    font-weight: 700;
    color: #1B9849;
}

.about_experience-label {
    color: #6D6D6D;
    font-size: 15px;
}


/* Differentials */
.aboutMain__differentials {
    padding-top: 50px;
    padding-bottom: 100px;
}

.differentials_container{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.differentials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: calc(100% / 4 - 20px);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
}

.differentials i {
    color: #1B9849;
    font-size: 30px;
}

.differentials h2 {
    font-size: 20px;
    font-weight: 600;
}


.differentials p {
    color: #6D6D6D;
    text-align: center;
    line-height: 1.5;
}

/* ===================================================
   ABOUT PAGE — RESPONSIVO
   =================================================== */

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {

    .aboutMain__about {
        gap: 40px;
        align-items: center;
    }

    .about_img {
        width: 420px;
    }

    .about_content .about_content__title {
        font-size: 32px;
    }

    .about_experience {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .differentials {
        width: calc(50% - 10px);
    }
}


/* =========================
   TABLET PEQUENO
========================= */
@media (max-width: 860px) {

    .about_img {
        width: 100%;
        max-width: 550px;
        aspect-ratio: 1200 / 806;
        height: auto;
    }

    .aboutMain__about {
        flex-direction: column;
        padding-top: 70px;
        padding-bottom: 70px;
        gap: 50px;
    }

    .about_content {
        width: 100%;
    }

    .about_img {
        width: 100%;
        max-width: 550px;
        height: 420px;
        object-fit: cover;
    }

    .about_content .about_content__title {
        font-size: 30px;
    }

    .about_experience {
        justify-content: space-between;
    }

    .aboutMain__differentials {
        padding-top: 20px;
        padding-bottom: 70px;
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .aboutMain__about {
        padding-top: 56px;
        padding-bottom: 56px;
        gap: 40px;
    }

    .about_content .about_content__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .about_content .about_content__description {
        font-size: 15px;
    }

    .about_experience {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about_experience-item {
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid #EAEAEA;
    }

    .about_experience-value {
        font-size: 24px;
    }

    .differentials_container {
        gap: 16px;
    }

    .differentials {
        width: 100%;
        padding: 24px 20px;
    }

    .differentials h2 {
        font-size: 18px;
    }

    .differentials p {
        font-size: 14px;
    }
}


/* =========================
   MOBILE PEQUENO
========================= */
@media (max-width: 400px) {

    .about_content .about_content__title {
        font-size: 25px;
    }

    .about_experience-label {
        font-size: 14px;
    }
}