/* =====================================================
   SECÇÃO APOIO AO CLIENTE — BANCO SOL
===================================================== */

.bs-apoio-section{
  padding:80px 0;
  background:#fff;
  font-family:"Inter", Arial, sans-serif;
}

.bs-apoio-card{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
  min-height:520px;
  padding:64px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(245,180,0,.18), transparent 34%),
    linear-gradient(135deg, #f7f5ee 0%, #fff9dd 52%, #ffffff 100%);
  box-shadow:0 24px 70px rgba(0,0,0,.08);
}

.bs-apoio-card::before{
  content:"";
  position:absolute;
  left:-80px;
  bottom:-100px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(245,180,0,.22);
  filter:blur(6px);
}

.bs-apoio-content{
  position:relative;
  z-index:2;
}

.bs-apoio-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  color:#9b7a00;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.bs-apoio-kicker::before{
  content:"";
  width:26px;
  height:3px;
  background:#f5b400;
  border-radius:99px;
}

.bs-apoio-content h2{
  margin:0 0 20px;
  color:#202020;
  font-size:42px;
  font-weight:900;
  line-height:1.12;
}

.bs-apoio-content h2 strong{
  color:#f5b400;
}

.bs-apoio-content p{
  max-width:620px;
  margin:0 0 34px;
  color:#555;
  font-size:16px;
  line-height:1.7;
}

.bs-apoio-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  max-width:680px;
}

.bs-apoio-item{
  display:flex;
  align-items:center;
  gap:16px;
  min-height:78px;
  padding:18px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.06);
  color:#111;
  text-decoration:none !important;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  transition:.25s ease;
}

.bs-apoio-item:hover{
  transform:translateY(-4px);
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.bs-apoio-icon{
  flex:0 0 44px;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#111;
  color:#f5b400;
  font-size:21px;
  font-weight:900;
}

.bs-apoio-item small{
  display:block;
  margin-bottom:4px;
  color:#666;
  font-size:12px;
  font-weight:800;
}

.bs-apoio-item span:last-child{
  color:#222;
  font-size:15px;
  font-weight:900;
}

.bs-apoio-image{
  position:relative;
  z-index:2;
}

.bs-apoio-image img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:26px;
  box-shadow:0 24px 55px rgba(0,0,0,.18);
}

/* MOBILE */
@media(max-width:991px){
  .bs-apoio-section{
    padding:46px 0;
  }

  .bs-apoio-card{
    grid-template-columns:1fr;
    padding:32px 20px;
    gap:28px;
    border-radius:22px;
  }

  .bs-apoio-content h2{
    font-size:32px;
  }

  .bs-apoio-grid{
    grid-template-columns:1fr;
  }

  .bs-apoio-image img{
    height:280px;
  }
}