/* ----------- PLANES / PRICING ----------- */
.pricing {
  text-align: center;
  padding: 80px 20px;
  background: #f8f9fa;
}

.pricing h2.section-title {
  color: #198754;
}

.pricing .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Caja principal con borde degradado */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  background: #fff;
  border-radius: 1.2rem;
  padding: 40px;
  border: 3px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: 
    linear-gradient(#fff, #fff), 
    linear-gradient(135deg, #6fb9ff, #6c63ff);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Tarjetas de planes */
.pricing-card {
  background: #ffffffcc;
  border-radius: 1rem;
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 330px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: fadeInUpBox 0.8s ease forwards;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 10px;
}

.pricing-card .plan-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 1.9rem;
  font-weight: bold;
  color: #198754;
  margin-bottom: 8px;
}

.pricing-card .annual {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #333;
}

/* Botón */
.btn-pricing {
  display: inline-block;
  background: #198754;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-pricing:hover {
  background: #145c32;
  text-decoration: none;
  color: #fff;
}

/* Plan destacado */
.pricing-card.destacado {
  border: 2px solid #198754;
  transform: scale(1.05);
}

.pricing-card .badge {
  background: #198754;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 1rem;
  position: absolute;
  top: 15px;
  right: 15px;
}
