
#servicos {
  width: 100%;
  padding: 120px 0;
  background-color: var(--bg-light);
  background-image: radial-gradient(
    circle at top right,
    rgba(34,197,94,0.03),
    transparent 60%
  );
}

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

/* ---------- HEADER RESULTADOS (PADRÃO ISOLADO) ---------- */

#servicos .sc-result-header {
  text-align: center;
  margin-bottom: 80px;
}

#servicos .sc-result-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  color: #fff;
}

#servicos .sc-result-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 2px;
}

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

/* ---------- GRID ---------- */

#servicos .result-1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  #servicos .result-1-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CARD ---------- */

#servicos .result-1-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

#servicos .result-1-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

#servicos .result-1-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,197,94,0.45);
  box-shadow: 0 15px 35px rgba(34,197,94,0.12);
}

/* ---------- ICON ---------- */

#servicos .result-1-card .icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

/* ---------- TITULO CARD ---------- */

#servicos .result-1-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

/* ---------- TEXTO CARD ---------- */

#servicos .result-1-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
