.process-section {
  background: 
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
  url('https://plus.unsplash.com/premium_photo-1675695700399-d017e858209e?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8dGV4dHVyYSUyMGRlJTIwcGFwZWwlMjBuZWdyb3xlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
  padding: 35px;
}

/* ===== PROCESO: TÍTULO Y SUBTÍTULO ===== */
.process-title {
    text-align: center;
    font-size: 2.8rem;       /* un poco más grande para jerarquía clara */
    font-weight: 800;        /* grueso, elegante pero no excesivo */
    margin-bottom: 16px;     /* separa del subtítulo de forma consistente */
    color: #fff;
    line-height: 1.2;        /* buena legibilidad en varias líneas */
    letter-spacing: 0.5px;   /* ligeramente espaciado para elegancia */
}

.process-subtitle {
    text-align: center;
    font-size: 1.25rem;       /* proporcional al título */
    font-weight: 400;         /* ligero y moderno */
    color: #f0f0f0;           /* gris muy claro sobre fondo oscuro */
    margin-bottom: 50px;
    line-height: 1.6;         /* cómoda lectura en párrafos más largos */
    max-width: 700px;         /* ancho máximo para mejor legibilidad */
    margin-left: auto;        
    margin-right: auto;
    letter-spacing: 0.5px;    
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.timeline-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
  fill: #E67E22;
}

.timeline-content {
  margin-left: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #000;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-icon svg {
    width: 22px;
    height: 22px;
  }

  .timeline-content {
    margin-left: 20px;
  }

  .process-title {
    font-size: 2rem;
  }
}
