.hero-v2 {
    width: 100%;
    background: var(--Gray-00);
}

.hero-v2__inner {
    width: 100%;
    max-width: 1440px;
    min-height: 320px;
    margin: 0 auto;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

.hero-v2__text {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero-v2__title {
    margin: 0 0 16px;
    line-height: 115%;
}

.hero-v2__icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -4px 0 16px;
}

.hero-v2__subtitle {
    margin: 0 0 12px;
}

.hero-v2__description {
    max-width: 680px;
    margin: 0;
    line-height: 140%;
}

.hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.hero-v2__button {
    justify-content: center;
    min-width: 160px;
    text-decoration: none;
    border-width: 2px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 125% !important;
}

.hero-v2__button.i-title3-enfasis {
    font-weight: 400 !important;
}

.hero-v2__media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.hero-v2__image {
    display: block;
    width: min(100%, 520px);
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-v2__inner {
        min-height: 260px;
        padding: 28px 24px;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
        gap: 24px;
    }

    .hero-v2__title {
        margin-bottom: 12px;
    }

    .hero-v2__description {
        max-width: 520px;
    }

    .hero-v2__actions {
        gap: 12px;
        margin-top: 20px;
    }

    .hero-v2__image {
        width: min(100%, 360px);
    }
}

@media (max-width: 970px) {
    .hero-v2 {
        padding-top: 56px;
    }
}

@media (max-width: 767px) {
    .hero-v2__inner {
        min-height: initial;
        padding: 24px 16px 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .hero-v2__text {
        max-width: none;
    }

    .hero-v2__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-v2__button {
        width: 100%;
    }

    .hero-v2__media {
        justify-content: center;
        margin-top: 4px;
    }

    .hero-v2__image {
        width: min(100%, 320px);
    }
}

@media (max-width: 430px) {
    .hero-v2__inner {
        padding: 20px 16px 0;
        gap: 16px;
    }

    .hero-v2__actions {
        margin-top: 18px;
    }

    .hero-v2__image {
        width: min(100%, 280px);
    }
}
