/* ==========================================================================
   services.css — Servicios adicionales
   ========================================================================== */

.services__header {
  max-width: var(--max-width-text);
  margin-bottom: var(--space-12);
}

.services__title {
  font-size: var(--text-d2);
  margin-bottom: var(--space-4);
}

.services__subtitle {
  color: var(--ink-2);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Tarjeta de servicio --- */
.service-card {
  --service-card-pad: var(--space-8);

  padding: var(--service-card-pad);
  background-color: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-float);
  border-color: var(--accent);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.service-card__title {
  font-size: var(--text-h3);
  font-weight: var(--weight-display);
  color: var(--ink);
}

.service-card__description {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: var(--leading-body);
  flex: 1;
  max-width: none;
}

.service-card__note {
  font-size: var(--text-caption);
  color: var(--green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-card__note::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
  flex-shrink: 0;
}
