/* ======================================================
   SERVIÇOS — BANCO SOL (VERSÃO INSTITUCIONAL PREMIUM)
   ====================================================== */

:root {
  --sol-yellow: #FFD200;
  --sol-yellow-soft: rgba(255,210,0,.10);
  --text-dark: #111111;
  --text-muted: #6b7280;
}

/* =========================
   SECÇÃO
   ========================= */

.section-servicos {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--sol-yellow-soft) 100%
  );
  position: relative;
}

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

.servicos-header {
  max-width: 760px;
  margin: 0 auto 70px auto;
  text-align: center;
}

.servicos-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sol-yellow);
  margin-bottom: 14px;
}

.servicos-header h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.servicos-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* =========================
   CARDS BASE
   ========================= */

.service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 15px 40px rgba(0,0,0,.04);
  border: 1px solid #f1f1f1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  border-color: var(--sol-yellow);
}

/* =========================
   ÍCONE
   ========================= */

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sol-yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #000;
}

/* =========================
   TÍTULO
   ========================= */

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* =========================
   TEXTO
   ========================= */

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

/* =========================
   CARD CENTRAL (DESTAQUE)
   ========================= */

.service-card.featured {
  border: 2px solid var(--sol-yellow);
  box-shadow: 0 25px 70px rgba(0,0,0,.06);
  padding: 40px;
  text-align: center;
}

.service-card.featured h3 {
  font-size: 1.4rem;
}

.service-card.featured .service-image {
  margin: 24px 0;
}

.service-card.featured img {
  max-width: 220px;
  transition: transform .4s ease;
}

.service-card.featured:hover img {
  transform: scale(1.05);
}

/* =========================
   BOTÕES
   ========================= */

.service-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

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

@media (max-width: 992px) {

  .services-layout {
    grid-template-columns: 1fr;
  }

  .section-servicos {
    padding: 80px 0;
  }

}
