/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 11 2025 | 15:32:53 */
@media screen and (min-width: 1024px) {
  .aparece {
    display: none; /* Esconde o elemento */
  }

  .some:hover .aparece {
    display: block; /* Mostra o elemento no hover */
  }
}
