/* =========================================================
   BASE DOS ANÚNCIOS
========================================================= */

.anuncio {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    overflow: hidden;
}

.anuncio > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================================
   DESKTOP ONLY
========================================================= */

.anuncio-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .anuncio-desktop {
        display: block;
    }
}

/* =========================================================
   MOBILE ONLY
========================================================= */

.anuncio-mobile {
    display: block;
}

@media (min-width: 1024px) {
    .anuncio-mobile {
        display: none;
    }
}

/* =========================================================
   TODOS OS DISPOSITIVOS
========================================================= */

.anuncio-all {
    display: block;
}