/* HERO */
.solucoes-hero {
  background: linear-gradient(135deg, #0b0f1a, #111827);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.solucoes-hero h1 {
  font-size: 42px;
  margin-top: 60px;
}

.solucoes-hero p {
  color: #d1d5db;
}

/* GRID */
.solucoes {
  padding: 80px 20px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

/* CARD */
.solucao-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.solucao-card:hover {
  transform: translateY(-8px);
}

.solucao-card img {
  width: 120px;
  margin-bottom: 15px;
}

.solucao-card h3 {
  font-size: 20px;
}

.solucao-card p {
  color: #6b7280;
  margin: 10px 0 15px;
}

.preco {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* BOTÃO */
.btn-solucao {
  display: inline-block;
  background: #111827;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-solucao:hover {
  background: #facc15;
  color: #000;
}

/* DESTAQUE */
.destaque {
  border: 2px solid #facc15;
}

.badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #facc15;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* CTA */
.solucoes-cta {
  background: #111827;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.solucoes-cta h2 {
  font-size: 28px;
}

.solucoes-cta p {
  margin: 10px 0 20px;
  color: #d1d5db;
}
