.header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    align-items: center;
}

.header_logo {
    width: 8.3125rem;
}

.search {
    display: flex;
    align-items: center;
}

.input-search {
    display: none;
}

.btn-search{
    border: none;
    background-image: url(https://raw.githubusercontent.com/keiMfc/alura-geek/a7ab0be7232a10ca48b6492bf83af15313f59873/assets/img/Icone-searchv2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 24px;
    height: 24px;
}


@media screen and (min-width: 768px) {
    .header {
        padding: 1rem 2rem;
    }

    .header_logo {
        width: 6.25rem;
    }

    .search_box {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 40px;
        background-color: var(--bg-color);
        padding: 1rem;
        min-width: 13rem;
    }

    .input-search {
        display: flex;
        box-sizing: border-box;
        width: 100%;
        border: none;
        outline: none;
        resize: none;
        background: transparent;
        font-size: var(--p-desktop);
        color: var(--text-color);
    }

}

@media screen and (min-width: 1440px) {
    .header {
        padding-left: calc((100% - 1136px)/2);
        padding-right: calc((100% - 1136px)/2);
    }

    .header_logo {
        width: 11rem;
    }

    .search_box {
        min-width: 24.562rem;
    }

}