 .plans {
  padding: 80px 8%;
  background: #020617;
  text-align: center;
}

.plans h2 {
  font-size: 2.5rem;
}

.plans .subtitle {
  color: #94a3b8;
  margin-bottom: 50px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.plan-card {
  background: #0f172a;
  padding: 40px 25px;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
  border: 1px solid transparent;
}

.plan-card h3 {
  font-size: 1.5rem;
}

.plan-card h4 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.price {
  margin: 15px 0;
  font-size: 0.75rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
}

.plan-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: left;
}

.plan-card li {
  margin-bottom: 10px;
  color: #94a3b8;
}

.btn-plan {
  display: inline-block;
  padding: 12px 20px;
  background: #38bdf8;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Hover */
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.2);
}

/* Premium destacado */
.premium {
  border: 1px solid #22c55e;
  transform: scale(1.05);
}
.premium .price {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}
.badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #22c55e;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .premium {
    transform: scale(1);
  }
}