/* ============================================================
   CÓMO PEDIR SECTION
============================================================ */
.how-to {
  background: var(--color-bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-to::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 14, 145, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-to__steps {
  display: flex;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
  padding: 32px 28px;
  background: rgba(196, 14, 145, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin: 0 8px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
  text-align: center;
}

.step:hover {
  border-color: rgba(196, 14, 145, 0.45);
  box-shadow: 0 0 24px rgba(196, 14, 145, 0.12);
}

/* Dashed connector line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 42px;
  left: 68%;
  width: 32%;
  height: 2px;
  border-top: 2px dashed rgba(196, 14, 145, 0.3);
  pointer-events: none;
  z-index: 1;
}

.step__number-bg {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4.5rem;
  color: rgba(196, 14, 145, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-accent);
  background: rgba(196, 14, 145, 0.08);
  position: relative;
  z-index: 2;
}

.step__icon {
  margin-bottom: 12px;
}

.step__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto;
}

.step__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.step__text strong {
  color: var(--color-text-primary);
}
