/* --- Contenedor principal --- */
.planes-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #256428, #1e4f21);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 25px 25px;
}

.hero .container {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* --- Grid de planes --- */
.planes-title {
  font-size: 2rem;
  margin: 50px 0 30px;
  color: #256428;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* --- Tarjetas de planes --- */
.plan-card {
  background: #fff;
  border: 2px solid #256428;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.plan-card h3 {
  color: #256428;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.plan-card p.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #256428;
  margin: 10px 0;
}

.plan-card p {
  color: #333;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card ul li {
  margin: 8px 0;
  color: #555;
}

/* --- Botones --- */
.planes-container .btn {
  background-color: #256428;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.planes-container .btn:hover {
  background-color: #1a4a2f;
  transform: translateY(-2px);
}


.btn-secondary {
  background: transparent;
  color: #256428;
  border: 2px solid #256428;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 15px;
  margin-left: 10px;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: #256428;
  color: #fff;
}

/* --- Pasos (simulación) --- */
.step {
  display: none;
  margin-top: 30px;
}

.step.active {
  display: block;
}

/* --- Métodos de pago --- */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px auto;
  max-width: 400px;
}

.payment-card {
  background: #fff;
  border: 2px solid #256428;
  border-radius: 15px;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  color: #256428;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-card i {
  font-size: 1.2rem;
}

.payment-card:hover {
  background: #f4fdf5;
}

.payment-card.active {
  background: #256428;
  color: #fff;
}

/* --- Responsividad --- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2rem;
  }
  .planes-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 15px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .planes-title {
    font-size: 1.5rem;
  }
  .planes-grid {
    grid-template-columns: 1fr;
  }
  .btn, .btn-secondary {
    font-size: 0.9rem;
  }
}
