/* Container da animação */
.loading-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
  }
  
  /* Ícones com fade */
  .loading-animation img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  #resultCounter {
    text-align: center;
    margin: 15px auto;
    font-weight: bold;
    font-size: 14px;
    color: var(--preto);
    background-color: var(--branco);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: fit-content;
    border: 1px solid var(--verde-principal);
    transition: all 0.3s ease;
  }
  
  #resultCounter:hover {
    background-color: var(--verde-principal);
    color: var(--branco);
    border-color: var(--verde-escuro);
    cursor: default;
  }
  