
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

/* TARJETA */
.plan {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICONO SUPERIOR */
.plan img:first-child {
  max-width: 80px;
  margin-bottom: 15px;
}

/* TITULO */
.plan h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXTO */
.plan p,
.plan {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* IMAGEN INFERIOR */
.plan img:last-child {
  margin-top: 15px;
  max-width: 150px;
}