/* ============================================================
   BOLEPIX — HOME FINTECH V5684
   ============================================================ */

:root {
    --bp84-navy-950: #03101e;
    --bp84-navy-900: #05182b;
    --bp84-navy-850: #08233c;
    --bp84-navy-800: #0b304d;

    --bp84-blue: #128cff;
    --bp84-cyan: #1dbbdc;
    --bp84-green: #21d394;

    --bp84-white: #ffffff;
    --bp84-text: #d0e1ed;
    --bp84-muted: #8fa9bd;

    --bp84-border: rgba(172, 210, 237, .19);
    --bp84-card: rgba(255, 255, 255, .065);

    --bp84-gradient:
        linear-gradient(
            135deg,
            #128cff 0%,
            #1cbadd 52%,
            #21d394 100%
        );
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   CABEÇALHO PÚBLICO
   ============================================================ */

.landing {
    position: relative !important;

    min-height: 100vh !important;

    margin: 0 !important;
    padding-top: 88px !important;

    color: var(--bp84-white);

    background:
        linear-gradient(
            145deg,
            var(--bp84-navy-950),
            #072641 58%,
            #063b53
        ) !important;
}

.landing > .landing-bg {
    position: absolute !important;

    inset: 0 !important;

    opacity: .7;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        ) !important;

    background-size: 64px 64px !important;
}

.landing-top {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    z-index: 99999 !important;

    width: 100% !important;
    height: 88px !important;
    min-height: 88px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;

    gap: 26px !important;

    margin: 0 !important;

    padding:
        0 max(
            32px,
            calc((100vw - 1540px) / 2)
        ) !important;

    border-bottom:
        1px solid rgba(171, 211, 239, .15) !important;

    background:
        rgba(2, 15, 28, .97) !important;

    box-shadow:
        0 12px 35px rgba(0, 7, 18, .21) !important;

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

.landing-brand {
    flex: 0 0 auto !important;

    display: inline-flex !important;
    align-items: center !important;

    margin: 0 !important;
}

.landing-brand-img {
    width: auto !important;
    max-width: 260px !important;
    height: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;
}

.landing-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;

    gap: 9px !important;

    width: auto !important;

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

.landing-menu > button {
    min-height: 47px !important;

    padding: 10px 18px !important;

    border:
        1px solid rgba(183, 214, 237, .22) !important;

    border-radius: 13px !important;

    color: #edf7ff !important;

    background:
        rgba(255, 255, 255, .07) !important;

    box-shadow: none !important;

    font-size: 14px !important;
    font-weight: 790 !important;

    white-space: nowrap !important;

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease !important;
}

.landing-menu > button:hover {
    transform: translateY(-2px);

    border-color:
        rgba(39, 221, 165, .58) !important;

    background:
        rgba(18, 140, 255, .15) !important;
}

.landing-menu > button.active {
    border-color:
        rgba(39, 221, 165, .66) !important;

    background:
        linear-gradient(
            135deg,
            rgba(18, 140, 255, .21),
            rgba(33, 211, 148, .14)
        ) !important;
}

.landing-menu > button.primary,
.landing button.primary {
    border-color: transparent !important;

    color: #ffffff !important;

    background:
        var(--bp84-gradient) !important;

    box-shadow:
        0 15px 34px rgba(18, 140, 255, .24) !important;
}

.landing button.secondary {
    border:
        1px solid rgba(188, 219, 240, .23) !important;

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, .075) !important;
}

/* ============================================================
   ESTRUTURA
   ============================================================ */

.bp-shell-v5684 {
    width:
        min(
            1380px,
            calc(100% - 48px)
        );

    margin-inline: auto;
}

.bp-home-v5684 {
    position: relative;
    z-index: 2;

    overflow: hidden;
}

.bp-kicker-v5684 {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 38px;

    padding: 8px 15px;

    border:
        1px solid rgba(42, 226, 163, .34);

    border-radius: 999px;

    color: #aef8dc;

    background:
        rgba(31, 209, 148, .09);

    font-size: 13px;
    font-weight: 820;
}

.bp-kicker-v5684::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #2ae2a3;

    box-shadow:
        0 0 0 6px rgba(42, 226, 163, .10);
}

/* ============================================================
   HERO
   ============================================================ */

.bp-home-hero-v5684 {
    position: relative;

    padding: 78px 0 100px;

    background:
        radial-gradient(
            circle at 84% 13%,
            rgba(18, 140, 255, .29),
            transparent 31%
        ),
        radial-gradient(
            circle at 9% 88%,
            rgba(33, 211, 148, .16),
            transparent 32%
        );
}

.bp-hero-grid-v5684 {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(430px, .88fr);

    align-items: center;

    gap: clamp(48px, 6vw, 92px);
}

.bp-hero-copy-v5684 h1 {
    max-width: 850px;

    margin: 23px 0 24px;

    color: #ffffff;

    font-size:
        clamp(50px, 5.6vw, 78px);

    font-weight: 890;
    letter-spacing: -3.8px;
    line-height: 1.01;

    text-wrap: balance;
}

.bp-hero-copy-v5684 h1 span {
    color: transparent;

    background: var(--bp84-gradient);

    background-clip: text;
    -webkit-background-clip: text;
}

.bp-hero-lead-v5684 {
    max-width: 790px;

    margin: 0 !important;

    color: #caddea !important;

    font-size: 19px !important;
    line-height: 1.66 !important;
}

.bp-hero-actions-v5684 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}

.bp-hero-actions-v5684 button,
.bp-home-cta-v5684 button,
.bp-management-card-v5684 button {
    min-height: 54px;

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

    padding: 13px 24px !important;

    border-radius: 14px !important;

    font-size: 16px !important;
    font-weight: 830 !important;
}

.bp-hero-trust-v5684 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 26px;
}

.bp-hero-trust-v5684 span {
    min-height: 36px;

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

    padding: 7px 12px;

    border:
        1px solid rgba(190, 219, 240, .15);

    border-radius: 999px;

    color: #bfe5d7;

    background:
        rgba(255, 255, 255, .05);

    font-size: 12px;
    font-weight: 730;
}

/* ============================================================
   CARD BANCÁRIO
   ============================================================ */

.bp-bank-card-v5684 {
    position: relative;
    overflow: hidden;

    padding: 30px;

    border:
        1px solid rgba(171, 213, 239, .24);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(48, 103, 151, .82),
            rgba(22, 67, 101, .94)
        );

    box-shadow:
        0 35px 82px rgba(0, 7, 19, .31);

    backdrop-filter: blur(18px);
}

.bp-bank-card-v5684::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -170px;
    right: -105px;

    border-radius: 50%;

    background:
        rgba(32, 213, 156, .18);
}

.bp-bank-card-top-v5684 {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
}

.bp-bank-card-top-v5684 > span {
    color: #8ff3cf;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .55px;
}

.bp-bank-shield-v5684 {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(42, 226, 163, .31);

    border-radius: 17px;

    color: #8ff3cf;

    background:
        rgba(31, 209, 148, .10);

    font-size: 28px;
}

.bp-bank-card-v5684 h2 {
    position: relative;

    margin: 25px 0 10px;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.2;
}

.bp-bank-card-v5684 > p {
    position: relative;

    margin: 0 0 23px !important;

    color: #bed3e2 !important;

    font-size: 15px !important;
    line-height: 1.58 !important;
}

.bp-bank-account-v5684,
.bp-bank-value-v5684 {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 17px;

    border:
        1px solid rgba(205, 230, 247, .15);

    border-radius: 15px;

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

.bp-bank-account-v5684 small,
.bp-bank-value-v5684 small {
    display: block;

    margin-bottom: 3px;

    color: #a8bdcc;

    font-size: 12px;
}

.bp-bank-account-v5684 strong {
    color: #ffffff;
    font-size: 16px;
}

.bp-open-status-v5684 {
    padding: 7px 11px;

    border-radius: 999px;

    color: #83f1c8;

    background:
        rgba(31, 209, 148, .11);

    font-size: 12px;
    font-weight: 850;
}

.bp-bank-value-v5684 {
    margin-top: 12px;
}

.bp-bank-value-v5684 > strong {
    color: #ffffff;

    font-size: 31px;
    letter-spacing: -1px;
}

.bp-bank-lines-v5684 {
    position: relative;

    display: grid;
    gap: 10px;

    margin-top: 17px;
}

.bp-bank-lines-v5684 > div {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 11px 13px;

    border:
        1px solid rgba(205, 230, 247, .13);

    border-radius: 13px;

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

.bp-bank-lines-v5684 span {
    color: #d4e3ee;

    font-size: 13px;
    font-weight: 700;
}

.bp-bank-lines-v5684 strong {
    color: #83f1c8;

    font-size: 12px;
}

/* ============================================================
   ESTATÍSTICAS
   ============================================================ */

.bp-home-stats-v5684 {
    position: relative;

    margin-top: -42px;
}

.bp-stats-grid-v5684 {
    display: grid;

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

    overflow: hidden;

    border:
        1px solid rgba(176, 214, 239, .19);

    border-radius: 22px;

    background:
        #ffffff;

    box-shadow:
        0 28px 70px rgba(0, 8, 22, .25);
}

.bp-stats-grid-v5684 article {
    min-height: 128px;

    display: flex;
    justify-content: center;
    flex-direction: column;

    padding: 24px 27px;

    border-right:
        1px solid #dce8f0;
}

.bp-stats-grid-v5684 article:last-child {
    border-right: 0;
}

.bp-stats-grid-v5684 strong {
    color: #0969bd;

    font-size: 31px;
    font-weight: 900;
}

.bp-stats-grid-v5684 span {
    margin-top: 6px;

    color: #536c82;

    font-size: 14px;
    font-weight: 700;
}

/* ============================================================
   SEÇÕES
   ============================================================ */

.bp-home-section-v5684,
.bp-home-plans-v5684 {
    padding: 84px 0;

    background: #f3f8fb;
}

.bp-how-v5684 {
    padding: 84px 0;

    background:
        linear-gradient(
            145deg,
            #06192c,
            #08344d
        );
}

.bp-section-heading-v5684 {
    max-width: 870px;

    margin-bottom: 33px;
}

.bp-section-heading-v5684 h2 {
    margin: 18px 0 12px;

    color: #10243a;

    font-size:
        clamp(36px, 4vw, 52px);

    font-weight: 870;
    letter-spacing: -2px;
    line-height: 1.08;

    text-wrap: balance;
}

.bp-section-heading-v5684 > p {
    max-width: 760px;

    margin: 0 !important;

    color: #60768b !important;

    font-size: 17px !important;
    line-height: 1.6 !important;
}

.bp-how-v5684
.bp-section-heading-v5684 h2 {
    color: #ffffff;
}

.bp-how-v5684
.bp-section-heading-v5684 > p {
    color: #c4d8e6 !important;
}

/* ============================================================
   RECURSOS
   ============================================================ */

.bp-feature-grid-v5684,
.bp-how-grid-v5684 {
    display: grid;

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

    gap: 20px;
}

.bp-feature-card-v5684 {
    position: relative;
    overflow: hidden;

    min-height: 400px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border:
        1px solid rgba(159, 202, 230, .30);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #316894,
            #174766
        );

    box-shadow:
        0 23px 53px rgba(4, 28, 53, .15);
}

.bp-feature-card-v5684::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    top: -135px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(31, 210, 151, .17);
}

.bp-feature-icon-v5684 {
    position: relative;

    width: 61px;
    height: 61px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(42, 226, 163, .31);

    border-radius: 17px;

    color: #83f1c8;

    background:
        rgba(31, 209, 148, .10);

    font-size: 27px;
}

.bp-feature-card-v5684 h3 {
    position: relative;

    margin: 24px 0 12px;

    color: #ffffff;

    font-size: 23px;
}

.bp-feature-card-v5684 > p {
    position: relative;

    margin: 0 0 20px !important;

    color: #d0e0eb !important;

    font-size: 15px !important;
    line-height: 1.58 !important;
}

.bp-feature-card-v5684 > div {
    position: relative;

    display: grid;
    gap: 9px;

    margin-top: auto;
}

.bp-feature-card-v5684 > div span {
    min-height: 43px;

    display: flex;
    align-items: center;

    padding: 10px 12px;

    border:
        1px solid rgba(205, 230, 247, .13);

    border-radius: 12px;

    color: #dce9f2;

    background:
        rgba(255, 255, 255, .05);

    font-size: 13px;
    font-weight: 700;
}

.bp-feature-card-v5684 > div span::before {
    content: "✓";

    margin-right: 9px;

    color: #70eabe;

    font-weight: 900;
}

.bp-card-link-v5684 {
    position: relative;

    margin-top: 15px;

    border: 0;

    color: #8ff3cf;

    background: transparent;

    font-size: 13px;
    font-weight: 850;

    text-align: left;

    cursor: pointer;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */

.bp-how-grid-v5684 article {
    min-height: 270px;

    padding: 27px;

    border:
        1px solid rgba(176, 214, 239, .18);

    border-radius: 21px;

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

.bp-how-grid-v5684 article > span {
    color: #36baff;

    font-size: 15px;
    font-weight: 900;
}

.bp-how-grid-v5684 h3 {
    margin: 20px 0 12px;

    color: #ffffff;

    font-size: 23px;
}

.bp-how-grid-v5684 p {
    margin: 0 !important;

    color: #c8dbe8 !important;

    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* ============================================================
   PLANOS
   ============================================================ */

.bp-plan-grid-v5684 {
    display: grid;

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

    gap: 21px;
}

.bp-plan-grid-v5684 .landing-plan {
    position: relative;
    overflow: hidden;

    min-height: 420px;

    display: flex;
    flex-direction: column;

    padding: 31px !important;

    border:
        1px solid rgba(159, 202, 230, .30) !important;

    border-radius: 23px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            145deg,
            #316894,
            #174766
        ) !important;

    box-shadow:
        0 25px 58px rgba(4, 28, 53, .16) !important;
}

.bp-plan-grid-v5684
.landing-plan.featured {
    border:
        2px solid #2ebdff !important;
}

.bp-plan-grid-v5684
.landing-plan h3 {
    color: #ffffff !important;
}

.bp-plan-grid-v5684
.landing-plan .plan-price {
    color: #ffffff !important;
}

.bp-plan-grid-v5684
.landing-plan p {
    color: #d1e1ec !important;
}

.bp-plan-grid-v5684
.landing-plan button {
    width: 100% !important;

    margin-top: auto !important;
}

/* ============================================================
   GESTÃO E CTA
   ============================================================ */

.bp-home-management-v5684 {
    padding: 70px 0;

    background:
        #edf5f9;
}

.bp-management-card-v5684,
.bp-cta-card-v5684 {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 38px;

    padding: 39px;

    border:
        1px solid rgba(167, 210, 237, .22);

    border-radius: 24px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0a2842,
            #0b455d
        );

    box-shadow:
        0 28px 67px rgba(0, 8, 22, .19);
}

.bp-management-card-v5684 h2,
.bp-cta-card-v5684 h2 {
    max-width: 780px;

    margin: 18px 0 10px;

    color: #ffffff;

    font-size: 32px;
    letter-spacing: -1px;
}

.bp-management-card-v5684 p,
.bp-cta-card-v5684 p {
    max-width: 780px;

    margin: 0 !important;

    color: #c8dce9 !important;

    font-size: 16px !important;
    line-height: 1.58 !important;
}

.bp-home-cta-v5684 {
    padding: 70px 0;

    background:
        linear-gradient(
            145deg,
            #041322,
            #082f48
        );
}

.bp-cta-card-v5684 > div:last-child {
    display: flex;
    align-items: center;
    flex: 0 0 auto;

    gap: 11px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */

.bp-footer-v5684 {
    position: relative;
    z-index: 3;

    width: 100% !important;

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

    border-top:
        1px solid #d8e5ee !important;

    color: #62798d !important;

    background:
        #edf4f8 !important;
}

.bp-footer-inner-v5684 {
    min-height: 130px;

    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 22px;
}

.bp-footer-inner-v5684 > div {
    display: grid;
    gap: 4px;
}

.bp-footer-inner-v5684 strong {
    color: #0a2944;
    font-size: 19px;
}

.bp-footer-inner-v5684 span {
    color: #6d8396;
    font-size: 13px;
}

.bp-footer-inner-v5684 nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 17px;
}

.bp-footer-inner-v5684 a {
    color: #0878f9 !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.bp-footer-inner-v5684 > p {
    grid-column: 1 / -1;

    margin: -20px 0 20px !important;

    color: #7a8ea0 !important;

    font-size: 12px !important;
}

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

@media (max-width: 1250px) and (min-width: 901px) {
    .landing-top {
        padding:
            0 20px !important;
    }

    .landing-menu {
        gap: 6px !important;
    }

    .landing-menu > button {
        padding:
            10px 12px !important;

        font-size: 12px !important;
    }

    .bp-hero-grid-v5684 {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, .8fr);

        gap: 38px;
    }
}

@media (max-width: 900px) {
    .landing {
        padding-top: 76px !important;
    }

    .landing-top {
        height: 76px !important;
        min-height: 76px !important;

        flex-wrap: wrap !important;

        padding:
            9px 16px !important;
    }

    .landing-brand-img {
        height: 48px !important;
        max-height: 48px !important;
    }

    .landing-menu {
        position: fixed;

        top: 76px;
        right: 0;
        left: 0;

        display: none !important;

        flex-direction: column !important;
        align-items: stretch !important;

        width: 100% !important;

        padding: 14px !important;

        border-bottom:
            1px solid rgba(171, 211, 239, .16);

        background:
            rgba(2, 15, 28, .98);
    }

    .landing-top.nav-open
    .landing-menu {
        display: flex !important;
    }

    .landing-menu > button {
        width: 100% !important;
    }

    .bp-shell-v5684 {
        width:
            min(
                100% - 26px,
                1380px
            );
    }

    .bp-home-hero-v5684 {
        padding: 51px 0 79px;
    }

    .bp-hero-grid-v5684,
    .bp-feature-grid-v5684,
    .bp-how-grid-v5684,
    .bp-plan-grid-v5684 {
        grid-template-columns: 1fr;
    }

    .bp-hero-copy-v5684 h1 {
        font-size:
            clamp(42px, 12vw, 61px);

        letter-spacing: -2.4px;
    }

    .bp-bank-card-v5684 {
        padding: 22px;
    }

    .bp-home-stats-v5684 {
        margin-top: -28px;
    }

    .bp-stats-grid-v5684 {
        grid-template-columns: 1fr;
    }

    .bp-stats-grid-v5684 article {
        min-height: 104px;

        border-right: 0;
        border-bottom:
            1px solid #dce8f0;
    }

    .bp-stats-grid-v5684 article:last-child {
        border-bottom: 0;
    }

    .bp-home-section-v5684,
    .bp-how-v5684,
    .bp-home-plans-v5684 {
        padding: 59px 0;
    }

    .bp-management-card-v5684,
    .bp-cta-card-v5684 {
        align-items: flex-start;
        flex-direction: column;

        padding: 26px;
    }

    .bp-cta-card-v5684 > div:last-child {
        width: 100%;

        align-items: stretch;
        flex-direction: column;
    }

    .bp-cta-card-v5684 button,
    .bp-management-card-v5684 button {
        width: 100% !important;
    }

    .bp-footer-inner-v5684 {
        grid-template-columns: 1fr;

        padding: 28px 0;
    }

    .bp-footer-inner-v5684 > p {
        grid-column: auto;

        margin: 0 !important;
    }
}
