/* === SOLUTION === */
.solucao {
  background: var(--branco);
}

.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solucao-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.3);
}

.solucao-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solucao h2 {
  font-size: 44px;
  margin-bottom: 30px;
  text-align: left;
}

.solucao h2 em {
  font-style: italic;
  color: var(--azul-escuro);
}

.beneficios {
  list-style: none;
  margin-top: 30px;
}

.beneficio {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.beneficio:last-child {
  border-bottom: none;
}

.beneficio-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(123, 157, 204, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-escuro);
}

.beneficio h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 4px;
}

.beneficio p {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.5;
}