/* camada1.css — Mapa da Jornada (subway map) */

.c1-hero {
  padding: 80px 40px 32px;
  max-width: 1560px; margin: 0 auto;
}
.c1-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}
.c1-hero-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.c1-hero-kpi .n {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px; color: #E89A4A;
  line-height: 1;
  letter-spacing: -0.02em;
}
.c1-hero-kpi .l {
  font-size: 11px; color: #7a7a7a;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 8px;
}

/* Subway map */
.c1-subway {
  padding: 24px 40px 80px;
  max-width: 1560px; margin: 0 auto;
}
.c1-subway-legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c1-subway-legend .item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #b0b0b0;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.c1-subway-legend .swatch {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.c1-subway-legend .line {
  width: 28px; height: 3px; border-radius: 2px;
}

/* SVG map */
.c1-map {
  width: 100%;
  overflow: visible;
}

/* Card explanations below map */
.c1-phases-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c1-phase-card {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  min-height: 180px;
  position: relative;
}
.c1-phase-card:last-child { border-right: 0; }
.c1-phase-card.critical { background: rgba(232,154,74,0.04); }
.c1-phase-card .code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: #E89A4A;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.c1-phase-card .code .star { color: #E89A4A; font-size: 14px; }
.c1-phase-card .name {
  font-size: 15px; color: #e8e6e2; font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.c1-phase-card .days {
  font-size: 11px; color: #7a7a7a;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.c1-phase-card .desc {
  font-size: 12px; color: #8a8a8a; line-height: 1.5;
}

/* Transitions table */
.c1-trans {
  padding: 80px 40px;
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 64px;
}
.c1-trans-head h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 32px; letter-spacing: -0.02em;
  font-weight: 400; margin: 0 0 14px;
}
.c1-trans-head p {
  font-size: 14px; color: #b0b0b0; line-height: 1.55; margin: 0;
}
.c1-trans-list {
  display: flex; flex-direction: column; gap: 2px;
}
.c1-trans-row {
  display: grid;
  grid-template-columns: 100px 1fr 160px 160px;
  gap: 20px;
  padding: 22px 18px;
  border-radius: 10px;
  background: #141414;
  align-items: center;
}
.c1-trans-row.critical { background: rgba(232,154,74,0.06); border: 1px solid rgba(232,154,74,0.22); }
.c1-trans-row .step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; color: #E89A4A;
  letter-spacing: 0.04em;
}
.c1-trans-row .title {
  font-size: 15px; color: #e8e6e2; font-weight: 500;
  margin-bottom: 4px;
}
.c1-trans-row .sub {
  font-size: 12px; color: #8a8a8a;
}
.c1-trans-row .what {
  font-size: 12px; color: #b0b0b0; line-height: 1.5;
}
.c1-trans-row .celeb {
  font-size: 11px;
  color: #7a7a7a;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.c1-trans-row .celeb b { color: #4CAF50; font-weight: 600; }
