/* Seção reutilizável - Hero com conteúdo e imagem */
.hero-section {
    position: relative;
    height: 100dvh;
    padding: 120px 20px 60px;
    overflow: hidden;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.hero-section .container>.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-section .content {
    flex: 1;
}

.hero-section .content h1 {
    color: white;
    margin-bottom: 20px;
    width: 80%;
    font-weight: 400;
}

.hero-section .content p {
    font-size: var(--lead);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-section .content .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-weight: 500;
    border: none;
    text-decoration: none;
}

.hero-section .image {
    flex: 1;
    max-width: 460px;
    text-align: center;
}

.hero-section .steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-section .steps .step {
    flex: 1;
    min-width: 240px;
    color: rgba(255, 255, 255, 0.766);
    gap: 10px;
    display: inline-grid;
    font-weight: 400;
}

.hero-section .steps .step small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.hero-section .steps .step strong {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.hero-section .steps .step a {
    color: #41FE95;
    font-weight: bold;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

/* Efeitos de brilho laterais */
.hero-section .glow-left,
.hero-section .glow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 733px;
    border-radius: 9999px;
    background: white;
    filter: blur(270px);
    opacity: 0.2;
}

.hero-section .glow-left {
    left: -22px;
}

.hero-section .glow-right {
    right: -22px;
}

.shape {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Melhorias para a responsividade mobile da .hero-section */
@media (max-width: 768px) {
    .hero-section {
        /* Ajustar altura para mobile - evitar 100dvh que pode causar problemas */
        height: auto;
        min-height: 100vh;
        padding: clamp(60px, 15vw, 80px) clamp(15px, 5vw, 20px);
        /* Usar clamp para padding mais fluido */
    }

    .hero-section .container {
        gap: clamp(40px, 10vw, 60px);
        /* Gap mais responsivo */
    }

    .hero-section .container>.row {
        flex-direction: column;
        align-items: center;
        gap: clamp(30px, 8vw, 40px);
        text-align: center;
    }

    .hero-section .content {
        order: 2;
        /* Conteúdo após a imagem */
    }

    .hero-section .content h1 {
        width: 100%;
        text-align: center;
        font-size: clamp(1.75rem, 8vw, 3rem);
        /* Melhor escala para mobile */
        margin-bottom: clamp(15px, 4vw, 20px);
        line-height: 1;
    }

    .hero-section .content p {
        text-align: center;
        margin-bottom: clamp(20px, 6vw, 30px);
        max-width: 100%;
        
    }

    .hero-section .content .btn-cta {
        padding: clamp(10px, 3vw, 14px) clamp(20px, 6vw, 28px);
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        border-radius: clamp(6px, 2vw, 10px);
        width: auto;
        min-width: 140px;
    }

    .hero-section .image {
        order: 1;
        /* Imagem primeiro */
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-section .image img {
        width: clamp(60%, 15vw, 80%);
        max-width: clamp(200px, 50vw, 300px);
        height: auto;
    }

    .hero-section .steps {
        flex-direction: column;
        align-items: stretch;
        gap: clamp(20px, 5vw, 30px);
        margin-top: clamp(20px, 6vw, 40px);
    }

    .hero-section .steps .step {
        min-width: 100%;
        text-align: center;
        padding: clamp(15px, 4vw, 20px);
        background: rgba(255, 255, 255, 0.02);
        border-radius: clamp(8px, 2vw, 12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section .steps .step small {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        margin-bottom: 5px;
    }

    .hero-section .steps .step strong {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 8px;
        display: block;
    }

    .hero-section .steps .step p {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
        line-height: 1;
        margin-bottom: 10px;
    }

    .hero-section .steps .step a {
        font-size: clamp(0.75rem, 3vw, 0.85rem);
        margin-top: 8px;
    }

    /* Ajustar efeitos de brilho para mobile */
    .hero-section .glow-left,
    .hero-section .glow-right {
        width: 30px;
        height: 400px;
        filter: blur(150px);
        opacity: 0.1;
    }

    .hero-section .glow-left {
        left: -15px;
    }

    .hero-section .glow-right {
        right: -15px;
    }

    /* Melhorar visual area para mobile */
    .banking-hero__visual {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 535/394;
        margin: 0 auto;
    }

    /* Ajustar shapes para mobile */
    .shape6,
    .shape1,
    .shape7,
    .shape8,
    .shape5 {
        transform: scale(0.7);
        transform-origin: center;
    }
}

/* Media query adicional para telas muito pequenas */
@media (max-width: 480px) {
    .hero-section {
        padding: clamp(40px, 12vw, 60px) clamp(10px, 4vw, 15px);
    }

    .hero-section .content h1 {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }

    .hero-section .image img {
        width: clamp(70%, 20vw, 90%);
        max-width: clamp(180px, 60vw, 250px);
    }

    .banking-hero__visual {
        max-width: 250px;
    }

    .shape6,
    .shape1,
    .shape7,
    .shape8,
    .shape5 {
        transform: scale(0.6);
    }
}

/* Visual area with shapes */
.banking-hero__visual {
    position: relative;
    width: 535px;
    height: 394px;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 100vw;
    overflow: visible;
    display: block;
}


.shape1 {
    position: absolute;
    width: 190px;
    height: 190px;
    left: 98px;
    top: 127px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 97px -54px rgba(255, 255, 255, 0.25) inset;
    border-radius: 39px;
    -webkit-backdrop-filter: blur(6.18px);
    backdrop-filter: blur(6.18px);
}

.shape5 {
    position: absolute;
    width: 102px;
    height: 102px;
    left: 388px;
    top: 200px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 56px -32px rgba(255, 255, 255, 0.25) inset;
    border-radius: 23px;
    -webkit-backdrop-filter: blur(7.2px);
    backdrop-filter: blur(7.2px);
}

.shape6 {
    position: absolute;
    width: 102px;
    height: 102px;
    left: 46px;
    top: 57px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 56px -32px rgba(255, 255, 255, 0.25) inset;
    border-radius: 23px;
    -webkit-backdrop-filter: blur(7.2px);
    backdrop-filter: blur(7.2px);
}

.shape7 {
    position: absolute;
    width: 141px;
    height: 141px;
    left: 277px;
    top: 101px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 79px -44px rgba(255, 255, 255, 0.25) inset;
    border-radius: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.shape8 {
    position: absolute;
    width: 102px;
    height: 102px;
    left: 362px;
    top: 29px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 56px -32px rgba(255, 255, 255, 0.25) inset;
    border-radius: 23px;
    -webkit-backdrop-filter: blur(7.2px);
    backdrop-filter: blur(7.2px);
}

@media (max-width: 768px) {
    .banking-hero__visual {
        display: none;
    }

    .banking-hero__visual-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: -100px;
    }

    .banking-hero__visual-mobile .shape-container {
        width: fit-content;
        display: flex;
        height: auto;
        position: relative;
    }

    .banking-hero__visual-mobile .shape1,
    .banking-hero__visual-mobile .shape7 {
        position: static;
        transform: scale(1);
    }

    .banking-hero__visual-mobile .shape7 {
        width: 70.5px;
        height: 70.5px;
        top: 0%;
        left: 0%;
        border-radius: 1.4rem;
        margin-left: -20%;
    }

    .banking-hero__visual-mobile .shape7 img {
        width: 100%;
        max-width: 40%;
        object-fit: cover;
    }

    .banking-hero__visual-mobile .shape6 {
        top: 70px;
    }

    .banking-hero__visual-mobile .shape8 {
        left: 56%;
        top: 8%;
        z-index: -1;
    }

    .banking-hero__visual-mobile .shape5 {
        left: 55%;
    }
}

@media (min-width: 769px) {
    .banking-hero__visual-mobile {
        display: none !important;
    }

    .banking-hero__visual {
        display: block;
    }
}

/* Responsivo */
@media (max-width: 900px) {
    .banking-hero__content {
        flex-direction: column;
        gap: 38px;
        align-items: flex-start;
    }

    .banking-hero__visual {
        width: 98vw;
        max-width: 96vw;
    }
}

@media (max-width: 550px) {

    .banking-hero__text h2 {
        font-size: 1.4rem;
    }

    .banking-hero__text p {
        font-size: 1rem;
    }
}

.challenges-section {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.challenges-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 4vw, 60px);
}

.challenges-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1;
    max-width: 740px;
}

.challenges-cards {
    width: 100%;
    display: flex;
    gap: clamp(16px, 2vw, 34px);
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.challenge-card {
    background: #f6f7ff;
    border-radius: 15px;
    padding: clamp(22px, 4vw, 25px) clamp(16px, 2vw, 25px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-sizing: border-box;
    width: 100%;
    min-width: clamp(240px, 23vw, 330px);
    max-width: 370px;
    flex: 1;
    transition: box-shadow .2s;
}

.challenge-card__icon {
    margin-bottom: 0;
    align-self: flex-start;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 255, 0.10);
    border-radius: 100px;
    padding: 27px;
}

.challenge-card__icon img :before {
    content: ' ';
    display: block;
    width: 53px;
    height: 53px;
    fill: rgba(0, 0, 255, 0.10);
}

.challenge-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.challenge-card__text {
    gap: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.challenge-card__desc {
    font-family: 'Space Grotesk', sans-serif;
    color: #222;
    font-weight: 400;
    margin: 0;
}

/* Responsivo */
@media (max-width: 950px) {
    .challenges-cards {
        gap: 17px;
    }

    .challenge-card {
        max-width: 95vw;
        min-width: 0;
        flex: 1;
    }
}

@media (max-width: 650px) {
    .challenges-container {
        gap: 40px;
    }

    .challenges-cards {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .challenge-card {
        width: 100%;
        max-width: 99vw;
        min-width: 0;
        padding: 20px;
        border-radius: 14px;
        gap: 14px;
    }

    .challenge-card__icon {
        width: 38px;
        height: 38px;
    }

    .challenges-title {
        font-size: clamp(1.17rem, 5vw, 1.3rem);
        max-width: 99vw;
        padding: 0 2vw;
    }
}


.eco-section {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.eco-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    box-sizing: border-box;
}

.eco-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 7vw, 48px);
    min-width: 270px;
    max-width: 470px;
}

.eco-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
    font-weight: 400;
    margin: 0 0 clamp(12px, 2vw, 36px) 0;
}

.eco-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.eco-card {
    background: #f6f7ff;
    border-radius: 19px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    transition: box-shadow .2s;
}

.eco-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #eceeff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.eco-card__title {
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.eco-card__desc {
    color: #222;
    font-weight: 400;
    margin: 0;
    max-width: 340px;
}

/* VISUAL APP MOCKUP */
.eco-visual {
    flex: 1.7;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 419px;
}

.eco-visual-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: clamp(30px, 5vw, 60px);
    background: radial-gradient(ellipse 89% 85% at -68% -3%, #41FE95 0%, rgba(65, 254, 149, 0) 100%),
        radial-gradient(ellipse 153% 147% at 191% 148%, #41FE95 0%, rgba(65, 254, 149, 0) 100%),
        rgba(0, 0, 255, 0.01);
    z-index: 1;
}

.eco-visual img {
    width: clamp(230px, 38vw, 409px);
    height: auto;
    z-index: 2;
    position: relative;
    display: block;
    box-shadow: 0 0 0 0 transparent;
}

/* RESPONSIVO */
@media (max-width: 950px) {
    .eco-container {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 42px;
        padding: 18px 0 40px 0;
    }

    .eco-visual {
        width: 100%;
        justify-content: center;
        min-height: 320px;
    }

    .eco-title {
    }

    .eco-left {
        max-width: 100vw;
        width: 100%;
        padding: 0 4vw;
    }

    .eco-card__desc {
        max-width: 99vw;
    }
}

@media (max-width: 600px) {
    .eco-card {
        flex-direction: row;
        padding: 12px 12px 12px 22px;
        border-radius: 12px;
        gap: 10px;
    }

    .eco-card__icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .eco-visual img {
        width: clamp(180px, 70vw, 260px);
    }

    .eco-title {
        max-width: 97vw;
        padding: 0;
    }
}


.onboarding-section {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.onboarding-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: clamp(30px, 7vw, 96px);
    align-items: center;
    box-sizing: border-box;
}

.onboarding-visual {
    flex: 1.6;
    min-width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 340px;
    z-index: 2;

    align-self: stretch;
}

.onboarding-visual-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: clamp(30px, 6vw, 80px);
    background: #f6f7ff;
    z-index: 1;
}

.onboarding-visual img {
    width: clamp(230px, 40vw, 410px);
    height: auto;
    z-index: 2;
    position: relative;
    display: block;
    border-radius: clamp(24px, 6vw, 48px);
    box-shadow: 0 0 0 0 transparent;
    margin: 0 auto;
}

.onboarding-content {
    flex: 2;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 36px);
    max-width: 520px;
}

.onboarding-title {
    color: #111;
    font-weight: 400;
    margin: 0 0 8px 0;
    letter-spacing: -0.03em;
}

.onboarding-desc {
    color: #222;
    font-weight: 400;
    margin-bottom: clamp(16px, 2vw, 22px);
    margin-top: 0;
}

.onboarding-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.onboarding-card {
    background: #f6f7ff;
    border-radius: 19px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    transition: box-shadow .2s;
}

.onboarding-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #eceeff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.onboarding-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.onboarding-card__desc {
    color: #222;
    font-weight: 400;
    margin: 0;
    max-width: 340px;
}

/* RESPONSIVO */
@media (max-width: 950px) {
    .onboarding-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 38px;
    }

    .onboarding-visual {
        width: 100%;
        justify-content: center;
        min-height: 220px;
        margin-bottom: 10px;
    }

    .onboarding-title {
        margin-bottom: 4px;
    }

    .onboarding-content {
        max-width: 100vw;
        width: 100%;
    }

    .onboarding-card__desc {
        max-width: 99vw;
    }
}

@media (max-width: 600px) {
    .onboarding-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 13px 7px 14px 9px;
        border-radius: 12px;
        gap: 10px;
    }

    .onboarding-card__icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .onboarding-visual img {
        width: clamp(160px, 90vw, 210px);
    }

    .onboarding-title {
        max-width: 97vw;
    }
}


:root {
    --blue: #0000ff;
    --green: #41fe95;
    --panel-radius: clamp(26px, 3vw, 44px);
    --padding: clamp(18px, 4vw, 46px);
}

.bank-arrange-section {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 6vw, 60px);
}

.bank-arrange__container {
    display: flex;
    flex-direction: row;
    gap: clamp(32px, 6vw, 60px);
    box-sizing: border-box;
}

.bank-arrange__text {
    min-width: 270px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.bank-arrange__text h2 {
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
}

.bank-arrange__text h2 span {
    font-weight: 400;
}

.bank-arrange__text p {
    color: #444;
    margin: 0;
    font-weight: 400;
}

.dashboard,
.dashboard img {
    width: 100%;
}

.bank-arrange__dashboard {
    flex: 2;
    min-width: 340px;
    max-width: 690px;
    height: clamp(330px, 34vw, 495px);
    display: flex;
    background: rgba(0, 0, 255, 0.04);
    border-radius: var(--panel-radius);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.dashboard-menu__panel {
    background: var(--blue);
    color: #fff;
    padding: clamp(22px, 3vw, 36px) clamp(10px, 3vw, 24px);
    width: clamp(120px, 32vw, 245px);
    border-radius: var(--panel-radius) 0 var(--panel-radius) var(--panel-radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.user {
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 18px;
}

.user-info {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
    margin-bottom: 4px;
}

.dashboard-menu__panel ul {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-menu__panel li {
    font-size: 1.05rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.dashboard-app {
    flex: 1.8;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: clamp(24px, 4vw, 44px);
    min-width: 200px;
}

.dashboard-access h3,
.dashboard-extract h4 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #111;
    margin: 0 0 14px 0;
}

.dashboard-access__buttons {
    display: flex;
    gap: 12px;
}

.dashboard-access__buttons button {
    background: #fff;
    border-radius: 14px;
    border: none;
    padding: 14px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8.01px;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 8px 0 #0001;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 93px;
}

.dashboard-access__buttons .icon {
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 4px;
    display: inline-block;
}

.dashboard-extract__subtitle {
    font-size: .96rem;
    color: #555;
    margin-bottom: 12px;
}

.dashboard-extract__filters {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.dashboard-extract__filters button {
    padding: 9px 16px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 255, 0.13);
    color: var(--blue);
    font-size: .97rem;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    font-weight: 400;
    transition: .13s;
}

.dashboard-extract__filters .active {
    background: var(--blue);
    color: #fff;
    opacity: 0.90;
    font-weight: 600;
}

.dashboard-extract__footer {
    margin-top: 6px;
    font-size: .81rem;
    background: rgba(0, 0, 255, 0.05);
    padding: 10px 18px;
    border-radius: 8px;
    color: #222;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: .02em;
}

.bank-arrange__features {
    width: 100%;
    max-width: 1250px;
    display: flex;
    gap: clamp(12px, 4vw, 30px);
    justify-content: flex-start;
    padding: 0 var(--padding);
    box-sizing: border-box;
}

.bank-feature {
    background: rgba(0, 0, 255, 0.06);
    border-radius: clamp(14px, 3vw, 33px);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: clamp(22px, 4vw, 38px) clamp(18px, 3vw, 34px);
    flex: 1 1 350px;
    min-width: 240px;
    max-width: 530px;
    min-height: 210px;
    position: relative;
    box-sizing: border-box;
}

.feature-app__mockup {
    background: #fff;
    border-radius: 28px;
    width: 140px;
    height: 250px;
    margin-top: 12px;
    box-shadow: 0 8px 38px #0001;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mockup-card {
    width: 90%;
    height: 100px;
    background: rgba(0, 0, 255, 0.12);
    border-radius: 16px;
    margin: 24px auto 0 auto;
}

.mockup-btn {
    background: var(--blue);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    border-radius: 7px;
    margin: 10px auto 18px auto;
    padding: 8px 18px;
    font-size: .98rem;
    cursor: pointer;
}

.feature-info h3 {
    font-size: clamp(1.11rem, 2vw, 1.75rem);
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1;
}

.feature-info p {
    font-size: clamp(1rem, 1.6vw, 1.23rem);
    color: #222;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.feature-modular {
    background: rgba(65, 254, 149, 0.22);
    position: relative;
    align-items: flex-end;
    justify-content: space-between;
}

.feature-modular__bars {
    display: flex;
    align-items: flex-end;
    gap: 13px;
    height: 94px;
    position: absolute;
    right: clamp(24px, 4vw, 42px);
    bottom: clamp(18px, 2vw, 28px);
}

.feature-modular__bars .bar {
    width: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 2px solid rgba(65, 254, 149, 0.65);
    border-radius: 5px;
    transition: height .2s;
}

@media (max-width: 1050px) {

    .bank-arrange__container,
    .bank-arrange__features {
        flex-direction: column;
        gap: 34px;
        max-width: 98vw;
        padding: clamp(8px, 3vw, 18px);
    }

    .bank-feature {
        max-width: 100vw;
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .bank-arrange-section {
        gap: 30px;
    }

    .bank-arrange__dashboard,
    .bank-feature {
        min-height: 170px;
        border-radius: 14px;
        padding: 12px 7px 14px 12px;
    }

    .bank-arrange__dashboard {
        flex-direction: column;
    }

    .dashboard-menu {
        width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .dashboard-app {
        border-radius: 0 0 24px 24px;
    }

    .dashboard-access__buttons {
        flex-wrap: wrap;
    }
}

/* Animações para os shapes - elementos 'vivos' */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes floatSide {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(6px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Aplicar animações específicas para cada shape */
.shape1 {
    position: absolute;
    width: 190px;
    height: 190px;
    left: 98px;
    top: 127px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 97px -54px rgba(255, 255, 255, 0.25) inset;
    border-radius: 39px;
    -webkit-backdrop-filter: blur(6.18px);
    backdrop-filter: blur(6.18px);
    animation: floatUp 4s ease-in-out infinite;
    animation-delay: 0s;
}

.shape2 {
    position: absolute;
    width: 54px;
    height: 97px;
    left: 152px;
    top: 158px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    animation: floatDown 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shape3 {
    position: absolute;
    width: 54px;
    height: 75px;
    left: 180px;
    top: 175px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    animation: floatSide 3s ease-in-out infinite;
    animation-delay: 1s;
}

.shape4 {
    position: absolute;
    width: 100px;
    height: 33px;
    left: 142px;
    top: 252px;
    background: linear-gradient(270deg, #41FE95 0%, #0000FF 100%);
    border-radius: 22px;
    animation: pulse 2.5s ease-in-out infinite;
    animation-delay: 0.2s;
}

.shape5 {
    position: absolute;
    width: 102px;
    height: 102px;
    left: 388px;
    top: 200px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 56px -32px rgba(255, 255, 255, 0.25) inset;
    border-radius: 23px;
    -webkit-backdrop-filter: blur(7.2px);
    backdrop-filter: blur(7.2px);
    animation: floatUp 3.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.shape6 {
    position: absolute;
    width: 102px;
    height: 102px;
    left: 46px;
    top: 57px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 56px -32px rgba(255, 255, 255, 0.25) inset;
    border-radius: 23px;
    -webkit-backdrop-filter: blur(7.2px);
    backdrop-filter: blur(7.2px);
    animation: floatDown 4.2s ease-in-out infinite;
    animation-delay: 2s;
}

.shape7 {
    position: absolute;
    width: 141px;
    height: 141px;
    left: 277px;
    top: 101px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 79px -44px rgba(255, 255, 255, 0.25) inset;
    border-radius: 32px;
    -webkit-backdrop-filter: blur(6.18px);
    backdrop-filter: blur(6.18px);
    animation: rotate 20s linear infinite;
}

/* Animações mais sutis para mobile */
@media (max-width: 768px) {

    .shape1,
    .shape2,
    .shape3,
    .shape4,
    .shape5,
    .shape6,
    .shape7 {
        animation-duration: 5s;
    }

    @keyframes floatUp {

        0%,
        100% {
            transform: scale(1) translateY(0px);
        }

        50% {
            transform: scale(1) translateY(-5px);
        }
    }

    @keyframes floatDown {

        0%,
        100% {
            transform: scale(0.7) translateY(0px);
        }

        50% {
            transform: scale(0.7) translateY(5px);
        }
    }

    @keyframes floatSide {

        0%,
        100% {
            transform: scale(0.7) translateX(0px);
        }

        50% {
            transform: scale(0.7) translateX(4px);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(0.7);
            opacity: 1;
        }

        50% {
            transform: scale(0.73);
            opacity: 0.9;
        }
    }

    @keyframes rotate {
        0% {
            transform: scale(0.7) rotate(0deg);
        }

        100% {
            transform: scale(0.7) rotate(360deg);
        }
    }
}

@media (max-width: 480px) {
    @keyframes floatUp {

        0%,
        100% {
            transform: scale(0.6) translateY(0px);
        }

        50% {
            transform: scale(0.6) translateY(-4px);
        }
    }

    @keyframes floatDown {

        0%,
        100% {
            transform: scale(0.6) translateY(0px);
        }

        50% {
            transform: scale(0.6) translateY(4px);
        }
    }

    @keyframes floatSide {

        0%,
        100% {
            transform: scale(0.6) translateX(0px);
        }

        50% {
            transform: scale(0.6) translateX(3px);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(0.6);
            opacity: 1;
        }

        50% {
            transform: scale(0.62);
            opacity: 0.9;
        }
    }

    @keyframes rotate {
        0% {
            transform: scale(1) rotate(0deg);
        }

        100% {
            transform: scale(1) rotate(360deg);
        }
    }
}

/* Opcional: Pausar animações quando o usuário prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {

    .shape1,
    .shape2,
    .shape3,
    .shape4,
    .shape5,
    .shape6,
    .shape7 {
        animation: none;
    }
}

.block-group {
    max-width: 1100px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.block {
    min-width: 260px;
    max-width: 529px;
    width: 100%;
    height: 320px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 33px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    box-sizing: border-box;
}

.block-app-banking {
    background: rgba(0, 0, 255, 0.06);
}

.block-modules {
    background: rgba(65, 254, 149, 0.22);
}

.block-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    height: 100%;
    position: relative;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .block-inner .image {
        display: none;
    }
}

.block-inner .image {
    position: relative;
    top: 30px;
    right: 45px;
}

.block-title {
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 63px;
}

.block-title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.block-title-text h3 {
    display: inline-block;
    width: 270px;
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    word-break: break-word;
}

.block-modules .block-title-text span {
    width: 228px;
}

.block-desc {
    width: 242px;
    color: rgba(0, 0, 0, 0.75);
    font-size: var(--h3);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    word-break: break-word;
    margin-bottom: 10px;
}

.block-modules .block-desc {
    width: 270px;
}

.banking-card {
    width: 204px;
    height: 354px;
    background: #fff;
    border-radius: 31px;
    border: 3px rgba(194, 194, 255, 0) solid;
    margin-bottom: -330px;
    position: relative;
    z-index: 1;
}

.card-bar {
    width: 170px;
    height: 26px;
    background: #0000FF;
    border-radius: 5px;
    position: relative;
    top: -328px;
    left: 16px;
    z-index: 2;
}

.card-chip {
    width: 72px;
    height: 24px;
    background: #C2C2FF;
    border-radius: 38px;
    position: relative;
    top: -322px;
    left: 34px;
    z-index: 2;
}

.card-rect {
    width: 170px;
    height: 103px;
    background: rgba(0, 0, 255, 0.46);
    border-radius: 12px;
    position: relative;
    top: -314px;
    left: 16px;
    z-index: 2;
}

.card-number,
.card-date,
.card-type {
    color: rgba(255, 255, 255, 0.43);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.card-number {
    width: 130px;
    font-size: 10.74px;
    top: -305px;
    left: 36px;
}

.card-date {
    width: 99px;
    font-size: 8.18px;
    top: -300px;
    left: 36px;
}

.card-type {
    width: 99px;
    font-size: 6.18px;
    top: -295px;
    left: 36px;
}

.card-pay-btn {
    color: #fff;
    font-size: 9.18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: 0.28px;
    word-break: break-word;
    position: relative;
    top: -287px;
    left: 16px;
    background: #0000FF;
    border-radius: 7px;
    padding: 7px 25px;
    z-index: 2;
    cursor: pointer;
    width: fit-content;
}

/* BARRAS MODULARES */
.bar {
    position: absolute;
    background: rgba(255, 255, 255, 0.74);
    border-radius: 5px;
    border: 2px rgba(65, 254, 149, 0.65) solid;
}

.bar-1 {
    width: 52px;
    height: 146px;
    left: 316px;
    top: 197px;
}

.bar-2 {
    width: 53px;
    height: 184px;
    left: 381px;
    top: 159px;
}

.bar-3 {
    width: 52px;
    height: 224px;
    left: 447px;
    top: 119px;
}

/* RESPONSIVO */
@media (max-width: 419px) {
    .block-group {
        flex-direction: column;
        align-items: center;
    }

    .block {
        max-width: 96vw;
        min-width: 220px;
        height: auto;
    }

    .block-desc,
    .block-modules .block-desc {
        width: 90vw;
        max-width: 419px;
    }
}

@media (max-width: 419px) {
    .block-group {
        gap: 12px;
    }

    .block {
        padding: 7vw;
        min-width: 0;
        height: auto;
        border-radius: 22px;
    }

    .block-title-text span {
        font-size: 20px;
        width: 85vw;
        max-width: 90vw;
    }

    .block-desc,
    .block-modules .block-desc {
        font-size: 15px;
        width: 100%;
        max-width: 95vw;
    }

    .banking-card,
    .card-bar,
    .card-chip,
    .card-rect,
    .card-number,
    .card-date,
    .card-type,
    .card-pay-btn {
        position: static !important;
        top: unset !important;
        left: unset !important;
        margin: 0 0 7px 0;
    }

    .bar,
    .bar-1,
    .bar-2,
    .bar-3 {
        display: none;
    }

    .block-inner .image {
        position: relative;
        bottom: -8vw;
        right: 6vw;
        align-self: anchor-center;
    }
}

/* Oculta CTA FOOTER NESTA PÁGINA */
.default-cta-footer {
    display: none;
}