/* Estilos específicos da área de planos (pricing) */

.plans.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 2rem 0;
  align-items: stretch;
  justify-items: stretch;
}

.plans.pricing .plan {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  color: #0f172a;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plans.pricing .plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.12);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #0f172a;
  background: #e2e8f0;
  padding: 6px 10px;
  border-radius: 999px;
}

.badge-ouro {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #1f2937;
}

.badge-diamante {
  background: linear-gradient(135deg, #bae6fd, #60a5fa);
  color: #0b1220;
}

.badge-rubi {
  background: linear-gradient(135deg, #fecaca, #f87171);
  color: #0b1220;
}

.plans.pricing .plan h3 {
  margin: 0 0 8px 0;
  padding: 0;
  background: none;
  color: #0f172a;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.35;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 12px;
}

.plan-price .setup {
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
}

.plan-price .monthly {
  font-size: 1.1rem;
  color: #1e3a8a;
  font-weight: 700;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}

.plan ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.25;
}

.plan ul li i {
  color: #22c55e;
  margin-top: 1px;
  min-width: 16px;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: #22c55e;
  padding: 12px 16px;
  border-radius: 10px;
  transition: transform 0.25s ease, background 0.25s ease;
  margin-top: auto;
}

.plan-cta:hover {
  transform: translateY(-2px);
  background: #16a34a;
}

.plan-note {
  font-size: 0.8rem;
  color: #334155;
  opacity: 0.9;
  margin-top: 10px;
}