.section-dark-wrapper {
  background-color: #1c1c1c;
  padding: 80px 0;
}

.section-dark-content {
  max-width: 1518px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

.section-container-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* ESQUERDA */
.section-left {
  display: flex;
  flex-direction: column;
}

.section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 50px;
    font-weight: 600;
    line-height: 118%;
    letter-spacing: -0.8px;
    margin-bottom: 40px;
    max-width: 80%;
}

.section-image {
  flex: 1;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.section-image img {
  width: auto;
  height: auto;
  object-fit: cover;
}

/* DIREITA */
.section-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #FFFDFD;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
    background-color: rgba(154, 38, 134, 0.06);
    border: 2px solid #C05AFF;
    border-radius: 16px;
    height: auto;
    min-width: 350px;
    padding: 30px 30px;
    display: flex
;
    flex-direction: column;
    gap: 10px;
}

.card-icon {
  font-size: 2rem;
  color: #9a2686;
}

.card-title-solutions {
    font-size: 28px;
    font-weight: 700;
    line-height: 110%;
    color: #ffffff;
}

.card-description-solutions {
    font-size: 18px;
    font-weight: 500;
    color: #fffff;
}

/* Responsive */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
  }

  .section-container-solutions {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-container-solutions {
    grid-template-columns: 1fr;
  }

  .section-text {
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.4rem;
    max-width: none;
    text-align: center;
  }

  .section-image {
    display: none;
  }
  .section-right {
    gap: 10px;
  }
}
