/* =========================================
   SOLUTIONS — verde limão, padrão fundo, 3 cards
   ========================================= */

.solutions {
  position: relative;
  background: var(--color-sage);
  overflow: hidden;
  padding: 5rem 0;
}

/* Padrão decorativo */
.solutions-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.solutions-bg-pattern svg {
  width: 100%;
  height: 100%;
}

/* Inner container */
.solutions-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── Heading ── */
.solutions-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  max-width: 780px;
}

.solutions-highlight {
  color: var(--color-accent-soft);
  text-decoration: none;
}

/* ── Grid 3 colunas ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Card */
.solutions-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Ícone */
.solutions-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent-soft);
  flex-shrink: 0;
}

.solutions-icon svg {
  width: 100%;
  height: 100%;
}

/* Título do card */
.solutions-card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Corpo do card */
.solutions-card-body {
  font-family: var(--font-body);
  font-size: 0.855rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .solutions {
    padding: 3rem 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solutions-card {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .solutions-icon {
    margin-top: 2px;
  }
}
