/* ===== Sección Process Minimal ===== */
.process-section {
  padding: 40px 20px;
  background: #f7f8fa;
  text-align: center;
}

.process-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 900;
}

.process-subtitle {

  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  margin:auto auto 28px auto;
  color: #555;
  line-height: 1.6;
  font-weight: 600;
  max-width: 50%;
}

/* ===== Wrapper: Imagen + Timeline ===== */
.process-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  align-items: stretch; /* fuerza que hijos tengan misma altura */
  justify-content: center;
  min-height: 500px; /* asegura altura mínima de la sección */
}

/* Imagen lateral */
.process-image {
  flex: 1; /* ancho fijo de la imagen */
  height: 100%;    /* ocupa toda la altura del wrapper */
}

.process-image img {
  width: 500px;
  height: 650px;       /* fuerza altura completa */
  object-fit: cover;  /* mantiene proporción, recorta si es necesario */
  border-radius: 12px;
}

/* Timeline */
.timeline {
  flex: 1;
  width: 100%;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

/* Timeline items full width */
.timeline-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  position: relative;
}

/* Icono */
.timeline-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #E67E22;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-icon svg {
  width: 22px;
  height: 22px;
  fill: #E67E22;
}

/* Contenido */
.timeline-content {
  flex: 1;
  margin-left: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  min-width: 0;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-image {
    display: none; /* desaparece en pantallas chicas */
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-content {
    margin-left: 15px;
    padding: 12px 15px;
  }

  .process-title {
    font-size: 1.7rem;
  }

  .process-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin-bottom: 30px;
  }
}
