/* =========================
   PRICING
========================= */

.pricing-section {
  padding: 100px 20px;
  background: var(--color-bg);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;

}

.pricing-header{
  display: flex;
  max-width: 600px;
  text-align: center;
  flex-direction: column;

}

.pricing-grid {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #14141b;
  border: 1px solid var(--color-title-destaque);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.pricing-card h3 {
  margin-bottom: 5px;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.price {
  margin-bottom: 25px;
}

.price .value {
  font-size: 32px;
  font-weight: bold;
}

.price .period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 5px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  font-size: 14px;
}

.full {
  width: 100%;
}

/* CARD DESTACADO */
.featured {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.05);
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured .plan-desc,
.featured .price .period {
  color: rgba(255,255,255,0.7);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: bold;
}

/* BOTÕES */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-light {
  background: #fff;
  color: #111;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-light:hover {
  opacity: 0.9;
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 400px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 15px;
  }

  .pricing-header h2 {
    font-size: 28px;
  }

  .pricing-card {
    padding: 20px;
  }
}