#inicio {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../../assets/imagens/consult-horiz.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
    transition: .3s;
    transition-behavior: smooth;
}

#conteudo {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    #inicio {
        background-image: url("../../assets/imagens/consult-verti.webp");
    }
}