/*
< 576px none
≥ 576px sm
≥ 768px md
≥ 992px lg
≥ 1200px xl
≥ 1400px xl
@media (min-width: 576px) and (max-width: 767.98px) {}
@media (min-width: 768px) and (max-width: 991.98px) {}
@media (min-width: 992px) and (max-width: 1199.98px) {}
@media (min-width: 1200px) and (max-width: 1399.98px) {}
@media (min-width: 1400px) {}
*/

html,
body {

    height: 100%;
    display: flex;
    flex-direction: column;
}

.conteudo {

    flex: 1;
}

.fundo-x {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
}

.fundo {

    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    opacity: 0.1;
    background-image: url("https://plus.unsplash.com/premium_photo-1702666946898-9444e14509d9?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    /*background-image: url("https://plus.unsplash.com/premium_photo-1702552109437-ce09a64daa82?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}