:root {
  --brand: #0b7aa5;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e9ecef;
  --bg: #f8fafc;
}

body {
  color: var(--ink);
}
.header .navbar-brand img {
  object-fit: contain;
}

/* Hero básico y moderno */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* Card minimal */
.card-lite {
  border-radius: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card-lite:hover {
  transform: translateY(-2px);
  border-color: #dbe3ea;
}

/* Icono cuadrado simple */
.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  color: var(--brand);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Lista simple con checks */
.svc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--line);
}
.svc-list li:last-child {
  border-bottom: 0;
}
.svc-list i {
  color: var(--brand);
  margin-top: 0.1rem;
}

/* Textos secundarios */
.text-secondary {
  color: var(--muted) !important;
}
