.precios { background: var(--bg-main); }

.precios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.precio-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
}
.precio-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(44,18,0,0.08); }

.precio-card--popular {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(255,107,0,0.15);
}

.precio-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--text-on-orange);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.precio-card__plan {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.precio-card__price {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.precio-card__price sup { font-size: 20px; font-weight: 400; vertical-align: top; margin-top: 8px; display: inline-block; }

.precio-card__period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.precio-card__contacts {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.precio-card__contacts strong { color: var(--orange); }

.precio-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.precio-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.45;
}
.precio-card__feature .ck { color: var(--orange); flex-shrink: 0; margin-top: 1px; font-size: 13px; }

.precio-card__cta { width: 100%; justify-content: center; margin-top: auto; }

/* In-house card */
.precio-card--inhouse {
  border-style: dashed;
  background: var(--bg-tertiary);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  grid-column: 1 / -1;
}
.precio-card--inhouse .precio-card__price { font-size: 36px; }
.precio-card--inhouse .precio-card__period { margin-bottom: 0; }

/* Includes banner */
.precios__includes {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.precios__includes-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.precios__includes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
}
.precios__includes-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  color: var(--text-body);
}
.precios__includes-item .ck { color: var(--orange); }

.precios__nota {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .precios-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .precio-card--popular { order: -1; }
  .precio-card--inhouse {
    grid-column: auto;
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .precios-grid + .precio-card--inhouse { margin-top: 0; }
}
