/* ==========================================================
   MHDS CART — HERO
   ========================================================== */

.mhds-cart-hero {
    position: relative;
    box-sizing: border-box;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.65fr);

    align-items: center;
    gap: clamp(34px, 6vw, 76px);

    width: min(100% - 40px, 1320px);

    margin: 32px auto 38px;
    padding: clamp(34px, 5vw, 58px);

    overflow: hidden;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(255, 196, 0, 0.16),
            transparent 31%
        ),
        linear-gradient(
            140deg,
            #06192c,
            #0b4d7e
        );

    box-shadow:
        0 26px 70px
        rgba(16, 47, 77, 0.16);
}

.mhds-cart-hero *,
.mhds-cart-hero *::before,
.mhds-cart-hero *::after {
    box-sizing: border-box;
}

.mhds-cart-hero__content {
    min-width: 0;
}

.mhds-cart-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 16px;

    color: #ffd74a;

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

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mhds-cart-hero__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 2px;

    background: #ffc400;
}

.mhds-cart-hero h1 {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 850;

    line-height: 1.03;
    letter-spacing: -0.045em;
}

.mhds-cart-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #69c7f2;
}

.mhds-cart-hero__content > p {
    max-width: 680px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;
    line-height: 1.78;
}

.mhds-cart-hero__info {
    display: grid;
    gap: 12px;

    min-width: 0;
}

.mhds-cart-hero__info > div {
    display: grid;

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

    align-items: center;
    gap: 13px;

    min-height: 78px;

    padding: 15px 17px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.075);
}

.mhds-cart-hero__icon {
    display: inline-flex;

    width: 43px;
    height: 43px;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255, 196, 0, 0.14);

    color: #ffc400;

    font-size: 16px;
}

.mhds-cart-hero__info strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

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

.mhds-cart-hero__info small {
    display: block;

    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    line-height: 1.5;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .mhds-cart-hero {
        grid-template-columns: 1fr;
    }

    .mhds-cart-hero__info {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   CELULAR
   ========================================================== */

@media (max-width: 700px) {

    .mhds-cart-hero {
        width: min(100% - 28px, 1320px);

        margin-top: 20px;
        margin-bottom: 28px;

        padding: 29px 21px;

        border-radius: 21px;
    }

    .mhds-cart-hero__info {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   TELAS PEQUENAS
   ========================================================== */

@media (max-width: 420px) {

    .mhds-cart-hero__info > div {
        grid-template-columns: 1fr;
    }

}