@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0A1B2A;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(90deg, #003366, #0099CC);
  padding: 20px;
}

.logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.container {
  background: #12263A;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: 35px auto;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.2);
  flex-grow: 1;
}

h2 {
  font-family: 'Quicksand', sans-serif;
}

input {
  padding: 10px;
  width: 80%;
  margin: 10px 0;
  border: 1px solid #00C2A8;
  border-radius: 5px;
  background: #0A1B2A;
  color: white;
  text-align: center;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
}

button {
  background-color: #00C2A8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

a.voltar {
  display: none;
  margin-top: 30px;
  color: #00C2A8;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

a.voltar:hover {
  text-decoration: underline;
}

.resultado-container {
  background: #1C3A57;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.2);
  margin-top: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  display: none;
}

.validacao-header h2 {
  font-weight: normal;
}

.icone-validado {
  width: 60px;
  height: auto;
  max-width: 20vw;
  margin-bottom: 10px;
}


hr {
  border: none;
  border-top: 1px solid #00C2A8;
  margin: 15px 0;
}

.carteira-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1em;
  color: white;
  margin-top: 10px;
}

.resultado-container .info {
  font-size: 0.9em;
}

#codigo-certificado {
  font-size: 0.8em;
  color: #00C2A8;
}

footer {
  background: #061017;
  color: rgb(113, 110, 110);
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-footer {
  max-width: 120px;
  height: auto;
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
    margin: 20px 10px;
  }

  input,
  button {
    width: 100%;
    font-size: 16px;
  }

  .carteira-info {
    flex-direction: column;
    gap: 5px;
  }

  .logo {
    max-width: 100px;
  }

  .logo-footer {
    max-width: 80px;
  }

  footer {
    font-size: 12px;
  }

  a.voltar {
    font-size: 14px;
  }
}