/* =========================================================
   FAIXA DE DESTAQUES (fundão roxo da logo)
   ========================================================= */
.features{
  padding:40px 0;
  background:linear-gradient(180deg,#4B0053 0%, #2b0031 100%);
  border-top:1px solid #3b003f;
  border-bottom:1px solid #3b003f;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
  align-items:stretch;
}
.feature{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#ffffff;
  border-radius:24px;
  border:1px solid rgba(148,163,184,.4);
  padding:26px 22px;
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  text-align:center;
  transition:transform .18s ease, box-shadow .18s ease;
}
.feature:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}
.feature svg{
  width:30px;
  height:30px;
  color:var(--accent);
  margin-bottom:4px;
}
.feature-title{
  font-weight:800;
  font-size:1rem;
  color:#0b0f19;
}
.feature-desc{
  font-size:.95rem;
  color:var(--muted);
}

/* Ícones SVG dos Apps & Benefícios */
.perk-icon{
  flex-shrink:0;
  margin-right:1rem;
}

.perk-icon svg{
  display:block;
  width:72px;
  height:auto;
}

/* Ajuste pequeno em telas bem pequenas, se quiser */
@media (max-width:600px){
  .perk-icon svg{
    width:60px;
  }
}

/* ===========================
   CENTRAL DE SERVIÇOS (cards)
   ============================ */

.section-help{
  padding-top:2.5rem;
  padding-bottom:4rem;
}

.help-grid{
  margin-top:1.8rem;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1.5rem;
  justify-content:center; /* dá uma centralizada geral no grid */
}

.help-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:1.8rem 1.6rem 1.4rem;
  border-radius:18px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  text-decoration:none;
  color:#111827;
  box-shadow:0 10px 30px rgba(15,23,42,.04);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.help-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(15,23,42,.10);
  border-color:rgba(75,0,83,.25);
}

.help-icon{
  margin-bottom:1.1rem;
  color:#111827;
}

.help-icon svg{
  width:40px;
  height:40px;
}

.help-title{
  font-size:1.05rem;
  font-weight:600;
  margin-bottom:.25rem;
}

.help-desc{
  font-size:.9rem;
  color:#6b7280;
  margin:0 0 1.4rem 0;
  max-width:14rem;
}

.help-arrow{
  margin-top:auto;
  font-size:1.2rem;
  color:#111827;
}

.help-arrow span{
  display:inline-block;
  transform:translateX(0);
  transition:transform .12s ease;
}

.help-card:hover .help-arrow span{
  transform:translateX(4px);
}

/* Responsivo */
@media (max-width:1100px){
  .help-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width:700px){
  .help-grid{
    grid-template-columns:1fr;
  }
}

/* ================================
   Centralizar Apps & Benefícios
   ================================ */

.section-beneficios-inner{
  max-width:1100px;
  margin:0 auto;
}

.section-beneficios-title{
  text-align:center;
  margin-bottom:1.5rem;
}

/* ================================
   Centralizar Apps & Benefícios
   ================================ */

.section-beneficios-inner{
  max-width:1100px;
  margin:0 auto;
}

.section-beneficios-title{
  text-align:center;
  margin-bottom:1.5rem;
}

/* 3 colunas lado a lado em desktop */
.section-beneficios-inner .perks{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.25rem;
  align-items:stretch;
}

/* Em telas médias, 2 por linha */
@media (max-width:1100px){
  .section-beneficios-inner .perks{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* Em telas pequenas, 1 por linha */
@media (max-width:700px){
  .section-beneficios-inner .perks{
    grid-template-columns:1fr;
  }
}


/* ================================
   Centralizar Central de Serviços
   ================================ */

.section-help-inner{
  max-width:1100px;
  margin:0 auto;
}

.section-help-title{
  text-align:center;
  margin-bottom:1.5rem;
}

