.new-hero {
    padding: 140px 0 22px;
    position: relative;
}

.new-hero__inner {
    max-width: 1440px;
    padding: 0 120px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.new-hero__content {
    max-width: 550px;
    width: 100%;
}

.new-hero__title {
    font-size: 56px;
    color: #002820;
    font-weight: 500;
    line-height: 60px;
}

.new-hero__description {
    margin: 32px 0 24px;
}

.new-hero__description p {
    font-size: 18px;
    color: #566972;
    font-weight: 400;
    line-height: 24px;
    max-width: 456px;
    width: 100%;
}

.new-hero__itau {
    display: flex;
    gap: 10px;
    align-items: end;
}

.new-hero__itau-text {
    text-transform: lowercase;
    color: #45565C;
    font-weight: 400;
}

.new-hero__btn-wrapper {
    margin: 48px 0 64px;
}

.new-hero__btn {
    background-color: #47E57F;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    color: #002820;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.25px;
    transition: background-color 0.25s;
    text-decoration: none;
    display: inline-block;
}

.new-hero__btn:hover {
    background-color: #6af29a;
}

.new-hero__store,
.new-hero__store-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.new-hero__store-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #002820;
}

.new-hero__store-highlight {
    color: #D1B592;
}

.new-hero__disclaimer p {
    font-style: italic;
    margin-top: 16px;
    color: #566972;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.new-hero__image {
    display: flex;
    align-items: flex-start;
}

.new-hero__image-item {
    max-width: 510px;
    width: 100%;
    position: relative;
    top: 22px;
}

@media (max-width: 767px) {
    .new-hero {
        padding: 64px 24px 22px;
    }

    .new-hero__inner {
        flex-direction: column;
        padding: 0;
    }

    .new-hero__store {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-hero__image-item {
        max-width: 100%;
    }
}
