/* RW Responsive Visibility
 * Breakpoints compatíveis com os padrões mais usados pelo Elementor:
 * Celular: até 767px
 * Tablet: 768px a 1024px
 * Desktop: 1025px ou mais
 */

@media (max-width: 767px) {
    .rw-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .rw-hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .rw-hide-desktop {
        display: none !important;
    }
}
