/* =========================
   PROCESO PAGE STYLES
========================= */

/* Hero */
#proceso-hero {
  text-align: center;
  padding: 120px 20px;
}

#proceso-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

#proceso-hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

/* Pasos del proceso */
.process-steps {
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: left;
  position: relative;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-top: 15px;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.step ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text);
}

/* Beneficios */
.benefits {
  padding: 80px 20px;
  align-items: center;
}

.benefits ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.benefits li i {
  color: var(--primary);
  margin-right: 8px;
}

/* Resultados */
.results-grid {
  gap: 2rem;
  margin-top: 2rem;
}

.result-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.result-item:hover {
  transform: translateY(-6px);
}

.result-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

/* CTA final */
.cta {
  text-align: center;
  padding: 100px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #f5f5f5;
}

.cta .btn {
  background: #fff;
  color: var(--primary);
  font-weight: bold;
}
