.jr-simulador-credito {
  padding: 40px 20px;
  font-family: inherit;
}

.jr-simulador-credito__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.jr-simulador-credito__left {
  padding: 10px;
}

.jr-field {
  margin-bottom: 24px;
}

.jr-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #6b7280;
  font-size: 18px;
}

.jr-input,
.jr-select {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 28px;
  color: #9ca3af;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}

.jr-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 4px), calc(100% - 16px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  font-size: 18px !important;
}

.jr-input--readonly {
  background: #fff;
  color: #6b7dbf;
  font-weight: 700;
}

.jr-field small {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
}

.jr-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.jr-btn {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 6px;
  background: #304c93;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.jr-simulador-credito__right {
  display: flex;
  justify-content: center;
}

.jr-card {
  width: 100%;
  min-height: 430px;
  background: #fff;
  border-radius: 26px;
  padding: 36px 30px 26px;
  border: 2px solid #d7b56d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jr-card__title {
  font-size: 40px;
  text-align: center;
  color: #1f3a8a;
  margin: 0 0 26px;
}

.jr-resultado {
  text-align: center;
  margin-bottom: 24px;
}

.jr-resultado__valor {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #b8860b, #ffd54d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jr-resultado__texto {
  color: #6b7280;
  font-size: 15px;
}

.jr-nota {
  width: 100%;
  color: #6b7280;
  font-size: 12px;
  text-align: center;
  padding-top: 40px;
}

@media (max-width: 992px) {
  .jr-simulador-credito__wrap {
    grid-template-columns: 1fr;
  }

  .jr-card__title {
    font-size: 32px;
  }

  .jr-grid-2 {
    grid-template-columns: 1fr;
  }

  .jr-resultado__valor {
    font-size: 42px;
  }
}