/*
 * nosotros.css — Premium Industrial Company Page
 * Isolated styles: all emp-* selectors. Uses existing CSS variables only.
 */

/* ============================================================
   1. CORPORATE HERO
   ============================================================ */
.emp-hero {
  background:
    linear-gradient(
      to right,
      rgba(0, 12, 40, 0.75) 0%,
      rgba(0, 20, 60, 0.3) 50%,
      rgba(0, 12, 40, 0.75) 100%
    ),
    url('../../img/images/forli-branding.png') 30% center / cover no-repeat;
   height: 30rem;
}

.emp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: center;
  padding: 7.5rem 0rem;
}

.emp-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-300);
  margin-bottom: 12px;
}

.emp-hero-title {
  font-family: var(--font-c);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.emp-hero-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}

/* KPI grid */
.emp-hero-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.emp-kpi {
  background: rgba(255,255,255,.06);
  padding: 20px 18px;
  transition: background .2s;
}
.emp-kpi:hover { background: rgba(255,255,255,.1); }

.emp-kpi-val {
  font-family: var(--font-c);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.emp-kpi-lbl {
  font-size: .7rem;
  font-weight: 600;
  color: var(--c-100);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* ============================================================
   SHARED — Section wrapper + heading
   ============================================================ */
.emp-section { padding: 52px 0; }
.emp-section--alt { background: var(--c-50); }

.emp-sh {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.emp-sh h2 {
  color: var(--c-900);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.emp-rule { flex: 1; height: 1.5px; background: var(--c-200); border-radius: 1px; }

/* ============================================================
   2. MISSION / VISION / QUALITY
   ============================================================ */
.emp-mvq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.emp-mvq-card {
  background: #fff;
  border: 1.5px solid var(--c-100);
  border-top: 3px solid var(--c-700);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 22px 22px 20px;
  transition: box-shadow .2s, border-top-color .2s;
}
.emp-mvq-card:hover {
  box-shadow: var(--sh-lg);
  border-top-color: var(--c-500);
}

.emp-mvq-icon {
  width: 38px;
  height: 38px;
  background: var(--c-50);
  border: 1.5px solid var(--c-100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-700);
  margin-bottom: 14px;
}

.emp-mvq-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-900);
  margin-bottom: 10px;
}

.emp-mvq-text {
  font-size: .82rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.emp-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.emp-cert-tag {
  background: var(--c-700);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-xs);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============================================================
   3. INDUSTRIAL CAPABILITIES
   ============================================================ */
.emp-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.emp-cap-block {
  background: #fff;
  border: 1.5px solid var(--c-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .2s;
}
.emp-cap-block:hover { box-shadow: var(--sh-lg); }

.emp-cap-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.emp-cap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.emp-cap-block:hover .emp-cap-img-wrap img { transform: scale(1.04); }

.emp-cap-body {
  padding: 18px 20px 20px;
  border-top: 1.5px solid var(--c-100);
}

.emp-cap-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-600);
  margin-bottom: 8px;
}

.emp-cap-body p {
  font-size: .82rem;
  color: #475569;
  line-height: 1.7;
}

/* ============================================================
   4. INDUSTRIAL TIMELINE
   ============================================================ */
.emp-tl {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
}

.emp-tl-item { display: flex; gap: 16px; }

.emp-tl-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 48px;
  flex-shrink: 0;
}

.emp-tl-yr {
  background: var(--c-700);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 7px;
  border-radius: var(--r-xs);
  white-space: nowrap;
  flex-shrink: 0;
}

.emp-tl-line {
  flex: 1;
  width: 2px;
  background: var(--c-200);
  margin-top: 6px;
}

.emp-tl-right {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 28px;
}

.emp-tl-dot {
  width: 10px;
  height: 10px;
  background: var(--c-600);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--c-200);
  flex-shrink: 0;
  margin-top: 4px;
}

.emp-tl-right p {
  font-size: .875rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.55;
}

.emp-tl-item:last-child .emp-tl-line { display: none; }
.emp-tl-item:last-child .emp-tl-right { padding-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .emp-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 2.5rem 0rem; }
  .emp-hero-desc  { max-width: 100%; }
  .emp-hero-kpis  { max-width: 400px; }
}

@media (max-width: 840px) {
  .emp-hero-title  { font-size: 1.85rem; }
  .emp-mvq-grid    { grid-template-columns: 1fr; gap: 12px; }
  .emp-cap-grid    { grid-template-columns: 1fr; gap: 14px; }
  .emp-hero-kpis   { max-width: 100%; }
}

@media (max-width: 600px) {
  .emp-hero-inner {padding: 1rem 0rem; }
  .emp-mvq-grid { grid-template-columns: 1fr; }
  .emp-cap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .emp-hero-inner {padding: 0.2rem 0rem; }
  .emp-hero-title { font-size: 1.55rem; }
  .emp-section    { padding: 36px 0; }
  .emp-kpi-val    { font-size: 1.25rem; }
  .emp-tl-left    { width: 42px; }
}
