.services-section {
    padding: 4rem 1.5rem; 
    width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    color: var(--red);
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    text-align: center;
    font-size: 1.375rem; 
    margin-bottom: 3.5rem; 
    color: #333;
    line-height: 1.5;
}

.services-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.services-column {
    flex: 1;
    min-width: 320px;
}

.column-number {
    color: var(--red);
    font-size: 2rem; 
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.column-title {
    font-size: 1.5rem; 
    font-weight: bold;
    margin-bottom: 2.5rem; 
    line-height: 1.3;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    margin-bottom: 1.25rem; 
    font-size: 1.25rem; 
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.arrow {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    display: inline-block;
    vertical-align: middle;
    filter: invert(32%) sepia(84%) saturate(1610%) hue-rotate(344deg) brightness(90%) contrast(90%); /* caso queira deixar vermelho sem editar o SVG */
}

@media (max-width: 768px) {
    .services-section {
      padding: 3rem 1.5rem; 
    }
    
    .services-title {
      font-size: 2rem;
    }
    
    .services-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
    }
    
    .services-columns {
      gap: 2rem; 
    }
    
    .column-number {
      font-size: 1.75rem;
    }
    
    .column-title {
      font-size: 1.375rem;
      margin-bottom: 1.5rem;
    }
    
    .service-item {
      font-size: 1.0625rem; 
    }
    
    .arrow {
      font-size: 1.125rem;
    }
}