.container-ajuda-tryon {
  position: absolute;
  background-color: white;
  border-radius: 8px;
  max-width: 350px;
  bottom: -480px;
  transition: 0.5s bottom;
  overflow: hidden;
}

.container-ajuda-tryon > div {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  max-height: 250px;
  overflow-y: scroll;
}

.container-ajuda-tryon > button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  background-color: white;
  border: none;
  outline: none;
  cursor: pointer;

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

.container-ajuda-tryon > div > h2 {
  line-height: 120%;
  margin: 0 0 8px 0;
  color: #38437A;
  font-size: 21px;
  font-weight: 600;
}

  .container-ajuda-tryon > div > div {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background-color: #FAFAFA;
}

.container-ajuda-tryon > div > div > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 50%;

  background-color: #CDE6FF;
}

.container-ajuda-tryon > div > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.container-ajuda-tryon > div > div > div:nth-child(2) > h3 {
  line-height: 120%;
  margin: 0;
  color: #38437A;
  font-size: 18px;
  font-weight: 600;
}

.container-ajuda-tryon > div > div > div:nth-child(2) > p {
  line-height: 120%;
  margin: 0;
  color: #38437A;
  font-size: 14px;
}

.container-ajuda-tryon > div > p {
  padding: 17px;
  line-height: 120%;
  margin: 8px 0 0 0;
  color: #38437A;
  font-size: 14px;
  background-color: #EFF6FF;
  border: 1px solid #CDE6FF;
  border-radius: 8px;
}

.container-ajuda-tryon > div > p > strong {
  font-weight: 600;
}

