/* =========================
   DESTAQUES
========================= */

.sol-home-section{
  padding:60px 0;
}

.sol-home-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:30px;
  gap:20px;
}

.sol-home-title{
  font-size:26px;
  font-weight:900;
  margin:0;
  position:relative;
  padding-bottom:10px;
}

.sol-home-title::after{
  content:"";
  width:40px;
  height:3px;
  background:#FFD200;
  position:absolute;
  left:0;
  bottom:0;
  border-radius:3px;
}

.sol-home-subtitle{
  font-size:13px;
  color:#667085;
  margin-top:10px;
}

.sol-home-link{
  font-size:13px;
  font-weight:800;
  color:#9b7800;
}

/* GRID */

.sol-home-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* CARD */

.sol-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:20px;
  transition:.25s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.sol-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  border-color:#FFD200;
}

.sol-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#FFD200;
  display:grid;
  place-items:center;
  font-size:20px;
  margin-bottom:12px;
}

.sol-card h3{
  font-size:14px;
  font-weight:900;
  margin-bottom:6px;
}

.sol-card p{
  font-size:12px;
  color:#667085;
  margin:0;
}

/* RESPONSIVO */

@media(max-width:992px){
  .sol-home-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .sol-home-grid{
    grid-template-columns:1fr;
  }

  .sol-home-head{
    flex-direction:column;
    align-items:flex-start;
  }
}