/* ─────────────────────────────────────────
   DR. CARLOS ALBERTO — PROCESSO
   4 passos · Timeline horizontal
   ───────────────────────────────────────── */

.processo {
  background: var(--off-white);
  padding-block: clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--border);
}

.processo__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.processo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Linha conectora */
.processo__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), var(--gold-line));
  z-index: 0;
}

.processo__step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}

.processo__step:last-child { padding-right: 0; }

.processo__step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--royal);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.processo__step:hover .processo__step-num {
  background: var(--royal);
  border-color: var(--royal);
  color: white;
  transform: scale(1.1);
}

.processo__step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.processo__step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.processo__step-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .processo__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .processo__steps::before { display: none; }
  .processo__step { padding-right: 0; }
}

@media (max-width: 560px) {
  .processo__steps { grid-template-columns: 1fr; }
  .processo__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .processo__step-num { flex-shrink: 0; }
}
