/* =========================
   SOLUÇÃO SECTION
========================= */


#solucao {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.06),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg-section) 0%,
      var(--bg-main) 100%
    );
}

/* =========================
   CONTAINER
========================= */

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

/* =========================
   HEADER
========================= */

.sc-solucao-header {
  text-align: center;
  margin-bottom: 90px;
}

.sc-solucao-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
}

.sc-solucao-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    #00BF62,
    #7CFFB6
  );
}

.sc-solucao-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* =========================
   GRID
========================= */

.sc-solucao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .sc-solucao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sc-solucao-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CARD
========================= */

.sc-solucao-card {
  position: relative;
  height: 100%;
  padding: 38px 34px;
  border-radius: 18px;

  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: all 0.35s ease;
}

.sc-solucao-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(0,191,98,0.15),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sc-solucao-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 65px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,191,98,0.18);
}

.sc-solucao-card:hover::before {
  opacity: 1;
}

/* =========================
   ICON
========================= */

.sc-solucao-icon {
  font-size: 2.3rem;
  margin-bottom: 22px;
  color: #00BF62;
}

/* =========================
   TEXT
========================= */

.sc-solucao-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.sc-solucao-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {
  .sc-solucao-header {
    margin-bottom: 70px;
  }

  .sc-solucao-title {
    font-size: 2rem;
  }

  .sc-solucao-card {
    padding: 30px;
  }
}
.sc-metodo-wrapper {
  text-align: center;
  margin-top: 40px;
}

.sc-metodo-break {
  margin: 0 auto;
  max-width: 720px;

  font-size: 1rem;          /* menor */
  line-height: 1.9;         /* mais elegante */
  font-weight: 400;         /* mais leve */
  letter-spacing: 0.2px;    /* mais refinado */

  color: var(--text-muted);
}

.sc-metodo-break strong {
  display: block;           /* quebra linha automática */
  margin-top: 14px;

  font-weight: 600;         /* menos pesado que 700 */
  color: #E6EDF3;           /* mantém destaque */
}