  .nao_encontrado {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 50vh;
   }
  .barrapsq {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
  }

  .caixinha {
    display: flex;
    justify-content: center;
  }
  
  
  .caixote {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.2rem;
    justify-content: center;
  }
  
  .campo-pesquisa {
    position: relative;
    padding: 1rem;
    width: 35rem;
    border-style: solid;
    border-width: 2px;
    border-color: var(--vermelho);
    border-radius: 10px 0px 0px 10px;

    margin-top: 1rem; 
    z-index: 0;
  }

  .butao-pesquisa {
    position: relative;
    color: white;
    background-color: var(--vermelho);
    padding: 1rem 1rem 1rem 1rem;
    margin-left: -1rem;
    border-style: solid;
    border-width: 2px;
    border-color: var(--vermelho);
    z-index: 0;
    border-radius: 0px 10px 10px 0px;

  }

  .butao-pesquisa:hover {
    background-color: red;
  }
  .butao-pesquisa:hover {
    background-color: red;
  }

  .poloItem {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 20rem;
    max-width: 20rem;
    margin: 10px;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .poloItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }
  
  .poloContent {
    padding: 2rem;
  }
  
  .poloTitle {
    color: var(--vermelho);
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .poloInfo p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #555;
  }
  
  .pagination {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.page-number {
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333; 
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
}

.page-number:hover {
    background-color: #f0f0f0; 
    color: var(--vermelho); 
}

.current-page {
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e0e0e0; 
    color: #333; 
    font-weight: bold;
    cursor: default; 
}

.step-links {
    font-size: 1rem; 
}

  @media (max-width: 700px) {
    .campo-pesquisa {
        width: 50vw;
        
      }
    .poloItem {
      flex: 1 1 100%;
    }
    .pagination {
      gap: 4px;
  }

  .page-number {
      padding: 4px 8px;
      font-size: 14px;
  }


  .page-number:not(.current-page):not(.step-links):not(:first-child):not(:last-child) {
      display: none;
  }
  }


@media (max-width: 400px) {

  .step-links[aria-label="Anterior"],
  .step-links[aria-label="Próximo"] {
      display: none;
  }
  .remova{ 
    display: none;
  }
  .current-page {
      font-size: 14px;
      padding: 4px 6px;
  }
}