/* ── FEATURES — glass ── */
.feat-sec{padding:100px 0;}
.feat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto auto;
  gap:12px;
  align-items:stretch;
}
/* Rows 1-2: 6 regular cards, 3 per row */
.feat-grid .fc:nth-child(1){grid-column:1;grid-row:1;}
.feat-grid .fc:nth-child(2){grid-column:2;grid-row:1;}
.feat-grid .fc:nth-child(3){grid-column:3;grid-row:1;}
.feat-grid .fc:nth-child(4){grid-column:1;grid-row:2;}
.feat-grid .fc:nth-child(5){grid-column:2;grid-row:2;}
.feat-grid .fc:nth-child(6){grid-column:3;grid-row:2;}
/* Row 3: APP PPG full-width — styled below */
@media(max-width:900px){
  .feat-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto auto auto auto;}
  .feat-grid .fc:nth-child(1){grid-column:1;grid-row:1;}
  .feat-grid .fc:nth-child(2){grid-column:2;grid-row:1;}
  .feat-grid .fc:nth-child(3){grid-column:1;grid-row:2;}
  .feat-grid .fc:nth-child(4){grid-column:2;grid-row:2;}
  .feat-grid .fc:nth-child(5){grid-column:1;grid-row:3;}
  .feat-grid .fc:nth-child(6){grid-column:2;grid-row:3;}
  .fc-app{grid-column:1/-1 !important;grid-row:4 !important;grid-template-columns:60px 1fr;gap:18px;}
}
@media(max-width:560px){
  .feat-grid{grid-template-columns:1fr;grid-template-rows:none;}
  .feat-grid .fc:nth-child(n){grid-column:1 !important;grid-row:auto !important;}
  .fc-app{grid-template-columns:52px 1fr;gap:14px;}
}
.fc{
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;padding:32px 24px;position:relative;
  transition:background .3s,border-color .3s,transform .3s;
}
.fc:hover{
  background:rgba(59,130,246,.07);
  border-color:rgba(59,130,246,.25);
  transform:translateY(-4px);
}
.fc.hl{
  background:rgba(59,130,246,.08);
  border-color:rgba(59,130,246,.2);
}
.fc::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:60%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(59,130,246,.5),transparent);
  opacity:0;transition:opacity .3s;
}
.fc:hover::before,.fc.hl::before{opacity:1;}
.fc.hl::after{
  content:'DESTAQUE';position:absolute;top:14px;right:14px;
  font-family:var(--ffm);font-size:.52rem;letter-spacing:.1em;
  background:var(--blue);color:#fff;border-radius:50px;padding:3px 10px;
}
/* Bootstrap Icons inside glass pill */
.fc-icon{
  width:48px;height:48px;border-radius:14px;
  background:rgba(59,130,246,.12);border:1px solid rgba(59,130,246,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;margin-bottom:20px;
  transition:transform .3s,background .3s;
}
.fc:hover .fc-icon{transform:scale(1.1) rotate(-4deg);background:rgba(59,130,246,.2);}
.fc-title{font-family:var(--ffh);font-weight:700;font-size:.97rem;color:#fff;margin-bottom:10px;}
.fc-desc{font-size:.84rem;color:var(--muted);line-height:1.75;}
.fc-app{
  grid-column:1 / -1 !important;
  grid-row:3 !important;
  display:grid !important;
  grid-template-columns:80px 1fr;
  align-items:center;
  gap:28px;
  padding:28px 32px;
  background:linear-gradient(120deg,rgba(245,158,11,.07),rgba(59,130,246,.07)) !important;
  border-color:rgba(245,158,11,.22) !important;
}
.fc-app:hover{
  border-color:rgba(245,158,11,.4) !important;
  background:linear-gradient(120deg,rgba(245,158,11,.11),rgba(59,130,246,.09)) !important;
}
.fc-app .fc-icon{
  width:72px;height:72px;border-radius:18px;font-size:1.7rem;
  background:rgba(245,158,11,.15);border-color:rgba(245,158,11,.3);
  margin-bottom:0;flex-shrink:0;
}
.fc-app:hover .fc-icon{background:rgba(245,158,11,.25);}
.fc-app-badge{
  display:inline-flex;align-items:center;
  font-family:var(--ffm);font-size:.5rem;letter-spacing:.12em;
  background:rgba(245,158,11,.2);color:#f59e0b;
  border:1px solid rgba(245,158,11,.35);border-radius:50px;
  padding:2px 8px;margin-left:8px;vertical-align:middle;
}
@media(max-width:640px){
  .fc-app{grid-template-columns:60px 1fr;gap:16px;}
  .fc-app .fc-icon{width:56px;height:56px;font-size:1.3rem;}
}
