:root {
  --cor-laranja: #f57c00;
  --cor-fundo: #F8F7F6;
  --cor-texto: #333333;
  --cor-borda: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  padding: 16px;
}

.cabecalho {
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: space-between;
  justify-self: center;
  align-items: center;
  margin-bottom: 24px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.icone-logo {
  background-color: var(--cor-laranja);
  color: white;
  padding: 2px 2px 4px 14px;
  border-radius: 4px;
  margin-right: 4px;
  transform: rotate(10deg);
}

.texto-logo {
  color: var(--cor-texto);
}

.icone-perfil {
  border-radius: 50%;
  background: #E5E7EB;
}

.fa-user {
  padding: 12px;
  color: #68707E;
}

.conteudo {
  width: 100%;
  max-width: 460px;
  justify-self: center;
}

.saldo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.titulo-saldo {
  font-size: 18px;
  margin-bottom: 8px;
}

.valor-saldo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.info-conta {
  font-size: 14px;
  color: #777;
}

.transacoes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

button {
  font-family: "Inter", sans-serif;
  border: none;
  cursor: pointer;
}

.campo-valor {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  border: 2px solid var(--cor-borda);
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Inter", sans-serif;
  caret-color: var(--cor-laranja);
}

.campo-valor:focus {
  outline: none;
  border-color: var(--cor-laranja);
  font-family: "Inter", sans-serif;
}

.botoes {
  width: 100%;
  display: flex;
  gap: 16px;
}

.botao {
  width: 100%;
  display: flex;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  justify-content: center;
}

.sacar {
  background-color: white;
  color: var(--cor-texto);
  border: none;
}

.depositar {
  background-color: var(--cor-laranja);
  color: white;
}

span.logo-original {
  display: inline-block; /* ou block */
  transform: rotate(-10deg);
}


.sacando-dinheiro {
  display: flex;
  justify-self: center;
  margin-top: 60px;
  width: 100%;
  max-width: 390px;
  box-sizing: border-box;
}

.moeda-valor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fa-coins {
  font-size: 22px;
  color: var(--cor-laranja);
}

#avisos {
  margin: 0 0 20px 0;
}

#avisos:empty {
  margin: 0; /* remove a margem se não houver conteúdo */
}


