.steps {
  min-height: auto;
  padding: 72px 0;
  display: block;
}

.steps-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

/* ── BADGE SEM CAIXA ─────────────────────── */
.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.8;
}

/* Tracinhos decorativos antes e depois do texto */
.steps-eyebrow::before,
.steps-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--neon);
  opacity: 0.5;
}

.steps h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* ── TIMELINE ─────────────────────────────── */
.steps-timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Coluna esquerda */
.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

/* ── ÍCONE COM NÚMERO NO CANTO ─────────── */
.timeline-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 247, 255, 0.15), rgba(0, 217, 255, 0.05));
  border: 1px solid rgba(0, 247, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(0, 247, 255, 0.22);
}

/* Número no canto superior direito do ícone */
.timeline-icon-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--bg-main);
  border: 1px solid rgba(0, 247, 255, 0.35);
  color: var(--neon);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Linha conectora */
.timeline-connector {
  width: 2px;
  flex: 1;
  min-height: 40px;
  margin-top: 8px;
  background: linear-gradient(to bottom, rgba(0, 247, 255, 0.25), rgba(0, 247, 255, 0.02));
}

/* ── CONTEÚDO ─────────────────────────── */
.timeline-content {
  flex: 1;
  min-width: 0;
  padding-top: 12px;
  padding-bottom: 16px;
}

.timeline-num { display: none; } /* removido — agora está no ícone */

.timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
  word-break: normal;
  overflow-wrap: break-word;
}

.timeline-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  word-break: normal;
  overflow-wrap: break-word;
}

.steps-end {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: #b6c3db;
}

/* MOBILE */
@media (max-width: 768px) {
  .steps { padding: 64px 0 72px; }
  .steps-heading { margin-bottom: 36px; }
  .steps h2 { font-size: clamp(22px, 7vw, 30px); }

  .timeline-item { gap: 14px; padding-bottom: 32px; }
  .timeline-left { width: 48px; }

  .timeline-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 14px;
  }

  .timeline-icon-num {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 8px;
  }

  .timeline-content { padding-top: 8px; }
  .timeline-content h3 { font-size: 15px; }
  .timeline-content p  { font-size: 13px; }
  .steps-end { margin-top: 28px; font-size: 13px; }
}