/* ============================================
   SERVICES
   ============================================ */

#servicios {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg2);
  padding: 2.5rem;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--bg3);
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 20px;
}

.service-icon i,
.contact-detail-icon i {
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ============================================
   PRICING
   ============================================ */

#precios {
  background: var(--bg2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0, 229, 192, 0.4);
}

.pricing-card.featured {
  border-color: var(--accent);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--accent);
  color: #080c10;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.pricing-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
