.section-inicio {
    height: 772px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

.section-inicio .container {
    height: 100%;
    z-index: 1;
}

.hero-text {
    max-width: 449px;
}

.hero-title {
    font-family: 'Circular', system-ui, sans-serif;
    font-size: 42px;
    line-height: 44px;
    font-weight: 700;
    letter-spacing: 0;
    color: #F8FAFB;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: 'Circular', system-ui, sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: #F8FAFB;
    max-width: 417px;
}

.hero-bg-mobile {
    display: none;
}


.compras-img {
    max-width: 90%;
}

@media (max-width: 768px) {

    .section-inicio {
        height: 648px;
    }

    /* troca de imagem */
    .hero-bg-desktop {
        display: none;
    }

    .hero-bg-mobile {
        display: block;
        width: 400px;
        height: 648px;
        object-fit: cover;
        object-position: top;
    }

    .section-inicio .container {
        position: relative;
        z-index: 1;
        height: 100%;
    }
}


@media (max-width: 768px) {
    .hero-text {
        max-width: 95%;
        text-align: left;
        margin-top: -250px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 18px;
        max-width: 90%;
        text-align: left;
        margin-left: 2px;
    }
}