/* =========================================================
   WEBARTY — SOBRE NÓS
   A NOSSA ABORDAGEM
   CSS COMPLETO PARA SUBSTITUIÇÃO
   ========================================================= */

.wa-about-process,
.wa-about-process *,
.wa-about-process *::before,
.wa-about-process *::after {
    box-sizing: border-box;
}

.wa-about-process h2,
.wa-about-process h3,
.wa-about-process p {
    margin: 0;
    padding: 0;
}

.wa-about-process {
    --wa-about-teal: #00a78e;
    --wa-about-green: #36c88a;

    position: relative;
    isolation: isolate;

    width: 100%;

    padding: 96px 40px 102px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            122deg,
            #17213d 0%,
            #1e3452 57%,
            #075d62 100%
        );

    font-family:
        "Roboto",
        Arial,
        sans-serif;
}

.wa-about-process__background {
    position: absolute;
    inset: 0;

    pointer-events: none;

    z-index: -1;
}

.wa-about-process__background::before {
    content: "";

    position: absolute;

    top: -350px;
    right: -190px;

    width: 730px;
    height: 730px;

    border: 1px solid rgba(54, 200, 138, 0.15);
    border-radius: 50%;
}

.wa-about-process__background::after {
    content: "";

    position: absolute;

    bottom: -330px;
    left: -180px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 167, 142, 0.17),
            rgba(0, 167, 142, 0) 70%
        );
}

.wa-about-process__container {
    width: min(100%, 1380px);

    margin: 0 auto;
}

.wa-about-process__header {
    width: 100%;
    max-width: 960px;

    margin: 0 auto 52px;

    text-align: center;
}

.wa-about-process__header > * {
    margin-right: auto;
    margin-left: auto;
}

.wa-about-process
.wa-about-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: #7ce3cb;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wa-about-process
.wa-about-eyebrow__line {
    display: block;

    width: 32px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--wa-about-teal),
            var(--wa-about-green)
        );
}

body
.wa-about-process
.wa-about-process__title {
    width: 100% !important;
    max-width: 900px !important;

    margin: 0 auto !important;

    color: #ffffff !important;

    background: none !important;

    font-family:
        "Roboto",
        Arial,
        sans-serif !important;

    font-size: clamp(39px, 3.4vw, 52px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;

    text-align: center !important;
    text-transform: none !important;

    -webkit-text-fill-color: #ffffff !important;
}

.wa-about-process__description {
    width: 100%;
    max-width: 800px;

    margin: 24px auto 0 !important;

    color: rgba(255, 255, 255, 0.76) !important;

    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.66;

    text-align: center !important;

    -webkit-text-fill-color:
        rgba(255, 255, 255, 0.76);
}

.wa-about-process__steps {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;
}

.wa-about-process__step {
    position: relative;

    min-width: 0;
    min-height: 225px;

    padding: 29px 26px 30px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.075),
        0 13px 30px rgba(4, 18, 39, 0.12);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        transform 0.18s ease;
}

.wa-about-process__step::after {
    content: "";

    position: absolute;

    right: -40px;
    bottom: -60px;

    width: 145px;
    height: 145px;

    border: 1px solid rgba(124, 227, 203, 0.1);
    border-radius: 50%;
}

.wa-about-process__step:hover {
    border-color: rgba(124, 227, 203, 0.3);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.125),
            rgba(255, 255, 255, 0.07)
        );

    transform: translateY(-4px);
}

.wa-about-process__number {
    display: inline-flex;

    min-width: 47px;
    height: 31px;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
    padding: 0 11px;

    border: 1px solid rgba(124, 227, 203, 0.21);
    border-radius: 999px;

    color: #83ead1;

    background: rgba(0, 167, 142, 0.14);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
}

body
.wa-about-process
.wa-about-process__step h3 {
    margin-bottom: 12px;

    color: #ffffff !important;

    background: none !important;

    font-family:
        "Roboto",
        Arial,
        sans-serif !important;

    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.32 !important;
    letter-spacing: -0.02em !important;

    text-transform: none !important;

    -webkit-text-fill-color: #ffffff !important;
}

.wa-about-process__step p {
    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.62;

    -webkit-text-fill-color:
        rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {

    .wa-about-process__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }
}

@media (max-width: 767px) {

    .wa-about-process {
        padding: 70px 20px 76px;
    }

    .wa-about-process__container {
        width: 100%;
        max-width: 100%;
    }

    .wa-about-process__header {
        margin-bottom: 34px;
    }

    .wa-about-process
    .wa-about-eyebrow {
        font-size: 10.5px;
    }

    .wa-about-process
    .wa-about-eyebrow__line {
        width: 28px;
    }

    body
    .wa-about-process
    .wa-about-process__title {
        font-size: clamp(31px, 8.6vw, 40px) !important;
    }

    .wa-about-process__description {
        margin-top: 20px !important;

        font-size: 15.5px;
        line-height: 1.63;
    }

    .wa-about-process__steps {
        grid-template-columns: 1fr;

        gap: 16px;

        width: 100%;
    }

    .wa-about-process__step {
        min-height: 0;

        padding: 23px 20px;

        border-radius: 18px;
    }

    .wa-about-process__step:hover {
        transform: none;
    }

    .wa-about-process__number {
        margin-bottom: 17px;
    }

    body
    .wa-about-process
    .wa-about-process__step h3 {
        font-size: 18.5px !important;
    }

    .wa-about-process__step p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {

    .wa-about-process {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .wa-about-process__step {
        transition: none !important;
    }

    .wa-about-process__step:hover {
        transform: none !important;
    }
}

/* =========================================================
   MOBILE SIDE GUTTERS
   24 PX / 20 PX
   ========================================================= */

@media (max-width: 640px) {

    .wa-about-process {
        padding-right: 0;
        padding-left: 0;
    }

    .wa-about-process__container {
        width: calc(100% - 48px);
        max-width: none;
    }
}

@media (max-width: 390px) {

    .wa-about-process__container {
        width: calc(100% - 40px);
    }
}
