/* =========================================================
   WEBARTY — PRICING
   PLANOS DE MANUTENÇÃO + BOLSAS DE HORAS
   CSS COMPLETO PARA SUBSTITUIÇÃO
   ========================================================= */


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

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

.wa-pricing h2,
.wa-pricing h3,
.wa-pricing p,
.wa-pricing ul,
.wa-pricing li {
    margin: 0;
    padding: 0;
}

.wa-pricing button,
.wa-pricing a {
    font-family: inherit;
}

.wa-pricing a,
.wa-pricing a:hover,
.wa-pricing a:focus,
.wa-pricing a:visited {
    text-decoration: none !important;
}


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

.wa-pricing {
    --wa-price-dark: #283550;
    --wa-price-dark-deep: #212c4f;

    --wa-price-teal: #00a78e;
    --wa-price-teal-hover: #008f7a;
    --wa-price-green: #36c88a;

    --wa-price-text: #667289;
    --wa-price-border: #cedddb;
    --wa-price-white: #ffffff;

    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 88px 0 96px;

    overflow: hidden;

    color: var(--wa-price-dark);

    border-top:
        1px solid rgba(0, 167, 142, 0.22);

    background:
        radial-gradient(
            circle at 96% 10%,
            rgba(0, 167, 142, 0.12) 0%,
            rgba(0, 167, 142, 0.04) 22%,
            rgba(0, 167, 142, 0) 40%
        ),
        linear-gradient(
            180deg,
            #deece8 0%,
            #e8f2ef 42%,
            #edf5f2 100%
        );

    box-shadow:
        inset 0 18px 30px -30px rgba(40, 53, 80, 0.44);

    font-family:
        var(
            --e-global-typography-text-font-family,
            "Roboto"
        ),
        Arial,
        sans-serif;
}

.wa-pricing::before {
    content: "";

    position: absolute;
    z-index: 1;

    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 167, 142, 0.16) 0%,
            rgba(0, 167, 142, 0.48) 50%,
            rgba(54, 200, 138, 0.16) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   32 PX ON EACH SIDE
   ========================================================= */

.wa-pricing__container {
    position: relative;
    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            1380px
        );

    margin: 0 auto;
}


/* =========================================================
   PRICING BLOCKS
   ========================================================= */

.wa-pricing-block {
    width: 100%;
}

.wa-pricing-block--hours {
    margin-top: 46px;
    padding-top: 48px;

    border-top:
        1px solid rgba(40, 53, 80, 0.14);
}


/* =========================================================
   TOP AREA
   ========================================================= */

.wa-pricing-top {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(290px, 350px);

    align-items: end;

    gap: clamp(38px, 5vw, 76px);

    width: 100%;
}

.wa-pricing-top__copy {
    width: 100%;
    max-width: 910px;

    text-align: left;
}


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

.wa-pricing-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 13px;

    color: var(--wa-price-teal);

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

.wa-pricing-eyebrow__line {
    display: block;
    flex: 0 0 31px;

    width: 31px;
    height: 3px;

    border-radius: 999px;

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


/* =========================================================
   TITLES
   ========================================================= */

.wa-pricing-title {
    width: 100%;
    max-width: 910px;

    color: var(--wa-price-dark) !important;

    font-family: inherit !important;

    font-size:
        clamp(
            35px,
            3.1vw,
            46px
        ) !important;

    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.043em !important;

    text-align: left;
    text-transform: none !important;
    text-wrap: balance;
}

.wa-pricing-description {
    max-width: 760px;

    margin-top: 14px !important;

    color: var(--wa-price-text) !important;

    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.58;

    text-align: left;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.wa-pricing-controls {
    display: flex;
    align-items: stretch;
    flex-direction: column;

    gap: 9px;

    width: 100%;
}

.wa-billing-toggle {
    display: grid;

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

    gap: 5px;

    width: 100%;
    padding: 5px;

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid rgba(40, 53, 80, 0.12);

    border-radius: 999px;

    box-shadow:
        0 8px 20px rgba(40, 53, 80, 0.05);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.wa-billing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

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

    padding:
        10px
        12px !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    border: 0 !important;
    border-radius: 999px !important;

    outline: none !important;

    color: var(--wa-price-text) !important;

    background: transparent !important;

    box-shadow: none !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase !important;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.wa-billing-btn:hover,
.wa-billing-btn:focus-visible {
    color: var(--wa-price-dark) !important;

    background:
        rgba(255, 255, 255, 0.92) !important;
}

.wa-billing-btn.is-active {
    color: #ffffff !important;

    background:
        var(--wa-price-dark-deep) !important;
}

.wa-billing-btn--annual.is-active {
    background:
        var(--wa-price-teal) !important;
}

.wa-billing-btn:focus-visible {
    outline:
        3px solid rgba(0, 167, 142, 0.18) !important;

    outline-offset: 3px !important;
}

.wa-billing-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        4px
        6px;

    border-radius: 999px;

    color: var(--wa-price-teal);

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

    font-size: 8px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.035em;
    white-space: nowrap;
}

.wa-billing-btn.is-active span {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.18);
}

.wa-pricing-controls__note {
    color: var(--wa-price-text) !important;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;

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


/* =========================================================
   GRID
   ========================================================= */

.wa-pricing-grid {
    display: grid;

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

    align-items: stretch;

    gap: 22px;

    width: 100%;
    margin-top: 38px;
}


/* =========================================================
   CARD
   ========================================================= */

.wa-price-card {
    position: relative;

    display: flex;

    min-width: 0;
    height: 100%;

    border:
        1px solid var(--wa-price-border);

    border-radius: 22px;

    background: var(--wa-price-white);

    box-shadow:
        0 14px 34px rgba(40, 53, 80, 0.075);

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

.wa-price-card:hover {
    border-color:
        rgba(0, 167, 142, 0.38);

    box-shadow:
        0 19px 42px rgba(40, 53, 80, 0.115);

    transform:
        translateY(-2px);
}

.wa-price-card__inner {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    min-height: 100%;

    padding:
        38px
        34px
        32px;
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.wa-price-card--featured {
    color: #ffffff;

    border-color:
        var(--wa-price-dark-deep);

    background:
        linear-gradient(
            155deg,
            #283550 0%,
            #212c4f 100%
        );

    box-shadow:
        0 21px 48px rgba(33, 44, 79, 0.22);
}

.wa-price-card--featured:hover {
    border-color:
        rgba(54, 200, 138, 0.72);

    box-shadow:
        0 25px 54px rgba(33, 44, 79, 0.28);
}

.wa-price-card__badge {
    position: absolute;
    z-index: 3;

    top: -16px;
    left: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;
    padding:
        8px
        20px;

    border-radius: 999px;

    color: #ffffff;

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

    box-shadow:
        0 9px 21px rgba(0, 167, 142, 0.22);

    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    white-space: nowrap;

    transform:
        translateX(-50%);
}


/* =========================================================
   CARD HEADER
   ========================================================= */

.wa-price-card__header {
    display: flex;
    flex-direction: column;

    min-height: 170px;
}

.wa-price-card__category {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;

    min-height: 31px;

    padding:
        6px
        12px;

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

    border-radius: 999px;

    color: var(--wa-price-teal);

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

    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.wa-price-card h3 {
    margin-top: 20px !important;

    color: var(--wa-price-dark) !important;

    font-family: inherit !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.028em !important;
    text-transform: none !important;
}

.wa-price-card__description {
    margin-top: 15px !important;

    color: var(--wa-price-text) !important;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.wa-price-card--featured .wa-price-card__category {
    border-color:
        rgba(141, 225, 202, 0.18);

    color: #9ce6d3;

    background:
        rgba(54, 200, 138, 0.10);
}

.wa-price-card--featured h3 {
    color: #ffffff !important;
}

.wa-price-card--featured .wa-price-card__description {
    color:
        rgba(255, 255, 255, 0.74) !important;
}


/* =========================================================
   DIVIDER ABOVE PRICE
   ========================================================= */

.wa-price-card__divider {
    width: 100%;
    height: 1px;

    margin:
        22px
        0
        24px;

    background:
        rgba(40, 53, 80, 0.11);
}

.wa-price-card--featured .wa-price-card__divider {
    background:
        rgba(255, 255, 255, 0.14);
}


/* =========================================================
   PRICE AREA
   ========================================================= */

.wa-price-card__price-area {
    min-height: 108px;
}

.wa-price {
    display: flex;
    align-items: flex-end;

    min-height: 58px;

    color: var(--wa-price-dark);
}

.wa-price__amount,
.wa-price__currency {
    font-family: inherit;

    font-size: 58px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.wa-price__currency {
    margin-left: 2px;
}

.wa-price__period {
    margin-left: 9px;
    padding-bottom: 6px;

    color: var(--wa-price-text);

    font-size: 15px;
    font-weight: 650;
    line-height: 1.2;
}

.wa-price-note {
    margin-top: 14px !important;

    color: var(--wa-price-text) !important;

    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.5;
}

.wa-price-card--featured .wa-price {
    color: #ffffff;
}

.wa-price-card--featured .wa-price__period,
.wa-price-card--featured .wa-price-note {
    color:
        rgba(255, 255, 255, 0.70) !important;
}


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

.wa-price-card__features {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    margin-top: 22px;
    padding-top: 25px;

    border-top:
        1px solid rgba(40, 53, 80, 0.11);
}

.wa-price-card--featured .wa-price-card__features {
    border-top-color:
        rgba(255, 255, 255, 0.14);
}

.wa-price-card__features-title {
    margin-bottom: 20px !important;

    color: var(--wa-price-dark) !important;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.wa-price-card--featured .wa-price-card__features-title {
    color: #ffffff !important;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.wa-price-list {
    display: flex;
    flex-direction: column;

    gap: 15px;

    width: 100%;

    list-style: none !important;
}

.wa-price-list li {
    position: relative;

    padding-left: 29px !important;

    color: var(--wa-price-dark);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.58;

    list-style: none !important;
}

.wa-price-list li::before {
    content: "";

    position: absolute;

    top: 0.52em;
    left: 2px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--wa-price-teal),
            var(--wa-price-green)
        );

    box-shadow:
        0 0 0 4px rgba(0, 167, 142, 0.075);
}

.wa-price-list li::marker {
    content: "";
}

.wa-price-card--featured .wa-price-list li {
    color:
        rgba(255, 255, 255, 0.86);
}

.wa-price-card--featured .wa-price-list li::before {
    box-shadow:
        0 0 0 4px rgba(54, 200, 138, 0.11);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.wa-price-button,
.wa-price-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;

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

    margin-top: 35px;

    padding:
        15px
        23px;

    border:
        1px solid var(--wa-price-teal);

    border-radius: 999px;

    color: #ffffff !important;

    background:
        var(--wa-price-teal);

    box-shadow:
        0 9px 20px rgba(0, 167, 142, 0.14);

    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-align: center;
    text-transform: uppercase;

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

.wa-price-button:hover,
.wa-price-button:focus-visible {
    border-color:
        var(--wa-price-green);

    color: #ffffff !important;

    background:
        var(--wa-price-green);

    box-shadow:
        0 11px 23px rgba(54, 200, 138, 0.19);

    transform:
        translateY(-2px);
}

.wa-price-button:focus-visible {
    outline:
        3px solid rgba(0, 167, 142, 0.18);

    outline-offset: 3px;
}


/* =========================================================
   HELP
   ========================================================= */

.wa-pricing-help {
    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 14px;

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

    margin:
        35px
        auto
        0;

    padding:
        16px
        19px;

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

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 10px 26px rgba(40, 53, 80, 0.05);
}

.wa-pricing-help__icon {
    display: inline-flex;

    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;

    color: var(--wa-price-teal);

    background:
        rgba(0, 167, 142, 0.08);
}

.wa-pricing-help__icon svg {
    display: block;

    width: 22px;
    height: 22px;
}

.wa-pricing-help p {
    color: var(--wa-price-text) !important;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.wa-pricing-help a,
.wa-pricing-help a:visited {
    color: var(--wa-price-teal) !important;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    white-space: nowrap;
}

.wa-pricing-help a:hover,
.wa-pricing-help a:focus-visible {
    color: var(--wa-price-teal-hover) !important;
}


/* =========================================================
   MEDIUM DESKTOP
   24 PX ON EACH SIDE
   ========================================================= */

@media (max-width: 1200px) {

    .wa-pricing {
        padding:
            80px
            0
            87px;
    }

    .wa-pricing__container {
        width:
            min(
                calc(100% - 48px),
                1380px
            );
    }

    .wa-pricing-top {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 325px);

        gap: 38px;
    }

    .wa-pricing-title {
        font-size:
            clamp(
                34px,
                3.3vw,
                42px
            ) !important;
    }

    .wa-pricing-grid {
        gap: 18px;

        margin-top: 34px;
    }

    .wa-price-card__inner {
        padding:
            33px
            28px
            29px;
    }

    .wa-price-card__header {
        min-height: 174px;
    }

    .wa-price-card h3 {
        font-size: 26px !important;
    }

    .wa-price-card__description {
        font-size: 14.5px;
    }

    .wa-price-card__divider {
        margin:
            20px
            0
            22px;
    }

    .wa-price__amount,
    .wa-price__currency {
        font-size: 53px;
    }

    .wa-price-card__features {
        margin-top: 20px;
        padding-top: 23px;
    }

    .wa-price-list {
        gap: 14px;
    }

    .wa-price-list li {
        padding-left: 27px !important;

        font-size: 14px;
        line-height: 1.55;
    }

    .wa-price-button,
    .wa-price-button:visited {
        margin-top: 32px;
    }
}


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

@media (max-width: 900px) {

    .wa-pricing {
        padding:
            74px
            0
            80px;
    }

    .wa-pricing-top {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 24px;
    }

    .wa-pricing-controls {
        width: 100%;
        max-width: 450px;
    }

    .wa-pricing-controls__note {
        white-space: normal;
    }

    .wa-pricing-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        max-width: 760px;

        margin-right: auto;
        margin-left: auto;
    }

    .wa-price-card__inner {
        padding:
            34px
            31px
            30px;
    }

    .wa-price-card__header,
    .wa-price-card__price-area {
        min-height: 0;
    }

    .wa-price-card h3 {
        font-size: 27px !important;
    }

    .wa-price-card__description {
        font-size: 15px;
    }

    .wa-price-list li {
        font-size: 14.5px;
    }

    .wa-pricing-block--hours {
        margin-top: 36px;
        padding-top: 38px;
    }
}


/* =========================================================
   MOBILE
   24 PX ON EACH SIDE
   ========================================================= */

@media (max-width: 640px) {

    .wa-pricing {
        padding:
            66px
            0
            74px;

        background:
            linear-gradient(
                180deg,
                #deece8 0%,
                #e8f2ef 46%,
                #edf5f2 100%
            );
    }

    .wa-pricing::before {
        height: 3px;
    }

    .wa-pricing__container {
        width:
            calc(100% - 48px);
    }

    .wa-pricing-block--hours {
        margin-top: 32px;
        padding-top: 35px;
    }

    .wa-pricing-top {
        gap: 22px;
    }

    .wa-pricing-eyebrow {
        gap: 10px;

        margin-bottom: 12px;

        font-size: 11px;
    }

    .wa-pricing-eyebrow__line {
        flex-basis: 27px;

        width: 27px;
        height: 2px;
    }

    .wa-pricing-title {
        font-size:
            clamp(
                31px,
                8.5vw,
                38px
            ) !important;

        line-height: 1.09 !important;
    }

    .wa-pricing-description {
        margin-top: 14px !important;

        font-size: 15px;
        line-height: 1.6;
    }

    .wa-pricing-controls {
        max-width: none;
    }

    .wa-billing-btn {
        min-height: 48px;

        padding:
            10px
            7px !important;

        font-size: 11.5px !important;
    }

    .wa-billing-btn span {
        padding:
            3px
            5px;

        font-size: 7.5px;
    }

    .wa-pricing-controls__note {
        font-size: 12px;
        text-align: left;
        white-space: normal;
    }

    .wa-pricing-grid {
        gap: 31px;

        margin-top: 32px;
    }

    .wa-price-card {
        border-radius: 19px;
    }

    .wa-price-card:hover {
        transform: none;
    }

    .wa-price-card__inner {
        padding:
            29px
            24px
            27px;
    }

    .wa-price-card__header {
        min-height: 0;
    }

    .wa-price-card__category {
        min-height: 29px;

        padding:
            5px
            10px;

        font-size: 9.5px;
    }

    .wa-price-card h3 {
        margin-top: 17px !important;

        font-size: 25px !important;
    }

    .wa-price-card__description {
        margin-top: 13px !important;

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

    .wa-price-card__divider {
        margin:
            20px
            0
            21px;
    }

    .wa-price-card__price-area {
        min-height: 0;
    }

    .wa-price__amount,
    .wa-price__currency {
        font-size: 51px;
    }

    .wa-price__period {
        font-size: 14px;
    }

    .wa-price-note {
        margin-top: 12px !important;

        font-size: 12.5px;
    }

    .wa-price-card__features {
        margin-top: 19px;
        padding-top: 21px;
    }

    .wa-price-card__features-title {
        margin-bottom: 18px !important;
    }

    .wa-price-list {
        gap: 14px;
    }

    .wa-price-list li {
        padding-left: 27px !important;

        font-size: 14px;
        line-height: 1.55;
    }

    .wa-price-button,
    .wa-price-button:visited {
        min-height: 57px;
        margin-top: 31px;

        padding:
            15px
            18px;

        font-size: 12px;
    }

    .wa-pricing-help {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        gap: 12px;

        margin-top: 30px;
        padding: 16px;
    }

    .wa-pricing-help__icon {
        width: 40px;
        height: 40px;
    }

    .wa-pricing-help p {
        font-size: 12.5px;
    }

    .wa-pricing-help a {
        grid-column:
            1 / -1;

        width: 100%;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   20 PX ON EACH SIDE
   ========================================================= */

@media (max-width: 390px) {

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

    .wa-pricing-title {
        font-size: 31px !important;
    }

    .wa-price-card__inner {
        padding:
            27px
            20px
            25px;
    }

    .wa-price__amount,
    .wa-price__currency {
        font-size: 48px;
    }

    .wa-price-list li {
        font-size: 13.5px;
    }
}


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

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

    .wa-pricing *,
    .wa-pricing *::before,
    .wa-pricing *::after {
        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;
    }
}

/* =========================================================
   WEBARTY — UNIFIED DESKTOP SIDE GUTTERS
   64 PX ON EACH SIDE AT 1280 PX VIEWPORT
   MAXIMUM CONTENT WIDTH: 1380 PX
   ========================================================= */

@media (min-width: 1201px) {

    .wa-pricing__container {
        width:
            min(
                calc(100% - 128px),
                1380px
            ) !important;

        max-width: 1380px !important;

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

}

