#navbar2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px; /* Espaçamento da barra */
    padding: 5px; /* Espaçamento interno */
    border-radius: 5px; /* Bordas arredondadas */
}

.search-input {
    flex-grow: 1;
    padding: 8px;
    outline: none;
    font-size: 16px;
}
  
.search-button {
    padding: 8px 12px;
    background-color: #fdc26f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 8px;
    transition: background-color .3s ease;
}
  
.search-button:hover {
    background-color: #f8d098; /* Cor de fundo ao passar o mouse */
}

.section-title {
    display: flex;
    text-align: center;
    margin-top: 30px;
    justify-content: center;
}

.section-subtitle {
    display: flex;
    text-align: center;
    margin-bottom: 50px;
    justify-content: center;
}

.work {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    gap: 25px;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    background-color: var(--color-primary-1);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.work-title {
    margin-bottom: 10px;
}

.work-description {
    color: #434343;
    text-align: center;
}

.edition-ask {
    display: flex;
    margin-top: 10px;
}

#editar {
    margin-right: 25px;
}

@media  screen and (max-width:1170px) {
    #all-services {
        flex-wrap: wrap;
        justify-content: center;

    }

    .work {
        width: calc(50% - 12px);
    }
}

@media  screen and (max-width:600px) {
    .work {
        width: 100%;
    }

    #services .section-subtitle {
        text-align: center;
    }
}