* {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #056092;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 104%;
    max-width: 850px;
    padding: 20px;
  }

  h1, h2 {
    text-align: center;
    color: #333;
  }

  .numeros {
    display: grid;
    grid-template-columns: repeat(10, 50px);
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    max-height: 300px;
    overflow-y: auto;
  }

  .numeros button {
    width: 45px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #000;
    background-color: #fff;
    transition: background-color 0.3s;
  }

  .numeros button.selecionado {
    background-color: #056092;
    color: white;
  }

  .input-group {
    margin-bottom: 15px;
    width: 50%;
  }

  .input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
  }

  .input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border 0.3s ease;
  }

  .input-group input:focus {
    border-color: #4CAF50;
    outline: none;
  }

  .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border 0.3s ease;
  }

  .input-group select:focus {
    border-color: #4CAF50;
    outline: none;
  }

  .metodo-pagamento {
    margin: 20px 0;
  }

  .metodo-pagamento h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
  }

  .metodo-pagamento label {
    margin-right: 20px;
  }

  .metodo-pagamento input {
    margin-right: 5px;
  }

  .btn-confirmar {
    width: 100%;
    padding: 15px;
    background-color: #056092;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-confirmar:hover {
    background-color: #45a049;
  }

  .info-pagamento {
    margin-bottom: 15px;
  }

  .info-pagamento strong {
    font-weight: bold;
  }
  /* .pagamento {
    max-height: 300px; 
    overflow-y: auto;  
  } */
  

  .info-pagamento span {
    color: #555;
  }

  .cartao-credito {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .cartao-credito .input-group {
    width: 100%;
  }

  .cartao-credito .input-group.small {
    max-width: 100px;
  }

  .seguranca img {
    width: 100%;
    margin-top: 10px;
  }

  .nota-seguranca {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
  }

  @media (max-width: 400px) {
    .cartao-credito {
      flex-direction: column;
    }
  }

  .alerta {
    color: red;
    text-align: center;
    margin-top: 10px;
  }
  
  .input-nome teste {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border 0.3s ease;
  } 