/* =========================================================
   WEBARTY — SERVIÇOS
   HERO
   CSS COMPLETO PARA SUBSTITUIÇÃO
   ========================================================= */


/* =========================================================
   RESET LOCAL
   ========================================================= */

.wa-services-hero,
.wa-services-hero *,
.wa-services-hero *::before,
.wa-services-hero *::after {
    box-sizing: border-box;
}

.wa-services-hero h1,
.wa-services-hero p {
    margin: 0;
    padding: 0;
}

.wa-services-hero a {
    text-decoration: none;
}


/* =========================================================
   SECTION
   ========================================================= */

.wa-services-hero {
    --wa-services-dark: #17213d;
    --wa-services-dark-soft: #1b2f4e;
    --wa-services-teal: #00a78e;
    --wa-services-teal-hover: #008f7a;
    --wa-services-teal-active: #007c6b;
    --wa-services-green: #36c88a;

    position: relative;
    isolation: isolate;

    display: flex;

    width: 100%;
    min-height: 610px;

    align-items: center;

    padding:
        144px
        40px
        94px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            122deg,
            var(--wa-services-dark) 0%,
            var(--wa-services-dark-soft) 54%,
            #075d62 100%
        );

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


/* =========================================================
   BACKGROUND
   ========================================================= */

.wa-services-hero__background {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: -1;
}

.wa-services-hero__background::before {
    content: "";

    position: absolute;

    top: -420px;
    left: -270px;

    width: 820px;
    height: 820px;

    border:
        1px solid
        rgba(255, 255, 255, 0.065);

    border-radius: 50%;
}

.wa-services-hero__background::after {
    content: "";

    position: absolute;

    right: -420px;
    bottom: -690px;

    width: 1140px;
    height: 1140px;

    border:
        1px solid
        rgba(54, 200, 138, 0.14);

    border-radius: 50%;
}

.wa-services-hero__circle {
    position: absolute;

    display: block;

    border-radius: 50%;
}

.wa-services-hero__circle--left {
    top: 105px;
    left: 10%;

    width: 190px;
    height: 190px;

    border:
        1px solid
        rgba(255, 255, 255, 0.045);
}

.wa-services-hero__circle--right {
    top: 52px;
    right: 9%;

    width: 265px;
    height: 265px;

    border:
        1px solid
        rgba(0, 167, 142, 0.19);
}

.wa-services-hero__glow {
    position: absolute;

    top: 48%;
    right: -150px;

    display: block;

    width: 780px;
    height: 780px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 167, 142, 0.29) 0%,
            rgba(0, 167, 142, 0.1) 35%,
            rgba(0, 167, 142, 0) 72%
        );

    transform:
        translateY(-50%);

    filter:
        blur(14px);
}

.wa-services-hero__grid {
    position: absolute;

    right: -4%;
    bottom: -18%;

    width: 58%;
    height: 82%;

    opacity: 0.13;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size:
        46px
        46px;

    mask-image:
        linear-gradient(
            135deg,
            transparent 0%,
            #000000 34%,
            #000000 100%
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            transparent 0%,
            #000000 34%,
            #000000 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.wa-services-hero__container {
    position: relative;

    width:
        min(
            100%,
            1360px
        );

    margin:
        0
        auto;

    z-index: 2;
}


/* =========================================================
   CONTENT
   ========================================================= */

.wa-services-hero__content {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 1050px;

    align-items: center;

    margin:
        0
        auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.wa-services-hero__eyebrow {
    display: inline-flex;

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

    gap: 12px;

    margin-bottom: 20px;

    color: #7ce3cb;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;

    text-align: center;
    text-transform: uppercase;
}

.wa-services-hero__eyebrow-line {
    display: block;

    width: 39px;
    height: 2px;

    border-radius: 999px;

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

.wa-services-hero__eyebrow-line--right {
    background:
        linear-gradient(
            90deg,
            var(--wa-services-green),
            var(--wa-services-teal),
            transparent
        );
}


/* =========================================================
   TITLE
   ========================================================= */

body
.wa-services-hero
.wa-services-hero__title {
    width: 100%;
    max-width: 980px;

    margin:
        0
        auto
        25px;

    color: #ffffff !important;

    background:
        none !important;

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

    font-size:
        clamp(
            48px,
            4.6vw,
            64px
        ) !important;

    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.047em !important;

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

    text-shadow:
        0
        12px
        34px
        rgba(4, 18, 39, 0.22);

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


/* =========================================================
   DESCRIPTION
   ========================================================= */

body
.wa-services-hero
.wa-services-hero__description {
    width: 100%;
    max-width: 880px;

    margin:
        0
        auto;

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

    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.72 !important;

    text-align: center !important;

    -webkit-text-fill-color:
        rgba(255, 255, 255, 0.82) !important;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.wa-services-hero__actions {
    display: flex;

    width: 100%;

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

    gap: 13px;

    margin-top: 34px;
}

body
.wa-services-hero
.wa-services-hero__button {
    display: inline-flex;

    min-height: 56px;

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

    padding:
        0
        27px;

    border:
        1px solid
        transparent;

    border-radius: 999px;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.045em !important;

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

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

body
.wa-services-hero
.wa-services-hero__button--primary,
body
.wa-services-hero
.wa-services-hero__button--primary:visited {
    border-color:
        var(--wa-services-teal) !important;

    color: #ffffff !important;

    background:
        var(--wa-services-teal) !important;

    box-shadow:
        0
        15px
        32px
        rgba(0, 167, 142, 0.25);

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

body
.wa-services-hero
.wa-services-hero__button--primary:hover {
    border-color:
        var(--wa-services-teal-hover) !important;

    background:
        var(--wa-services-teal-hover) !important;

    box-shadow:
        0
        19px
        38px
        rgba(0, 143, 122, 0.32);

    transform:
        translateY(-2px);
}

body
.wa-services-hero
.wa-services-hero__button--primary:active {
    border-color:
        var(--wa-services-teal-active) !important;

    background:
        var(--wa-services-teal-active) !important;

    transform:
        translateY(0);
}

body
.wa-services-hero
.wa-services-hero__button--secondary,
body
.wa-services-hero
.wa-services-hero__button--secondary:visited {
    border-color:
        rgba(255, 255, 255, 0.22) !important;

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, 0.075) !important;

    box-shadow:
        inset
        0
        1px
        0
        rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(8px);

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

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

body
.wa-services-hero
.wa-services-hero__button--secondary:hover {
    border-color:
        rgba(255, 255, 255, 0.38) !important;

    background:
        rgba(255, 255, 255, 0.13) !important;

    transform:
        translateY(-2px);
}


/* =========================================================
   AREAS
   ========================================================= */

.wa-services-hero__areas {
    display: flex;

    width: 100%;

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

    gap:
        10px
        19px;

    margin-top: 29px;

    text-align: center;
}

.wa-services-hero__areas span {
    position: relative;

    display: inline-flex;

    align-items: center;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.wa-services-hero__areas span:not(:first-child)::before {
    content: "";

    display: block;

    width: 4px;
    height: 4px;

    margin-right: 19px;

    border-radius: 50%;

    background:
        var(--wa-services-teal);
}


/* =========================================================
   FOCUS
   ========================================================= */

.wa-services-hero__button:focus-visible {
    outline:
        3px solid
        rgba(0, 167, 142, 0.34);

    outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .wa-services-hero {
        min-height: auto;

        padding:
            128px
            32px
            82px;
    }

    body
    .wa-services-hero
    .wa-services-hero__title {
        max-width: 820px;

        font-size:
            clamp(
                42px,
                6.2vw,
                56px
            ) !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .wa-services-hero {
        padding:
            124px
            24px
            70px;
    }

    .wa-services-hero__content {
        align-items: flex-start;

        text-align: left;
    }

    .wa-services-hero__eyebrow {
        justify-content: flex-start;

        margin-bottom: 16px;

        font-size: 11px;

        text-align: left;
    }

    .wa-services-hero__eyebrow-line {
        width: 29px;
    }

    .wa-services-hero__eyebrow-line--right {
        display: none;
    }

    body
    .wa-services-hero
    .wa-services-hero__title {
        max-width: 100%;

        margin-bottom: 20px;

        font-size:
            clamp(
                35px,
                9.5vw,
                42px
            ) !important;

        line-height: 1.08 !important;
        letter-spacing: -0.04em !important;

        text-align: left !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__description {
        max-width: 100%;

        font-size: 16.5px !important;
        line-height: 1.65 !important;

        text-align: left !important;
    }

    .wa-services-hero__actions {
        display: grid;

        grid-template-columns:
            1fr;

        gap: 10px;

        margin-top: 28px;
    }

    body
    .wa-services-hero
    .wa-services-hero__button {
        width: 100%;
        min-height: 54px;

        padding:
            0
            19px;

        font-size: 12.5px !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas {
        display: flex !important;

        width: 100% !important;

        align-self: stretch !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;

        gap:
            8px
            13px !important;

        margin:
            24px
            auto
            0 !important;

        padding: 0 !important;

        text-align: center !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas span {
        display: inline-flex !important;

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

        margin: 0 !important;
        padding: 0 !important;

        font-size: 12.5px !important;
        line-height: 1.3 !important;

        text-align: center !important;
        white-space: nowrap !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas span:not(:first-child)::before {
        margin-right: 13px !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .wa-services-hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    body
    .wa-services-hero
    .wa-services-hero__title {
        font-size: 35px !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas {
        justify-content: center !important;

        column-gap: 11px !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas span {
        font-size: 12px !important;
    }

    body
    .wa-services-hero
    .wa-services-hero__areas span:not(:first-child)::before {
        margin-right: 11px !important;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    .wa-services-hero__button {
        transition:
            none !important;
    }

    .wa-services-hero__button:hover {
        transform:
            none !important;
    }
}

/* =========================================================
   FINAL MOBILE CENTERING FIX
   ========================================================= */

@media (max-width: 767px) {

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas {
        position: relative !important;
        left: 50% !important;

        display: inline-flex !important;

        width: max-content !important;
        max-width: 100% !important;

        align-self: flex-start !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;

        gap:
            8px
            13px !important;

        margin:
            24px
            0
            0 !important;

        padding: 0 !important;

        text-align: center !important;

        transform:
            translateX(-50%) !important;
    }

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas span {
        display: inline-flex !important;

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

        flex:
            0
            0
            auto !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
        white-space: nowrap !important;
    }
}


@media (max-width: 390px) {

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas {
        gap:
            8px
            10px !important;
    }

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas span {
        font-size: 11.5px !important;
    }

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas span:not(:first-child)::before {
        margin-right: 10px !important;
    }
}


@media (max-width: 350px) {

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas {
        display: grid !important;

        grid-template-columns:
            repeat(
                2,
                max-content
            ) !important;

        justify-content: center !important;

        width: 100% !important;

        left: 0 !important;

        margin-right: auto !important;
        margin-left: auto !important;

        transform: none !important;
    }

    html
    body
    .wa-services-hero
    .wa-services-hero__content
    .wa-services-hero__areas span::before {
        display: none !important;
    }
}
