:root {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #18212f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  width: min(1100px, 92%);
  margin: 40px auto;
}

header {
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select {
  padding: 12px;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  font-size: 15px;
}

button {
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  background: #18212f;
  color: #fff;
}

button.secondary {
  margin-top: 0;
  background: #e8edf3;
  color: #18212f;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lista {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.item {
  border: 1px solid #e3e8ef;
  padding: 16px;
  border-radius: 10px;
}

.item strong {
  display: block;
  margin-bottom: 6px;
}

.item small {
  color: #647083;
}

#mensagem {
  min-height: 20px;
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
