
/* INOVEM - Estilo Institucional */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Bai Jamjuree', sans-serif;
  background: linear-gradient(to right, #0083C9, #60A931); /* fundo institucional */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo-topo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-topo img {
  max-height: 80px;
  width: auto;
}

#app {
  width: 100%;
  max-width: 760px;
  
  margin: 10px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 61, 123, 0.08);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

h1, h2 {
  color: #003D7B;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

label {
  display: block;
  margin: 16px 0 8px;
  font-weight: 500;
  color: #003D7B;
}

input[type="text"],
input[type="date"],
select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

input[type="radio"] {
  margin-right: 10px;
  accent-color: #003D7B;
  transform: scale(1.2);
}

button {
  background-color: #003D7B;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #002244;
}

.progress {
  margin-top: 30px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 12px;
  background-color: #60A931;
  width: 0%;
  transition: width 0.3s ease;
}

.result-card {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 24px;
  border-left: 6px solid #0083C9;
  color: #1a1a1a;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 600px) {
  #app {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  



  h2 {
    font-size: 1.2rem;
  }

  label {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 1rem;
    background: #fff;
  }

  input[type="radio"] {
    transform: scale(1.4);
    margin-right: 12px;
  }

  button {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 0;
  }

  .progress {
    height: 10px;
  }
}
