.plans {
  padding: 80px 0;
}

.plans__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 110px;
}

.plans__head h1 {
  color: #6B3A8E;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 10px;
}

.plans__head p {
  font-size: 33px;
  font-weight: 400;
  line-height: 39.6px;
  color: #474758;
}


/* Planos Items */
.plans__items {
  display: flex;
  justify-content: center;
  gap: 28px;
}

@media (max-width: 1185px) {
  .plans__items {
    flex-wrap: wrap;
  }
}

/* Items */
.plan__item {
  max-width: 420px;
  width: 100%;
  border: 1px solid #C9CAE8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan__item__head {
  padding: 44px 20px;
  background-color: #E7F6FC;
  border-bottom: 2px solid #C9CAE8;
  min-height: 240px;
}

.plan__item__head h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #111344;
  display: flex;
  align-items: center;
}

.plan__item__head h2 span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 14px;
  background-color: #6B3A8E;
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
}

.plan__item__head p {
  font-size: 16px;
  color: #474758;
}

.plan__item__price strong {
  font-size: 42px;
  line-height: 32px;
  color: #6B3A8E;
  font-weight: 700;
  margin-top: 15px;
  display: block;
}

.plan__item__price .item__price__text {
  font-size: 34px;
}

.plan__item__price span {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #474758;
}

.plan__item__content {
  padding: 50px 20px 30px;
  height: 100%;
}

.plan__item__content ul li::before {
  content: "●";
  font-weight: 900;
  font-size: 10px;
  margin-right: 10px;
  color: #6B3A8E;
  vertical-align: middle;
}

.plan__item__content ul li {
  font-size: 16px;
  line-height: 19px;
  color: #474758;
  margin-bottom: 8px;
}

.plan__item__content ul li:last-child {
  margin-bottom: 0;
}

.plan__item__footer {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan__item__footer a {
  display: block;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.logged-in .plans__head p {
  color: #717179;
}