
/* Sección de Precios */
.precios {
  padding: 50px 20px;
  background: var(--b-a10);
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Tarjetas de precio */
.price-card {
  background: var(--t-a10);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.price-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--light);
}

.price-card .price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--p-a10);
  display: block;
}

.price-card .old-price {
  font-size: 22px;
  color: var(--t-a30);
  text-decoration: line-through;
  display: block;
  margin-bottom: -5px;
}

/* Lista de ventajas */
.price-card .features {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
  align-self: flex-start;
}

.price-card .features li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.price-card .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p-a20);
}

/* Botón de contratación */
.price-card .button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--p-a30);
  color: var(--light);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.price-card .button:hover {
  background: var(--p-a10);
  transform: scale(1.05);
}

/* Destacar el plan resaltado (central) */
.price-card.resaltado {
  background: var(--t-a0);
  border: 2px solid var(--p-a0);
  transform: scale(1.05);
  z-index: 1;
}

.price-card.resaltado .price {
  color: var(--p-a0);
}
