/* =====================================================
   PRODUTOS — BANCO SOL
   ===================================================== */

.products-highlight-section {
  padding: 96px 0;
  background: #ffffff;
}

.products-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.products-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.products-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.product-card {
  background: #f3f3f1;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* IMAGEM */
.product-image {
  margin-bottom: 28px;
}

.product-image img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: block;
}

/* TEXTO */
.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.product-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 32px 24px;
  }
}
