.service-title{
    font-size: 26px;
}

.service-card {  
  max-width: 100%;
   background-color: #efefef;
   border: none;
   box-shadow: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 100%));
  gap: 1.65rem;
  justify-content: start; /* garante alinhamento à esquerda */
  margin-right: 0 !important;
 
}

.service-card:hover {
  transform: none;
  box-shadow: none;
  cursor:default;
}

.service-card::before {
  display: none;
}

