.header__container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
}

.header__items {
    display: flex;
    align-items: center;

}

.header__logoHome {
    margin: 0 50px;
}

.header__search:hover {
    box-shadow: 10px 5px 10px 5px rgba(22, 26, 45, 0.11);
    transform: scale(1.01);
}

.header__search {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    width: 20rem;
    padding: 8px 16px;
    justify-content: space-between;
    border-radius: 50px;
    transition: all 300ms;

}

.header__search-input {
    border: none;
    background: transparent;
}

.header__search-input::placeholder {
    color: rgba(36, 57, 85, 0.11);
}

.header__search-input:focus {
    outline: none;
    border: none;
    background: transparent;
}

.header__search-button {
    cursor: pointer;
    border: none;
    background: transparent;
}

.header__login-button {
    border: none;
    color: var(--color_fondo-o-letra_botones-2);
    padding: 16px 70px;
    margin: 0 1rem;
    background-color: transparent;
    border: 1px solid var(--color_fondo-o-letra_botones-2);
    cursor: pointer;
    text-decoration: none;
}

.header__login-button:hover {
    box-shadow: 10px 5px 10px 5px rgba(22, 26, 45, 0.11);
    transform: scale(1.02);
}

.header__login-button:active {
    box-shadow: inset 0 0 30px 8px rgba(22, 26, 45, 0.11), 0 0 5px 1px #000000;
    transform: scale(0.99);
}

.header__btn {
    border: none;
    color: var(--color_fondo-o-letra_botones-2);
    padding: 16px 70px;
    margin: 0 1rem;
    background-color: transparent;
    border: 1px solid var(--color_fondo-o-letra_botones-2);
    cursor: pointer;
    text-decoration: none;
}

.header__btn:hover {
    box-shadow: 10px 5px 10px 5px rgba(22, 26, 45, 0.11);
    transform: scale(1.02);
}

.header__btn:active {
    box-shadow: inset 0 0 30px 8px rgba(22, 26, 45, 0.11), 0 0 5px 1px #000000;
    transform: scale(0.99);
}

@media screen and (max-width: 360px) {
    .header__container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .header__items {
        flex-direction: column;
        justify-content: center;
    }

    .header__logoHome-image {
        width: calc(100% - 15px);
    }

    .header__search {
        max-width: 19rem;
    }
}

@media screen and (max-width: 768px) {
    .header__container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .header__items {
        flex-direction: column;
        margin: 1rem auto;
        justify-content: left;
    }

    .header__logoHome-image {
        width: calc(100% - 15px);
    }

    .header__search {
        width: 30rem;
        height: 4rem;
    }

}