* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}

header {
  background-color: #2166a5;
  padding: 1rem 2rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.classe_body_home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.classe_alert {
  max-width: 95%;
  margin: 10px auto;
  border: none;
  height: auto;
  display: block;
  clear: both;
}

.classe_logo {
  max-width: 40%;
  margin: 15px auto;
}

.nav-link {
  color: white !important;
  /* Mantém o texto branco */
  transition: color 0.3s ease;
  /* Efeito suave na mudança de cor */
  text-decoration: none;
  /* Remove sublinhado por padrão */
}

.alert-box {
  background-color: #f0f2f5;
  border-left: 5px solid #28a745;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 6px;
}

.alert-box h2 {
  color: #28a745;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  background-color: #e6f0ff;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
}

.banner .text {
  flex: 1;
  padding: 2rem;
}

.banner .text h3 {
  color: #0d3a78;
  margin-bottom: 1rem;
}

.banner .text p {
  font-size: 1rem;
  color: #333;
}

.banner .image {
  flex: 1;
  min-width: 300px;
}

.banner .image img {
  width: 100%;
  height: auto;
}

.cpf-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.cpf-box input {
  padding: 0.5rem;
  font-size: 1rem;
  width: 250px;
  margin-right: 0.5rem;
}

.cpf-box button {
  padding: 0.6rem 1rem;
  background-color: #2166a5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}