/* ==========================================================
   BENEFÍCIOS TECNOLÓGICOS - COMPACTO
========================================================== */

.snp-tech-benefits-section{
    margin-top:18px;
}

.snp-tech-benefits{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}

.benefit{

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    box-shadow:0 6px 18px rgba(15,23,42,.04);

    transition:.25s;
}

.benefit:hover{

    transform:translateY(-4px);

    border-color:#c7d2fe;

    box-shadow:0 14px 30px rgba(79,70,229,.10);

}

.benefit-icon{

    width:42px;
    height:42px;

    border-radius:13px;

    display:grid;
    place-items:center;

    font-size:20px;

    background:linear-gradient(135deg,#6d28d9,#2563eb);

    flex-shrink:0;

}

.benefit strong{

    display:block;

    font-size:15px;

    line-height:1.15;

    color:#0f172a;

    margin-bottom:3px;

}

.benefit span{

    display:block;

    font-size:11px;

    color:#64748b;

    line-height:1.35;

}

/* Tablet */

@media(max-width:1100px){

.snp-tech-benefits{

grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:700px){

.snp-tech-benefits{

grid-template-columns:repeat(2,1fr);

gap:10px;

}

.benefit{

flex-direction:column;

align-items:flex-start;

padding:12px;

gap:10px;

min-height:120px;

}

.benefit-icon{

width:50px;

height:50px;

font-size:22px;

border-radius:16px;

}

.benefit strong{

font-size:18px;

}

.benefit span{

font-size:12px;

line-height:1.3;

}

}

/* Telemóveis pequenos */

@media(max-width:420px){

.snp-tech-benefits{

grid-template-columns:1fr 1fr;

}

.benefit{

padding:10px;

}

.benefit-icon{

width:46px;

height:46px;

}

.benefit strong{

font-size:16px;

}

.benefit span{

font-size:11px;

}

}

/* ==========================================================
   FORCE MOBILE - BENEFÍCIOS TECNOLÓGICOS
========================================================== */

@media(max-width:700px){

  .snp-tech-benefits-section{
    margin-top:12px !important;
  }

  .snp-tech-benefits{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:8px !important;
  }

  .snp-tech-benefits .benefit{
    min-height:88px !important;
    padding:10px !important;
    border-radius:14px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:7px !important;
  }

  .snp-tech-benefits .benefit-icon{
    width:36px !important;
    height:36px !important;
    border-radius:12px !important;
    font-size:16px !important;
  }

  .snp-tech-benefits .benefit strong{
    font-size:13px !important;
    line-height:1.1 !important;
    margin:0 !important;
  }

  .snp-tech-benefits .benefit span{
    font-size:10px !important;
    line-height:1.25 !important;
  }
}