.services {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;    
    justify-content: space-between;
    background-color: #FCFCFC;
}

.service-card {
    text-decoration: none;
    width: 125px;
    height: 100px;
    background-color: #EDEDED;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
    cursor: pointer;
    color: inherit;
}

.service-card:hover {
    opacity: 0.8 !important;
}

.infos-card-service{
    width: 200px;
}

.service-title {
    font-size: 12px;
    font-weight: 700;
    white-space: normal;
    color: var(--Preto, #000);
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    line-height: normal;
    display: flex;
    width: 90px;
    height: 49px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
.welcomeHome{
    color: var(--Preto, #000);
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal; 
    padding: 1rem 10%;
    margin-top: 40px; 
}

/* Ajustes para telas grandes */
@media (max-width: 1110px) {
    .welcomeHome{
        padding: 10px 10%;
        margin-top: 0;
    }
}
@media (max-width: 750px) {
    .welcomeHome{
       text-align: center;
    }
    .services {
       justify-content: center;
    }
}
@media (min-width: 700px) {
    .services {
        padding: 1rem 10%;
    }
}

@media (max-width: 600px) {
    .services {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .services {
        padding: 1rem 8%;
    }
}
