/* =========================================
   COMPONENT — Steps (how it works)
   ========================================= */

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-8);
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: #fff;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
  line-height: 1;
}

.step__number--warm {
  background: var(--gradient-warm);
  color: #1a0a00;
  box-shadow: 0 0 32px rgba(244, 196, 114, 0.35);
}

.step__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.step__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* Visual de contexto acima dos steps */
.how-it-works__image {
  width: 100%;
  max-width: 780px;
  margin: 0 auto var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.how-it-works__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 768px) {
  .how-it-works__image img { height: 180px; }
}
