#banner-desktop {
    display: block;
}

#banner-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    #banner-desktop {
        display: none;
    }

    #banner-mobile {
        display: block;
    }
}



.main-anuncio {
    padding: 30px 10px;
}

.main-anuncio h1 {
    margin-top: 0px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5em;
}

.main-anuncio .input {
    max-width: 800px;
    margin: 0 auto;
}

/* -------------- Quem Somos */
.section-gray {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    padding: 80px 10px;
}

.section-gray h2 {
    margin-top: 0px;
    text-align: center;
}

.section-gray h2::after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 20px;
}

.section-gray p {
    text-align: justify;
    text-justify: inter-word;
}

/* --------------------- Como funciona */
.section-white {
    padding: 80px 10px;
}

.section-white h2 {
    margin-top: 0px;
    text-align: center;
}

.section-white h2::after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 20px;
}

.section-white p {
    text-align: justify;
    text-justify: inter-word;
}

/* ----------------------- CARDS Anuncios ------------------- */
.cards-anuncios {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
}

.card-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #eee;
    border-radius: 5px;
    padding: 10px;
    width: 300px;
    text-transform: uppercase;
    cursor: pointer;
    color: #212121;
    margin-bottom: 10px;
}

.card-btn:first-child {
    margin-right: 20px;
}

.card-btn:hover {
    background: #fbfbfb;
}

.card-btn .selected {
    background: #fbfbfb;
    color: #212121 !important;
}

.anuncios-info {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    list-style: none;
    padding-left: 0;
}

.anuncios-info li {
    max-width: 500px;
}

.anuncios-info li:first-child {
    margin-right: 40px;
}

/* ------------------------------ search_endereco--------------------- */
.search_endereco_div {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.search_endereco_div .input {
    max-width: 100%;
    flex: 1;
}

.search_endereco_div button {
    margin-left: 20px;
}

@media screen and (max-width: 800px) { 
    .anuncios-info {
        flex-direction: column;
        align-items: center;
    }

    .anuncios-info li {
        max-width: 100%;
    }

    .anuncios-info li:first-child {
        margin-right: 0px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 500px) {
    .cards-anuncios {
        flex-direction: column;
        align-items: center;
    }

    .card-btn:first-child {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .search_endereco_div {
        flex-direction: column;
    }

    .search_endereco_div button {
        margin-top: 10px;
        margin-left: 0;
    }
}