/* =========================================================
   SUB HERO / HERO INTERNO - PAGINAS
========================================================= */

.sx-subHero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero-bg);
}

.sx-subHero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(950px 520px at 18% 10%, rgb(255 193 7 / 15%), transparent 62%),
        radial-gradient(760px 420px at 84% 20%, rgb(0 183 177 / 12%), transparent 60%),
        radial-gradient(900px 460px at 50% 112%, rgb(252 185 0 / 10%), #000000 64%),
        radial-gradient(700px 400px at 68% 80%, rgb(6 87 116 / 08%), transparent 60%),
        linear-gradient(180deg, #0b0f12 0%, #13181d 45%, #000000 100%);
}

.sx-subHero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0.16));
}

.sx-subHero > * {
    position: relative;
    z-index: 2;
}

.sx-subHero__wrap {
    width: 100%;
    padding-top: 130px;
    padding-bottom: 70px;
}

.sx-subHero__content {
    color: var(--white);
}

.sx-subHero__title {
    font-size: clamp(2.2rem, 4.2vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin: 12px 0 18px;
    color: var(--white);
}

.sx-subHero__title span {
    color: var(--text-2);
    background: linear-gradient(90deg, var(--hl-grad-1), var(--hl-grad-2));
    padding: 0 0.22em;
    border-radius: 12px;
}

.sx-subHero__text {
    margin: 0 0 26px;
    color: var(--hero-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.sx-subHero__media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sx-subHero__visual {
    position: relative;
    width: min(100%, 560px);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sx-subHero__visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.90), rgba(255, 193, 7, 0.45) 58%, transparent 72%);
    filter: blur(8px);
    opacity: 0.95;
}

.sx-subHero__visual::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0.6;
}

.sx-subHero__image {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.28));
}

@media (max-width: 992px) {
    .sx-subHero {
        min-height: auto;
    }

    .sx-subHero__wrap {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .sx-subHero__media {
        justify-content: center;
        margin-top: 24px;
    }

    .sx-subHero__visual {
        min-height: 300px;
    }

    .sx-subHero__visual::before {
        width: 300px;
        height: 300px;
    }

    .sx-subHero__visual::after {
        width: 380px;
        height: 380px;
    }

    .sx-subHero__image {
        width: min(100%, 360px);
    }
}

@media (max-width: 768px) {
    .sx-subHero__title {
        font-size: 2.2rem;
    }

    .sx-subHero__text {
        font-size: 0.96rem;
        line-height: 1.7;
    }
}
