/* ============================================
   SOLUCIONES SECTION LAYOUT
   ============================================ */

.soluciones {
  background: linear-gradient(180deg, #1e1640 0%, #241552 100%);
  margin-top: -2px;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.soluciones__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.soluciones__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.soluciones__header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.soluciones__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .soluciones__header {
    margin-bottom: var(--spacing-xl);
  }
}
