/* ============================================================
   NOM035.CSS — Sección NOM-035 STPS
   SINERGÍA — Centro de Desarrollo Humano Ubuntu330 — 2025
   ============================================================ */

section.nom035 {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-surface) 100%
  );
}

/* Gráfico de cumplimiento */
.nom035__chart-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-8);
  max-height: 300px;
  position: relative;
}

/* Grid de tiers: 3 columnas */
.nom035__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

/* Tarjeta de tier */
.nom035__tier {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border-top: 4px solid var(--tier-color, var(--color-gold));
  transition:
    transform var(--dur-normal) var(--ease-spring),
    box-shadow var(--dur-normal) var(--ease-in-out);
}

.nom035__tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Tamaño de empresa */
.nom035__tier-size {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--tier-color, var(--color-gold));
  margin-bottom: var(--sp-2);
  line-height: 1;
}

/* Título del tier */
.nom035__tier h3 {
  color: var(--color-text);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-3);
  font-weight: 600;
  font-family: var(--font-body);
}

/* Lista de requisitos */
.nom035__tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nom035__tier ul li {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  padding: var(--sp-1) 0;
  border-bottom: 1px solid var(--color-surface-2);
  padding-left: var(--sp-3);
  position: relative;
  line-height: 1.5;
}

.nom035__tier ul li:last-child {
  border-bottom: none;
}

.nom035__tier ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--tier-color, var(--color-gold));
  font-size: var(--fs-xs);
  top: var(--sp-1);
}

/* Aviso / advertencia */
.nom035__warning {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.nom035__warning strong {
  color: var(--color-gold);
}

/* Etiqueta de tier coloreada */
.nom035__tier--1 { --tier-color: var(--gem-kaizen); }
.nom035__tier--2 { --tier-color: var(--gem-shoshin); }
.nom035__tier--3 { --tier-color: var(--gem-kintsugi); }

/* Tooltip / badge de multa */
.nom035__penalty {
  display: inline-block;
  background: rgba(231, 76, 60, 0.15);
  color: var(--color-danger);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--sp-2);
  letter-spacing: 0.05em;
}

/* Responsive — tablet: 2 columnas + 1 */
@media (max-width: 900px) and (min-width: 600px) {
  .nom035__tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile: 1 columna */
@media (max-width: 599px) {
  .nom035__tiers {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
  }

  .nom035__tier {
    padding: var(--sp-4);
  }

  .nom035__chart-wrap {
    max-height: 220px;
    margin-bottom: var(--sp-4);
  }
}
