/* GRID CONTROLADO */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.servicio-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #059669;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: all .25s ease;
  cursor: pointer;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* ICONO */
.servicio-card .icono {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

/* TITULO */
.servicio-card h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

/* TEXTO */
.servicio-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
}

/* BADGE */
.servicio-card .badge {
  display: inline-block;
  margin: 12px auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #f3f4f6;
  color: #374151;
}

/* FOOTER */
.servicio-card .footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
}
