/* planes.css */
.planes-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 40px;
}

.planes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.plan-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-popular {
  border-color: #3182ce;
  box-shadow: 0 6px 20px rgba(49, 130, 206, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3182ce;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin: 16px 0 12px;
  text-align: center;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a365d;
  text-align: center;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #718096;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  line-height: 1.6;
}

.plan-features li {
  padding: 6px 0;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-plan {
  background: #edf2f7;
  color: #2d3748;
}

.btn-plan:hover {
  background: #e2e8f0;
}

.btn-plan.btn-primary {
  background: #3182ce;
  color: white;
}

.btn-plan.btn-primary:hover {
  background: #2c5282;
}

/* Responsive */
@media (max-width: 768px) {
  .planes-grid {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .plan-price {
    font-size: 1.6rem;
  }
}

.btn-plan.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-plan.btn-whatsapp:hover {
  background: #128C7E;
}