#process {
  background: #ffffff;
  padding: 110px 0;
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

/* Línea de tiempo horizontal */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e4e9f2 15%, #e4e9f2 85%, transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #c9a84c, #e0bf6e);
  box-shadow: 0 0 0 8px #ffffff, 0 8px 22px rgba(201, 168, 76, 0.35);
}

.process-icon {
  font-size: 22px;
  color: #b0892f;
  margin-bottom: 14px;
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  color: #0f1f3d;
  margin-bottom: 10px;
}

.process-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #5c6a86;
  max-width: 240px;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .process-inner { max-width: 1340px; padding: 0 64px; }
}

@media (max-width: 1280px) {
  #process { padding: 90px 0; }
  .process-inner { padding: 0 40px; }
}

@media (max-width: 1024px) {
  .process-inner { padding: 0 32px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  #process { padding: 70px 0; }
  .process-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .process-inner { padding: 0 16px; }
  .process-timeline { grid-template-columns: 1fr; gap: 38px; }
}
