
.psp-box {
  font-family: sans-serif;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  max-width: 400px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.psp-header {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  gap: 10px;
}
.psp-header img {
  height: 24px;
}
.psp-header .toggle-text {
  margin-left: auto;
  font-weight: bold;
}
.psp-body {
  display: none;
  padding: 10px;
  border-top: 1px solid #eee;
}
.psp-body.show {
  display: block;
}
.psp-parcelas {
  list-style: none;
  margin: 0;
  padding: 0;
}
.psp-parcelas li {
  padding: 5px 0;
}
.psp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #eee;
}
.psp-footer img {
  height: 20px;
}
@media(max-width: 480px) {
  .psp-box {
    font-size: 14px;
  }
}
