/* =========================================================
   JUXTA SITE - DESIGN SYSTEM
   Site institucional / comercial da Juxta
   ========================================================= */

:root {
    --jx-bg: #090d16;
    --jx-bg-soft: #0f1522;
    --jx-surface: #ffffff;
    --jx-surface-soft: #f6f7fb;
    --jx-text: #111827;
    --jx-text-muted: #667085;
    --jx-text-on-dark: #ffffff;
    --jx-text-muted-on-dark: rgba(255,255,255,.68);
    --jx-border: #e7e9ef;
    --jx-border-dark: rgba(255,255,255,.10);
    --jx-primary: #7c5cfc;
    --jx-primary-strong: #6d4df2;
    --jx-secondary: #4c8dff;
    --jx-accent-gradient: linear-gradient(135deg, #7c5cfc 0%, #4c8dff 100%);
    --jx-radius-sm: 12px;
    --jx-radius-md: 18px;
    --jx-radius-lg: 24px;
    --jx-shadow-sm: 0 12px 30px rgba(16,24,40,.08);
    --jx-shadow-lg: 0 28px 80px rgba(8,15,30,.16);
}

.jx-section {
    position: relative;
    padding: 92px 0;
}

.jx-section--light {
    background: #fff;
    color: var(--jx-text);
}

.jx-section--soft {
    background: var(--jx-surface-soft);
    color: var(--jx-text);
}

.jx-section--dark {
    background: var(--jx-bg);
    color: #fff;
}

.jx-section__header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.jx-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--jx-primary-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jx-section__title {
    margin: 0;
    color: inherit;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 800;
}

.jx-section__lead {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--jx-text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.jx-section--dark .jx-section__lead {
    color: var(--jx-text-muted-on-dark);
}

.jx-segments {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.jx-segment-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--jx-border);
    border-radius: var(--jx-radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(16,24,40,.02);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.jx-segment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,92,252,.28);
    box-shadow: var(--jx-shadow-sm);
}

.jx-segment-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--jx-primary);
    background: rgba(124,92,252,.09);
}

.jx-segment-card__icon svg {
    width: 24px;
    height: 24px;
}

.jx-segment-card h3 {
    margin: 0;
    color: var(--jx-text);
    font-size: 19px;
    font-weight: 800;
}

.jx-segment-card p {
    margin: 10px 0 0;
    color: var(--jx-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.jx-segment-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.jx-segment-card li {
    position: relative;
    margin-top: 9px;
    padding-left: 19px;
    color: #475467;
    font-size: 13px;
    line-height: 1.45;
}

.jx-segment-card li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jx-primary);
}

@media (max-width: 991px) {
    .jx-section { padding: 72px 0; }
    .jx-segments { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 575px) {
    .jx-section { padding: 58px 0; }
    .jx-segments { grid-template-columns: 1fr; }
}


/* =========================================================
   JUXTA - HERO PRINCIPAL
   Substitui o antigo bloco "Quick Actions" do ApexHost
   ========================================================= */

.jx-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 15%, rgba(168, 85, 247, .22), transparent 34%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, .18), transparent 34%),
        #090d16;
    color: #fff;
}

.jx-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    filter: saturate(.85) contrast(1.08);
}

.jx-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 12, 22, .97) 0%, rgba(8, 12, 22, .88) 48%, rgba(8, 12, 22, .52) 100%),
        linear-gradient(180deg, rgba(8, 12, 22, .08), rgba(8, 12, 22, .76));
}

.jx-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0 86px;
}

.jx-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
    gap: 64px;
    align-items: center;
}

.jx-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: rgba(255,255,255,.88);
}

.jx-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 0 5px rgba(168,85,247,.13);
}

.jx-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.1vw, 72px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 800;
}

.jx-hero h1 span {
    background: linear-gradient(90deg, #c084fc 0%, #818cf8 52%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jx-hero__lead {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.73);
    font-size: 18px;
    line-height: 1.7;
}

.jx-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.jx-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.jx-btn:hover {
    transform: translateY(-2px);
}

.jx-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 14px 35px rgba(99,102,241,.28);
}

.jx-btn--primary:hover {
    box-shadow: 0 18px 45px rgba(99,102,241,.36);
}

.jx-btn--secondary {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
}

.jx-btn--secondary:hover {
    background: rgba(255,255,255,.11);
}

.jx-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 34px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 650;
}

.jx-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jx-hero__trust-item svg {
    width: 17px;
    height: 17px;
    color: #a78bfa;
}

/* Painel da direita */
.jx-product-panel {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}

.jx-product-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(192,132,252,.45), transparent 42%, rgba(96,165,250,.30));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.jx-product-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.jx-product-panel__brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.jx-product-panel__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    font-weight: 900;
    font-size: 18px;
}

.jx-product-panel__brand strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.jx-product-panel__brand small {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.56);
    font-size: 12px;
}

.jx-product-panel__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(34,197,94,.10);
    color: #86efac;
    font-size: 11px;
    font-weight: 800;
}

.jx-product-panel__status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.jx-solution-list {
    display: grid;
    gap: 10px;
}

.jx-solution-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(5,8,15,.42);
}

.jx-solution-card__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #c4b5fd;
    background: rgba(139,92,246,.14);
}

.jx-solution-card__icon svg {
    width: 21px;
    height: 21px;
}

.jx-solution-card strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
}

.jx-solution-card span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.54);
    font-size: 12px;
    line-height: 1.35;
}

.jx-product-panel__footer {
    margin-top: 14px;
    padding: 14px 4px 2px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 991px) {
    .jx-hero {
        min-height: auto;
    }

    .jx-hero__content {
        padding: 82px 0 64px;
    }

    .jx-hero__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .jx-hero h1 {
        max-width: 850px;
    }

    .jx-product-panel {
        max-width: 620px;
    }
}

@media (max-width: 575px) {
    .jx-hero__content {
        padding: 68px 0 48px;
    }

    .jx-hero h1 {
        font-size: 40px;
    }

    .jx-hero__lead {
        font-size: 16px;
    }

    .jx-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jx-btn {
        width: 100%;
    }

    .jx-product-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .jx-product-panel__top {
        align-items: flex-start;
    }

    .jx-product-panel__status {
        display: none;
    }
}

/* =========================================================
   JUXTA NAVBAR - integração nativa com ApexHost
   Usa .link-wrapper, .link e .theme-dropdown-menu porque
   essas classes também são usadas pelo JavaScript do tema.
   ========================================================= */

@media (min-width: 1365px) {
    .theme-navbar .jx-public-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 2px !important;
    }

    .theme-navbar .jx-public-nav > .link-wrapper {
        width: auto !important;
    }

    .theme-navbar .jx-public-nav > .link-wrapper > .link {
        min-height: 40px;
        padding: 8px 10px;
        color: #101828;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .theme-navbar .jx-public-nav > .link-wrapper > .link:hover,
    .theme-navbar .jx-public-nav > .link-wrapper.show > .link {
        color: var(--jx-primary);
        background: rgba(124,92,252,.07);
    }

    .theme-navbar .jx-public-nav > .link-wrapper > .link svg {
        width: 13px;
        height: 13px;
        transition: transform .18s ease;
    }

    .theme-navbar .jx-public-nav > .link-wrapper.show > .link svg {
        transform: rotate(180deg);
    }

    .theme-navbar .jx-theme-dropdown {
        min-width: 292px;
        top: 44px;
        padding: 9px;
        border: 1px solid #e7e9ef;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 22px 55px rgba(16,24,40,.14);
        z-index: 120;
    }

    .theme-navbar .jx-menu-support .jx-theme-dropdown {
        inset-inline-start: auto;
        inset-inline-end: 0;
    }
}

.theme-navbar .jx-ddm-heading {
    padding: 7px 10px 8px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.theme-navbar .jx-theme-dropdown .ddm-item .jx-ddm-link {
    padding: 10px 11px;
    border-radius: 10px;
    min-width: 270px;
}

.theme-navbar .jx-theme-dropdown .ddm-item .jx-ddm-link:hover {
    background: #f7f5ff;
    color: #101828;
}

.theme-navbar .jx-ddm-link span {
    display: block;
}

.theme-navbar .jx-ddm-link strong {
    display: block;
    color: #101828;
    font-size: 13px;
    line-height: 1.35;
}

.theme-navbar .jx-ddm-link small {
    display: block;
    margin-top: 2px;
    color: #667085;
    font-size: 11px;
    line-height: 1.35;
}

/* O site comercial permanece visualmente claro no navbar,
   mesmo que o WHMCS mantenha a infraestrutura de tema para a área do cliente. */
[data-theme="dark-theme"] .theme-navbar .jx-public-nav > .link-wrapper > .link {
    color: var(--foreground);
}

@media (max-width: 1364px) {
    .theme-navbar .jx-public-nav {
        width: 100%;
    }

    .theme-navbar .jx-public-nav .jx-theme-dropdown {
        width: 100%;
        background: #1b1b20 !important;
    }

    .theme-navbar .jx-public-nav .jx-ddm-heading,
    .theme-navbar .jx-public-nav .jx-ddm-link small {
        color: rgba(255,255,255,.58);
    }

    .theme-navbar .jx-public-nav .jx-ddm-link strong {
        color: #fff;
    }

    .theme-navbar .jx-public-nav .jx-theme-dropdown .ddm-item .jx-ddm-link:hover {
        background: rgba(255,255,255,.06);
        color: #fff;
    }
}

/* =========================================================
   JUXTA - SOLUÇÕES / PRODUTOS
   ========================================================= */

.jx-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.jx-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--jx-border);
    border-radius: var(--jx-radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(16,24,40,.02);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.jx-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,92,252,.26);
    box-shadow: var(--jx-shadow-sm);
}

.jx-product-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--jx-primary);
    background: rgba(124,92,252,.09);
    font-size: 20px;
}

.jx-product-card__tag {
    margin-bottom: 8px;
    color: var(--jx-primary-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.jx-product-card h3 {
    margin: 0;
    color: var(--jx-text);
    font-size: 22px;
    font-weight: 800;
}

.jx-product-card p {
    margin: 12px 0 0;
    color: var(--jx-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.jx-product-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.jx-product-card li {
    position: relative;
    margin-top: 9px;
    padding-left: 19px;
    color: #475467;
    font-size: 13px;
    line-height: 1.45;
}

.jx-product-card li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: .58em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jx-primary);
}

.jx-product-card__footer {
    margin-top: auto;
    padding-top: 24px;
}

.jx-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--jx-primary) !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-product-link:hover {
    color: var(--jx-primary-strong) !important;
}

.jx-products-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 24px 26px;
    border: 1px solid rgba(124,92,252,.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(124,92,252,.06), rgba(76,141,255,.06));
}

.jx-products-cta strong {
    display: block;
    color: var(--jx-text);
    font-size: 16px;
}

.jx-products-cta span {
    display: block;
    margin-top: 5px;
    color: var(--jx-text-muted);
    font-size: 13px;
}

/* =========================================================
   JUXTA - ECOSSISTEMA
   ========================================================= */

.jx-ecosystem-section {
    overflow: hidden;
}

.jx-ecosystem-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    gap: 70px;
    align-items: center;
}

.jx-ecosystem-copy .jx-section__lead {
    margin-left: 0;
    margin-right: 0;
}

.jx-ecosystem-points {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.jx-ecosystem-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.jx-ecosystem-point__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #c4b5fd;
    background: rgba(124,92,252,.13);
}

.jx-ecosystem-point strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.jx-ecosystem-point span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.55;
}

.jx-ecosystem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.jx-ecosystem-visual {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 46%, rgba(124,92,252,.18), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    box-shadow: 0 28px 80px rgba(0,0,0,.20);
}

.jx-ecosystem-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    min-height: 150px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;
    background: rgba(7,10,18,.88);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    text-align: center;
    z-index: 2;
}

.jx-ecosystem-core__mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 15px;
    background: var(--jx-accent-gradient);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.jx-ecosystem-core strong {
    color: #fff;
    font-size: 17px;
}

.jx-ecosystem-core span {
    margin-top: 4px;
    color: rgba(255,255,255,.52);
    font-size: 11px;
}

.jx-ecosystem-module {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 170px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;
    background: rgba(10,14,24,.82);
    box-shadow: 0 16px 45px rgba(0,0,0,.17);
}

.jx-ecosystem-module > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #c4b5fd;
    background: rgba(124,92,252,.13);
}

.jx-ecosystem-module strong {
    display: block;
    color: #fff;
    font-size: 12px;
}

.jx-ecosystem-module span {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
}

.jx-ecosystem-module--pos { left: 7%; top: 13%; }
.jx-ecosystem-module--delivery { right: 7%; top: 15%; }
.jx-ecosystem-module--ped { left: 4%; bottom: 14%; }
.jx-ecosystem-module--fiscal { right: 5%; bottom: 16%; }
.jx-ecosystem-module--ifood { left: 50%; bottom: 5%; transform: translateX(-50%); }

@media (max-width: 1199px) {
    .jx-products-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .jx-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .jx-ecosystem-visual {
        min-height: 480px;
    }
}

@media (max-width: 767px) {
    .jx-products-grid {
        grid-template-columns: 1fr;
    }

    .jx-products-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-products-cta .jx-btn {
        width: 100%;
    }

    .jx-ecosystem-visual {
        min-height: auto;
        display: grid;
        gap: 10px;
        padding: 18px;
    }

    .jx-ecosystem-core,
    .jx-ecosystem-module {
        position: static;
        width: 100%;
        min-width: 0;
        transform: none;
    }

    .jx-ecosystem-core {
        min-height: 140px;
    }
}

/* =========================================================
   JUXTA - DIFERENCIAIS
   ========================================================= */

.jx-differentials-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 44px;
}

.jx-differentials-heading__text {
    margin: 0 0 4px;
    color: var(--jx-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.jx-differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.jx-differential-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--jx-border);
    border-radius: var(--jx-radius-md);
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.jx-differential-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124,92,252,.24);
    box-shadow: var(--jx-shadow-sm);
}

.jx-differential-card--featured {
    grid-row: span 2;
    min-height: 516px;
    justify-content: space-between;
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 85% 15%, rgba(96,165,250,.25), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(124,92,252,.24), transparent 34%),
        #0c111d;
}

.jx-differential-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 42px;
}

.jx-differential-card__number {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
}

.jx-differential-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--jx-primary);
    background: rgba(124,92,252,.09);
    font-size: 17px;
}

.jx-differential-card h3 {
    margin: 0;
    color: var(--jx-text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.015em;
}

.jx-differential-card p {
    margin: 10px 0 0;
    color: var(--jx-text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.jx-differential-card--featured .jx-differential-card__number {
    color: rgba(255,255,255,.45);
}

.jx-differential-card--featured .jx-differential-card__icon {
    color: #d8ccff;
    background: rgba(124,92,252,.16);
}

.jx-differential-card--featured h3 {
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.jx-differential-card--featured p {
    max-width: 410px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
}

.jx-differential-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 30px;
}

.jx-differential-card__chips span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.05);
    font-size: 10px;
    font-weight: 700;
}

.jx-differentials-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding-top: 30px;
    border-top: 1px solid var(--jx-border);
}

.jx-differentials-footer__text span {
    display: block;
    margin-bottom: 4px;
    color: var(--jx-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.jx-differentials-footer__text strong {
    color: var(--jx-text);
    font-size: 16px;
}

.jx-differentials-footer__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.jx-text-link {
    color: #475467 !important;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;
}

.jx-text-link:hover {
    color: var(--jx-primary) !important;
}

@media (max-width: 991px) {
    .jx-differentials-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jx-differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jx-differential-card--featured {
        grid-row: auto;
        grid-column: span 2;
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .jx-differentials-grid {
        grid-template-columns: 1fr;
    }

    .jx-differential-card,
    .jx-differential-card--featured {
        grid-column: auto;
        min-height: auto;
    }

    .jx-differential-card--featured {
        min-height: 360px;
    }

    .jx-differentials-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-differentials-footer__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .jx-differentials-footer__actions .jx-btn {
        width: 100%;
    }
}

/* =========================================================
   JUXTA - NOVIDADES
   ========================================================= */

.jx-news-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 38px;
}

.jx-news-heading__side p {
    margin: 0 0 13px;
    color: var(--jx-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.jx-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.jx-news-card {
    min-width: 0;
}

.jx-news-card > * {
    height: 100%;
}

.jx-news-card img {
    transition: transform .28s ease;
}

.jx-news-card:hover img {
    transform: scale(1.015);
}

/* =========================================================
   JUXTA - CTA FINAL
   ========================================================= */

.jx-final-cta {
    padding: 32px 0 72px;
    background: var(--jx-surface-soft);
}

.jx-final-cta__box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 46px 50px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 85% 20%, rgba(76,141,255,.24), transparent 28%),
        radial-gradient(circle at 15% 100%, rgba(124,92,252,.25), transparent 35%),
        #0b101c;
    box-shadow: 0 24px 70px rgba(16,24,40,.12);
}

.jx-final-cta__copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.jx-final-cta__eyebrow {
    margin-bottom: 11px;
    color: #b9a9ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.jx-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.jx-final-cta p {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.65;
}

.jx-final-cta__actions {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 205px;
}

.jx-final-cta__actions .jx-btn {
    width: 100%;
}

/* =========================================================
   JUXTA - FOOTER
   ========================================================= */

.jx-footer {
    padding: 66px 0 0;
    border-top: 1px solid #e8ebf1;
    background: #fff;
}

.jx-footer__main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(0, .8fr));
    gap: 48px;
    padding-bottom: 52px;
}

.jx-footer__brand {
    max-width: 290px;
}

.jx-footer__logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.jx-footer__logo img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 52px;
    object-fit: contain;
}

.jx-footer__brand p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.7;
}

.jx-footer__contact {
    display: inline-flex;
    gap: 7px;
    margin-top: 18px;
    color: var(--jx-primary) !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-footer__column h3 {
    margin: 0 0 17px;
    color: #101828;
    font-size: 12px;
    font-weight: 800;
}

.jx-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jx-footer__column li + li {
    margin-top: 10px;
}

.jx-footer__column a {
    color: #667085 !important;
    font-size: 12px;
    text-decoration: none !important;
    transition: color .18s ease;
}

.jx-footer__column a:hover {
    color: var(--jx-primary) !important;
}

.jx-footer__bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0;
    border-top: 1px solid #eaecf0;
}

.jx-footer__legal,
.jx-footer__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.jx-footer__legal span,
.jx-footer__bottom a {
    color: #98a2b3 !important;
    font-size: 11px;
    text-decoration: none !important;
}

.jx-footer__bottom a:hover {
    color: var(--jx-primary) !important;
}

@media (max-width: 1199px) {
    .jx-footer__main {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .jx-news-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jx-news-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .jx-final-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-final-cta__actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .jx-news-grid {
        grid-template-columns: 1fr;
    }

    .jx-final-cta {
        padding-bottom: 48px;
    }

    .jx-final-cta__box {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .jx-final-cta__actions {
        flex-direction: column;
    }

    .jx-footer {
        padding-top: 48px;
    }

    .jx-footer__main {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 34px 24px;
    }

    .jx-footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .jx-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479px) {
    .jx-footer__main {
        grid-template-columns: 1fr;
    }

    .jx-footer__brand {
        grid-column: auto;
    }
}


/* =========================================================
   JUXTA - NA PRÁTICA / SHOWCASE DE PRODUTOS
   ========================================================= */

.jx-showcase-section {
    overflow: hidden;
}

.jx-showcase-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 44px;
}

.jx-showcase-heading__text {
    margin: 0 0 4px;
    color: var(--jx-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.jx-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.jx-showcase-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--jx-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16,24,40,.06);
}

.jx-showcase-card--pos {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
    background:
        radial-gradient(circle at 10% 15%, rgba(124,92,252,.10), transparent 32%),
        #fff;
}

.jx-showcase-card--management {
    background:
        radial-gradient(circle at 90% 8%, rgba(76,141,255,.09), transparent 32%),
        #fff;
}

.jx-showcase-card__copy {
    position: relative;
    z-index: 2;
}

.jx-showcase-card__tag {
    margin-bottom: 9px;
    color: var(--jx-primary-strong);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-showcase-card h3 {
    margin: 0;
    color: var(--jx-text);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 800;
}

.jx-showcase-card p {
    margin: 13px 0 0;
    color: var(--jx-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.jx-showcase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0 21px;
}

.jx-showcase-chips span {
    padding: 7px 10px;
    border: 1px solid rgba(124,92,252,.13);
    border-radius: 999px;
    color: #5d4bb7;
    background: rgba(124,92,252,.065);
    font-size: 10px;
    font-weight: 750;
}

.jx-showcase-window {
    position: relative;
    overflow: hidden;
    border: 1px solid #dfe3eb;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(16,24,40,.15);
}

.jx-showcase-window__bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid #eaecf0;
    background: #f8f9fb;
}

.jx-showcase-window__bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0d5dd;
}

.jx-showcase-window__bar small {
    margin-left: 5px;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 700;
}

.jx-showcase-window img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.jx-showcase-card--delivery .jx-showcase-window {
    margin-top: 24px;
}

.jx-showcase-card--management .jx-showcase-window {
    margin-top: 24px;
}

.jx-showcase-card--delivery .jx-showcase-window img,
.jx-showcase-card--management > .jx-showcase-window img {
    aspect-ratio: 16 / 8.7;
    object-fit: cover;
    object-position: top center;
}

.jx-showcase-pix {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid rgba(124,92,252,.14);
    border-radius: 16px;
    background: #f8f9fc;
}

.jx-showcase-pix__label {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
}

.jx-showcase-pix__label > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    border-radius: 10px;
    color: var(--jx-primary);
    background: rgba(124,92,252,.09);
}

.jx-showcase-pix__label strong,
.jx-showcase-pix__label span {
    display: block;
}

.jx-showcase-pix__label strong {
    color: var(--jx-text);
    font-size: 12px;
}

.jx-showcase-pix__label span {
    margin-top: 2px;
    color: var(--jx-text-muted);
    font-size: 10px;
}

.jx-showcase-pix img {
    display: block;
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    object-position: 70% 28%;
    border-top: 1px solid #eaecf0;
}

/* =========================================================
   JUXTA - ATENDIMENTO / FECHAMENTO DOS DIFERENCIAIS
   ========================================================= */

.jx-support-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(124,92,252,.15);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(124,92,252,.055), rgba(76,141,255,.045)),
        #fff;
}

.jx-support-strip__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--jx-primary);
    background: rgba(124,92,252,.09);
    font-size: 19px;
}

.jx-support-strip__copy > span {
    display: block;
    margin-bottom: 3px;
    color: var(--jx-primary-strong);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-support-strip__copy strong {
    display: block;
    color: var(--jx-text);
    font-size: 15px;
}

.jx-support-strip__copy p {
    max-width: 760px;
    margin: 5px 0 0;
    color: var(--jx-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .jx-showcase-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jx-showcase-card--pos {
        grid-template-columns: 1fr;
    }

    .jx-support-strip {
        grid-template-columns: auto 1fr;
    }

    .jx-support-strip .jx-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .jx-showcase-grid {
        grid-template-columns: 1fr;
    }

    .jx-showcase-card--pos {
        grid-column: auto;
    }

    .jx-showcase-card {
        padding: 20px;
        border-radius: 19px;
    }

    .jx-showcase-window {
        border-radius: 13px;
    }

    .jx-showcase-pix img {
        max-height: 180px;
    }

    .jx-support-strip {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}


/* =========================================================
   HOME V3 - JUXTAPOS + JUXTAPOS V3 / AJUSTES FINAIS
   ========================================================= */

.jx-showcase-card--pos {
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
}

.jx-pos-choices {
    display: grid;
    gap: 12px;
    margin: 22px 0 20px;
}

.jx-pos-choice {
    padding: 15px 16px;
    border: 1px solid rgba(124,92,252,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.72);
}

.jx-pos-choice__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--jx-primary-strong);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.jx-pos-choice > strong {
    display: block;
    color: var(--jx-text);
    font-size: 17px;
    line-height: 1.2;
}

.jx-pos-choice > p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.55;
}

.jx-pos-choice .jx-showcase-chips {
    margin: 11px 0 0;
}

.jx-pos-visuals {
    position: relative;
    min-width: 0;
    padding: 12px 0 28px 28px;
}

.jx-showcase-window--pos-main {
    position: relative;
    z-index: 1;
}

.jx-showcase-window--pos-v3 {
    position: relative;
    z-index: 2;
    width: 72%;
    margin: -34px 0 0 auto;
    box-shadow: 0 26px 65px rgba(16,24,40,.19);
}

.jx-showcase-window--pos-main img,
.jx-showcase-window--pos-v3 img {
    aspect-ratio: 16 / 8.7;
    object-fit: cover;
    object-position: top center;
}

.jx-showcase-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding: 18px 0 2px;
    border-top: 1px solid #eaecf0;
}

.jx-showcase-card__bottom strong,
.jx-showcase-card__bottom span {
    display: block;
}

.jx-showcase-card__bottom strong {
    color: var(--jx-text);
    font-size: 13px;
}

.jx-showcase-card__bottom span {
    margin-top: 4px;
    color: var(--jx-text-muted);
    font-size: 11px;
    line-height: 1.45;
}

.jx-showcase-card--delivery {
    display: flex;
    flex-direction: column;
}

.jx-showcase-card--delivery .jx-showcase-window {
    margin-bottom: 18px;
}

.jx-support-strip {
    padding-top: 28px;
    padding-bottom: 28px;
}

.jx-differentials-footer__text span {
    font-size: 12px;
}

.jx-differentials-footer__text strong {
    font-size: 17px;
}

@media (max-width: 991px) {
    .jx-showcase-card--pos {
        grid-template-columns: 1fr;
    }

    .jx-pos-visuals {
        padding: 0 0 24px;
    }

    .jx-showcase-window--pos-v3 {
        width: 78%;
        margin-top: -24px;
    }
}

@media (max-width: 767px) {
    .jx-pos-visuals {
        display: grid;
        gap: 12px;
        padding-bottom: 0;
    }

    .jx-showcase-window--pos-v3 {
        width: 100%;
        margin: 0;
    }

    .jx-showcase-card__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   TESTE SOLUÇÕES / LANDING GOOGLE ADS
   ========================================================= */

.jx-ads-landing {
    --jx-ads-dark: #090d16;
    --jx-ads-dark-2: #0f1522;
    --jx-ads-soft: #f6f7fb;
    --jx-ads-border: #e7e9ef;
    --jx-ads-text: #111827;
    --jx-ads-muted: #667085;
    background: #fff;
}

.jx-ads-landing *,
.jx-ads-landing *::before,
.jx-ads-landing *::after {
    box-sizing: border-box;
}

.jx-ads-landing .container {
    position: relative;
    z-index: 2;
}

.jx-ads-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 82px;
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgba(139,92,246,.27), transparent 31%),
        radial-gradient(circle at 88% 28%, rgba(96,165,250,.19), transparent 30%),
        #090d16;
}

.jx-ads-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.jx-ads-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
    gap: 64px;
    align-items: center;
}

.jx-ads-hero__copy h1 {
    max-width: 840px;
    margin: 0;
    color: #fff !important;
    font-size: clamp(42px, 5.1vw, 70px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 850;
}

.jx-ads-hero__copy h1 span {
    background: linear-gradient(90deg, #c084fc 0%, #818cf8 52%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jx-ads-hero__lead {
    max-width: 720px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.72) !important;
    font-size: 17px;
    line-height: 1.72;
}

.jx-ads-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.jx-ads-hero__actions .jx-sol-btn {
    min-height: 50px;
    padding: 0 21px;
}

.jx-ads-btn-secondary {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.07);
}

.jx-ads-btn-secondary:hover {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}

.jx-ads-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 28px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 700;
}

.jx-ads-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.jx-ads-hero__trust i {
    color: #a78bfa;
}

.jx-ads-hero__panel {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}

.jx-ads-hero__panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 17px;
}

.jx-ads-hero__panel-kicker {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-ads-hero__panel-top strong {
    color: #fff;
    font-size: 16px;
}

.jx-ads-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34,197,94,.10);
    font-size: 10px;
    font-weight: 800;
}

.jx-ads-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.jx-ads-mini-product {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(5,8,15,.42);
}

.jx-ads-mini-product__icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #d8ccff;
    background: rgba(139,92,246,.15);
    font-size: 12px;
    font-weight: 900;
}

.jx-ads-mini-product strong,
.jx-ads-mini-product span {
    display: block;
}

.jx-ads-mini-product strong {
    color: #fff;
    font-size: 13px;
}

.jx-ads-mini-product span {
    margin-top: 4px;
    color: rgba(255,255,255,.54);
    font-size: 11px;
    line-height: 1.45;
}

.jx-ads-hero__panel-footer {
    padding: 15px 4px 1px;
    color: rgba(255,255,255,.53);
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.jx-ads-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.jx-ads-profile-grid article {
    padding: 23px;
    border: 1px solid var(--jx-ads-border);
    border-radius: 18px;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.jx-ads-profile-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(124,92,252,.26);
    box-shadow: 0 16px 38px rgba(16,24,40,.08);
}

.jx-ads-profile-grid i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 13px;
    color: var(--jx-sol-primary);
    background: rgba(124,92,252,.09);
}

.jx-ads-profile-grid h3 {
    margin: 0;
    color: var(--jx-ads-text) !important;
    font-size: 15px;
    font-weight: 800;
}

.jx-ads-profile-grid p {
    margin: 7px 0 0;
    color: var(--jx-ads-muted) !important;
    font-size: 12px;
    line-height: 1.58;
}

.jx-ads-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

.jx-ads-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--jx-ads-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(16,24,40,.07);
}

.jx-ads-product-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 8.7;
    background: #eef1f6;
}

.jx-ads-product-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.jx-ads-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 27px;
}

.jx-ads-product-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.jx-ads-product-card__topline > strong {
    color: #111827;
    font-size: 15px;
    white-space: nowrap;
}

.jx-ads-product-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #5d4bb7;
    background: rgba(124,92,252,.08);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jx-ads-product-card h3 {
    margin: 17px 0 0;
    color: var(--jx-ads-text) !important;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 850;
}

.jx-ads-product-card p {
    margin: 12px 0 0;
    color: var(--jx-ads-muted) !important;
    font-size: 13px;
    line-height: 1.65;
}

.jx-ads-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.jx-ads-tags span {
    padding: 6px 8px;
    border-radius: 999px;
    color: #5d4bb7;
    background: rgba(124,92,252,.075);
    font-size: 9px;
    font-weight: 750;
}

.jx-ads-product-card .jx-sol-checks {
    margin-top: 22px;
}

.jx-ads-product-card__actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
}

.jx-ads-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    color: #667085 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-ads-download-link:hover {
    color: var(--jx-sol-primary) !important;
}

.jx-ads-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}

.jx-ads-steps article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--jx-ads-border);
    border-radius: 17px;
    background: #fff;
}

.jx-ads-steps article > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #6d4df2;
    background: rgba(124,92,252,.09);
    font-size: 10px;
    font-weight: 900;
}

.jx-ads-steps h3 {
    margin: 2px 0 0;
    color: var(--jx-ads-text) !important;
    font-size: 14px;
    font-weight: 800;
}

.jx-ads-steps p {
    margin: 6px 0 0;
    color: var(--jx-ads-muted) !important;
    font-size: 11px;
    line-height: 1.55;
}

.jx-ads-form-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 12%, rgba(139,92,246,.23), transparent 32%),
        radial-gradient(circle at 88% 32%, rgba(96,165,250,.16), transparent 28%),
        #090d16;
}

.jx-ads-form-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
    gap: 64px;
    align-items: center;
}

.jx-ads-form-copy h2 {
    max-width: 560px;
    margin: 9px 0 0;
    color: #fff !important;
    font-size: clamp(32px, 4.1vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
}

.jx-ads-form-copy > p {
    max-width: 560px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.64) !important;
    font-size: 14px;
    line-height: 1.7;
}

.jx-ads-form-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.jx-ads-form-points > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 650;
}

.jx-ads-form-points i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 27px;
    border-radius: 50%;
    color: #c4b5fd;
    background: rgba(124,92,252,.14);
    font-size: 10px;
}

.jx-ads-form-alt {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.jx-ads-form-alt > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.45);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.jx-ads-form-alt a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-ads-form-card {
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.jx-ads-form-card__header {
    padding: 20px 22px 16px;
    border-bottom: 1px solid #e9ebf0;
    background: #fff;
}

.jx-ads-form-card__header strong,
.jx-ads-form-card__header span {
    display: block;
}

.jx-ads-form-card__header strong {
    color: #111827;
    font-size: 15px;
}

.jx-ads-form-card__header span {
    margin-top: 3px;
    color: #667085;
    font-size: 10px;
}

.jx-ads-form-placeholder {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px;
    text-align: center;
    background: #f8fafc;
}

.jx-ads-form-placeholder__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 17px;
    color: #6d4df2;
    background: rgba(124,92,252,.10);
    font-size: 21px;
}

.jx-ads-form-placeholder strong {
    color: #111827;
    font-size: 16px;
}

.jx-ads-form-placeholder span {
    max-width: 370px;
    margin-top: 8px;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}

.jx-ads-final-section {
    padding: 66px 0 76px;
    background: #fff;
}

.jx-ads-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px 46px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 84% 20%, rgba(96,165,250,.22), transparent 28%),
        radial-gradient(circle at 14% 100%, rgba(139,92,246,.26), transparent 34%),
        #0b101c;
    box-shadow: 0 24px 70px rgba(16,24,40,.12);
}

.jx-ads-final-card__copy {
    max-width: 680px;
}

.jx-ads-final-card__copy > span {
    display: block;
    margin-bottom: 9px;
    color: #b9a9ff !important;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-ads-final-card h2 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
}

.jx-ads-final-card p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.66) !important;
    font-size: 13px;
    line-height: 1.65;
}

.jx-ads-final-card__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 220px;
}

.jx-ads-final-card__actions .jx-sol-btn {
    width: 100%;
}

@media (max-width: 1199px) {
    .jx-ads-hero__grid,
    .jx-ads-form-grid {
        grid-template-columns: 1fr;
    }

    .jx-ads-hero__panel,
    .jx-ads-form-card {
        max-width: 760px;
    }

    .jx-ads-profile-grid,
    .jx-ads-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .jx-ads-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-ads-final-card__actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .jx-ads-hero {
        padding: 64px 0 58px;
    }

    .jx-ads-hero__copy h1 {
        font-size: 40px;
    }

    .jx-ads-hero__lead {
        font-size: 15px;
    }

    .jx-ads-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jx-ads-hero__actions .jx-sol-btn {
        width: 100%;
    }

    .jx-ads-hero__panel {
        padding: 16px;
        border-radius: 18px;
    }

    .jx-ads-status {
        display: none;
    }

    .jx-ads-profile-grid,
    .jx-ads-products-grid,
    .jx-ads-steps {
        grid-template-columns: 1fr;
    }

    .jx-ads-product-card__body {
        padding: 22px;
    }

    .jx-ads-product-card__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-ads-form-section {
        padding: 66px 0;
    }

    .jx-ads-form-grid {
        gap: 34px;
    }

    .jx-ads-form-card {
        border-radius: 18px;
    }

    .jx-ads-form-placeholder {
        min-height: 360px;
        padding: 30px 22px;
    }

    .jx-ads-final-section {
        padding: 48px 0 56px;
    }

    .jx-ads-final-card {
        padding: 31px 24px;
        border-radius: 20px;
    }

    .jx-ads-final-card__actions {
        flex-direction: column;
    }
}


/* =========================================================
   LANDING GOOGLE ADS - TOTALMENTE ISOLADA
   Não depende de juxta-solucoes.css
   ========================================================= */

.jx-ads-page {
    --ads-bg: #090d16;
    --ads-bg2: #0f1522;
    --ads-soft: #f6f7fb;
    --ads-text: #111827;
    --ads-muted: #667085;
    --ads-border: #e7e9ef;
    --ads-primary: #7c5cfc;
    --ads-primary2: #4c8dff;
    color: var(--ads-text);
    background: #fff;
}

.jx-ads-page *,
.jx-ads-page *::before,
.jx-ads-page *::after { box-sizing: border-box; }

.jx-ads-page h1,
.jx-ads-page h2,
.jx-ads-page h3,
.jx-ads-page p { margin-top: 0; }

.jx-ads-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 12% 16%, rgba(124,92,252,.26), transparent 32%),
        radial-gradient(circle at 90% 28%, rgba(76,141,255,.20), transparent 31%),
        #090d16;
    color: #fff;
}

.jx-ads-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(360px,.75fr);
    gap: 68px;
    align-items: center;
}

.jx-ads-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jx-ads-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 0 5px rgba(139,92,246,.13);
}

.jx-ads-hero-copy h1 {
    margin: 0;
    max-width: 820px;
    color: #fff !important;
    font-size: clamp(44px,5vw,68px);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 850;
}

.jx-ads-hero-copy h1 span {
    background: linear-gradient(90deg,#c084fc,#818cf8 52%,#60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jx-ads-hero-lead {
    max-width: 720px;
    margin: 24px 0 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 17px;
    line-height: 1.72;
}

.jx-ads-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.jx-ads-btn {
    min-height: 50px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 12px;
    border: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.jx-ads-btn:hover { transform: translateY(-2px); }

.jx-ads-btn-primary,
.jx-ads-page a.jx-ads-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg,#8b5cf6,#6366f1) !important;
    box-shadow: 0 15px 38px rgba(99,102,241,.28);
}

.jx-ads-btn-primary:hover,
.jx-ads-page a.jx-ads-btn-primary:hover {
    color: #fff !important;
    box-shadow: 0 18px 44px rgba(99,102,241,.36);
}

.jx-ads-btn-ghost,
.jx-ads-page a.jx-ads-btn-ghost {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.07) !important;
}

.jx-ads-btn-ghost:hover {
    background: rgba(255,255,255,.12) !important;
}

.jx-ads-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 22px;
    margin-top: 28px;
    color: rgba(255,255,255,.61);
    font-size: 11px;
    font-weight: 700;
}

.jx-ads-trust span { display: inline-flex; align-items: center; gap: 7px; }
.jx-ads-trust i { color: #a78bfa; }

.jx-ads-hero-panel {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}

.jx-ads-hero-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.jx-ads-hero-panel-top small,
.jx-ads-hero-panel-top strong { display: block; }

.jx-ads-hero-panel-top small {
    color: rgba(255,255,255,.45);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.jx-ads-hero-panel-top strong {
    margin-top: 4px;
    color: #fff;
    font-size: 15px;
}

.jx-ads-online {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34,197,94,.10);
    font-size: 10px;
    font-weight: 800;
}

.jx-ads-online b {
    width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
}

.jx-ads-mini-card {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(5,8,15,.42);
}

.jx-ads-mini-icon {
    width: 44px; height: 44px; flex: 0 0 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    color: #d8ccff;
    background: rgba(139,92,246,.15);
    font-size: 11px;
    font-weight: 900;
}

.jx-ads-mini-card strong { display: block; color: #fff; font-size: 13px; }
.jx-ads-mini-card p {
    margin: 4px 0 0 !important;
    color: rgba(255,255,255,.54) !important;
    font-size: 10px;
    line-height: 1.45;
}

.jx-ads-panel-foot {
    margin: 14px 3px 0 !important;
    color: rgba(255,255,255,.50) !important;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.jx-ads-section { padding: 88px 0; }
.jx-ads-section-light { background: #fff; }
.jx-ads-section-soft { background: #f6f7fb; }

.jx-ads-section-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.jx-ads-section-head-left {
    margin-left: 0;
    text-align: left;
}

.jx-ads-section-head > span {
    display: block;
    margin-bottom: 8px;
    color: #6d4df2;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-ads-section-head h2 {
    margin: 0;
    color: #111827 !important;
    font-size: clamp(31px,4vw,46px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
}

.jx-ads-section-head p {
    margin: 13px 0 0 !important;
    color: #667085 !important;
    font-size: 14px;
    line-height: 1.68;
}

.jx-ads-segment-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.jx-ads-segment-card {
    padding: 23px;
    border: 1px solid #e7e9ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(16,24,40,.02);
}

.jx-ads-segment-card > i {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    margin-bottom: 16px;
    border-radius: 13px;
    color: #7c5cfc;
    background: rgba(124,92,252,.09);
}

.jx-ads-segment-card h3 {
    margin: 0;
    color: #111827 !important;
    font-size: 15px;
    font-weight: 800;
}

.jx-ads-segment-card p {
    margin: 7px 0 0 !important;
    color: #667085 !important;
    font-size: 11px;
    line-height: 1.55;
}

.jx-ads-product-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
}

.jx-ads-product {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #e7e9ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(16,24,40,.07);
}

.jx-ads-product-media {
    overflow: hidden;
    aspect-ratio: 16 / 8.7;
    background: #eef1f6;
}

.jx-ads-product-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.jx-ads-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 27px;
}

.jx-ads-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.jx-ads-product-top > span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #5d4bb7;
    background: rgba(124,92,252,.08);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.jx-ads-product-top > strong { color: #111827; font-size: 14px; }

.jx-ads-product h3 {
    margin: 18px 0 0;
    color: #111827 !important;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 850;
}

.jx-ads-product-body > p {
    margin: 12px 0 0 !important;
    color: #667085 !important;
    font-size: 13px;
    line-height: 1.65;
}

.jx-ads-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.jx-ads-tags span {
    padding: 6px 8px;
    border-radius: 999px;
    color: #5d4bb7;
    background: rgba(124,92,252,.075);
    font-size: 9px;
    font-weight: 750;
}

.jx-ads-checks {
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.jx-ads-checks li {
    position: relative;
    margin-top: 9px;
    padding-left: 24px;
    color: #475467;
    font-size: 12px;
    line-height: 1.5;
}

.jx-ads-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c5cfc;
    font-weight: 900;
}

.jx-ads-product-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
}

.jx-ads-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    color: #667085 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-ads-step-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.jx-ads-step-grid article {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e7e9ef;
    border-radius: 17px;
    background: #fff;
}

.jx-ads-step-grid article > b {
    width: 38px; height: 38px; flex: 0 0 38px;
    display: grid; place-items: center;
    border-radius: 11px;
    color: #6d4df2;
    background: rgba(124,92,252,.09);
    font-size: 10px;
}

.jx-ads-step-grid h3 {
    margin: 2px 0 0;
    color: #111827 !important;
    font-size: 13px;
    font-weight: 800;
}

.jx-ads-step-grid p {
    margin: 6px 0 0 !important;
    color: #667085 !important;
    font-size: 11px;
    line-height: 1.5;
}

.jx-ads-form-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(139,92,246,.23), transparent 32%),
        radial-gradient(circle at 88% 32%, rgba(96,165,250,.16), transparent 28%),
        #090d16;
}

.jx-ads-form-grid {
    display: grid;
    grid-template-columns: minmax(0,.82fr) minmax(500px,1.18fr);
    gap: 64px;
    align-items: center;
}

.jx-ads-eyebrow-form {
    color: rgba(255,255,255,.72);
}

.jx-ads-form-copy h2 {
    margin: 0;
    max-width: 560px;
    color: #fff !important;
    font-size: clamp(34px,4vw,48px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
}

.jx-ads-form-copy > p {
    max-width: 560px;
    margin: 16px 0 0 !important;
    color: rgba(255,255,255,.64) !important;
    font-size: 13px;
    line-height: 1.7;
}

.jx-ads-form-points {
    display: grid;
    gap: 12px;
    margin-top: 27px;
}

.jx-ads-form-points > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.74);
    font-size: 11px;
    font-weight: 650;
}

.jx-ads-form-points i {
    width: 27px; height: 27px;
    flex: 0 0 27px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: #c4b5fd;
    background: rgba(124,92,252,.14);
    font-size: 10px;
}

.jx-ads-form-whatsapp {
    margin-top: 31px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.jx-ads-form-whatsapp small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.43);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.jx-ads-form-whatsapp a {
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-ads-form-shell {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.jx-ads-form-shell-head {
    padding: 18px 21px 15px;
    border-bottom: 1px solid #eaecf0;
    background: #fff;
}

.jx-ads-form-shell-head strong,
.jx-ads-form-shell-head span { display: block; }

.jx-ads-form-shell-head strong { color: #111827; font-size: 14px; }
.jx-ads-form-shell-head span { margin-top: 3px; color: #98a2b3; font-size: 9px; }

.jx-ads-form-shell iframe {
    display: block;
    width: 100%;
    min-height: 760px;
    border: 0;
    background: #fff;
}

.jx-ads-download-section {
    padding: 66px 0 76px;
    background: #fff;
}

.jx-ads-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px 46px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 84% 20%, rgba(96,165,250,.22), transparent 28%),
        radial-gradient(circle at 14% 100%, rgba(139,92,246,.26), transparent 34%),
        #0b101c;
}

.jx-ads-download-card > div:first-child { max-width: 680px; }

.jx-ads-download-card > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: #b9a9ff !important;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.jx-ads-download-card h2 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(29px,4vw,43px);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 850;
}

.jx-ads-download-card p {
    margin: 12px 0 0 !important;
    color: rgba(255,255,255,.64) !important;
    font-size: 13px;
    line-height: 1.65;
}

.jx-ads-download-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 220px;
}

.jx-ads-download-actions .jx-ads-btn { width: 100%; }

@media (max-width: 1199px) {
    .jx-ads-hero-grid,
    .jx-ads-form-grid { grid-template-columns: 1fr; }

    .jx-ads-hero-panel,
    .jx-ads-form-shell { max-width: 760px; }

    .jx-ads-segment-grid,
    .jx-ads-step-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

    .jx-ads-download-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .jx-ads-download-actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .jx-ads-hero { padding: 64px 0 58px; }
    .jx-ads-hero-copy h1 { font-size: 40px; }
    .jx-ads-hero-lead { font-size: 15px; }

    .jx-ads-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .jx-ads-actions .jx-ads-btn { width: 100%; }

    .jx-ads-segment-grid,
    .jx-ads-product-grid,
    .jx-ads-step-grid { grid-template-columns: 1fr; }

    .jx-ads-product-body { padding: 22px; }
    .jx-ads-product-top { align-items: flex-start; flex-direction: column; }

    .jx-ads-form-section { padding: 66px 0; }
    .jx-ads-form-grid { gap: 34px; }

    .jx-ads-form-shell { border-radius: 18px; }
    .jx-ads-form-shell iframe { min-height: 820px; }

    .jx-ads-download-card {
        padding: 31px 24px;
        border-radius: 20px;
    }
    .jx-ads-download-actions { flex-direction: column; }
}

/* =========================================================
   JUXTA - PÁGINA LEGAL
   ========================================================= */

.jx-legal-page {
    --jx-legal-dark: #090d16;
    --jx-legal-soft: #f6f7fb;
    --jx-legal-border: #e7e9ef;
    --jx-legal-text: #111827;
    --jx-legal-muted: #667085;
    color: var(--jx-legal-text);
    background: #fff;
}

.jx-legal-page *,
.jx-legal-page *::before,
.jx-legal-page *::after {
    box-sizing: border-box;
}

.jx-legal-page .legal-search-hidden {
    display: none !important;
}

.jx-legal-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 16%, rgba(124,92,252,.27), transparent 32%),
        radial-gradient(circle at 88% 30%, rgba(76,141,255,.19), transparent 30%),
        #090d16;
}

.jx-legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.jx-legal-hero .container {
    position: relative;
    z-index: 2;
}

.jx-legal-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .72fr);
    gap: 68px;
    align-items: center;
}

.jx-legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jx-legal-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 0 5px rgba(139,92,246,.13);
}

.jx-legal-hero__copy h1 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 850;
}

.jx-legal-hero__copy h1 span {
    background: linear-gradient(90deg, #c084fc, #818cf8 52%, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jx-legal-hero__copy > p {
    max-width: 720px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.70) !important;
    font-size: 16px;
    line-height: 1.72;
}

.jx-legal-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 22px;
    margin-top: 28px;
    color: rgba(255,255,255,.61);
    font-size: 11px;
    font-weight: 700;
}

.jx-legal-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.jx-legal-hero__trust i {
    color: #a78bfa;
}

.jx-legal-hero__panel {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}

.jx-legal-hero__panel-kicker {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.46);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-legal-hero__panel > strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.jx-legal-hero__panel > p {
    margin: 8px 0 18px;
    color: rgba(255,255,255,.56) !important;
    font-size: 11px;
    line-height: 1.55;
}

.jx-legal-search-box {
    position: relative;
}

.jx-legal-search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.50);
    pointer-events: none;
}

.jx-legal-search-box input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px 0 44px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    outline: none;
    color: #fff;
    background: rgba(5,8,15,.42);
    font-size: 12px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.jx-legal-search-box input::placeholder {
    color: rgba(255,255,255,.42);
}

.jx-legal-search-box input:focus {
    border-color: rgba(167,139,250,.72);
    background: rgba(5,8,15,.56);
    box-shadow: 0 0 0 4px rgba(124,92,252,.12);
}

.jx-legal-hero__panel-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: rgba(255,255,255,.44);
    font-size: 9px;
}

.jx-legal-main {
    padding: 76px 0 88px;
    background: #f6f7fb;
}

.jx-legal-layout {
    display: grid;
    grid-template-columns: minmax(250px, .31fr) minmax(0, .69fr);
    gap: 28px;
    align-items: start;
}

.jx-legal-sidebar {
    min-width: 0;
}

.jx-legal-nav {
    position: sticky;
    top: 98px;
    overflow: hidden;
    border: 1px solid var(--jx-legal-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16,24,40,.06);
}

.jx-legal-nav__head {
    padding: 21px 21px 16px;
    border-bottom: 1px solid #eaecf0;
}

.jx-legal-nav__head span,
.jx-legal-nav__head strong {
    display: block;
}

.jx-legal-nav__head span {
    margin-bottom: 4px;
    color: var(--jx-primary-strong);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.jx-legal-nav__head strong {
    color: #101828;
    font-size: 14px;
}

.jx-legal-menu {
    display: grid;
    gap: 6px;
    padding: 12px;
}

.jx-legal-menu > a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border-radius: 13px;
    color: #475467 !important;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.jx-legal-menu > a:hover {
    color: #111827 !important;
    background: #f8f7ff;
}

.jx-legal-menu > a.active {
    color: #111827 !important;
    background: linear-gradient(135deg, rgba(124,92,252,.09), rgba(76,141,255,.06));
}

.jx-legal-menu__icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--jx-primary);
    background: rgba(124,92,252,.08);
}

.jx-legal-menu > a > span:last-child {
    min-width: 0;
}

.jx-legal-menu strong,
.jx-legal-menu small {
    display: block;
}

.jx-legal-menu strong {
    color: inherit;
    font-size: 11px;
    line-height: 1.3;
}

.jx-legal-menu small {
    margin-top: 3px;
    overflow: hidden;
    color: #98a2b3;
    font-size: 9px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jx-legal-nav__help {
    display: flex;
    gap: 11px;
    margin: 0 12px 12px;
    padding: 15px;
    border-radius: 14px;
    background: #0c111d;
}

.jx-legal-nav__help-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #d8ccff;
    background: rgba(124,92,252,.16);
}

.jx-legal-nav__help strong {
    display: block;
    color: #fff;
    font-size: 11px;
}

.jx-legal-nav__help p {
    margin: 4px 0 7px;
    color: rgba(255,255,255,.52) !important;
    font-size: 9px;
    line-height: 1.45;
}

.jx-legal-nav__help a {
    color: #c4b5fd !important;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none !important;
}

.jx-legal-nav__help a:hover {
    color: #fff !important;
}

.jx-legal-content {
    min-width: 0;
}

.jx-legal-search-feedback {
    display: none;
    margin-bottom: 14px;
    padding: 12px 15px;
    border: 1px solid rgba(124,92,252,.14);
    border-radius: 12px;
    color: #5d4bb7;
    background: rgba(124,92,252,.06);
    font-size: 11px;
    font-weight: 750;
}

.jx-legal-search-feedback.is-visible {
    display: block;
}

.jx-legal-doc {
    padding: 34px 36px;
    border: 1px solid var(--jx-legal-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16,24,40,.055);
    scroll-margin-top: 110px;
}

.jx-legal-doc + .jx-legal-doc {
    margin-top: 22px;
}

.jx-legal-doc__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 27px;
    padding-bottom: 23px;
    border-bottom: 1px solid #eaecf0;
}

.jx-legal-doc__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--jx-primary-strong);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.jx-legal-doc__header h2 {
    margin: 0;
    color: #111827 !important;
    font-size: clamp(25px, 3vw, 32px);
    line-height: 1.12;
    letter-spacing: -.025em;
    font-weight: 850;
}

.jx-legal-version {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #667085;
    background: #f6f7fb;
    font-size: 9px;
    font-weight: 750;
}

.jx-legal-anchor {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 28px 0 10px;
    color: #111827 !important;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 850;
    text-decoration: none !important;
    scroll-margin-top: 110px;
}

.jx-legal-anchor:first-of-type {
    margin-top: 0;
}

.jx-legal-anchor::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--jx-primary);
    box-shadow: 0 0 0 4px rgba(124,92,252,.08);
}

.jx-legal-anchor:hover {
    color: var(--jx-primary-strong) !important;
}

.jx-legal-section {
    scroll-margin-top: 110px;
}

.jx-legal-section p {
    margin: 0 0 11px;
    color: #5f6b7a !important;
    font-size: 12px;
    line-height: 1.78;
}

.jx-legal-section p:last-child {
    margin-bottom: 0;
}

.jx-legal-section ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.jx-legal-section li {
    position: relative;
    margin: 8px 0;
    padding-left: 21px;
    color: #5f6b7a !important;
    font-size: 12px;
    line-height: 1.65;
}

.jx-legal-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--jx-primary);
    font-weight: 900;
}

.jx-legal-footer-cta {
    padding: 0 0 76px;
    background: #f6f7fb;
}

.jx-legal-footer-cta__box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 34px 38px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 20%, rgba(96,165,250,.22), transparent 28%),
        radial-gradient(circle at 14% 100%, rgba(139,92,246,.26), transparent 34%),
        #0b101c;
    box-shadow: 0 24px 70px rgba(16,24,40,.10);
}

.jx-legal-footer-cta__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #d8ccff;
    background: rgba(124,92,252,.16);
    font-size: 21px;
}

.jx-legal-footer-cta__copy > span {
    display: block;
    margin-bottom: 5px;
    color: #b9a9ff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jx-legal-footer-cta__copy h2 {
    margin: 0;
    color: #fff !important;
    font-size: 22px;
    line-height: 1.2;
}

.jx-legal-footer-cta__copy p {
    max-width: 690px;
    margin: 7px 0 0;
    color: rgba(255,255,255,.58) !important;
    font-size: 11px;
    line-height: 1.6;
}

.jx-legal-footer-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 190px;
}

.jx-legal-footer-cta__actions .jx-btn {
    width: 100%;
}

.jx-legal-footer-cta__privacy {
    color: rgba(255,255,255,.48) !important;
    font-size: 9px;
    text-align: center;
    text-decoration: none !important;
}

.jx-legal-footer-cta__privacy:hover {
    color: #fff !important;
}

/* O conteúdo comercial da página permanece com a paleta institucional
   independentemente do tema da área do cliente do WHMCS. */
[data-theme="dark-theme"] .jx-legal-page {
    color: var(--jx-legal-text);
}

@media (max-width: 1199px) {
    .jx-legal-hero__grid {
        grid-template-columns: 1fr;
    }

    .jx-legal-hero__panel {
        max-width: 760px;
    }

    .jx-legal-layout {
        grid-template-columns: 1fr;
    }

    .jx-legal-nav {
        position: static;
    }

    .jx-legal-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jx-legal-nav__help {
        display: none;
    }
}

@media (max-width: 767px) {
    .jx-legal-hero {
        padding: 64px 0 58px;
    }

    .jx-legal-hero__copy h1 {
        font-size: 40px;
    }

    .jx-legal-hero__copy > p {
        font-size: 14px;
    }

    .jx-legal-hero__panel {
        padding: 18px;
        border-radius: 18px;
    }

    .jx-legal-main {
        padding: 48px 0 58px;
    }

    .jx-legal-menu {
        grid-template-columns: 1fr;
    }

    .jx-legal-doc {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .jx-legal-doc__header {
        flex-direction: column;
        gap: 12px;
    }

    .jx-legal-version {
        align-self: flex-start;
    }

    .jx-legal-anchor {
        font-size: 14px;
    }

    .jx-legal-footer-cta {
        padding-bottom: 52px;
    }

    .jx-legal-footer-cta__box {
        grid-template-columns: 1fr;
        padding: 28px 23px;
        border-radius: 19px;
    }

    .jx-legal-footer-cta__actions {
        width: 100%;
        min-width: 0;
    }
}
