* {
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #e6ddd6;
  color: #1f1f1f;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}


.container {
  width: 100%;
  max-width: 520px;
  background: #dfd5cd;

  padding: 32px;
  border-radius: 20px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
}


header {
  text-align: center;
  margin-bottom: 24px;
}

header h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

header p {
  font-size: 14px;
  color: #555;
}


.input-area {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.input-area input {
  flex: 1;
  padding: 12px 14px;

  border-radius: 12px;
  border: 1px solid #c4bab2;

  font-size: 14px;
}

.input-area input:focus {
  outline: none;
  border-color: #2b2b2b;
}


.input-area button {
  padding: 12px 18px;

  border-radius: 12px;
  border: none;

  background: #2b2b2b;
  color: white;

  font-size: 14px;
  cursor: pointer;

  transition: background 0.15s, transform 0.15s;
}

.input-area button:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}


#resultados p {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #eee5de;
  padding: 12px 14px;
  border-radius: 12px;

  margin-bottom: 10px;
  font-size: 14px;
}


#resultados button {
  border: none;
  background: transparent;

  color: #b91c1c;
  font-size: 13px;
  cursor: pointer;
}

#resultados button:hover {
  text-decoration: underline;
}

* {
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #e6ddd6;
  color: #1f1f1f;

  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  width: 100%;
  max-width: 520px;
  background: #dfd5cd;

  padding: 32px;
  border-radius: 20px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
}


header {
  text-align: center;
  margin-bottom: 24px;
}

header h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

header p {
  font-size: 14px;
  color: #555;
}


.input-area {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.input-area input {
  flex: 1;
  padding: 12px 14px;

  border-radius: 12px;
  border: 1px solid #c4bab2;

  font-size: 14px;
}

.input-area input:focus {
  outline: none;
  border-color: #2b2b2b;
}


.input-area button {
  padding: 12px 18px;

  border-radius: 12px;
  border: none;

  background: #2b2b2b;
  color: white;

  font-size: 14px;
  cursor: pointer;

  transition: background 0.15s, transform 0.15s;
}

.input-area button:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}


#resultados p {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #eee5de;
  padding: 12px 14px;
  border-radius: 12px;

  margin-bottom: 10px;
  font-size: 14px;
}


#resultados button {
  border: none;
  background: transparent;

  color: #b91c1c;
  font-size: 13px;
  cursor: pointer;
}

#resultados button:hover {
  text-decoration: underline;
}

#resultados {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

#mensagem {
  margin-top: 12px;
  padding: 10px 12px;

  font-size: 13px;
  color: #7a1f1f;              
  background: #f1dede;         

  border-radius: 10px;
  border: 1px solid #e3bcbc;

  display: none;         
}


