<style>
/* ======= SECTION SOLUCIONES ======= */
#soluciones {
  background-color: #FFFFFF;
  position: relative;
  padding: 80px 0;
  margin: 0;
}

#soluciones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FFFFFF;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#soluciones h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* BENEFICIOS SIN CARDS - como en la imagen */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.benefit-item .icon-wrap {
  width: 50px; /* Más pequeño */
  height: 50px; /* Más pequeño */
  margin-right: 20px;
  background: transparent; /* Sin fondo */
  border-radius: 0; /* Sin borde redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Sin padding */
  flex-shrink: 0;
  box-shadow: none; /* Sin sombra */
  border: none; /* Sin borde */
}

.benefit-item .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-item .content {
  flex: 1;
}

.benefit-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item li {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 6px;
  padding-left: 0;
  position: relative;
}

/* BANNER DEL PROCESO */
.process-banner {
  background: linear-gradient(135deg, #4169E1 0%, #5B7FEE 100%);
  border-radius: 16px;
  padding: 40px 50px 40px 50px;
  margin: 60px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 180px;
}

.process-content {
  flex: 1;
  color: white;
  max-width: 40%;
}

.process-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
  line-height: 1.3;
}

.process-right {
  flex: 1;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.process-tagline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  margin: 0;
}

.process-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 8px 0 0 0;
  font-weight: 400;
}

.robot-image {
  position: absolute;
  right: -60px; /* hace que sobresalga del borde derecho */
  top: 50%;
  transform: translateY(-50%);
  width: 280px; /* tamaño más grande */
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2)); /* da un toque más realista */
}


/* PASOS DEL PROCESO */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.step-card {
  background: #FFFFFF;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 80px; /* Más grande */
  height: 80px; /* Más grande */
  margin: 0 0 15px 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  color: #4169E1;
  margin-bottom: 12px;
  text-align: left;
}

.step-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    min-height: auto;
  }
  
  .process-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .process-right {
    padding: 0;
    margin-bottom: 20px;
  }
  
  .robot-image {
    width: 150px;
  }
  
  .robot-image img {
    position: static;
    top: auto;
    right: auto;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  #soluciones h2 {
    font-size: 2.2rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-item .icon-wrap {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
</style>