  .campoDeBusca{
    display: flex;
    font-size: 1.5rem;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    margin-top: -400px;
    padding: 1rem;
    gap: 10px;
    box-sizing: border-box;
    background: #f9f9f9;
    border-radius: 8px;
  }

.campoEntrada {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .campoEntrada > label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
  }
  
  .alertaEdicao {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .alertaEdicao__fechar {
    background-color: #c3e6cb;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .campoEntrada__lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .campoEntrada__lista__li {
    display: flex;
    flex-direction: column;
  }
  
  .campoEntrada__lista__li strong {
    margin-bottom: 0.3rem;
  }
  
  .campoEntrada__lista__input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .btnS {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #1021e3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Responsividade para telas maiores: divide a lista em 2 colunas */
  @media (min-width: 768px) {
    .campoEntrada__lista {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 2rem;
    }
  
    .campoEntrada__lista__li {
      width: calc(50% - 1rem); /* 2 colunas */
    }
  }
  
  /* Responsividade para telas pequenas */
  @media (max-width: 480px) {
    .campoEntrada {
      padding: 1rem 0.5rem;
    }
  
    .campoEntrada__lista__input {
      font-size: 0.9rem;
    }
  
    .btnS {
      width: 100%;
    }
  }
  