/* Metodología: carrusel lateral con tarjeta activa centrada. */
.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 0px;
  padding-bottom: clamp(42px, 6vw, 90px);
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.process-view {
  order: 1;
  width: 100vw;
  background: #fff;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.process-view::-webkit-scrollbar { display: none; }

.process-track {
  display: flex;
  gap: 2vw;
  width: max-content;
  padding: 0 10vw;
}

.process-card {
  flex: 0 0 80vw;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(63, 63, 62, .09);
}

.process-card img {
  display: block;
  width: 100%;
  height: auto;
}

.process-tabs {
  order: 2;
  display: flex;
  width: 80vw;
  margin: 0;
  padding: 5px;
  border: 0;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}

.process-tab,
.process-tab:first-child {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  color: #767674;
  background: transparent;
  font: inherit;
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}

.process-tab.active { background: var(--yellow); color: #1b1b1b; font-weight: 800; }

@media (max-width: 800px) {
  .process { gap: 22px; padding-top: 36px; padding-bottom: 29.7px; transform: translateY(-15%); }
  .process-track { gap: 2vw; padding: 0 10vw; }
  .process-card { flex-basis: 80vw; border-radius: 12px; }
  .process-tabs { width: 80vw; }
  .process-tab, .process-tab:first-child { min-width: 0; padding: 11px 6px; font-size: .72rem; }
}
