.wrap-first-titles-consultoria {
    margin: 90px 46.7% 100px 13%; /* Se utiliza "auto" para centrar horizontalmente */
    text-align: justify; /* Justificar el texto */
    color: #e6e6e6;
    width: 50%; /* 30% en la izquierda + 30% en la derecha = 60% */
}

.wrap-first-titles-consultoria h1 {
    font-size: 40px;
}

.wrap-first-titles-consultoria h3 {
    margin-top: 10px;
    font-size: 20px;
    width: 100%; /* Puedes ajustar según tus necesidades */
}



.wrap-consultoria-services-title{
    display: flex;
    margin-top: 10px;
    width: 100%;
    height: 30px;
}

.wrap-consultoria-services-description{
    width: 100%;
    height: 100%;
    background-color: #3b3b3b;
}

.wrap-consultoria-services{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 50px;
    margin: 0px 0px 300px 0px;
}

.wrap-service{
    width: 400px;
    height: 500px;
    background-image: linear-gradient(to right bottom, #6a6a6a, #474747);
    flex: wrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.title-service{
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin-top: 10px;
    color: #e6e6e6;
}

.list-services{
    width: 100%;
   
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #e6e6e6;
}

li{
    margin-top: 40px;
}

@media (max-width: 768px) {
    .wrap-first-titles-consultoria{
        margin-left: 10%;
        width: 80%;
        text-align: left;
    }
    .wrap-service{
        width: 80%;
        height: 450px;
    }
    .title-service{
        font-size: 25px;
    }
    .list-services{
        font-size: 18px;
    }

}