/* Nunca mostrar os dois ao mesmo tempo */
.vac-desktop-only { display: none; }
.vac-mobile-only  { display: none; }

/* Desktop e tablet */
@media (min-width: 768px) {
  .vac-desktop-only { display: block; }
  .vac-mobile-only  { display: none; }
}

/* Mobile */
@media (max-width: 767px) {
  .vac-desktop-only { display: none; }
  .vac-mobile-only  { display: block; }
}

/* Cinema mode sempre força mobile, mesmo em landscape */
body.vacm-cinema-on .vac-desktop-only { display: none !important; }
body.vacm-cinema-on .vac-mobile-only  { display: block !important; }
