/* ==================
   NUEVO: Estilos Página "Ingeniería"
   ================== */

/* Cajas de Servicio (3 columnas) */
.service-icon-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 0; /* Cuadrado */
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.service-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-icon-box .icon {
  font-size: 3rem;
  color: var(--pzm-accent); /* Color Ámbar */
  margin-bottom: 1rem;
}
.service-icon-box .title {
  font-family: 'Abel', sans-serif;
  font-size: 1.5rem;
  color: var(--pzm-primary);
  margin-bottom: 0.5rem;
}
.service-icon-box .description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--pzm-muted);
  line-height: 1.6;
}

/* NOTA: Los estilos para:
   - .page-header-nosotros
   - .section-metrics-solmex
   - .section-cta-banner
   ...ya deberían estar en tu CSS por la página "Nosotros".
   Si no, avísame y te los paso de nuevo.
*/