/* Contenedor general */
.container {
  width: 98%;
  max-width: 1280px;
  margin: auto;
  padding: 20px;
}

/* Cuadrícula de servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  margin: auto;
  padding: 20px 0;
}

/* Tarjeta de servicio */
.service-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Imagen del servicio */
.servicio-img {
  width: 100%;
  height: 170px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Título del servicio */
.service-card h3 {
  font-size: 1em;
  margin: 10px 0;
  color: #111;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}

/* Descripción del servicio */
.service-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: justify;
}

/* Título principal */
.page-title {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #212529;
  font-weight: 700;
}

img {
  pointer-events: none; /* evita interacción */
  user-select: none;
}