/* ================== Base ================== */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
}

p {
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px;
}

.linha-unica {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}


/* ================== Estrutura / Layout ================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
  box-sizing: border-box;
}


/* ================== Header ================== */
header {
  background: #fff;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

header img {
  height: 65px;
  width: auto;
}


/* ================== Textos e Títulos ================== */
.subtitulo {
  color: #000;
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}

.texto_azul {
  color: #005E9E;
  font-size: 13px;
  text-align: left;
}

.texto_cinza_italico {
  color: #727171;
  font-size: 13px;
  text-align: left;
  font-style: italic;
}

.texto_vermelho {
  color: #FF0000;
  font-size: 13px;
  text-align: left;
}

.titulo {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.titulo_cinza {
  color: #424742;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

.titulo_nome {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}
/*



.titulo_nome {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.titulo_pergunta {
  color: #000;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}






*/


/* ================== Links ================== */
.link {
  color: #005E9E;
  text-decoration: none;
  font-weight: bold;
}

.link:hover {
  color: #000000;
}

.link:active {
  color: #CCCCCC;
}

/* ================== Formulários / Mensagens ================== */
.mensagem_validacao {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: red;
  width: 100%;
  background-color: #FAE8E8 !important;
  display: flex;
  box-sizing: border-box;
  line-height: 1.3;
  padding: 5px 10px;
  margin-top: 5px;
  min-height: 20px;
}

.mensagem_vazio {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: red;
  display: block;
  margin-bottom: 0.9em;
}

.vazio {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: black;
  width: 100%;
  background-color: #FAE8E8 !important;
  display: flex;
  box-sizing: border-box;
  padding-left: 3px;
}


/* ================== Botões ================== */
.botao {
  display: inline-block;
  width: 100px;
  height: 30px;
  padding: 6px 0;
  margin-top: 5px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: bold;
  background-color: #005E9E;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.botao:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.botao:hover {
  background-color: #2E86C1;
}

/* ================== Media Queries ================== */
@media (max-width: 480px) {
  .card-nome {
    padding: 12px 15px;
    font-size: 14px;
  }
}


/*Cartão*/
.campo-cartao
{
	display: flex;
	align-items: center;
	gap: 10px;
}

#ExibirBandeira img
{
	height: 28px;
}