/* ---------------------------------------------
Pricing plans (SistemaFacil)
--------------------------------------------- */

.pricing-section {
  padding: 100px 0 120px;
}

.pricing-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section .section-heading p {
  margin-left: 12%;
  margin-right: 12%;
}

/* Launch banner */
.launch-banner {
  max-width: 720px;
  margin: 0 auto 40px;
  background: #fff4e5;
  border: 1px solid #ffd9a0;
  color: #8a5a00;
  border-radius: 40px;
  padding: 12px 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.launch-banner i {
  color: #ff9800;
  margin-right: 8px;
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.billing-toggle .opt {
  font-size: 15px;
  font-weight: 500;
  color: #9a9a9a;
  transition: color .3s;
}

.billing-toggle .opt.active {
  color: #2a2a2a;
  font-weight: 700;
}

.billing-toggle .save-tag {
  display: inline-block;
  background: #e7f7ec;
  color: #1e9e4d;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

.billing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.billing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #d7d7d7;
  transition: .3s;
  border-radius: 28px;
}

.billing-toggle .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.billing-toggle input:checked + .slider {
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
}

.billing-toggle input:checked + .slider:before {
  transform: translateX(24px);
}

/* Cards */
.plans-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.plan-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.06);
  padding: 40px 32px;
  margin-top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 40px rgba(0,0,0,0.1);
}

.plan-card.featured {
  border: 2px solid #4b8ef1;
  box-shadow: 0px 16px 45px rgba(75,142,241,0.22);
  transform: scale(1.04);
  z-index: 2;
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.plan-card.upcoming {
  background: #fbfbfd;
}

.plan-badge {
  display: inline-block;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.plan-badge.launch {
  background: #fff0e0;
  color: #d17a00;
}

.plan-badge.popular {
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
  color: #fff;
}

.plan-badge.upcoming-badge {
  background: #eee;
  color: #555;
}

.plan-name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.plan-desc {
  text-align: center;
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 24px;
  min-height: 42px;
}

.plan-price {
  text-align: center;
  margin-bottom: 6px;
}

.price-old {
  display: block;
  font-size: 16px;
  color: #b3b3b3;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-new {
  font-size: 44px;
  font-weight: 900;
  color: #2a2a2a;
}

.price-period {
  display: block;
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 2px;
}

.price-tax-note {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #a0a0a0;
  margin-bottom: 6px;
}

.price-annual-note {
  display: none;
  text-align: center;
  font-size: 12px;
  color: #4b8ef1;
  font-weight: 500;
  margin-bottom: 18px;
}

.plan-card hr {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 18px 0;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 26px;
}

.plan-features li {
  font-size: 14.5px;
  color: #3a3a3a;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li i {
  margin-top: 3px;
  font-size: 13px;
}

.plan-features li i.fa-check {
  color: #1e9e4d;
}

.plan-features li.not-included {
  color: #b3b3b3;
}

.plan-features li.not-included i.fa-times {
  color: #d3872f;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s;
  background: #fff;
  border: 1px solid #4b8ef1;
  color: #4b8ef1 !important;
}

.plan-card.featured .plan-cta {
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
  color: #fff !important;
  border: none;
}

.plan-cta:hover {
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
  color: #fff !important;
}

.plan-guarantee {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #a0a0a0;
  margin-top: 12px;
}

/* Footnote */
.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #8a8a8a;
}

.pricing-footnote i {
  color: #1e9e4d;
  margin: 0 4px 0 14px;
}

.pricing-footnote i:first-child {
  margin-left: 0;
}

/* Demo CTA */
.demo-cta {
  text-align: center;
  margin-top: 70px;
  padding: 50px 20px;
  border-radius: 30px;
  background: #f7f9ff;
}

.demo-cta h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.demo-cta p {
  margin-bottom: 26px;
}

.demo-cta .plan-cta {
  display: inline-block;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 34px;
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
  color: #fff !important;
  border: none;
}

@media (max-width: 991px) {
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-6px);
  }
}
