.pagamento-box {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  max-width: 420px;
  margin: 20px auto;
  font-family: "Inter", sans-serif;
}

.pagamento-box label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: #4a4a4a;
}

.pagamento-box select,
.pagamento-box input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.pagamento-box select:focus,
.pagamento-box input:focus {
  border-color: #ff9f48;
  box-shadow: 0 0 0 3px rgba(255,159,72,0.25);
  background: #fff;
}

#troco-wrap {
  margin-top: 16px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
