/* =========================================
   SOBRE A PRÁTICA INTERNET
========================================= */

.about-section {
    position: relative;

    overflow: hidden;

    /* padding: 120px 0; */

    background: #f7faf9;

    color: #0f1b26;
}


/* =========================================
   COLUNA DE DESTAQUE
========================================= */

.about-highlight {
    position: relative;

    max-width: 390px;

    padding: 45px;

    overflow: hidden;

    border-radius: 18px;

    background: #0f1b26;

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(15, 27, 38, .12);
}


/* brilho */

.about-highlight::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -150px;
    right: -120px;

    border-radius: 50%;

    background: rgba(2, 190, 178, .18);

    filter: blur(20px);

    pointer-events: none;
}


/* detalhe inferior */

.about-highlight::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    bottom: -90px;
    left: -70px;

    border-radius: 50%;

    background: rgba(0, 255, 240, .08);

    filter: blur(15px);
}


.about-highlight > * {
    position: relative;

    z-index: 2;
}


/* =========================================
   LABEL
========================================= */

.about-highlight-label {
    display: block;

    margin-bottom: 25px;

    color: #00fff0;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =========================================
   26+
========================================= */

.about-highlight-number {
    color: #ffffff;

    font-size: clamp(75px, 8vw, 105px);

    line-height: .85;

    font-weight: 800;

    letter-spacing: -.06em;
}


.about-highlight-number span,
.about-projects-number span {
    color: #02beb2;
}


.about-highlight h3 {
    max-width: 270px;

    margin: 18px 0 0;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 600;
}


/* =========================================
   DIVISOR
========================================= */

.about-highlight-divider {
    width: 100%;

    height: 1px;

    margin: 35px 0;

    background: rgba(255, 255, 255, .14);
}


/* =========================================
   750+
========================================= */

.about-projects-number {
    color: #ffffff;

    font-size: 48px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.04em;
}


.about-highlight p {
    max-width: 250px;

    margin: 10px 0 0;

    color: rgba(255, 255, 255, .65);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   CONTEÚDO
========================================= */

.about-content {
    padding-left: 35px;
}


.about-eyebrow {
    color: #008679;
}


.about-title {
    max-width: 680px;

    margin-bottom: 25px;

    color: #0f1b26;
}


.about-content p {
    max-width: 680px;

    margin-bottom: 18px;

    color: #68777e;

    font-size: 15px;

    line-height: 1.75;
}


.about-content .about-lead {
    color: #394950;

    font-size: 18px;

    line-height: 1.65;

    font-weight: 500;
}


/* =========================================
   FEATURES
========================================= */

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid rgba(15, 27, 38, .10);
}


.about-feature {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.about-feature > i {
    color: #02beb2;

    font-size: 25px;
}


.about-feature strong {
    display: block;

    margin-bottom: 5px;

    color: #0f1b26;

    font-size: 13px;

    font-weight: 700;
}


.about-feature span {
    display: block;

    color: #7a878c;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================
   LINK
========================================= */

.about-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 35px;

    color: #008679;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease;
}


.about-link:hover {
    color: #02beb2;

    gap: 14px;
}


.about-link i {
    font-size: 16px;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px) {

    .about-section {
        padding: 90px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-highlight {
        max-width: none;
    }

}


@media (max-width: 767.98px) {

    .about-section {
        padding: 75px 0;
    }

    .about-highlight {
        padding: 35px;
    }

    .about-highlight-number {
        font-size: 80px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}


@media (max-width: 575.98px) {

    .about-section {
        padding: 65px 0;
    }

    .about-highlight {
        padding: 30px;
    }

    .about-highlight-number {
        font-size: 70px;
    }

    .about-highlight h3 {
        font-size: 19px;
    }

    .about-projects-number {
        font-size: 42px;
    }

}